body {
  background-color: #eae8e4;
  padding: 0;
  margin: 0;
  font-family: monospace;
  background-image: repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 2px,
      transparent 0,
      transparent 5px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 2px,
      transparent 0,
      transparent 5px
    );
}

nav {
  border-bottom: 1px solid #cbcbcb;
  padding: 10px;
  font-size: 14px;
  background-color: #f1efeb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-items ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.nav-items ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-items ul li img {
  height: 15px;
  width: 15px;
}

.navseparator {
  height: 15px;
  width: 0;
  border-right: 1px dashed #cbcbcb;
}

.nav-items ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #000;
}

.nav-items ul li a p {
  margin: 0;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-buttons button {
  padding: 10px 20px;
  border-radius: 0;
  border: none;
  outline: none;
  cursor: pointer;
}

.nav-buttons button:first-child {
  background-color: #06281c;
  color: #fff;
}

.nav-buttons button:last-child {
  background-color: #0e7a4d;
  color: #ffffff;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  border-left: 1px solid #cbcbcb;
  border-right: 1px solid #cbcbcb;
}
.hero-section {
  border-bottom: 1px solid #cbcbcb;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-details {
  padding: 20px;
}

.hero-details h1 {
  font-size: 5rem;
  font-weight: 300;
  margin: 0;
  color: #0e7a4d;
}

.hero-details-buttons {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}

.hero-details-buttons button {
  background-color: #0e7a4d;
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
}

.hero-details-description {
  font-size: 1rem;
  text-transform: uppercase;
  color: #0e7a4d;
}

.hero-details-button-text {
  font-size: 0.7rem;
  opacity: 0.5;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #cbcbcb;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f1efeb;
    font-weight: bold;
}
.greptile-cta {
  background-color: #06281c;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  margin-right: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  float: right; /* keeping your original float */
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}
section {
    margin: 0;
    padding: 0;
}

section p {
    margin: 10px;       /* removes space above & below text */
    padding: 0;
}
.line-divider {
    width: 100%;
    height: 1px;
    background: #cbcbcb;
    margin-top: 80px;   /* ← space ABOVE the line */
}
/* ---------- Minimal fix: align frame to main + restore column gap ---------- */
:root{
  --inset-offset: 12px;     /* keeps content inset from frame */
  --col-gap: 24px;          /* visible horizontal gap between columns */
  --row-gap: 18px;          /* vertical gap between rows */
  --line-thickness: 1px;
  --line-color: #cbcbcb;
  --card-padding: 12px;
  --card-min-h: 140px;
  --max-w: 1000px;          /* MATCH your main max-width (was 1000px in your file) */
}
.features-wrap {
  position: relative; /* ensure positioned parent */
  /* keep existing padding/inset as you have it */
}
/* make the wrapper span the same width as main so frame touches main borders */
.features-wrap{
  width: 100%;
  max-width: var(--max-w);   /* now matches main width */
  margin: 6px auto;
  position: relative;
  padding-top: 1px;
  box-sizing: border-box;
  overflow: visible;
}
.features-wrap::before,
.features-wrap::after {
  content: "";
  position: absolute;
  top: 0;               /* reach the very top of the wrapper (outer horizontal frame) */
  bottom: 0;            /* reach the very bottom of the wrapper (outer horizontal frame) */
  width: var(--line-thickness, 1px);
  background: var(--line-color, #cbcbcb);
  pointer-events: none;
  z-index: 6;           /* above cards so they visibly meet the horizontal frames */
}

/* left inner vertical line (right edge of left column) */
.features-wrap::before {
  left: calc(50% - (var(--col-gap,24px) / 2));
  transform: translateX(-0.0px); /* tweak if you need ±0.5px micro-adjust */
}

/* right inner vertical line (left edge of right column) */
.features-wrap::after {
  left: calc(50% + (var(--col-gap,24px) / 2));
  transform: translateX(-0.0px);
}

/* grid: ensure the horizontal gutter is explicit, and content is inset from the frame */
.features-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto var(--row-gap) auto; /* top row, gap row, bottom row */
  column-gap: var(--col-gap) !important;        /* force horizontal gap */
  gap: 0;
  padding-left: var(--inset-offset);   /* inset cards from the left frame */
  padding-right: var(--inset-offset);  /* inset cards from the right frame */
  box-sizing: border-box;
}

/* ensure explicit placement so elements don't collapse into first cell */
.card1 { grid-column: 1; grid-row: 1; }
.card2 { grid-column: 2; grid-row: 1; }
.card3 { grid-column: 1; grid-row: 3; }
.card4 { grid-column: 2; grid-row: 3; }

/* CARD baseline */
.feature-card{
  margin: 0;
  min-height: var(--card-min-h);
  box-sizing: border-box;
  position: relative;
  z-index: 2; /* above frame but below lines we want on top */
  display:flex;
  background:#f1efeb;
  backdrop-filter: blur(1px);

  border: 1px solid #cbcbcb;
  padding: 28px 32px 36px 32px;
  flex-direction:column;
}
/* Titles */
.feature-card h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

/* Body text */
.feature-card p {
  font-family: JetBrains Mono, monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #6e6f6e;
}

/* Eyebrow */
.feature-card .eyebrow {
  font-family: JetBrains Mono, monospace;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.feature-card {
  background:#f1efeb;
  backdrop-filter: blur(1px);

  border: 1px solid #cbcbcb;
  padding: 28px 32px 36px 32px;
  position: relative;
  z-index: 5;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg...");
  opacity: 0.04;
  pointer-events: none;
}
.card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.card-arrow.green { background: #1f8f5f; color: #fff; }
.card-arrow.orange { background: #ff6a2b; color: #fff; }
.card-arrow.pink { background: #ff6fae; color: #fff; }
.card-arrow.yellow { background: #f5b400; color: #000; }
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card h3 {
  margin-top: 8px;
}

.feature-card p {
  max-width: 420px;
}
.feature-media {
  margin-top: auto;
  padding-top: 24px;
}
.features-wrap {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* reduce internal element margins that add space */
.feature-card h3, .feature-card p { margin: 0 0 0 0; }

/* ---------- OUTER FRAME LINES (touch the outermost edge of .features-wrap) ---------- */
.frame-line {
  position: absolute;
  background: var(--line-color);
  pointer-events: none;
  z-index: 1;
}
.feature-title {
  margin-top: 0;
  margin-bottom: 14px;
}
.feature-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
}

/* vertical outer frames: run full height of wrapper */
.left-frame  { left: 10px; top: 0; bottom: 0; width: var(--line-thickness); }
.right-frame { right: 10px; top: 0; bottom: 0; width: var(--line-thickness); }

/* horizontal outer frames */
.top-frame   { top: 0; left: 0; right: 0; height: var(--line-thickness); }
.bottom-frame{ bottom: 0; left: 0; right: 0; height: var(--line-thickness); }
.col-line { display: none !important; }
/* ---------- INNER VERTICAL LINES (hug the columns) ---------- */
/* These run from top inset to bottom inset to visually meet the horizontal inset lines */
.col-line {
  position: absolute;
  width: var(--line-thickness);
  background: var(--line-color);
  top: var(--inset-offset);
  bottom: var(--inset-offset);   
  pointer-events: none;
  z-index: 3; /* above frame and cards so they visually touch boxes if needed */
}

/* right edge of left column (inner left divider) */
.left-col  { left: calc(50% - (var(--col-gap) / 2)); }

/* left edge of right column (inner right divider) */
.right-col { left: calc(50% + (var(--col-gap) / 2)); }

/* ---------- ROW-JOIN (explicit gap slot) ---------- */
/* Put <div class="row-join"></div> between the top two and bottom two cards (you already do) */
.row-join {
  grid-column: 1 / -1;
  grid-row: 2;
  height: var(--row-gap);
  position: relative;
  pointer-events: none;
}

/* two horizontal lines inside the gap; each touches its corresponding row */
.row-join::before,
.row-join::after {
  content: "";
  position: absolute;
  left: 0;
  right: var(--inset-offset);
  height: var(--line-thickness);
  background: var(--line-color);
  pointer-events: none;
  z-index: 4; /* above cards so they visually meet */
}

/* top of gap -> touches bottom of top-row */
.row-join::before { top: 0; transform: translateY(-0.5px); }

/* bottom of gap -> touches top of bottom-row */
.row-join::after  { top: calc(100% - var(--line-thickness)); transform: translateY(0.5px); }

/* ---------- ensure vertical and horizontal gutters are preserved ---------- */
.features-grid,
.feature-card { box-sizing: border-box; }
/* shared variables */
:root{
  --size: 30px;
  --gap: 2px;
  --line: 1px;
  --line-color: rgba(0,0,0,0.08);
  --bg: #f1efeb;
  --col-width: 1000px; /* main width */
}
/* pattern-wrap: draw grid in a ::before layer so the page/body background stays visible */
.pattern-wrap{
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: transparent; /* <-- ensure it doesn't cover main/body background */
  overflow: visible;
}

/* pseudo-element holds the repeating grid and sits behind everything inside .pattern-wrap */
.pattern-wrap::before{
  content: "";
  position: absolute;
  inset: 0; /* cover whole wrapper area */
  z-index: 0; /* behind content */
  pointer-events: none;

  /* grid styling (same values you used) */
  --size: 30px;
  --gap: 2px;
  --line: 1px;
  --line-color: rgba(0,0,0,0.08);
  background-image:
    linear-gradient(to right, var(--line-color) var(--line), transparent var(--line)),
    linear-gradient(to bottom, var(--line-color) var(--line), transparent var(--line));
  background-size: calc(var(--size) + var(--gap)) calc(var(--size) + var(--gap));
  background-repeat: repeat;
  background-color: transparent; /* let body/main background show through under grid */
}

/* make sure children render above the pseudo-element */
.tiny-grid,
.big-green-section,
.big-green-inner,
.pattern-wrap > * { position: relative; z-index: 1; }

/* tiny top section — optional visual spacer (keeps the grid visible above green block) */
.tiny-grid {
  width: 100%;
  min-height: 200px;   /* visible area of grid before green section */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: transparent; /* grid lives on wrapper now */
}

/* big green section sits directly on the grid background (no gap) */
.big-green-section{
  width: 100%;
  margin: 0;
  padding: 0;            /* NO gap so it sits flush under the tiny-grid */
  background: transparent;
  box-sizing: border-box;
}

/* inner container matches main width */
.big-green-inner {
  max-width: var(--col-width);
  margin: 0 auto;
  background: rgba(36, 131, 86, 0.15); /* transparent green */
  padding: 40px;
  box-sizing: border-box;
}

/* button kept as you wanted */
.big-green-button {
  background-color: #0e7a4d;
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}
/* wrapper */
.features-wrap.one-row {
  max-width: 1000px;
  margin: 60px auto;
  position: relative;
  box-sizing: border-box;
}

/* grid */
.one-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;                 /* SAME column gap as before */
  padding: 12px;
  position: relative;
}

/* cards */
.feature-card {
  background: #f1efeb;
  /* existing styles stay */

  /* small internal grid */
  background-color: #f1efeb;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(43deg, rgba(0,0,0,0.035) 1px, transparent 1px);

  background-size: 2px 2px;
  border: 1px dashed rgba(0,0,0,0.06);
  padding: 24px;
  min-height: 180px;
  box-sizing: border-box;
  z-index: 2;
}
.feature-card-text{
   background-color: #f1efeb;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(43deg, rgba(0,0,0,0.035) 1px, transparent 1px);

  background-size: 2px 2px;
  border: 1px dashed rgba(0,0,0,0.06);
}
/* outer frame lines */
.frame-line {
  position: absolute;
  background: #cbcbcb;
  pointer-events: none;
}

.left-frame  { left: 0; top: 0; bottom: 0; width: 1px; }
.right-frame { right: 0; top: 0; bottom: 0; width: 1px; }
.top-frame   { top: 0; left: 0; right: 0; height: 1px; }
.bottom-frame{ bottom: 0; left: 0; right: 0; height: 1px; }

/* center vertical divider (touches top & bottom) */
.col-line.center-col {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #cbcbcb;
  transform: translateX(-0.5px);
  z-index: 1;
}
/* inset lines (same logic as 2x2 section) */
.inset-line {
  position: absolute;
  background: #cbcbcb;
  pointer-events: none;
  z-index: 4;
}

:root {
  --inset: 12px;     /* SAME inset spacing as before */
  --line: 1px;
}

/* horizontal inset lines */
.inset-top {
  top: var(--inset);
  left: var(--inset);
  right: var(--inset);
  height: var(--line);
}

.inset-bottom {
  bottom: var(--inset);
  left: var(--inset);
  right: var(--inset);
  height: var(--line);
}

/* vertical inset lines */
.inset-left {
  left: var(--inset);
  top: var(--inset);
  bottom: var(--inset);
  width: var(--line);
}

.inset-right {
  right: var(--inset);
  top: var(--inset);
  bottom: var(--inset);
  width: var(--line);
}
.three-part-section {
  max-width: 1000px;       /* same as main */
  height: 500px;           /* adjust as needed */
  margin: 60px auto;
  display: grid;

  /* 2 columns: left | right */
  grid-template-columns: 1fr 1fr;

  /* 2 rows for left side */
  grid-template-rows: 1fr 1fr;

  border: 1px solid #cbcbcb; /* optional outer border */
}

/* LEFT TOP */
.left-top {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
  padding: 24px;
}

/* LEFT BOTTOM */
.left-bottom {
  grid-column: 1;
  grid-row: 2;
  border-right: 1px solid #cbcbcb;
  padding: 24px;
}

/* RIGHT (spans both rows) */
.right {
  grid-column: 2;
  grid-row: 1 / span 2; /* spans full height */
  padding: 24px;
}
.testimonials-section {
  max-width: 900px;
  margin: 120px auto;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 42px;
  margin: 0;
  color: #2a2a2a;
}

/* Grid: 3 cards per row */
.testimonials-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.testimonial-card {
  background: #f7f6f3;
  border: 1px solid #cbcbcb;
  padding: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: visible;
}

/* Quote text */
.quote {
  font-size: 16px;
  font-family: geistMono, "geistMono Fallback", monospace;
  line-height: 1.6;
  margin: 0;
  color: #2a2a2a;
}

/* Author row */
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #cbcbcb;
}

.author img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.author strong {
  display: block;
  font-size: 14px;
}

.author span {
  font-size: 12px;
  color: #6e6f6e;
}
.testimonial-card {
  position: relative;
  background: #f7f6f3;
  border: 1px solid #cbcbcb;
  padding: 12px;
}

/* shared corner style */
.corner {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #e5e3de;
  border: 1px solid #cbcbcb;
  box-sizing: border-box;
  pointer-events: none;
}

/* exact corners */
.corner.tl { top: -1px; left: -1px; }
.corner.tr { top: -1px; right: -1px; }
.corner.bl { bottom: -1px; left: -1px; }
.corner.br { bottom: -1px; right: -1px; }
.convince-section {
  width: 100%;
  background: transparent;
  padding: 80px 0;
}

.convince-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* header */
.convince-header {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  color: #0e7a4d;
}

.convince-header h2 {
  font-size: 42px;
  margin: 12px 0;
  color: #2a2a2a;
}

.convince-header p {
  font-size: 16px;
  color: #6e6f6e;
}

/* grid */
.convince-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: center;
}

/* form */
.convince-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 80px;
  padding-top: 40px;
}

.convince-form label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #6e6f6e;
}

.convince-form input {
  border: 1px solid #cbcbcb;
  background: #f7f6f3;
  font-family: monospace;
  padding: 10px 10px;
  font-size: 15px;
}

.dark-button {
  margin-top: 12px;
  background: #06281c;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
}
.green-button {
  
  background: #0e7a4d;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
}
/* visual */
.convince-visual {
  display: flex;
  justify-content: flex-start;
  padding-right: 30px;
}

.envelope {
  width: 360px;   /* was 360px */
  height: 300px; 
  background: #f1efeb;
  margin-right: 50px;
  border: 1px solid #cbcbcb;
  position: relative;
}

.envelope::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: #e5e3de;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.letter {
  font-size: 14px;
  color: #2a2a2a;
}
.faq-section {
  width: 100%;
  padding: 140px 0;
}

.faq-inner {
  max-width: 1000px;
  padding: 0 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT */
.faq-eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  color: #0e7a4d;
}

.faq-left h2 {
  font-size: 42px;
  margin: 16px 0 12px;
  color: #2a2a2a;
}

.faq-subtext {
  color: #6e6f6e;
  margin-bottom: 24px;
}

.faq-button {
  background: #0e7a4d;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

/* RIGHT */
.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #cbcbcb;
  padding: 18px 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-family: geistMono, monospace;
  color: #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "⌄";
  font-size: 16px;
  color: #6e6f6e;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 12px;
  color: #6e6f6e;
  font-size: 14px;
  line-height: 1
  .6;
}
.footer {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  width: 100%;
  border-top: 1px solid #cbcbcb;
  padding: 32px 0 48px;
  height: 360px;
}
.footer-col h4 {
  font-family: Inter, system-ui, sans-serif;
}
.footer-col a,
.footer-brand p,
.footer-socials {
  font-family: geistMono, "Geist Mono", monospace;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;        /* THIS aligns with main content */
  display: grid;
  grid-template-columns: 1.1fr 2.9fr;
  gap: 56px;
}

/* Brand */
.footer-brand img {
  height: 32px;   /* was 28px */
  margin-bottom: 32px;
}


.footer-socials span {
  font-size: 11px;
  letter-spacing: 1.6px;
  margin-left: 10px;
  margin-bottom: 8px;
  margin-top: 220px;
  display: block;
}

.footer-socials .icons {
  display: flex;
  gap: 14px;
  margin: 6px 0 20px;
  margin-left: 10px;
}

.footer-socials a {
  color: #6e6f6e;
  text-decoration: none;
}

.footer-brand p {
  font-size: 12px;
  margin-top: 24px;
  color: #6e6f6e;
}

/* Columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  column-gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  line-height: 1.45;      /* tighter like screenshot */
  margin-bottom: 6px;     /* reduce vertical spacing */
  color: #6e6f6e;
  text-decoration: none;
}
.footer-col a:hover {
  color: #2a2a2a;
}