:root {
  --navy: #052b59;
  --navy-deep: #031d3d;
  --green: #178b22;
  --green-bright: #55ba18;
  --green-soft: #eaf8e6;
  --sky: #edf8ff;
  --cream: #fbfaf5;
  --ink: #0a2747;
  --muted: #607086;
  --white: #fff;
  --shadow: 0 24px 70px rgba(3, 37, 74, 0.13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 105px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.menu-open { overflow: hidden; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 16px;
  border-radius: 10px; color: white; background: var(--navy);
}
.skip-link:focus { top: 16px; }
:focus-visible {
  outline: 3px solid #f3b700;
  outline-offset: 4px;
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent; transition: 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.94); border-color: #e7efe9;
  box-shadow: 0 8px 30px rgba(5,43,89,.06); backdrop-filter: blur(16px);
}
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font: 800 24px/1 Inter, ui-sans-serif, sans-serif; }
.brand img { width: 48px; height: 48px; border-radius: 13px; object-fit: cover; }
.brand span b { color: var(--green); }
nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
nav a { transition: color .2s; }
nav a:hover { color: var(--green); }
nav a.active:not(.nav-cta) { color: var(--green); }
nav a.active:not(.nav-cta)::after { content: ""; display: block; width: 18px; height: 2px; margin: 5px auto -7px; border-radius: 2px; background: var(--green); }
.nav-cta {
  padding: 11px 20px; color: white; background: var(--navy); border-radius: 999px;
}
nav .nav-cta:hover { color: white; background: var(--green); }
.menu-toggle { display: none; padding: 6px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--navy); }
.menu-toggle > span:not(.sr-only) { transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative; min-height: 830px; padding: 150px 0 100px; overflow: hidden;
  background: linear-gradient(125deg, #fff 0%, #f8fcf7 48%, #e5f5ff 100%);
}
.hero::before {
  content: ""; position: absolute; right: -6%; bottom: 4%; width: 64%; height: 72%;
  opacity: .17; background: radial-gradient(ellipse at 50% 100%, #0f8e2c 0 18%, transparent 19%),
    radial-gradient(ellipse at 70% 100%, #2c9c43 0 26%, transparent 27%);
  filter: blur(2px);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { width: 460px; height: 460px; right: 4%; top: 13%; background: rgba(62, 187, 239, .18); }
.hero-glow-two { width: 250px; height: 250px; right: 42%; bottom: 6%; background: rgba(109, 207, 65, .16); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 44px; }
.eyebrow {
  margin: 0 0 20px; color: var(--green); font-size: 12px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 26px; height: 2px; margin: 0 9px 3px 0; background: currentColor; }
h1, h2 { margin: 0; font-family: Inter, ui-sans-serif, sans-serif; letter-spacing: -.045em; line-height: 1.08; }
h1 { max-width: 650px; font-size: clamp(48px, 5.2vw, 75px); }
h1 em, h2 em { color: var(--green); font-style: italic; }
.hero-lead { max-width: 580px; margin: 27px 0 30px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 23px; border: 1px solid transparent;
  border-radius: 15px; font-size: 14px; font-weight: 800; transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.button-primary { color: white; background: linear-gradient(135deg, var(--green), #39a71e); box-shadow: 0 14px 28px rgba(23,139,34,.2); }
.button-secondary { border-color: #d7e0e8; background: rgba(255,255,255,.7); }
.hero-trust { display: flex; align-items: center; gap: 15px; margin-top: 35px; }
.hero-trust p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.hero-trust strong { color: var(--ink); font-size: 13px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  display: grid; place-items: center; width: 35px; height: 35px; margin-left: -7px;
  border: 3px solid white; border-radius: 50%; color: white; background: var(--navy);
  font-size: 10px; font-weight: 800;
}
.avatar-stack span:first-child { margin-left: 0; background: var(--green); }
.avatar-stack span:last-child { background: #62bc1d; }
.hero-visual { position: relative; min-height: 570px; }
.phone {
  position: absolute; z-index: 3; top: 6px; left: 23%; width: 265px; height: 540px;
  padding: 10px; border: 6px solid #111a20; border-radius: 42px; overflow: hidden;
  background: #111a20; box-shadow: 0 35px 60px rgba(4,30,57,.25); transform: rotate(3deg);
}
.phone img { width: 100%; height: 100%; border-radius: 29px; object-fit: cover; object-position: 50% 20%; }
.phone-speaker { position: absolute; z-index: 2; top: 11px; left: 50%; width: 86px; height: 22px; border-radius: 0 0 16px 16px; background: #111a20; transform: translateX(-50%); }
.hero-basket { position: absolute; z-index: 4; right: -11%; bottom: -10px; width: 470px; filter: drop-shadow(0 28px 25px rgba(4,45,36,.19)); }
.sun-orbit { position: absolute; right: 2%; top: 4%; width: 440px; height: 440px; border: 1px dashed rgba(5,43,89,.18); border-radius: 50%; }
.sun-orbit::before { content: ""; position: absolute; right: 45px; top: 14px; width: 70px; height: 70px; border-radius: 50%; background: #ffd43b; box-shadow: 0 0 50px rgba(255,212,59,.4); }
.island-label {
  position: absolute; right: 1%; top: 25%; z-index: 2; color: var(--green);
  font: 700 13px/1.2 Inter, ui-sans-serif, sans-serif; text-align: center; text-transform: uppercase; transform: rotate(8deg);
}
.island-label strong { font-size: 28px; }
.floating-card {
  position: absolute; z-index: 6; display: flex; align-items: center; gap: 11px;
  padding: 12px 15px; border: 1px solid rgba(255,255,255,.8); border-radius: 16px;
  background: rgba(255,255,255,.91); box-shadow: 0 14px 38px rgba(5,43,89,.13); backdrop-filter: blur(10px);
}
.floating-card span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.floating-card small { color: var(--muted); font-size: 9px; }
.floating-card strong { font-size: 12px; }
.float-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; color: white; background: var(--green); font-weight: 800; }
.promo-card { left: 0; top: 23%; }
.saving-card { right: 1%; bottom: 16%; }
.hero-wave { position: absolute; inset: auto 0 -2px; height: 75px; background: white; clip-path: ellipse(58% 48% at 50% 100%); }

.quick-benefits { position: relative; z-index: 5; margin-top: -48px; }
.quick-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #e5ece7;
  border-radius: 22px; background: white; box-shadow: 0 22px 60px rgba(5,43,89,.09); overflow: hidden;
}
.quick-grid article { display: flex; align-items: center; gap: 17px; padding: 24px 30px; }
.quick-grid article + article { border-left: 1px solid #e5ece7; }
.quick-grid article > span { display: grid; place-items: center; flex: 0 0 45px; height: 45px; border-radius: 50%; color: white; background: var(--green); font-size: 20px; font-weight: 800; }
.quick-grid div { display: flex; flex-direction: column; }
.quick-grid strong { font-size: 14px; }
.quick-grid small { color: var(--muted); font-size: 11px; }

.section { padding: 120px 0; }
.section-heading { max-width: 560px; }
.section-heading.centered { margin: 0 auto 55px; text-align: center; }
.section-heading h2, .how h2, .local h2 { font-size: clamp(38px, 4.3vw, 58px); }
.section-heading > p:last-child { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  position: relative; min-height: 310px; padding: 29px 25px; border: 1px solid #e5ece7;
  border-radius: 24px; background: white; box-shadow: 0 13px 35px rgba(5,43,89,.05);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-8px); border-color: #b8dfae; box-shadow: var(--shadow); }
.feature-card.featured { border: 2px solid #53ad3e; background: linear-gradient(145deg, #fff, #f8fcf6); box-shadow: 0 16px 38px rgba(23,139,34,.12); transform: translateY(-6px); }
.feature-card.featured:hover { transform: translateY(-10px); border-color: var(--green); }
.feature-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; color: var(--green); background: var(--green-soft); font-size: 26px; font-weight: 800; }
.feature-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.featured .feature-icon { color: white; background: linear-gradient(145deg, var(--green), #4aaf17); box-shadow: 0 8px 18px rgba(23,139,34,.18); }
.feature-number { position: absolute; right: 22px; top: 13px; color: #dbe4df; font: 800 35px/1 Inter, ui-sans-serif, sans-serif; }
.featured .feature-number { color: #cfe6ca; }
.feature-card h3 { margin: 28px 0 10px; font: 800 19px/1.3 Inter, ui-sans-serif, sans-serif; }
.feature-card p:last-child { margin: 0; color: var(--muted); font-size: 13px; }
.featured p:last-child { color: var(--muted); }

.app-tour { position: relative; background: linear-gradient(180deg, #f7fbf5, white); overflow: hidden; }
.app-tour::before { content: ""; position: absolute; left: -220px; top: 18%; width: 440px; height: 440px; border-radius: 50%; background: rgba(85,186,24,.07); }
.app-tour-list { display: grid; gap: 90px; }
.app-tour-row { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 100px; }
.app-tour-row.reverse { grid-template-columns: 1.12fr .88fr; }
.app-tour-row.reverse .app-tour-visual { order: 2; }
.app-tour-row.reverse .app-tour-copy { order: 1; }
.app-tour-visual { position: relative; display: grid; min-height: 550px; place-items: center; }
.app-tour-glow { position: absolute; width: 390px; height: 390px; border-radius: 42% 58% 65% 35% / 45% 42% 58% 55%; background: linear-gradient(145deg, #dff5d8, #bce9ad); transform: rotate(-7deg); animation: organic-drift 9s ease-in-out infinite alternate; }
.app-tour-glow.blue { background: linear-gradient(145deg, #dff4ff, #afdff2); transform: rotate(8deg); }
.app-tour-glow.yellow { background: linear-gradient(145deg, #fff3c5, #f7dd7a); transform: rotate(-5deg); }
.app-tour-glow.coral { background: linear-gradient(145deg, #ffe1d8, #ffc0aa); transform: rotate(7deg); }
.app-tour-visual img { position: relative; z-index: 2; width: 265px; height: 550px; border: 8px solid white; border-radius: 34px; box-shadow: 0 30px 65px rgba(5,43,89,.22); object-fit: cover; object-position: top; transform: perspective(900px) rotateY(-2deg) rotateX(1deg); transition: transform .7s cubic-bezier(.2,.8,.2,1), box-shadow .7s ease; }
.app-tour-row.reverse .app-tour-visual img { transform: perspective(900px) rotateY(2deg) rotateX(1deg); }
.app-tour-row:hover .app-tour-visual img { transform: perspective(900px) rotateY(0) rotateX(0) translateY(-8px); box-shadow: 0 42px 75px rgba(5,43,89,.27); }
@keyframes organic-drift { to { border-radius: 58% 42% 38% 62% / 53% 62% 38% 47%; transform: rotate(3deg) translateY(-10px); } }
.app-tour-float { position: absolute; z-index: 3; left: 4%; bottom: 20%; padding: 11px 16px; border: 1px solid #e1ebe4; border-radius: 13px; color: var(--green); background: white; box-shadow: 0 14px 35px rgba(5,43,89,.14); font-size: 11px; font-weight: 900; }
.app-tour-float-right { right: 2%; left: auto; }
.app-tour-copy { position: relative; max-width: 530px; }
.app-tour-number { position: absolute; right: 0; top: -28px; color: #e5ede7; font: 900 76px/1 Inter, sans-serif; }
.app-tour-copy h3 { position: relative; margin: 0 0 20px; color: var(--navy); font: 850 clamp(32px, 3.5vw, 49px)/1.08 Inter, sans-serif; letter-spacing: -.04em; }
.app-tour-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; }
.app-tour-copy ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.app-tour-copy li { position: relative; padding-left: 28px; color: var(--ink); font-size: 13px; font-weight: 750; }
.app-tour-copy li::before { content: "✓"; position: absolute; left: 0; top: -1px; display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: 10px; }
.app-tour-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 90px; padding: 28px 34px; border: 1px solid #dce9dd; border-radius: 22px; background: white; box-shadow: 0 18px 45px rgba(5,43,89,.08); }
.app-tour-cta div { display: flex; flex-direction: column; }
.app-tour-cta strong { color: var(--navy); font-size: 18px; }
.app-tour-cta span { color: var(--muted); font-size: 12px; }

.how { position: relative; color: white; background: var(--navy-deep); overflow: hidden; }
.how::before { content: ""; position: absolute; inset: 0; opacity: .2; background: radial-gradient(circle at 12% 30%, #40ab24, transparent 30%), radial-gradient(circle at 90% 80%, #169fc1, transparent 35%); }
.how-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }
.eyebrow.light { color: #75d348; }
.how h2 em { color: #75d348; }
.how-intro { max-width: 440px; color: #adc0d3; }
.steps { margin: 38px 0 0; padding: 0; list-style: none; }
.steps li { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.13); }
.steps li > span { display: grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 50%; color: white; background: var(--green); font-weight: 800; }
.steps h3 { margin: 0 0 3px; font: 800 16px Inter, ui-sans-serif, sans-serif; }
.steps p { margin: 0; color: #adc0d3; font-size: 12px; }
.how-beta-cta { margin-top: 28px; }
.beta-preview { position: relative; min-width: 0; min-height: 570px; perspective: 1000px; }
.beta-preview::before { content: ""; position: absolute; inset: 8% 5% 4%; border: 1px solid rgba(117,211,72,.2); border-radius: 48% 52% 42% 58% / 55% 40% 60% 45%; background: radial-gradient(circle at 35% 25%, rgba(117,211,72,.32), transparent 38%), linear-gradient(145deg, #0b4663, #06304f 58%, #0c6544); box-shadow: 0 35px 80px rgba(0,0,0,.28); transform: rotate(-3deg); }
.beta-preview-orbit { position: absolute; z-index: 1; inset: 13% 10% 10%; border: 1px dashed rgba(255,255,255,.25); border-radius: 50%; transform: rotate(14deg); }
.beta-preview-phone { position: absolute; z-index: 2; left: 50%; top: 3%; width: 240px; height: 505px; padding: 10px; border: 2px solid rgba(255,255,255,.7); border-radius: 38px; background: #061427; box-shadow: 0 32px 55px rgba(0,0,0,.4); transform: translateX(-50%) rotate(5deg); overflow: hidden; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.beta-preview:hover .beta-preview-phone { transform: translateX(-50%) rotate(2deg) translateY(-7px); }
.beta-preview-phone img { width: 100%; height: 100%; border-radius: 27px; object-fit: cover; object-position: top; }
.beta-preview-speaker { position: absolute; z-index: 3; left: 50%; top: 16px; width: 66px; height: 17px; border-radius: 999px; background: #061427; transform: translateX(-50%); }
.beta-invite-card { position: absolute; z-index: 4; right: 0; top: 15%; display: flex; width: 190px; flex-direction: column; padding: 20px; border: 1px solid rgba(255,255,255,.6); border-radius: 19px; color: var(--navy); background: rgba(255,255,255,.96); box-shadow: 0 18px 45px rgba(0,0,0,.25); transform: rotate(4deg); backdrop-filter: blur(10px); }
.beta-invite-icon { display: grid; width: 38px; height: 38px; margin-bottom: 12px; place-items: center; border-radius: 12px; color: #ffe15a; background: var(--green); font-size: 20px; }
.beta-invite-card small { color: var(--green); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.beta-invite-card strong { margin: 4px 0; font-size: 16px; }
.beta-invite-card > span:last-child { color: var(--muted); font-size: 10px; font-weight: 700; }
.beta-feedback-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; min-width: 190px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.35); border-radius: 15px; color: white; background: rgba(3,29,61,.9); box-shadow: 0 15px 35px rgba(0,0,0,.28); backdrop-filter: blur(10px); }
.beta-feedback-card > span { display: grid; flex: 0 0 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--navy); background: #75d348; font-weight: 900; }
.beta-feedback-card p { display: flex; flex-direction: column; margin: 0; }
.beta-feedback-card strong { font-size: 11px; }
.beta-feedback-card small { margin-top: 2px; color: #adc0d3; font-size: 8px; }
.feedback-one { left: 0; top: 33%; transform: rotate(-3deg); }
.feedback-two { right: 3%; bottom: 7%; transform: rotate(2deg); }

.local { background: var(--cream); }
.local-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 590px; overflow: hidden; border: 1px solid rgba(14,92,38,.1); border-radius: 38px; background: white; box-shadow: 0 28px 80px rgba(5,43,40,.14); }
.local-photo { position: relative; min-width: 0; min-height: 590px; overflow: hidden; }
.local-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; transition: transform .8s ease; }
.local-card:hover .local-photo img { transform: scale(1.025); }
.local-photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,34,26,.05) 35%, rgba(4,34,26,.7) 100%); }
.local-photo-kicker { position: absolute; left: 32px; top: 32px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; color: white; background: rgba(4,53,34,.36); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.local-photo-credit { position: absolute; left: 32px; bottom: 25px; color: rgba(255,255,255,.8); font-size: 9px; font-weight: 650; }
.local-photo-credit:hover { color: white; }
.local-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 76px 62px; background: radial-gradient(circle at 100% 0, #e5f7dc 0, transparent 38%), white; }
.local-copy > p:not(.eyebrow) { color: var(--muted); }
.local-copy h2 { margin-bottom: 22px; font-size: clamp(42px, 4.5vw, 64px); line-height: .98; }
.local-copy h2 em { color: var(--green); }
.local-island { position: absolute; right: 32px; top: 24px; display: flex; flex-direction: column; align-items: center; color: var(--green); }
.local-island svg { width: 82px; height: 74px; fill: #e1f4db; stroke: var(--green); stroke-width: 2.5; stroke-linejoin: round; }
.local-island .local-island-marker { fill: var(--green); stroke: white; stroke-width: 2; }
.local-island span { margin-top: -3px; color: #557064; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.local-island strong { color: var(--green); }
.local-points { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 25px; }
.local-points span { padding: 9px 13px; border: 1px solid #d5e9cf; border-radius: 999px; color: #176d25; background: var(--green-soft); font-size: 10px; font-weight: 800; }
.local-points span::before { content: "✦"; margin-right: 6px; color: #64b33c; }
.local-copy .local-signature { margin: 30px 0 0; padding-top: 22px; border-top: 1px solid #e5ece5; color: var(--navy); font-family: Georgia, serif; font-size: 17px; font-style: italic; }

.launch { padding-bottom: 70px; background: linear-gradient(180deg, white, #f3f8f0); }
.launch-card { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 38px; min-height: 400px; padding: 58px 70px; border-radius: 34px; color: white; background: linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, #0c6544); overflow: hidden; }
.launch-card h2 { font-size: clamp(38px, 4.3vw, 58px); }
.launch-card p:not(.eyebrow) { max-width: 600px; color: #bdccdc; }
.store-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.store-button {
  display: flex; align-items: center; gap: 12px; min-width: 174px; padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 13px;
  background: rgba(255,255,255,.08);
}
.beta-access-button { transition: transform .2s, border-color .2s, background .2s; }
.beta-access-button:hover { transform: translateY(-2px); border-color: #75d348; background: rgba(255,255,255,.14); }
.store-logo { flex: 0 0 auto; width: 29px; height: 32px; }
.apple-logo { fill: white; }
.store-button small { line-height: 1.2; }
.store-button strong { font-size: 14px; }
.launch-card > div { min-width: 0; }
.launch-visual { position: relative; display: grid; width: 100%; min-width: 0; place-items: center; }
.device-showcase { position: relative; min-height: 500px; }
.device-orbit { position: absolute; inset: 7% 8% 8%; border: 1px dashed rgba(117,211,72,.3); border-radius: 50%; }
.device-orbit::before, .device-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.device-orbit::before { right: 3%; top: 5%; width: 52px; height: 52px; background: #ffd43b; box-shadow: 0 0 35px rgba(255,212,59,.28); }
.device-orbit::after { left: 3%; bottom: 10%; width: 24px; height: 24px; background: #75d348; }
.device-mockup { position: absolute; z-index: 2; width: 210px; height: 445px; margin: 0; padding: 7px; border: 4px solid #101820; background: #101820; box-shadow: 0 32px 55px rgba(0,0,0,.4); }
.device-mockup img { display: block; width: 100%; height: 100%; border: 0; box-shadow: none; object-fit: cover; object-position: top; }
.device-mockup figcaption { position: absolute; bottom: -19px; display: flex; align-items: center; gap: 5px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: white; background: rgba(5,43,89,.92); box-shadow: 0 9px 20px rgba(0,0,0,.2); font-size: 10px; font-weight: 850; }
.device-mockup figcaption span { color: #75d348; font-size: 8px; }
.device-android { z-index: 2; left: 5%; top: 38px; border-radius: 30px; transform: rotate(-7deg); }
.device-android img { border-radius: 20px; }
.device-android figcaption { left: 5px; }
.android-camera { position: absolute; z-index: 3; top: 13px; left: 50%; width: 9px; height: 9px; border: 2px solid #28333b; border-radius: 50%; background: #05090c; transform: translateX(-50%); }
.device-iphone { z-index: 3; right: 4%; top: 8px; border-width: 6px; border-radius: 40px; transform: rotate(5deg); }
.device-iphone img { border-radius: 28px; }
.device-iphone figcaption { right: 5px; }
.iphone-island { position: absolute; z-index: 3; top: 12px; left: 50%; width: 72px; height: 20px; border-radius: 999px; background: #080c10; transform: translateX(-50%); }
.device-beta-badge { position: absolute; z-index: 5; right: 32%; bottom: 3%; display: grid; width: 94px; height: 94px; place-items: center; border: 2px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--navy); background: #ffd43b; box-shadow: 0 16px 30px rgba(0,0,0,.24); font-size: 10px; font-weight: 800; line-height: 1.2; text-align: center; text-transform: uppercase; transform: rotate(-8deg); }
.device-beta-badge strong { display: block; font-size: 14px; }
.soon-pill { position: absolute; z-index: 2; bottom: -18px; padding: 8px 15px; border-radius: 999px; color: var(--navy); background: #ffd53d; font-size: 11px; font-weight: 800; transform: rotate(-4deg); }

.faq { background: #f5f8f6; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; }
.accordion details { border-bottom: 1px solid #dbe4df; }
.accordion summary { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-weight: 800; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--green); background: var(--green-soft); transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -6px 40px 22px 0; color: var(--muted); font-size: 13px; }

footer { padding-top: 70px; color: #b7c7d6; background: #031b38; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; padding-bottom: 60px; }
.brand-light { color: white; }
.footer-brand > p { font-size: 13px; }
footer h3 { margin: 8px 0 18px; color: white; font-size: 13px; }
footer .footer-top > div:not(.footer-brand) > a { display: block; margin: 8px 0; font-size: 12px; transition: color .2s; }
footer a:hover { color: #75d348; }
.social-note { max-width: 200px; font-size: 11px; line-height: 1.5; }
.socials { display: flex; gap: 8px; margin-top: 14px; }
.socials a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #39506a; border-radius: 50%; color: white; font-weight: 800; }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.socials rect, .socials circle { fill: none; stroke: currentColor; stroke-width: 1.8; }
.socials .social-icon-dot { fill: currentColor; stroke: none; }
.socials a { transition: color .2s, border-color .2s, background .2s, transform .2s; }
.socials a:hover { color: white; border-color: #75d348; background: var(--green); transform: translateY(-2px); }
.social-modal {
  width: min(92vw, 520px); padding: 0; border: 0; border-radius: 26px;
  color: var(--navy); background: transparent; overflow: visible;
}
.social-modal::backdrop { background: rgba(5, 20, 35, .72); backdrop-filter: blur(5px); }
.social-modal-content {
  position: relative; padding: 36px; border-radius: 26px; background: white;
  max-height: min(90vh, 780px); overflow-y: auto; overscroll-behavior: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35); text-align: center;
}
.social-modal-close {
  position: absolute; top: 14px; right: 16px; display: grid; place-items: center;
  width: 38px; height: 38px; padding: 0; border: 0; border-radius: 50%;
  color: var(--navy); background: var(--green-soft); font-size: 28px; line-height: 1; cursor: pointer;
}
.social-modal-close:hover { color: white; background: var(--green); }
.social-modal-logo { border-radius: 18px; box-shadow: 0 10px 25px rgba(23, 139, 34, .2); }
.social-modal .eyebrow { justify-content: center; margin: 18px 0 6px; }
.social-modal h2 { margin: 0 0 10px; font-size: clamp(28px, 5vw, 40px); }
.social-modal-content > p:not(.eyebrow) { margin: 0 auto; max-width: 390px; color: #5c6873; }
.social-modal-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0 18px; }
.social-choice {
  display: grid; justify-items: center; gap: 8px; padding: 18px 10px;
  border: 1px solid #e0e8ee; border-radius: 16px; color: var(--navy); background: #f9fbfc;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.social-choice span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: white; font-size: 23px; }
.social-choice.facebook span { background: #1877f2; }
.social-choice.instagram span { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-choice.tiktok span { background: #111; }
.beta-platform-links { grid-template-columns: repeat(2, 1fr); }
.social-choice.beta-platform span { background: linear-gradient(135deg, var(--green), #4aaf17); }
.beta-form { margin-top: 24px; text-align: left; }
.beta-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.beta-form label { display: grid; gap: 6px; color: var(--navy); font-size: 12px; font-weight: 800; }
.beta-form input:not([type="checkbox"]), .beta-form select {
  width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #d9e3e9;
  border-radius: 11px; color: var(--ink); background: white; font: inherit;
}
.beta-form input:focus, .beta-form select:focus { border-color: var(--green); outline: 3px solid rgba(23,139,34,.13); }
.beta-form-full { grid-column: 1 / -1; }
.beta-form label small { color: var(--muted); font-weight: 600; }
.beta-consent { grid-template-columns: 18px 1fr; align-items: start; margin: 16px 0; color: var(--muted) !important; font-weight: 500 !important; line-height: 1.45; }
.beta-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--green); }
.beta-consent a { color: var(--green); text-decoration: underline; }
.privacy-info-trigger { display: inline; padding: 0; border: 0; color: var(--green); background: none; font: inherit; font-weight: 800; text-decoration: underline; cursor: pointer; }
.privacy-info-panel { position: absolute; z-index: 5; inset: 0; padding: 20px; border-radius: 26px; background: rgba(5, 20, 35, .58); }
.privacy-info-panel:not([hidden]) { display: grid; place-items: center; }
.privacy-info-card { position: relative; width: min(100%, 410px); padding: 30px; border-radius: 20px; background: white; box-shadow: 0 24px 65px rgba(0,0,0,.3); text-align: center; }
.privacy-info-card h3 { margin: 12px 0 8px; color: var(--navy); font-size: 21px; line-height: 1.25; }
.privacy-info-card p { margin: 8px 0 !important; color: var(--muted) !important; font-size: 12px; line-height: 1.55; }
.privacy-info-icon { display: grid; width: 46px; height: 46px; margin: 0 auto; place-items: center; border-radius: 50%; color: white; background: var(--green); font-weight: 900; }
.privacy-info-close { position: absolute; top: 10px; right: 12px; width: 34px; height: 34px; padding: 0; border: 0; border-radius: 50%; color: var(--navy); background: var(--green-soft); font-size: 24px; cursor: pointer; }
.privacy-full-link { width: 100%; margin-top: 16px; }
.beta-submit { width: 100%; border: 0; cursor: pointer; }
.beta-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.beta-form-message { min-height: 24px; margin: 0 0 10px !important; font-size: 13px; font-weight: 700; text-align: center; }
.beta-form-message.success { color: var(--green) !important; }
.beta-form-message.error { color: #b42318 !important; }
.beta-form-intro > p:last-child { margin: 0 auto; max-width: 390px; color: #5c6873; }
.beta-success { padding-top: 6px; text-align: center; }
.beta-success:not([hidden]) { display: block; animation: success-enter .5s cubic-bezier(.2,.9,.25,1.2) both; }
.success-animation { position: relative; width: 82px; height: 82px; margin: 0 auto 18px; }
.success-animation span { position: relative; z-index: 2; display: grid; width: 82px; height: 82px; place-items: center; border-radius: 50%; color: white; background: linear-gradient(145deg, #58bb2e, var(--green)); box-shadow: 0 14px 30px rgba(23,139,34,.26); font-size: 38px; font-weight: 900; animation: success-pop .65s cubic-bezier(.2,1.5,.5,1) both; }
.success-animation i { position: absolute; left: 39px; top: 39px; width: 7px; height: 7px; border-radius: 50%; background: #ffd43b; animation: success-spark .75s .25s ease-out both; }
.success-animation i:nth-of-type(1) { --x: -48px; --y: -30px; }
.success-animation i:nth-of-type(2) { --x: 0; --y: -55px; background: #58bb2e; }
.success-animation i:nth-of-type(3) { --x: 48px; --y: -28px; }
.success-animation i:nth-of-type(4) { --x: 52px; --y: 30px; background: #58bb2e; }
.success-animation i:nth-of-type(5) { --x: -2px; --y: 56px; }
.success-animation i:nth-of-type(6) { --x: -50px; --y: 28px; background: #58bb2e; }
@keyframes success-enter { from { opacity: 0; transform: translateY(16px); } }
@keyframes success-pop { from { opacity: 0; transform: scale(.45) rotate(-18deg); } }
@keyframes success-spark { from { opacity: 0; transform: translate(0,0) scale(.2); } 60% { opacity: 1; } to { opacity: 0; transform: translate(var(--x),var(--y)) scale(1); } }
.beta-success h2 { margin-bottom: 14px; font-size: clamp(25px, 5vw, 34px); }
.success-reference { display: inline-flex; gap: 7px; margin: 0 0 20px !important; padding: 8px 13px; border-radius: 999px; color: #557064 !important; background: var(--green-soft); font-size: 11px; }
.success-reference strong { color: var(--green); letter-spacing: .06em; }
.success-steps { display: grid; gap: 10px; margin: 0 0 14px; text-align: left; }
.success-steps > div { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: center; padding: 12px 14px; border: 1px solid #e0e9e0; border-radius: 14px; background: #fbfdfb; }
.success-steps > div > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: 12px; font-weight: 900; }
.success-steps p { display: grid; margin: 0 !important; }
.success-steps strong { color: var(--navy); font-size: 12px; }
.success-steps small { margin-top: 2px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.success-delay { margin: 12px 0 18px !important; color: var(--navy) !important; font-size: 11px; font-weight: 800; }
.success-delay span { color: var(--green); font-size: 17px; }
.success-follow { margin: 0 0 9px !important; color: var(--muted) !important; font-size: 11px; }
.success-socials { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; }
.success-socials a { padding: 7px 11px; border: 1px solid #dbe6dc; border-radius: 999px; color: var(--navy); font-size: 10px; font-weight: 800; transition: .2s; }
.success-socials a:hover { color: white; border-color: var(--green); background: var(--green); }
.beta-success-close { width: 100%; border: 0; cursor: pointer; }
.mobile-beta-cta { display: none; }
.social-choice:hover { transform: translateY(-3px); border-color: #aad89f; box-shadow: 0 12px 24px rgba(10, 55, 30, .12); }
.social-modal-content > small { color: #77828b; }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid #263d57; font-size: 11px; }
.heart { color: #75d348; }

.reveal {
  /* Le contenu doit rester visible même si le script d'animation est bloqué
     (CSP, navigateur ancien ou chargement interrompu). */
  opacity: 1;
  transform: none;
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  nav { gap: 17px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; padding-bottom: 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; text-align: center; margin: 0 auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 650px; width: 100%; margin: 15px auto 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .app-tour-row, .app-tour-row.reverse { grid-template-columns: 1fr 1fr; gap: 45px; }
  .feature-card.featured { transform: none; }
  .how-grid { grid-template-columns: 1fr; }
  .how-copy { max-width: 650px; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .launch-card { grid-template-columns: 1fr; gap: 42px; padding: 48px; }
  .launch-visual { max-width: 720px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-top > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { height: 74px; }
  .brand { font-size: 20px; }
  .brand img { width: 42px; height: 42px; }
  .menu-toggle { display: block; z-index: 3; }
  nav {
    position: fixed; inset: 0 0 auto; display: flex; flex-direction: column; align-items: stretch;
    padding: 92px 24px 28px; background: white; box-shadow: 0 20px 30px rgba(5,43,89,.15);
    transform: translateY(-110%); transition: transform .25s;
  }
  nav.open { transform: none; }
  nav a:not(.nav-cta) { display: block; }
  nav a { padding: 8px; text-align: center; }
  .hero { padding-top: 115px; }
  h1 { font-size: clamp(40px, 12vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-visual { min-height: 460px; }
  .phone { left: 19%; width: 205px; height: 420px; border-radius: 34px; }
  .phone img { border-radius: 23px; }
  .phone-speaker { width: 65px; }
  .hero-basket { width: 350px; right: -18%; }
  .sun-orbit { width: 340px; height: 340px; }
  .floating-card { transform: scale(.84); }
  .promo-card { left: -7%; }
  .saving-card { right: -5%; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid article + article { border-left: 0; border-top: 1px solid #e5ece7; }
  .section { padding: 85px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .app-tour-list { gap: 70px; }
  .app-tour-row, .app-tour-row.reverse { grid-template-columns: 1fr; gap: 25px; }
  .app-tour-row.reverse .app-tour-visual, .app-tour-row.reverse .app-tour-copy { order: initial; }
  .app-tour-visual { min-height: 500px; }
  .app-tour-visual img { width: 235px; height: 490px; }
  .app-tour-glow { width: min(88vw, 360px); height: min(88vw, 360px); }
  .app-tour-copy { max-width: 580px; }
  .app-tour-number { font-size: 60px; }
  .app-tour-cta { align-items: stretch; flex-direction: column; padding: 24px; }
  .feature-card { min-height: auto; }
  .beta-preview { width: min(100%, 600px); margin: 0 auto; }
  .local-card { grid-template-columns: 1fr; min-height: 0; }
  .local-photo { min-height: 460px; }
  .local-copy { padding: 58px 38px 44px; }
  .launch-card { grid-template-columns: 1fr; gap: 55px; padding: 42px 28px 70px; }
  .device-showcase { max-width: 520px; min-height: 490px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 410px; }
  .phone { left: 12%; width: 185px; height: 380px; }
  .hero-basket { right: -32%; width: 320px; }
  .floating-card { display: none; }
  .island-label { right: 0; }
  .quick-benefits { margin-top: -22px; }
  .beta-preview { min-height: 500px; }
  .beta-preview::before { inset: 7% 0 3%; }
  .beta-preview-phone { width: 196px; height: 420px; }
  .beta-invite-card { right: -4px; top: 12%; width: 158px; padding: 15px; }
  .beta-feedback-card { min-width: 158px; padding: 10px 11px; }
  .feedback-one { left: -4px; top: 40%; }
  .feedback-two { right: 0; bottom: 3%; }
  .local-photo { min-height: 380px; }
  .local-photo-kicker { left: 20px; top: 20px; }
  .local-photo-credit { left: 20px; bottom: 18px; }
  .local-copy { padding: 86px 24px 38px; }
  .local-island { right: 18px; top: 15px; }
  .local-copy h2 { font-size: 43px; }
  .store-button { width: 100%; }
  .device-showcase { min-height: 430px; }
  .device-mockup { width: 172px; height: 365px; }
  .device-android { left: 1%; top: 42px; }
  .device-iphone { right: 0; }
  .device-beta-badge { right: 32%; bottom: 2%; width: 78px; height: 78px; }
  .social-modal-content { padding: 30px 20px 24px; }
  .social-modal-links { grid-template-columns: 1fr; }
  .social-choice { grid-template-columns: 42px auto; justify-content: center; align-items: center; }
  .beta-form-grid { grid-template-columns: 1fr; }
  .beta-form-full { grid-column: auto; }
  body { padding-bottom: 72px; }
  .mobile-beta-cta { position: fixed; z-index: 20; right: 14px; bottom: 14px; display: flex; align-items: center; gap: 8px; padding: 13px 19px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; color: white; background: linear-gradient(135deg, var(--green), #3da820); box-shadow: 0 12px 30px rgba(5,43,40,.3); font-size: 12px; font-weight: 850; }
  .mobile-beta-cta span { color: #ffe15a; }
  dialog[open] ~ .mobile-beta-cta { opacity: 0; pointer-events: none; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-data: reduce) {
  .hero-glow, .sun-orbit, .floating-card { display: none; }
}
