
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
        .back-button {
            width: 65%;
            max-width: 400px;
            padding: 24px 48px;
            font-size: 1rem;
            font-weight: 40;
            display: flex;
            align-items: center; 
            color: #fff;
            background: linear-gradient(135deg, #08561a 0%, #258420 100%);
            border: none;
            border-radius: 29px;
            cursor: pointer;

            justify-content: center;  
             margin: 0 auto;
            align-items: center;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            text-transform: uppercase;
            letter-spacing: 2px;
        }


        .back-button:active {
            transform: translateY(-1px);
        }

        .back-button::before {
            content: '←';
            margin-right: 12px;
            font-size: 1rem;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .back-button:hover::before {
            transform: translateX(-8px);
        }

        .forward-button {
        width: 65%;
        max-width: 600px;
        padding: 24px 48px;
        font-size: 1rem;
        display: flex;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(135deg, #08561a 0%, #258420 100%);
        border: none;
        border-radius: 16px;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .forward-button:active {
        transform: translateY(-1px);
    }

    /* Arrow on right */
    .forward-button::after {
        content: '→';
        margin-left: 12px;
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    /* Move arrow right on hover */
    .forward-button:hover::after {
        transform: translateX(8px);
    }


        /* Ripple effect */
        .back-button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .back-button:active::after {
            width: 300px;
            height: 300px;
        }

        .demo-text {
            color: #8892b0;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
        }

:root {
  /* Palette */
  --green-deep: #1B3A2D;
  --green-mid: #2E6B4F;
  --green-light: #4FA87A;
  --green-pale: #E8F5EE;
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --amber: #F0A83A;
  --amber-light: #FDE8C0;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --coral: #E8705A;

  /* Semantic Variables - Light Mode (Default) */
  --bg-body: var(--cream);
  --bg-nav: rgba(250, 247, 242, 0.92);
  --bg-nav-scrolled: rgba(250, 247, 242, 0.92);
  --bg-card: #ffffff;
  --bg-input: #faf9f7;
  --bg-input-focus: #ffffff;
  --bg-section-alt: var(--warm-white);
  --bg-section-investor: #f4f2ef;
  --text-main: var(--text-dark);
  --text-muted: var(--text-mid);
  --text-subtle: var(--text-light);
  --border-color: #e8e4de;
  --border-input: #e0dcd6;
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.07);
  --shadow-nav: 0 1px 20px rgba(0, 0, 0, 0.06);

  --radius: 18px;
  --radius-sm: 12px;
  --font-headline: 'Libre Baskerville', serif;
  --font-hand: 'Caveat', cursive;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

[data-theme="dark"] {
  /* Semantic Variables - Dark Mode */
  --bg-body: #121212;
  --bg-nav: rgba(18, 18, 18, 0.92);
  --bg-nav-scrolled: rgba(18, 18, 18, 0.92);
  --bg-card: #1e1e1e;
  --bg-input: #2a2a2a;
  --bg-input-focus: #333333;
  --bg-section-alt: #181818;
  --bg-section-investor: #1a1a1a;
  --text-main: #e0e0e0;
  --text-muted: #b0b0b0;
  --text-subtle: #808080;
  --border-color: #333333;
  --border-input: #444444;
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.3);
  --shadow-nav: 0 1px 20px rgba(0, 0, 0, 0.5);
  --green-deep: #4FA87A;
  --green-pale: #1B3A2D;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-headline);
  color: var(--text-main);
  background: var(--bg-body);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  object-fit: cover;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit
}

section {
  width: 100%;
  position: relative
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .35s, box-shadow .35s
}

nav.scrolled {
  background: var(--bg-nav-scrolled);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, .06)
}
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
}


.nav-logo {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--green-deep);
  font-weight: 700;
  letter-spacing: -.5px
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
  
}


.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s;
  position: relative;
  font-family: var(--font-headline);
}

.nav-links a:hover {
  color: var(--green-mid);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--green-mid);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-mid);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  font-family: var(--font-headline)
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 58, 45, .3)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}


.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--green-deep);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  background: linear-gradient(170deg, var(--green-pale) 0%, var(--cream) 55%, var(--amber-light) 100%);
  overflow: hidden
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  pointer-events: none
}

.hero-blob1 {
  width: 420px;
  height: 420px;
  background: var(--green-light);
  top: -120px;
  left: -100px
}

.hero-blob2 {
  width: 300px;
  height: 300px;
  background: var(--amber);
  bottom: -80px;
  right: -60px
}

.hero-blob3 {
  width: 180px;
  height: 180px;
  background: var(--green-mid);
  bottom: 30%;
  left: 10%
}

.hero-badge {
  display: inline-block;
  background: var(--green-deep);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--font-hand);
  font-size: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards
}

.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(36px, 6.5vw, 62px);
  line-height: 1.12;
  color: var(--green-deep);
  max-width: 750px;
  opacity: 0;
  animation: fadeUp .9s .35s forwards
}

.hero h1 em {
  font-style: italic;
  color: var(--green-mid)
}

.hero-sub {
  font-family: var(--font-headline);
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 18px auto 0;
  opacity: 0;
  animation: fadeUp .9s .5s forwards
}

.hero-hand {
  font-family: var(--font-hand);
  font-size: clamp(19px, 2.8vw, 24px);
  color: var(--green-mid);
  margin: 14px auto 0;
  opacity: 0;
  animation: fadeUp .9s .6s forwards
}
h6 {
    font-weight: 400;   /* normal weight */
}

.hero-cta-wrap {
  margin-top: 38px;
  margin-bottom: 7px;
  opacity: 0;
  animation: fadeUp .9s .72s forwards
}
.hero-cta-wrap h6{

   font-size: 17px;

}

.btn-primary {
  display: inline-block;
  background: var(--green-deep);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 24px rgba(27, 58, 45, .25);
  font-family: var(--font-headline)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(27, 58, 45, .35)
}

/* Hero Image - CONSISTENT ACROSS ALL DEVICES */
.hero-image-container {
  margin-top: 52px;
  opacity: 0;
  animation: fadeUp .9s .9s forwards;
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(27, 58, 45, 0.15);
  object-fit: cover;
  display: block;
}

.hero-image1 {
  width: 50%;
  max-width: 600px;   /* prevents it from getting too big */
  min-width: 260px;   /* prevents it from getting too small */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(27, 58, 45, 0.15);
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-image1 {
    width: 100%;   /* larger on phones */
  }
}

/* seed pills */
.seed-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp .9s 1s forwards;
  flex-wrap: wrap
}

.seed-pill {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(27, 58, 45, .08);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-headline)
}

.seed-dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%
}

/* ─── BRAND REVEAL ─── */
.brand-reveal {
  background: var(--green-deep);
  color: #fff;
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.brand-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg '%3E%3Ccircle cx='40' cy='40' r='2' fill='%23ffffff' fill-opacity='.06'/%3E%3C/svg%3E") repeat;
  pointer-events: none
}

.brand-reveal h2 {
  font-family: var(--font-hand);
  font-size: clamp(55px, 7vw, 52px);
  position: relative;
  z-index: 1
}

.brand-reveal p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, .78);
  max-width: 500px;
  margin: 14px auto 0;
  position: relative;
  z-index: 1;
  font-family: var(--font-headline)
}

.brand-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.brand-pill {
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .4px;
  font-family: var(--font-headline)
}

/* ─── PROBLEM ─── */
.problem {
  padding: 100px 24px;
  background: var(--bg-section-alt)
}

.problem-inner {
  max-width: 860px;
  margin: 0 auto
}

.section-label {
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--green-mid);
  margin-bottom: 10px
}

.problem h2 {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4.5vw, 40px);
  color: var(--green-deep);
  line-height: 1.2
}

.problem-intro {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 16px 0 48px;
  font-family: var(--font-headline)
}

/* CONSISTENT 2-COLUMN GRID ON ALL DEVICES */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .07)
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px
}

.card-sugar::before {
  background: linear-gradient(90deg, var(--coral), #f07050)
}

.card-expensive::before {
  background: linear-gradient(90deg, var(--amber), #f0c060)
}

.problem-card h3 {
  font-family: var(--font-headline);
  font-size: 19px;
  color: var(--text-main);
  margin-bottom: 16px
}

.problem-card ul {
  list-style: none
}

.problem-card ul li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid #f0ece6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-headline)
}

.problem-card ul li:last-child {
  border-bottom: none
}

.li-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff
}

.li-icon.red {
  background: var(--coral)
}

.li-icon.amber {
  background: var(--amber)
}

/* ─── SOLUTION ─── */
.solution {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-body) 0%, var(--green-pale) 100%)
}

.solution-inner {
  max-width: 900px;
  margin: 0 auto
}

.solution h2 {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--green-deep);
  line-height: 1.2
}

.solution-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 14px 0 48px;
  font-family: var(--font-headline)
}

.diff-heading {
  font-family: var(--font-headline);
  font-size: 21px;
  color: var(--green-deep);
  margin-bottom: 24px
}

/* CONSISTENT 2-COLUMN GRID ON ALL DEVICES */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 60px
}

.diff-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow .3s
}

.diff-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06)
}

.diff-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.diff-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--green-mid);
  stroke-width: 3;
  fill: none
}

.diff-item span {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.45;
  font-family: var(--font-headline)
}

.solution-image-wrap {
  position: relative;
  max-width: 520px;
  margin: auto;
  overflow: hidden;
}

.solution-image {
  display: none;
  width: 100%;
  border-radius: 14px;
}

.solution-image.active {
  display: block;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }





/* PRICE BLOCK */
.price-block {
  background: var(--green-deep);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.price-block::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
  bottom: -60px;
  right: -40px
}

.price-label {
  font-family: var(--font-hand);
  font-size: 22px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 4px
}

.price-big {
  font-family: "Roca 2";
  font-size: 60px;
  color: #fff;
  line-height: 1
}

.price-line {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  max-width: 480px;
  margin: 18px auto 0;
  line-height: 1.6;
  font-family: var(--font-headline)
}

.price-line strong {
  color: rgba(255, 255, 255, .9)
}

.coming-soon {
  font-family: var(--font-headline);
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  margin-top: 24px;
  font-style: italic
}

/* ─── PRODUCT PEEK ─── */
.product {
  padding: 100px 24px;
  background: var(--bg-section-alt)
}

.product-inner {
  max-width: 900px;
  margin: 0 auto
}

.product h2 {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--green-deep)
}

.product-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin: 8px 0 48px;
  font-family: var(--font-headline)
}

/* CONSISTENT 2-COLUMN LAYOUT ON ALL DEVICES */
.product-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--green-pale) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0
}

.product-visual {
  padding: 0;
  background: linear-gradient(145deg, var(--green-pale), #c9e8d6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.product-visual:hover img {
  transform: scale(1.05);
}

.product-details {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.product-details h3 {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 10px
}

.product-details p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  font-family: var(--font-headline)
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  min-width: 0; /* Prevents overflow issues */
  overflow-wrap: break-word; /* Allows text to wrap */
}

.stat-val {
  font-family: var(--font-headline);
  font-size: 12px;
  color: var(--green-deep);
  font-weight: 600
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px;
  font-family: var(--font-headline)
}

.stat-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
  font-family: var(--font-headline)
}

.product-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-headline)
}

/* ─── WHY SWIGGLE ─── */
.why {
  padding: 100px 24px;
  background: var(--cream)
}

.why-inner {
  max-width: 900px;
  margin: 0 auto
}

.why h2 {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--green-deep)
}

.why-sub {
  font-size: 17px;
  color: var(--text-mid);
  margin: 10px 0 52px;
  max-width: 580px;
  font-family: var(--font-headline)
}

/* CONSISTENT 2-COLUMN GRID ON ALL DEVICES */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .07)
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px
}

.icon-green {
  background: var(--green-pale)
}

.icon-amber {
  background: var(--amber-light)
}

.why-card h3 {
  font-family: var(--font-headline);
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 10px
}

.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  font-family: var(--font-headline)
}

/* Why section image - CONSISTENT ACROSS ALL DEVICES */
.why-image-wrap {
  margin: 40px 0 52px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
}

.why-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

/* ─── SIGNUP ─── */
.signup {
  padding: 100px 24px;
  background: linear-gradient(160deg, var(--bg-body) 0%, var(--green-pale) 100%);
  position: relative
}

.signup-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1
}

.signup h2 {
  font-family: var(--font-headline);
  font-size: clamp(28px, 5vw, 40px);
  color: var(--green-deep)
}

.signup-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin: 10px 0 36px
}

.signup-hand {
  font-family: var(--font-hand);
  font-size: 20px;
  color: var(--green-mid);
  margin-bottom: 8px
}

.signup-form {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .08)
}

/* CONSISTENT 2-COLUMN FORM ON ALL DEVICES */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted)
}

.form-group input {
  padding: 13px 16px;
  border: 1.5px solid var(--border-input);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
  background: var(--bg-input);
  width: 100%;
}

.form-group input:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(78, 107, 79, .12);
  background: var(--bg-input-focus)
}

.form-group input::placeholder {
  color: #bbb
}

.form-group.optional label::after {
  content: ' (optional)';
  font-weight: 400;
  color: #aaa
}

.btn-signup {
  width: 100%;
  background: var(--green-deep);
  color: #fff;
  padding: 16px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(27, 58, 45, .25)
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 58, 45, .35)
}

.trust-line {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px
}

.trust-line span {
  color: var(--green-mid)
}

/* ─── CONFIRMATION MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto
}

.modal {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 52px 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  transform: scale(.9);
  transition: transform .3s;
  position: relative;
}

.modal-overlay.show .modal {
  transform: scale(1)
}

.modal-emoji {
  font-size: 48px;
  margin-bottom: 16px
}

.modal h3 {
  font-family: var(--font-headline);
  font-size: 26px;
  color: var(--green-deep);
  margin-bottom: 8px
}

.modal p {
  font-size: 15px;
  color: var(--text-muted);
  font-family: var(--font-headline)
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: var(--text-light);
  background: none;
  line-height: 1;
  cursor: pointer;
}

/* ─── FOUNDER NOTE ─── */
.founder {
  padding: 100px 24px;
  background: var(--bg-section-alt)
}

.founder-inner {
  max-width: 680px;
  margin: 0 auto
}

.founder-label {
  font-family: var(--font-hand);
  font-size: 20px;
  color: var(--green-mid);
  margin-bottom: 6px
}

.founder h2 {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.8vw, 32px);
  color: var(--green-deep);
  margin-bottom: 28px
}

.founder-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  font-family: var(--font-headline)
}

.founder-text p {
  margin-bottom: 18px
}

.founder-sig {
  margin-top: 32px
}

.founder-sig .sig-name {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--green-deep);
  font-weight: 700
}

.founder-sig .sig-role {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 2px;
  font-family: var(--font-headline)
}

/* Founder Image - CONSISTENT ACROSS ALL DEVICES */
.founder-image-wrap {
  margin: 40px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.founder-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ─── FAQ ─── */
.faq {
  padding: 100px 24px;
  background: var(--bg-body)
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto
}

.faq h2 {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--green-deep);
  margin-bottom: 40px;
  text-align: center
}

.faq-item {
  border-bottom: 1px solid var(--border-color)
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  text-align: left;
  gap: 16px;
  cursor: pointer;
}

.faq-btn h4 {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 400
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, background .3s
}

.faq-item.open .faq-icon {
  background: var(--green-deep);
  transform: rotate(45deg)
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--green-mid);
  stroke-width: 2.5;
  fill: none;
  transition: stroke .3s
}

.faq-item.open .faq-icon svg {
  stroke: #fff
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s
}

.faq-item.open .faq-body {
  max-height: 200px;
  padding-bottom: 18px
}

.faq-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: var(--font-headline)
}

/* ─── INVESTOR ─── */
.investor {
  padding: 80px 24px;
  background: var(--bg-section-investor);
  border-top: 1px solid var(--border-color)
}

.investor-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center
}

.investor-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-subtle);
  margin-bottom: 16px;
  font-family: var(--font-headline)
}

.investor h2 {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 14px
}

.investor p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  font-family: var(--font-headline)
}

.investor-cta {
  display: inline-block;
  margin-top: 24px;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid var(--green-mid);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  font-family: var(--font-headline)
}

.investor-cta:hover {
  color: var(--green-deep);
  border-color: var(--green-deep)
}

/* ─── FOOTER ─── */
footer {
  background: var(--green-deep);
  color: #fff;
  padding: 56px 24px 36px
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px
}

.footer-brand .foot-logo {
  font-family: var(--font-hand);
  font-size: 32px;
  font-weight: 700
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  max-width: 280px;
  margin-top: 10px;
  line-height: 1.6;
  font-family: var(--font-headline)
}

.footer-brand .foot-email {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: 2px;
  transition: color .2s;
  font-family: var(--font-headline)
}

.footer-brand .foot-email:hover {
  color: #fff
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .2s
}

.social-link:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px)
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  text-align: center;
  font-family: var(--font-headline)
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  margin-left: 10px;
}

.theme-toggle:hover {
  background: var(--green-pale);
  color: var(--green-deep);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--green-light);
}

.sun-icon {
  display: none;
}

.moon-icon {
  display: block;
}

[data-theme="dark"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: none;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ─── RESPONSIVE ─── */
/* ONLY TOUCHES: Navigation, minor spacing, and very small screens */
@media(max-width:768px) {
  /* Navigation becomes hamburger */
/* Show hamburger */

.hamburger {
    display: flex;
    margin-left: auto;
    cursor: pointer;
  }
  .nav-links li:last-child {
    display: none;
  }
  /* Full-width dropdown */
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    /* 👇 CHANGE THIS PART */
  background: rgba(250, 247, 242, 0.88); /* stronger opacity */
  backdrop-filter: blur(45px);
  -webkit-backdrop-filter: blur(45px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    flex-direction: column;
    align-items: flex-start;

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 28px;
    gap: 0;
  }

  /* Active dropdown */
  .nav-links.active {
    max-height: 400px;
    padding: 18px 28px;
  }

  /* Link styling */
  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

    .nav-toggle {
    display: block;
    margin-left: auto;
  }

  /* Smooth left hover shift */
  .nav-links a:hover {
    color: var(--green-mid);
    padding-left: 6px;
  }

  /* CTA Styling */


  /* Minor spacing adjustments only */
  .hero {
    padding: 90px 20px 50px;
  }

  .hero-image {
    border-radius: 20px;
  }

  .problem,
  .solution,
  .product,
  .why,
  .signup,
  .founder,
  .faq {
    padding: 80px 20px;
  }

  /* Images scale proportionally */
  .why-image {
    height: 350px;
  }

  .founder-image {
    height: 250px;
  }

  .solution-image {
    height: 300px;
  }

  /* Product card stacks only on very narrow */
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-visual {
    order: -1;
    min-height: 250px;
  }

  .product-details {
    padding: 32px 28px;
  }

  /* Form stacks on narrow */
  .form-row {
    grid-template-columns: 1fr;
  }

  .signup-form {
    padding: 28px 24px;
  }

  /* Footer stacks */
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .investor-inner {
    text-align: left;
  }
}

@media(max-width:480px) {
  nav {
    padding: 14px 18px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-image {
    border-radius: 16px;
  }

  .seed-row {
    gap: 8px;
  }

  /* Slightly smaller images on very small screens */
  .why-image {
    height: 280px;
  }

  .founder-image {
    height: 200px;
  }

  .solution-image {
    height: 220px;
  }

  .product-visual {
    min-height: 200px;
  }
}

/* Form container styles */
.form-header {
  text-align: center;
  padding: 36px 28px 20px;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.form-container iframe {
  width: 100%;
  height: 1200px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .form-header h2 {
    font-size: 22px;
  }

  .form-container iframe {
    height: 1200px;
  }
}