*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #1A6B3C;
    --green-dark: #0F4A28;
    --green-deep: #0A3019;
    --gold: #D4A017;
    --gold-light: #F0C040;
    --offwhite: #F9F6F0;
    --charcoal: #1C1C1E;
    --charcoal-soft: #2C2C2A;
    --muted: #5F5E5A;
    --border: rgba(28,28,30,0.1);
  }

  /* Dark mode theme variables */
  html.dark-mode {
    --offwhite: #0D1510;
    --charcoal: #EAF0EC;
    --charcoal-soft: #121C16;
    --muted: #A8B8AD;
    --border: rgba(220,230,224,0.18);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--offwhite);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: #fff;
    border-bottom: 0.5px solid var(--border);
    padding: 0 40px;
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 40px; height: 40px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .nav-logo-text {
    font-family: 'Fraunces', serif;
    font-size: 18px; font-weight: 600;
    color: var(--charcoal);
  }

  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 14px; font-weight: 400;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green); }

  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--charcoal);
    cursor: pointer;
  }

  .nav-toggle svg { width: 20px; height: 20px; }

  .nav-cta {
    background: var(--green);
    color: #fff !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 500;
    padding: 10px 20px;
    border: none; border-radius: 4px;
    cursor: pointer !important;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--green); }

  /* Full dark-mode surfaces and contrast fixes */
  html.dark-mode body {
    background: #0B120D;
    color: #EAF0EC;
  }

  html.dark-mode nav {
    background: #0E1712;
    border-bottom-color: rgba(212,160,23,0.24);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  }

  html.dark-mode .nav-logo-text,
  html.dark-mode .nav-links a {
    color: rgba(246,248,245,0.92);
  }

  html.dark-mode .nav-links a:hover {
    color: var(--gold-light);
  }

  html.dark-mode .nav-toggle {
    background: rgba(255,255,255,0.04);
    border-color: rgba(212,160,23,0.32);
    color: rgba(246,248,245,0.92);
  }

  html.dark-mode .story-img,
  html.dark-mode .person-card,
  html.dark-mode .waitlist-side {
    background: #121D17;
    border-color: rgba(212,160,23,0.24);
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
  }

  html.dark-mode .waitlist-side::before {
    background:
      radial-gradient(circle at 20% 15%, rgba(26,107,60,0.2), transparent 45%),
      radial-gradient(circle at 75% 35%, rgba(212,160,23,0.16), transparent 42%),
      linear-gradient(135deg, #0F1A14, #142219);
  }

  html.dark-mode .waitlist-proof {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.14);
    color: #EAF0EC;
  }

  html.dark-mode .waitlist-meter {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.16);
  }

  html.dark-mode .waitlist-meter-note {
    color: #A8B8AD;
  }

  html.dark-mode .btn-store {
    background: #101914;
    border-color: rgba(212,160,23,0.34);
    box-shadow: 0 10px 24px rgba(0,0,0,0.3);
  }

  html.dark-mode .btn-store:hover {
    background: #16241C;
  }

  html.dark-mode .btn-store-text small {
    color: rgba(235,242,236,0.7);
  }

  html.dark-mode .btn-store-text strong {
    color: #FFFFFF;
  }

  .scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    color: white !important;
    border-radius: 10px;
    background: var(--green);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 200;
  }

  .scroll-top svg { width: 18px; height: 18px; }

  .scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: scrollTopFloat 2.2s ease-in-out infinite;
  }

  .scroll-top:hover {
    transform: translateY(-2px);
  }

  .scroll-top:focus-visible {
    outline: 3px solid rgba(212,160,23,0.55);
    outline-offset: 3px;
  }

  @keyframes scrollTopFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  @media (prefers-reduced-motion: reduce) {
    .scroll-top.is-visible { animation: none; }
  }
  /* ── HERO ── */

  img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── HERO ── */

/* Prevent hero from being too cramped on small screens */
.hero {
  min-height: 100svh; /* safer on mobile browsers */
  padding: 80px 0 64px;
}

.hero-content {
  padding: 0 20px;
}

/* On mobile/tablet: stack and center hero content */
@media (max-width: 1023px) {
  .hero {
    padding: 72px 0 56px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .hero-left {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-headline {
    font-size: clamp(30px, 7vw, 46px);
  }

  .hero-sub {
    font-size: 15px;
    max-width: 480px;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  /* About hero card */
  .about-hero-card {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 64px 0 48px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: clamp(26px, 8.5vw, 36px);
  }

  .hero-sub {
    font-size: 14px;
  }

  .btn-store {
    padding: 10px 16px;
    min-height: 44px;
  }

  .btn-store-text strong {
    font-size: 12px;
  }

  .hero-btns {
    gap: 10px;
  }

  /* About hero card: tighter padding on very small screens */
  .about-hero-card-top {
    padding: 18px 16px 14px;
  }

  .about-hero-card-title {
    font-size: 19px;
  }

  .about-hero-card-body {
    padding: 14px 16px 18px;
  }

  .about-hero-card-grid {
    gap: 10px;
  }

  .about-hero-metric {
    padding: 12px;
    border-radius: 12px;
  }

  .about-hero-metric b {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .about-hero-metric span {
    font-size: 11px;
  }
}


  .hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    padding: 40px 40px 60px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(10,48,25,0.66) 0%, rgba(15,74,40,0.68) 50%, rgba(26,107,60,0.60) 100%),
      url('/images/hero.jpg') center/cover no-repeat;
    z-index: 0;
    overflow: hidden;
  }

  .hero-bg-slide {
    position: absolute; inset: 0; opacity: 0; transform: scale(1.04);
    background-position: center; background-size: cover; background-repeat: no-repeat;
    animation: heroSlideshow 30s infinite;
  }
  .hero-bg-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,48,25,.72), rgba(15,74,40,.68) 50%, rgba(26,107,60,.62));
  }
  .hero-bg-slide:nth-child(1) { background-image: url('/images/hero.jpg'); animation-delay: 0s; }
  .hero-bg-slide:nth-child(2) { background-image: url('/images/FARM.jpg'); animation-delay: 6s; }
  .hero-bg-slide:nth-child(3) { background-image: url('/images/carpenter.jpg'); animation-delay: 12s; }
  .hero-bg-slide:nth-child(4) { background-image: url('/images/MARKET.jpg'); animation-delay: 18s; }
  .hero-bg-slide:nth-child(5) { background-image: url('/images/food.jpg'); animation-delay: 24s; }
  @keyframes heroSlideshow {
    0% { opacity: 0; transform: scale(1.04); }
    5%,20% { opacity: 1; transform: scale(1); }
    25%,100% { opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-bg-slide { animation: none; opacity: 0; }
    .hero-bg-slide:first-child { opacity: 1; }
  }

  
  .hero-pattern {
    position: absolute; inset: 0; z-index: 1; opacity: 0.06;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 32px 32px;
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  }

  @media (max-width: 1023px) {
    .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .hero-left {
      max-width: 420px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .about-hero-card {
      max-width: 420px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
  }

 .too{
  align-items: center !important;
  text-align: center;
 }

  .hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,160,23,0.15);
    border: 0.5px solid rgba(212,160,23,0.4);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
  }
  .hero-pill-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
  .hero-pill span { color: var(--gold); font-size: 12px; letter-spacing: 0.8px; font-weight: 500; }

  .hero-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
  }
  .hero-headline .gold { color: var(--gold); font-style: italic; }

  .hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 16px; line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
  }

  .hero-btns {
    display: flex; gap: 12px; flex-wrap: wrap;
  }

  .btn-store {
    display: flex; align-items: center; gap: 10px;
    background: var(--charcoal);
    border: 0.5px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 11px 20px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-store:hover { background: #333; transform: translateY(-1px); }
  .btn-store-icon { width: 20px; height: 20px; opacity: 0.9; }
  .btn-store-text small { display: block; color: rgba(255,255,255,0.5); font-size: 9px; letter-spacing: 0.5px; }
  .btn-store-text strong { display: block; color: #fff; font-size: 13px; font-weight: 500; }

  /* ── APP CARD ── */
  .about-hero-card {
      opacity: 0;
      transform: translateY(50px);
      animation: cardRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
      background: var(--charcoal);
      border-radius: 24px;
      border: 1px solid rgba(212,160,23,0.25);
      overflow: hidden;
      box-shadow: 0 32px 64px rgba(0,0,0,0.4);
    }

    @keyframes cardRise {
      to { opacity: 1; transform: translateY(0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .about-hero-card {
        animation: none;
        opacity: 1;
        transform: none;
      }
    }
    .about-hero-card-top { 
      background: var(--green);
      padding: 22px 22px 18px;
    }
    .about-hero-card-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(212,160,23,0.2);
      border: 0.5px solid rgba(212,160,23,0.4);
      border-radius: 100px;
      padding: 6px 12px;
      color: var(--gold);
      font-size: 11px;
      margin-bottom: 12px;
    }
    .about-hero-card-title {
      color: #fff;
      font-family: 'Fraunces', serif;
      font-size: 22px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .about-hero-card-sub {
      color: rgba(255,255,255,0.65);
      font-size: 13px;
      line-height: 1.65;
    }
    .about-hero-card-body {
      padding: 18px 22px 22px;
      background: var(--charcoal-soft);
      border-top: 0.5px solid rgba(255,255,255,0.06);
    }
    .about-hero-card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .about-hero-metric {
      background: rgba(255,255,255,0.04);
      border: 0.5px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 14px 14px;
    }
    .about-hero-metric b {
      display: block;
      color: #fff;
      font-size: 18px;
      margin-bottom: 6px;
    }
    .about-hero-metric span {
      display: block;
      color: rgba(255,255,255,0.55);
      font-size: 11px;
      line-height: 1.45;
    }

  /* ── SECTION COMMON ── */
  section { padding: 100px 40px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    color: var(--green);
    font-size: 11px; font-weight: 500; letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--charcoal);
  }
  .section-sub {
    color: var(--muted);
    font-size: 16px; line-height: 1.7;
  
  }

  /* ── FEATURES ── */
   /* ── STORY SECTION (IMPROVED RESPONSIVE) ── */

.story {
  background: var(--offwhite);
}

.story-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Image container */
.story-img {
  border-radius: 18px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: #fff;
}

/* Prevent distortion */
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text block */
.story-text {
  max-width: 640px;
}

/* ── TABLET & BELOW ── */
@media (max-width: 1023px) {
  .story-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
    text-align: left;
  }

  .story-text {
    max-width: 600px;
    margin: 0 auto;
  }

  .story-img {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .story-wrap {
    gap: 24px;
  }

  .story-text {
    max-width: 100%;
    padding: 0 4px;
  }

  .story-img {
    max-width: 100%;
  }

  .story-img img {
    height: auto; /* extra safety for very small screens */
  }
}
  .vision {
  background: var(--green);
}

.vision-header {
  text-align: center;
  margin-bottom: 56px;
}

.vision .section-heading {
  color: #fff;
}

.vision .section-sub {
  color: rgba(255,255,255,0.7);
}

.vision-header .section-sub {
  margin: 0 auto;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vision-card {
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.vision-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212,160,23,0.22);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  font-size: 16px;
}

.vision-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.vision-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1023px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .vision-grid {
    grid-template-columns: 1fr 1fr;
  }
}
    .founders { background: var(--offwhite); }
    .founders-wrap {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 56px;
      align-items: start;
    }

    @media (max-width: 1023px) {
      .founders-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .founders-wrap > div:first-child {
        text-align: center;
      }

      #founders .section-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }
    }

    .founder-grid {
      display: grid;
      gap: clamp(12px, 2vw, 16px);
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-content: start;
    }

    @media (max-width: 1023px) {
      .founder-grid {
        width: 100%;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 639px) {
      .founder-grid { grid-template-columns: 1fr; }
    }

    .person-card {
      background: #fff;
      border: 0.5px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 3 / 4;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .person-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .person-photo {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(26,107,60,0.18), rgba(212,160,23,0.10)),
        radial-gradient(circle at 20% 10%, rgba(255,255,255,0.45), transparent 40%),
        #e9eee8;
    }
    .person-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .person-overlay {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      padding: 14px 14px;
      border-radius: 14px;
      background: rgba(28,28,30,0.55);
      backdrop-filter: blur(14px);
      border: 0.5px solid rgba(255,255,255,0.16);
      text-align: center;
    }
    .person-name {
      color: #fff;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .person-title {
      color: rgba(255,255,255,0.65);
      font-size: 12px;
    }

    .waitlist {
      background: var(--offwhite);
      position: relative;
      overflow: hidden;
    }

    .waitlist::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 10% 20%, rgba(26,107,60,0.12), transparent 52%),
        radial-gradient(circle at 90% 10%, rgba(212,160,23,0.14), transparent 46%),
        radial-gradient(circle at 80% 85%, rgba(10,48,25,0.10), transparent 55%);
      pointer-events: none;
      z-index: 0;
    }

    .waitlist .container { position: relative; z-index: 1; }

    .waitlist-wrap {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
      align-items: center;
    }
    .waitlist-wrap.single {
      grid-template-columns: 1fr;
    }

    .waitlist-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 100px;
      background: rgba(212,160,23,0.12);
      border: 0.5px solid rgba(212,160,23,0.25);
      color: var(--gold);
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .waitlist-heading {
      font-family: 'Fraunces', serif;
      font-size: clamp(28px, 4.2vw, 44px);
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--charcoal);
    }

    .waitlist-sub {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 22px;
    }

    .waitlist-trust {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-top: 18px;
    }

    .waitlist-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .waitlist-trust-item i {
      width: 18px;
      color: var(--green);
    }

    .waitlist-form-card {
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(212,160,23,0.22);
      box-shadow: 0 24px 60px rgba(0,0,0,0.12);
      background:
        linear-gradient(135deg, rgba(10,48,25,0.96) 0%, rgba(15,74,40,0.96) 55%, rgba(26,107,60,0.93) 100%);
      position: relative;
    }

    .waitlist-form-card::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.16;
      background-image:
        linear-gradient(rgba(212,160,23,0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,23,0.28) 1px, transparent 1px);
      background-size: 52px 52px;
      pointer-events: none;
    }

    .waitlist-form-inner {
      position: relative;
      padding: 22px 22px 20px;
    }

    .waitlist-form-title {
      color: #fff;
      font-family: 'Fraunces', serif;
      font-size: 20px;
      margin-bottom: 6px;
    }

    .waitlist-form-note {
      color: rgba(255,255,255,0.72);
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .waitlist-fields {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .waitlist-field label {
      display: block;
      color: rgba(255,255,255,0.8);
      font-size: 12px;
      margin-bottom: 8px;
    }

    .waitlist-field input {
      width: 100%;
      border-radius: 14px;
      border: 0.5px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.08);
      color: #fff;
      padding: 12px 12px;
      outline: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
    }

    .waitlist-field input::placeholder { color: rgba(255,255,255,0.55); }

    .waitlist-field input:focus {
      border-color: rgba(212,160,23,0.55);
      box-shadow: 0 0 0 4px rgba(212,160,23,0.20);
      transform: translateY(-1px);
    }

    .waitlist-cta {
      width: 100%;
      margin-top: 12px;
      background: var(--gold);
      color: #122018;
      border: none;
      border-radius: 14px;
      padding: 12px 14px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 16px 30px rgba(0,0,0,0.22);
    }

    .waitlist-cta:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .waitlist-cta:active {
      transform: translateY(0);
    }

    .waitlist-microcopy {
      margin-top: 12px;
      color: rgba(255,255,255,0.68);
      font-size: 12px;
      line-height: 1.55;
    }

    .waitlist-success {
      display: none;
      margin-top: 14px;
      border-radius: 14px;
      padding: 12px 12px;
      background: rgba(255,255,255,0.10);
      border: 0.5px solid rgba(255,255,255,0.16);
      color: rgba(255,255,255,0.86);
      font-size: 13px;
      line-height: 1.6;
    }

    .waitlist-form-card.is-success .waitlist-success { display: block; }
    .waitlist-form-card.is-success .waitlist-cta { opacity: 0.72; cursor: default; }

    .waitlist-side {
      border-radius: 22px;
      border: 0.5px solid rgba(28,28,30,0.10);
      background: #fff;
      overflow: hidden;
  
      position: relative;
    }

    .waitlist-side::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 15%, rgba(26,107,60,0.18), transparent 45%),
        radial-gradient(circle at 75% 35%, rgba(212,160,23,0.16), transparent 42%),
        linear-gradient(135deg, rgba(249,246,240,1), rgba(255,255,255,1));
    }

    .waitlist-side-inner {
      position: relative;
      padding: 22px 22px;
      height: 100%;
      display: grid;
      align-content: center;
      gap: 12px;
    }

    .waitlist-proof {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 16px;
      background: rgba(26,107,60,0.08);
      border: 0.5px solid rgba(26,107,60,0.18);
      color: var(--charcoal);
      font-size: 13px;
      line-height: 1.5;
    }

    .waitlist-proof b { color: var(--green); }

    .waitlist-meter {
      width: 100%;
      height: 10px;
      border-radius: 999px;
      background: rgba(28,28,30,0.08);
      overflow: hidden;
      border: 0.5px solid rgba(28,28,30,0.08);
    }

    .waitlist-meter > span {
      display: block;
      height: 100%;
      width: 62%;
      background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
    }

    .waitlist-meter-note {
      text-align: center;
      color: var(--muted);
      font-size: 12px;
    }

    @media (max-width: 1023px) {
      .waitlist-wrap {
        grid-template-columns: 1fr;
      }
      .waitlist-side {
        min-height: 260px;
      }
    }

  /* ── CTA ── */
  /* ── CTA (UPDATED CHECKERED GRID BACKGROUND) ── */
.cta-section {
  position: relative;
  background: var(--green);
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
}

/* Grid overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(212,160,23,0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.28) 1px, transparent 1px);

  background-size: 60px 60px;

  /* ✨ subtle motion */
  animation: gridDrift 40s linear infinite;

  pointer-events: none;
  z-index: 0;
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 60px 60px, 60px 60px;
  }
}

/* Optional soft glow layer for depth */
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: glowShift 60s ease-in-out infinite alternate;
}

@keyframes glowShift {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-section::before,
  .cta-section::after {
    animation: none;
  }
}

/* Ensure content stays above grid */
.cta-section .container {
  position: relative;
  z-index: 1;
}

  .cta-pill {
    display: inline-block;
    background: rgba(212,160,23,0.15);
    border: 0.5px solid rgba(212,160,23,0.3);
    border-radius: 100px;
    padding: 6px 18px;
    color: var(--gold);
    font-size: 11px; letter-spacing: 1px;
    margin-bottom: 24px;
  }
  .cta-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    max-width: 640px;
    margin: 0 auto 16px;
  }
  .cta-sub {
    color: rgba(255,255,255,0.55);
    font-size: 16px; line-height: 1.6;
    max-width: 480px; margin: 0 auto 40px;
  }
  .cta-btns { display: flex; gap: 12px; justify-content: center; }
  .contact-text{text-align: center;}

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal-soft);
    padding: 64px 40px 32px;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
  }
  .footer-brand-name {
    font-family: 'Fraunces', serif;
    font-size: 18px; font-weight: 600; color: #fff;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
  }
  .footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
  }
  .footer-brand-dot {
    width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  }
  .footer-brand-desc { color: rgba(255,255,255,0.4); font-size: 13px; line-height: 1.65; max-width: 240px; }
  .footer-col-title { color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; transition: color 0.2s; }
  .footer-col a:hover { color: rgba(255,255,255,0.8); }
  .footer-divider { border: none; border-top: 0.5px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { color: rgba(255,255,255,0.25); font-size: 12px; }
  .footer-reg {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.25); font-size: 12px;
  }
  .footer-reg-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }

  img { max-width: 100%; height: auto; display: block; }

  .container {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  section { padding: 100px 0; }

  nav {
    padding-left: 40px;
    padding-right: 40px;
    height: 64px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    padding: 56px 0 56px;
  }

  .app-card-wrap {
    max-width: 420px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btns { flex-wrap: wrap; }

  .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; align-items: center; }

  @media (max-width: 1023px) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    section { padding: 72px 0; }

    nav {
      padding-left: 16px;
      padding-right: 16px;
      height: auto;
      min-height: 64px;
    }

    .nav-links {
      gap: 16px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .hero {
      padding: 48px 0 56px;
    }

    .app-card-wrap {
      max-width: 420px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-btns { flex-wrap: wrap; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

    .nav-toggle { display: inline-flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 0.5px solid var(--border);
      padding: 12px 16px 16px;
      flex-direction: column;
      gap: 14px;
    }

    html.dark-mode .nav-links {
      background: linear-gradient(180deg, #101D15 0%, #0B140F 100%);
      border-bottom-color: rgba(212,160,23,0.24);
      border-top: 1px solid rgba(212,160,23,0.14);
      box-shadow: 0 16px 30px rgba(0,0,0,0.4);
    }

    nav.nav-open .nav-links { display: flex; }
  }

  @media (min-width: 640px) {
    .container { padding-left: 20px; padding-right: 20px; }
    nav { padding-left: 20px; padding-right: 20px; }
    section { padding: 84px 0; }
    .hero { padding: 56px 0 56px; }
    .footer-bottom { flex-direction: row; align-items: center; }
  }

  @media (min-width: 1024px) {
    .container { padding-left: 40px; padding-right: 40px; }
    nav { padding-left: 40px; padding-right: 40px; height: 64px; }
    section { padding: 50px 0; }
    .hero-content { grid-template-columns: 1fr 420px; gap: 60px; }
    .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
  }
  .contact { background: var(--green); position: relative; overflow: hidden; }
    .contact::before {
      content: "";
      position: absolute;
      inset: 0;

      background-image:
        linear-gradient(rgba(212,160,23,0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,23,0.28) 1px, transparent 1px);

      background-size: 60px 60px;

      /* ✨ subtle motion */
      animation: gridDrift 40s linear infinite;

      pointer-events: none;
      z-index: 0;
    }
    .contact::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.06), transparent 60%);
      pointer-events: none;
      z-index: 0;
      animation: glowShift 60s ease-in-out infinite alternate;
    }
    @keyframes gridDrift {
      0% { background-position: 0 0, 0 0; }
      100% { background-position: 60px 60px, 60px 60px; }
    }
    @keyframes glowShift {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-20px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .contact::before,
      .contact::after {
        animation: none;
      }
    }
    .contact .container { position: relative; z-index: 1; }
    .contact-pill {
      display: inline-block;
      background: rgba(212,160,23,0.15);
      border: 0.5px solid rgba(212,160,23,0.3);
      border-radius: 100px;
      padding: 6px 18px;
      color: var(--gold);
      font-size: 11px; letter-spacing: 1px;
      margin-bottom: 24px;
    }
    .contact-heading {
      font-family: 'Fraunces', serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .contact-sub {
      color: rgba(255,255,255,0.55);
      font-size: 16px; line-height: 1.6;
      
      margin-bottom: 40px;
    
    }
    .contact-wrap {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: start;
    }

    @media (max-width: 1023px) {
      .contact-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    .contact-card {
      background: rgba(255,255,255,0.07);
      border: 0.5px solid rgba(255,255,255,0.14);
      border-radius: 18px;
      padding: 26px 26px;
      backdrop-filter: blur(12px);
      box-shadow: 0 18px 48px rgba(10, 30, 18, 0.28);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    @media (max-width: 639px) {
      .contact-card {
        padding: 20px 16px;
        border-radius: 16px;
      }
    }

    .contact-card:hover {
      transform: translateY(-2px);
      border-color: rgba(212,160,23,0.28);
      box-shadow: 0 26px 70px rgba(10, 30, 18, 0.34);
    }

    .contact-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-align: left;
    }

    .contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: rgba(255,255,255,0.78);
      font-size: 14px;
      line-height: 1.6;
    }

    .contact-item div { text-align: left; }

    .contact-item i {
      color: var(--gold);
      margin-top: 4px;
    }

    .contact-item a {
      color: rgba(255,255,255,0.72);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .contact-item a:hover {
      color: #fff;
      border-bottom-color: rgba(212,160,23,0.55);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    @media (max-width: 639px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
    }

    .field label {
      display: block;
      color: rgba(255,255,255,0.75);
      font-size: 12px;
      margin-bottom: 8px;
    }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border-radius: 12px;
      border: 0.5px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.08);
      color: #fff;
      padding: 12px 12px;
      outline: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(212,160,23,0.55);
      box-shadow: 0 0 0 4px rgba(212,160,23,0.14);
    }
    .field textarea { min-height: 130px; resize: vertical; }
    .field input::placeholder,
    .field textarea::placeholder { color: rgba(255,255,255,0.55); }

    .submit-btn {
      width: 100%;
      margin-top: 12px;
      background: #fff;
      color: #122018;
      border: none;
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.15s ease, background 0.2s ease;
    }

    .submit-btn:hover { background: var(--green); transform: translateY(-1px); color: white; }
