@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Space+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }

:root {
  --background: 42 43% 95%;
  --foreground: 156 37% 15%;
  --border: 142 22% 82%;
  --input: 142 22% 82%;
  --ring: 15 69% 57%;
  --card: 43 50% 97%;
  --card-foreground: 156 37% 15%;
  --card-border: 142 22% 82%;
  --primary: 155 42% 21%;
  --primary-foreground: 42 43% 95%;
  --secondary: 137 42% 86%;
  --secondary-foreground: 156 37% 15%;
  --muted: 42 30% 89%;
  --muted-foreground: 157 14% 41%;
  --accent: 15 69% 57%;
  --accent-foreground: 42 43% 95%;
  --destructive: 0 65% 46%;
  --destructive-foreground: 42 43% 95%;
  --app-font-sans: 'DM Sans', sans-serif;
  --app-font-serif: 'Fraunces', Georgia, serif;
  --app-font-mono: 'Space Mono', monospace;
  --radius: 1.1rem;
  --shadow-sm: 0 10px 30px hsl(153 26% 20% / 0.06);
  --shadow-md: 0 22px 60px hsl(153 26% 20% / 0.1);
}

.dark {
  --background: 156 37% 10%;
  --foreground: 42 43% 95%;
  --border: 156 20% 25%;
  --input: 156 20% 25%;
  --ring: 15 69% 57%;
  --card: 156 31% 14%;
  --card-foreground: 42 43% 95%;
  --card-border: 156 20% 25%;
  --primary: 137 42% 86%;
  --primary-foreground: 156 37% 10%;
  --secondary: 156 26% 21%;
  --secondary-foreground: 42 43% 95%;
  --muted: 156 25% 19%;
  --muted-foreground: 42 20% 72%;
  --accent: 15 69% 57%;
  --accent-foreground: 42 43% 95%;
}

* { border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--app-font-sans);
  margin: 0;
}
::selection { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }

.font-display { font-family: var(--app-font-serif); }
.font-mono-brand { font-family: var(--app-font-mono); }
.text-balance { text-wrap: balance; }

:root { color-scheme: light; }

.site-shell { overflow: hidden; position: relative; }
.site-shell::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: .055;
  pointer-events: none;
  position: fixed;
  z-index: 30;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.hero-float { animation: drift 7s ease-in-out infinite; }
.hero-float-slow { animation: drift 10s ease-in-out -2s infinite; }
@keyframes drift { 0%,100% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(0,-10px,0) rotate(1.2deg); } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.intro-rise { animation: rise .8s .15s both cubic-bezier(.2,.65,.3,1); }
.intro-rise-2 { animation: rise .8s .28s both cubic-bezier(.2,.65,.3,1); }
.intro-rise-3 { animation: rise .8s .42s both cubic-bezier(.2,.65,.3,1); }
.card-lift { transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease; }
.card-lift:hover { box-shadow: var(--shadow-md); transform: translateY(-7px); }
.button-shine { position: relative; overflow: hidden; }
.button-shine::after { background: hsl(42 43% 95% / .2); content: ""; height: 180%; left: -40%; position: absolute; top: -40%; transform: translateX(-120%) rotate(18deg); transition: transform .6s ease; width: 25%; }
.button-shine:hover::after { transform: translateX(520%) rotate(18deg); }
.qr-module { aspect-ratio: 1; background: hsl(43 50% 97%); display: grid; grid-template-columns: repeat(21, 1fr); gap: 2px; padding: 9px; }
.qr-module span { background: transparent; border-radius: 1px; }
.qr-module span.on { background: hsl(156 37% 15%); }
.qr-module .finder { background: hsl(156 37% 15%); padding: 3px; }
.qr-module .finder::after { background: hsl(43 50% 97%); content: ""; display: block; height: 100%; width: 100%; }
.qr-module .finder::before { background: hsl(156 37% 15%); content: ""; inset: 7px; position: absolute; }
.qr-module .finder { position: relative; }
.qr-module .finder::after { position: relative; z-index: 1; }
.orb { border-radius: 999px; filter: blur(1px); pointer-events: none; position: absolute; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.page-wrap { margin-inline: auto; max-width: 1240px; padding-inline: 48px; width: 100%; }
.site-header { background: hsl(42 43% 95% / .9); backdrop-filter: blur(15px); position: absolute; top: 0; width: 100%; z-index: 20; }
.header-inner { align-items: center; display: flex; justify-content: space-between; margin: auto; max-width: 1240px; min-height: 88px; padding: 0 48px; }
.brand-mark { align-items: center; color: hsl(var(--foreground)); display: inline-flex; gap: 9px; letter-spacing: -.04em; text-decoration: none; }
.brand-mark > span:last-child { display: flex; flex-direction: column; font-size: 15px; line-height: .88; }
.brand-mark strong { font-weight: 700; }
.brand-mark em { color: hsl(var(--accent)); font-family: var(--app-font-serif); font-size: 13px; font-style: italic; letter-spacing: -.02em; }
.brand-mark-leaf { align-items: center; background: hsl(var(--accent)); border-radius: 50%; color: hsl(var(--primary-foreground)); display: flex; height: 28px; justify-content: center; transform: rotate(-12deg); width: 28px; }
.brand-mark-light { color: hsl(var(--primary-foreground)); }
.main-nav { align-items: center; display: flex; gap: 30px; }
.main-nav > a:not(.play-button) { color: hsl(var(--foreground) / .7); font-size: 12px; font-weight: 600; text-decoration: none; transition: color .2s ease; }
.main-nav > a:not(.play-button):hover { color: hsl(var(--accent)); }
.play-button { align-items: center; background: hsl(var(--primary)); border-radius: 5px; color: hsl(var(--primary-foreground)); display: inline-flex; gap: 10px; min-height: 58px; padding: 9px 15px; text-decoration: none; transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.play-button:hover { background: hsl(155 42% 27%); box-shadow: 0 10px 26px hsl(155 42% 21% / .2); transform: translateY(-2px); }
.play-button small, .play-button b { display: block; text-align: left; }
.play-button small { font-size: 9px; letter-spacing: .01em; line-height: 1.1; opacity: .72; }
.play-button b { font-size: 14px; font-weight: 600; line-height: 1.15; }
.play-button > svg { margin-left: 5px; opacity: .8; }
.play-button-compact { border-radius: 4px; gap: 8px; min-height: 36px; padding: 6px 12px; }
.play-button-compact small { font-size: 7px; }
.play-button-compact b { font-size: 11px; }
.play-button-compact .play-symbol { height: 18px; width: 14px; }
.play-button-compact > svg { display: none; }
.play-symbol { height: 25px; position: relative; width: 18px; }
.play-symbol::before { border-bottom: 12px solid transparent; border-left: 18px solid hsl(var(--accent)); border-top: 12px solid transparent; content: ""; left: 0; position: absolute; top: 1px; }
.play-symbol span { background: hsl(var(--primary)); height: 10px; left: 2px; position: absolute; top: 7px; width: 4px; z-index: 1; }
.play-button-inverted { background: hsl(var(--accent)); color: hsl(var(--primary-foreground)); }
.play-button-inverted:hover { background: hsl(15 69% 64%); }
.play-button-inverted .play-symbol::before { border-left-color: hsl(var(--primary)); }
.play-button-inverted .play-symbol span { background: hsl(var(--accent)); }
.menu-toggle { background: none; border: 0; color: hsl(var(--foreground)); cursor: pointer; display: none; padding: 8px; }

.hero-section { background: hsl(var(--background)); min-height: 742px; padding-top: 155px; position: relative; }
.hero-grid { align-items: center; display: grid; gap: 45px; grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr); min-height: 510px; position: relative; z-index: 1; }
.hero-copy { padding-bottom: 26px; position: relative; z-index: 2; }
.eyebrow, .section-kicker { align-items: center; color: hsl(var(--accent)); display: flex; font-family: var(--app-font-mono); font-size: 10px; font-weight: 700; gap: 10px; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow-line { background: hsl(var(--accent)); display: inline-block; height: 1px; width: 26px; }
.hero-copy h1 { color: hsl(var(--primary)); font-size: clamp(3.45rem, 6.4vw, 6.5rem); letter-spacing: -.075em; line-height: .91; margin: 27px 0 25px; max-width: 690px; }
.hero-copy h1 span { color: hsl(var(--accent)); }
.hero-copy h1 i, .section-intro h2 em, .story-copy h2 em, .download-copy h2 em, .final-content h2 em { color: hsl(var(--accent)); font-style: italic; font-weight: 500; }
.hero-description { color: hsl(var(--muted-foreground)); font-size: 15px; line-height: 1.7; margin: 0 0 28px; max-width: 430px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 25px; }
.text-link, .underlined-link { align-items: center; color: hsl(var(--primary)); display: inline-flex; font-size: 12px; font-weight: 600; gap: 7px; text-decoration: none; }
.text-link { border-bottom: 1px solid hsl(var(--primary) / .27); padding-bottom: 4px; }
.text-link:hover, .underlined-link:hover { color: hsl(var(--accent)); }
.hero-note { align-items: center; color: hsl(var(--muted-foreground)); display: flex; font-family: var(--app-font-mono); font-size: 9px; gap: 8px; letter-spacing: .02em; margin-top: 31px; }
.note-dot { background: hsl(var(--accent)); border-radius: 50%; height: 6px; width: 6px; }
.hero-art-wrap { min-height: 445px; position: relative; }
.hero-art-backdrop { background: hsl(var(--secondary)); border-radius: 45% 55% 42% 58% / 44% 41% 59% 56%; bottom: 7%; height: 84%; position: absolute; right: 2%; transform: rotate(8deg); width: 86%; }
.hero-art-backdrop::after { border: 1px solid hsl(var(--primary) / .15); border-radius: inherit; content: ""; inset: 16px; position: absolute; transform: rotate(-4deg); }
.hero-art-card { background: hsl(var(--primary)); border: 9px solid hsl(var(--primary)); border-radius: 48% 12% 49% 15% / 13% 43% 12% 43%; box-shadow: var(--shadow-md); height: min(430px, 32vw); min-height: 330px; overflow: hidden; position: absolute; right: 11%; top: 2%; transform: rotate(4deg); width: min(410px, 31vw); }
.hero-art-card img { height: 100%; object-fit: cover; width: 100%; }
.hero-stamp { align-items: center; background: hsl(var(--accent)); border: 5px solid hsl(var(--background)); border-radius: 50%; color: hsl(var(--primary-foreground)); display: flex; flex-direction: column; height: 115px; justify-content: center; left: 2%; position: absolute; text-align: center; top: 10%; transform: rotate(-13deg); width: 115px; z-index: 3; }
.hero-stamp span { font-family: var(--app-font-serif); font-size: 28px; line-height: 1; }
.hero-stamp small { font-family: var(--app-font-mono); font-size: 7px; letter-spacing: .1em; line-height: 1.3; margin-top: 6px; }
.hero-art-caption { align-items: center; background: hsl(var(--background)); border-radius: 2px; bottom: 7%; box-shadow: 0 8px 25px hsl(var(--primary) / .12); color: hsl(var(--primary)); display: flex; gap: 10px; left: 3%; padding: 13px 17px; position: absolute; transform: rotate(-4deg); z-index: 3; }
.hero-art-caption svg { color: hsl(var(--accent)); }
.hero-art-caption span { font-family: var(--app-font-mono); font-size: 8px; letter-spacing: .03em; line-height: 1.45; text-transform: uppercase; }
.hero-art-caption b { font-family: var(--app-font-serif); font-size: 14px; letter-spacing: -.04em; text-transform: none; }
.hero-orbit-one { background: hsl(137 42% 86% / .6); height: 180px; right: -50px; top: 80px; width: 180px; }
.hero-orbit-two { background: hsl(15 69% 57% / .14); bottom: 30px; height: 120px; left: -42px; width: 120px; }
.hero-bottom { align-items: center; color: hsl(var(--muted-foreground)); display: flex; font-size: 9px; gap: 15px; letter-spacing: .05em; padding-bottom: 26px; position: relative; z-index: 1; }
.hero-bottom > span:last-child { align-items: center; display: flex; gap: 5px; }
.hero-scroll-line { background: hsl(var(--border)); flex: 0 1 90px; height: 1px; }

.ticker-section { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); overflow: hidden; padding: 18px 0; }
.ticker-track { align-items: center; animation: ticker 30s linear infinite; display: flex; font-family: var(--app-font-mono); font-size: 10px; gap: 34px; letter-spacing: .1em; min-width: max-content; white-space: nowrap; }
.ticker-track i { color: hsl(var(--accent)); display: flex; }
@keyframes ticker { to { transform: translateX(-50%); } }

.promise-section { padding-bottom: 155px; padding-top: 145px; }
.section-intro { display: grid; grid-template-columns: 1.05fr .8fr; grid-template-rows: auto 1fr; column-gap: 100px; }
.section-intro .section-kicker { grid-column: 1 / -1; margin-bottom: 26px; }
.section-kicker svg { color: hsl(var(--accent)); }
.section-intro h2 { color: hsl(var(--primary)); font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: -.065em; line-height: .94; margin: 0; }
.section-intro > p { align-self: end; color: hsl(var(--muted-foreground)); font-size: 14px; line-height: 1.7; margin: 0 0 5px; max-width: 325px; }
.feature-grid { display: grid; gap: 15px; grid-template-columns: 1.08fr .92fr 1.08fr .92fr; margin-top: 80px; }
.feature-grid > div:nth-child(2), .feature-grid > div:nth-child(4) { padding-top: 44px; }
.feature-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 8px; display: flex; flex-direction: column; min-height: 276px; padding: 25px 25px 23px; position: relative; }
.feature-card-2, .feature-card-4 { background: hsl(var(--secondary)); border-color: transparent; }
.feature-top { align-items: flex-start; color: hsl(var(--accent)); display: flex; justify-content: space-between; }
.feature-number { color: hsl(var(--muted-foreground)); font-size: 10px; letter-spacing: .06em; }
.feature-card h3 { color: hsl(var(--primary)); font-size: 28px; letter-spacing: -.055em; line-height: .98; margin: auto 0 14px; max-width: 190px; }
.feature-card p { color: hsl(var(--muted-foreground)); font-size: 12px; line-height: 1.55; margin: 0; max-width: 190px; }
.feature-arrow { align-items: center; border: 1px solid hsl(var(--border)); border-radius: 50%; bottom: 20px; color: hsl(var(--primary)); display: flex; height: 31px; justify-content: center; position: absolute; right: 21px; transition: background-color .25s ease, color .25s ease, transform .25s ease; width: 31px; }
.feature-card:hover .feature-arrow { background: hsl(var(--accent)); border-color: hsl(var(--accent)); color: hsl(var(--accent-foreground)); transform: rotate(45deg); }

.story-section { background: hsl(var(--secondary)); padding: 105px 0 115px; }
.story-grid { align-items: center; display: grid; gap: clamp(55px, 10vw, 150px); grid-template-columns: minmax(320px, .95fr) minmax(280px, .72fr); }
.story-photo { position: relative; }
.story-photo-inner { background: hsl(103 29% 73%); border-radius: 5px 52px 5px 52px; height: 470px; overflow: hidden; position: relative; }
.story-photo-inner::after { background: linear-gradient(125deg, transparent 35%, hsl(43 43% 95% / .13)); content: ""; inset: 0; position: absolute; }
.story-sun { background: hsl(35 74% 76%); border-radius: 50%; height: 100px; position: absolute; right: 14%; top: 12%; width: 100px; }
.story-field { border-radius: 50% 50% 0 0; bottom: -10%; left: -10%; position: absolute; transform: rotate(-6deg); width: 130%; }
.field-back { background: hsl(135 22% 45%); height: 38%; }
.field-mid { background: hsl(113 28% 31%); bottom: -15%; height: 32%; transform: rotate(9deg); }
.field-front { background: hsl(154 36% 18%); bottom: -19%; height: 25%; transform: rotate(-4deg); }
.story-worker { bottom: 27%; height: 45%; left: 44%; position: absolute; transform: rotate(6deg); width: 15%; z-index: 1; }
.story-worker::before { background: hsl(15 69% 57%); border-radius: 50%; content: ""; height: 20%; left: 34%; position: absolute; top: 0; width: 32%; }
.story-worker span { background: hsl(43 35% 84%); border-radius: 48% 48% 12% 12%; display: block; height: 60%; left: 17%; position: absolute; top: 17%; width: 68%; }
.story-worker span:nth-child(2) { background: hsl(15 46% 35%); height: 55%; left: -28%; top: 49%; transform: rotate(48deg); width: 14%; }
.story-worker span:nth-child(3) { background: hsl(15 46% 35%); height: 55%; left: 108%; top: 49%; transform: rotate(-40deg); width: 14%; }
.story-coordinate { color: hsl(var(--primary-foreground) / .66); font-size: 9px; left: 23px; letter-spacing: .08em; line-height: 1.6; position: absolute; top: 23px; z-index: 2; }
.photo-caption { align-items: flex-start; background: hsl(var(--background)); bottom: -22px; box-shadow: var(--shadow-sm); display: flex; gap: 26px; left: 34px; padding: 17px 20px; position: absolute; width: 190px; }
.photo-caption span:first-child { color: hsl(var(--accent)); font-family: var(--app-font-mono); font-size: 10px; }
.photo-caption span:last-child { color: hsl(var(--primary)); font-family: var(--app-font-serif); font-size: 14px; line-height: 1.1; }
.story-copy .section-kicker { margin-bottom: 27px; }
.story-copy h2 { color: hsl(var(--primary)); font-size: clamp(3.2rem, 5.5vw, 5.6rem); letter-spacing: -.075em; line-height: .88; margin: 0 0 29px; }
.story-copy > p { color: hsl(var(--muted-foreground)); font-size: 14px; line-height: 1.75; margin: 0 0 34px; max-width: 370px; }
.promise-list { border-top: 1px solid hsl(var(--primary) / .16); display: grid; gap: 16px; margin-bottom: 34px; max-width: 390px; padding-top: 19px; }
.promise-list > div { align-items: center; display: grid; grid-template-columns: 30px 1fr; column-gap: 10px; }
.promise-list span { align-items: center; background: hsl(var(--accent)); border-radius: 50%; color: hsl(var(--accent-foreground)); display: flex; height: 25px; justify-content: center; grid-row: span 2; width: 25px; }
.promise-list b { color: hsl(var(--primary)); font-size: 12px; font-weight: 700; }
.promise-list small { color: hsl(var(--muted-foreground)); font-size: 10px; }
.underlined-link { border-bottom: 1px solid hsl(var(--primary) / .3); padding-bottom: 6px; }

.download-section { padding-bottom: 135px; padding-top: 135px; }
.download-panel { align-items: center; background: hsl(var(--primary)); border-radius: 6px; color: hsl(var(--primary-foreground)); display: grid; grid-template-columns: 1fr 250px; min-height: 365px; overflow: hidden; padding: 57px 90px; position: relative; }
.download-copy { position: relative; z-index: 1; }
.section-kicker-light { color: hsl(var(--accent)); }
.download-copy h2 { color: hsl(var(--primary-foreground)); font-size: clamp(2.8rem, 5vw, 4.8rem); letter-spacing: -.07em; line-height: .9; margin: 24px 0 24px; }
.download-copy p { color: hsl(var(--primary-foreground) / .68); font-size: 13px; line-height: 1.65; margin: 0; max-width: 360px; }
.download-meta { align-items: center; color: hsl(var(--primary-foreground) / .55); display: flex; font-family: var(--app-font-mono); font-size: 9px; gap: 8px; margin-top: 24px; }
.download-meta svg { color: hsl(var(--accent)); }
.download-qr-wrap { justify-self: end; position: relative; text-align: center; z-index: 2; }
.qr-link { background: hsl(var(--accent)); border-radius: 4px; display: block; padding: 13px; position: relative; text-decoration: none; transition: transform .3s ease, box-shadow .3s ease; width: 182px; }
.qr-link:hover { box-shadow: 0 12px 28px hsl(0 0% 0% / .22); transform: rotate(2deg) scale(1.03); }
.qr-link small { color: hsl(var(--primary-foreground) / .65); display: block; font-family: var(--app-font-mono); font-size: 8px; margin-top: 10px; }
.qr-scan-label { align-items: center; color: hsl(var(--primary)); display: flex; font-family: var(--app-font-mono); font-size: 8px; gap: 4px; justify-content: center; margin-top: 10px; text-transform: uppercase; }
.download-qr-wrap > small { color: hsl(var(--primary-foreground) / .42); display: block; font-family: var(--app-font-mono); font-size: 8px; margin-top: 13px; }
.qr-corner { border-color: hsl(var(--primary)); border-style: solid; height: 12px; position: absolute; width: 12px; }
.qr-corner-one { border-width: 2px 0 0 2px; left: 8px; top: 8px; }
.qr-corner-two { border-width: 0 2px 2px 0; bottom: 36px; right: 8px; }
.download-leaf { color: hsl(137 42% 86% / .1); position: absolute; }
.leaf-one { bottom: -29px; left: 41%; transform: rotate(18deg); }
.leaf-two { right: 5%; top: -8px; transform: rotate(-35deg); }

.final-section { background: hsl(var(--accent)); color: hsl(var(--primary-foreground)); min-height: 565px; overflow: hidden; padding: 105px 20px 72px; position: relative; text-align: center; }
.final-section::before, .final-section::after { border: 1px solid hsl(var(--primary) / .12); border-radius: 50%; content: ""; height: 530px; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 530px; }
.final-section::after { height: 700px; width: 700px; }
.final-content { align-items: center; display: flex; flex-direction: column; position: relative; z-index: 1; }
.final-content .section-kicker { color: hsl(var(--primary) / .57); }
.final-content .section-kicker svg { color: hsl(var(--primary) / .65); }
.final-content h2 { color: hsl(var(--primary)); font-size: clamp(3.5rem, 7vw, 6.8rem); letter-spacing: -.08em; line-height: .88; margin: 25px 0 23px; }
.final-content h2 em { color: hsl(var(--background)); }
.final-content > p { color: hsl(var(--primary) / .7); font-size: 14px; margin: 0 0 28px; }
.final-signoff { align-items: center; color: hsl(var(--primary) / .55); display: flex; font-family: var(--app-font-mono); font-size: 9px; gap: 14px; margin-top: 54px; text-transform: uppercase; }
.signoff-rule { background: hsl(var(--primary) / .25); display: block; height: 1px; width: 55px; }
.final-spark { color: hsl(var(--primary) / .23); position: absolute; z-index: 1; }
.spark-one { left: 13%; top: 28%; }
.spark-two { bottom: 25%; right: 14%; }
.site-footer { background: hsl(var(--primary)); color: hsl(var(--primary-foreground) / .56); padding: 28px 0; }
.footer-inner { align-items: center; display: flex; justify-content: space-between; }
.footer-inner > span { font-size: 10px; }
.footer-inner > span:last-child { font-size: 8px; letter-spacing: .04em; }

@media (max-width: 900px) {
  .page-wrap, .header-inner { padding-inline: 30px; }
  .hero-grid { grid-template-columns: .9fr 1fr; gap: 15px; }
  .hero-copy h1 { font-size: clamp(3rem, 6.7vw, 5rem); }
  .hero-art-card { right: 2%; width: min(370px, 40vw); }
  .hero-stamp { left: -4%; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid > div:nth-child(2), .feature-grid > div:nth-child(4) { padding-top: 0; }
  .download-panel { padding-inline: 55px; }
}
@media (max-width: 680px) {
  .page-wrap, .header-inner { padding-inline: 20px; }
  .site-header { position: absolute; }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; z-index: 4; }
  .main-nav { align-items: stretch; background: hsl(var(--background)); box-shadow: 0 18px 35px hsl(var(--primary) / .12); display: flex; flex-direction: column; gap: 0; left: 12px; opacity: 0; padding: 12px; pointer-events: none; position: absolute; right: 12px; top: 67px; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.play-button) { border-bottom: 1px solid hsl(var(--border)); padding: 15px 10px; }
  .main-nav .play-button { margin: 12px 0 1px; }
  .hero-section { min-height: auto; padding-top: 125px; }
  .hero-grid { display: flex; flex-direction: column; gap: 20px; min-height: 0; }
  .hero-copy { padding-bottom: 0; }
  .hero-copy h1 { font-size: clamp(3.35rem, 15vw, 5rem); margin-top: 23px; }
  .hero-description { font-size: 14px; max-width: 390px; }
  .hero-art-wrap { min-height: 365px; width: 100%; }
  .hero-art-card { height: 330px; right: 8%; width: 75%; }
  .hero-stamp { height: 93px; left: 1%; top: 12%; width: 93px; }
  .hero-stamp span { font-size: 23px; }
  .hero-art-caption { bottom: 6%; left: 0; }
  .hero-bottom { padding-bottom: 19px; }
  .hero-bottom .hero-scroll-line { flex-basis: 45px; }
  .promise-section { padding-bottom: 92px; padding-top: 91px; }
  .section-intro { display: block; }
  .section-intro h2 { font-size: 3.55rem; margin: 24px 0; }
  .section-intro > p { max-width: 390px; }
  .feature-grid { gap: 12px; grid-template-columns: 1fr 1fr; margin-top: 47px; }
  .feature-card { min-height: 245px; padding: 18px; }
  .feature-card h3 { font-size: 23px; margin-top: 30px; }
  .feature-card p { font-size: 11px; }
  .feature-arrow { bottom: 16px; right: 14px; }
  .story-section { padding: 77px 0 89px; }
  .story-grid { display: flex; flex-direction: column; gap: 78px; }
  .story-photo { width: calc(100% - 16px); }
  .story-photo-inner { height: 375px; }
  .story-copy { align-self: flex-start; }
  .story-copy h2 { font-size: 4.1rem; }
  .download-section { padding-bottom: 90px; padding-top: 90px; }
  .download-panel { display: flex; flex-direction: column; gap: 38px; padding: 43px 28px 50px; }
  .download-copy h2 { font-size: 3.45rem; }
  .download-copy p { font-size: 13px; }
  .download-qr-wrap { align-self: flex-start; margin-left: 20px; }
  .final-section { min-height: 510px; padding-top: 87px; }
  .final-content h2 { font-size: 4rem; }
  .final-signoff { margin-top: 44px; }
  .site-footer { padding: 25px 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 17px; }
}
@media (max-width: 390px) {
  .hero-copy h1 { font-size: 3.1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .feature-card { min-height: 260px; }
  .feature-card h3 { font-size: 21px; }
  .story-copy h2, .final-content h2 { font-size: 3.45rem; }
}
/* =========================================================
   Customizations:
   1) Bigger logo (brand mark)
   2) Bigger Google Play buttons (all instances)
   3) Home page hero Play Store button — centered & wide
   ========================================================= */

/* --- 1) Bigger logo --- */
.brand-mark { gap: 12px; }
.brand-mark-leaf {
  height: 40px;
  width: 40px;
}
.brand-mark-leaf svg { width: 22px; height: 22px; }
.brand-mark > span:last-child { font-size: 20px; }
.brand-mark em { font-size: 16px; }

/* --- 2) Bigger Google Play buttons (base style used everywhere) --- */
.play-button {
  border-radius: 8px;
  gap: 14px;
  min-height: 72px;
  padding: 14px 26px;
}
.play-button small { font-size: 11px; }
.play-button b { font-size: 19px; }
.play-button .play-symbol { height: 34px; width: 24px; }
.play-button .play-symbol::before { border-bottom-width: 16px; border-left-width: 24px; border-top-width: 16px; top: 1px; }
.play-button .play-symbol span { height: 13px; left: 3px; top: 10px; width: 5px; }
.play-button > svg { width: 20px; height: 20px; margin-left: 6px; }

/* Compact variant (header nav) stays smaller but scaled up a bit too */
.play-button-compact {
  min-height: 44px;
  padding: 8px 16px;
}
.play-button-compact small { font-size: 8px; }
.play-button-compact b { font-size: 13px; }
.play-button-compact .play-symbol { height: 21px; width: 16px; }

/* --- 3) Home page hero Play Store button: centered & wide --- */
.hero-actions {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  width: 100%;
}
.play-button-hero {
  width: 100%;
  max-width: 480px;
  justify-content: center;
  min-height: 84px;
  padding: 18px 32px;
  font-size: 1.05em;
}
.play-button-hero b { font-size: 22px; }
.play-button-hero small { font-size: 12px; }
.play-button-hero .play-symbol { height: 38px; width: 27px; }
.play-button-hero .play-symbol::before { border-bottom-width: 18px; border-left-width: 27px; border-top-width: 18px; }
.play-button-hero .play-symbol span { height: 15px; left: 3px; top: 11px; width: 6px; }
.play-button-hero > svg { width: 22px; height: 22px; }

@media (max-width: 680px) {
  .play-button-hero { max-width: 100%; }
}

/* =========================================================
   Real logo + Google Play icon images (replace drawn placeholders)
   ========================================================= */

/* Header / footer logo image */
.brand-logo-img {
  display: block;
  height: 65px;
  width: auto;
}
.site-footer .brand-logo-img {
  height: 40px;
}

/* Light chip behind the logo in the footer so it stays legible
   against the dark green footer background */
.footer-logo-chip {
  align-items: center;
  background: hsl(42 43% 95%);
  border-radius: 10px;
  display: inline-flex;
  padding: 8px 14px;
}

/* Google Play triangle icon (replaces the hand-drawn play symbol) */
.play-icon-img {
  display: block;
  height: 42px;
  width: auto;
}
.play-button-compact .play-icon-img {
  height: 22px;
}
.play-button-hero .play-icon-img {
  height: 40px;
}

@media (max-width: 680px) {
  .brand-logo-img { height: 36px; }
}
