:root {
  --green: #075c45;
  --green-dark: #034535;
  --navy: #20263e;
  --aqua: #77aaa5;
  --saffron: #e3a600;
  --ivory: #f7f6f1;
  --mist: #e8eeea;
  --white: #fffefa;
  --line: rgba(32, 38, 62, 0.13);
  --shadow: 0 28px 70px rgba(16, 52, 42, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; overflow: hidden; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--navy);
  font-family: "Poppins", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 9% 5%, rgba(119,170,165,.20), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(227,166,0,.10), transparent 26rem),
    var(--ivory);
}

.page-shell { width: min(1440px, 100%); height: 100svh; margin: 0 auto; padding: clamp(10px, 2.2vh, 24px) clamp(22px, 5vw, 76px) clamp(10px, 2.4vh, 26px); display: grid; grid-template-rows: auto minmax(0, 1fr) auto; overflow: hidden; }
main { min-width: 0; min-height: 0; display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: minmax(0, 1fr) auto; }
.site-header { height: clamp(78px, 11vh, 110px); display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; width: 104px; height: 110px; overflow: hidden; transform: translateY(5px); }
.brand img { width: 130px; height: 130px; object-fit: contain; transform: translate(-25px, -13px); }
.status { display: inline-flex; align-items: center; gap: 10px; padding: 9px 13px; border: 1px solid rgba(7,92,69,.11); border-radius: 999px; background: rgba(255,254,250,.55); font-size: 11px; font-weight: 600; letter-spacing: .10em; text-transform: uppercase; }
.status span { width: 9px; height: 9px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 6px rgba(227,166,0,.13); }

.hero { height: 100%; min-height: 0; display: grid; grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr); align-items: center; gap: clamp(32px, 6vw, 96px); padding: clamp(8px, 2.6vh, 28px) 0 clamp(10px, 2.4vh, 26px); }
.hero-copy { max-width: 650px; }
.eyebrow { margin: 0 0 clamp(10px, 2vh, 22px); color: var(--green); font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
h1 { max-width: 680px; margin: 0; color: var(--navy); font-family: "Lora", Georgia, serif; font-size: clamp(42px, min(5.8vw, 8.2vh), 82px); font-weight: 500; line-height: .99; letter-spacing: -.045em; }
h1 em { color: var(--green); font-style: normal; white-space: nowrap; }
.intro { max-width: 590px; margin: clamp(14px, 2.5vh, 28px) 0 clamp(16px, 3vh, 32px); color: rgba(32,38,62,.78); font-size: clamp(15px, min(1.4vw, 2.2vh), 20px); line-height: 1.55; }

.waitlist { max-width: 620px; }
.waitlist > label { display: block; margin-bottom: 12px; color: var(--navy); font-size: 13px; font-weight: 600; }
.input-row { display: flex; gap: 10px; padding: 7px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,254,250,.82); box-shadow: 0 10px 30px rgba(32,38,62,.05); }
input { flex: 1; min-width: 0; border: 0; outline: 0; padding: 12px 14px; background: transparent; color: var(--navy); font: inherit; }
input::placeholder { color: rgba(32,38,62,.45); }
input:focus-visible { border-radius: 10px; box-shadow: 0 0 0 3px rgba(119,170,165,.34); }
button { border: 0; border-radius: 12px; background: var(--green); color: white; padding: 14px 20px; font: 600 13px/1 "Poppins", sans-serif; cursor: pointer; transition: transform .2s ease, background .2s ease; white-space: nowrap; }
button:hover { background: var(--green-dark); transform: translateY(-1px); }
button:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
button:disabled { cursor: wait; opacity: .68; transform: none; }
.form-note, .form-message { margin: 10px 7px 0; color: rgba(32,38,62,.58); font-size: 11px; }
.form-message { min-height: 18px; color: var(--green); font-weight: 500; }

.hero-visual { position: relative; height: 100%; min-height: 0; max-height: 590px; display: grid; place-items: center; padding-left: 2%; }
.photo-frame { position: relative; z-index: 2; width: min(88%, 580px); max-height: 100%; aspect-ratio: 1.48; overflow: hidden; border-radius: 30px 30px 112px 30px; background: #ddd4c4; box-shadow: var(--shadow); transform: rotate(.45deg); }
.photo-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); border-radius: inherit; }
.photo-frame > img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.86) contrast(.98); }
.item-card { position: absolute; left: 20px; bottom: 20px; width: min(430px, calc(100% - 40px)); display: flex; align-items: center; gap: 20px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.62); border-radius: 16px; background: rgba(247,246,241,.9); box-shadow: 0 10px 28px rgba(32,38,62,.09); backdrop-filter: blur(16px); }
.item-card span { display: block; color: rgba(32,38,62,.58); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.item-card strong { display: block; margin-top: 3px; color: var(--navy); font: 600 18px "Lora", serif; }
.modes { display: flex; gap: 6px; margin-left: auto; }
.modes span { padding: 7px 9px; border: 1px solid rgba(7,92,69,.2); border-radius: 999px; color: var(--green); background: rgba(255,255,255,.55); font-size: 9px; font-weight: 600; letter-spacing: .04em; }
.smart-signal { position: absolute; z-index: 4; top: 20px; left: 20px; display: grid; grid-template-columns: auto 1fr; column-gap: 8px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.55); border-radius: 14px; background: rgba(32,38,62,.84); color: white; box-shadow: 0 12px 30px rgba(32,38,62,.16); backdrop-filter: blur(14px); }
.smart-signal > span { grid-row: 1 / 3; align-self: center; color: var(--saffron); font-size: 17px; }
.smart-signal strong { font-size: 11px; line-height: 1.2; }
.smart-signal small { color: rgba(255,255,255,.68); font-size: 8px; line-height: 1.3; }
.orbit { position: absolute; border: 1px solid rgba(7,92,69,.18); border-radius: 50%; }
.orbit::after { content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--saffron); }
.orbit-one { width: 520px; height: 520px; right: -105px; top: -6px; }
.orbit-one::after { left: 58px; top: 36px; }
.orbit-two { width: 340px; height: 340px; left: -30px; bottom: -20px; border-color: rgba(119,170,165,.38); }
.orbit-two::after { right: 32px; bottom: 32px; width: 11px; height: 11px; background: var(--aqua); }

.proof-strip { width: 100%; min-width: 0; display: grid; grid-template-columns: repeat(3, auto); justify-content: center; gap: clamp(28px, 7vw, 90px); padding: clamp(11px, 1.8vh, 18px) 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,254,250,.28); }
.proof-strip > div { min-width: 0; display: flex; align-items: center; gap: 10px; color: var(--green); }
.proof-strip strong { font-size: 12px; font-weight: 600; }
.proof-icon { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; background: rgba(119,170,165,.17); color: var(--green); font-size: 13px; }
.proof-icon.shield { border-radius: 50% 50% 55% 55%; }
.proof-icon.arrows { color: var(--saffron); background: rgba(227,166,0,.12); font-size: 17px; }
footer { display: flex; justify-content: space-between; gap: 20px; padding-top: clamp(8px, 1.5vh, 16px); color: rgba(32,38,62,.5); font-size: 11px; }

@media (max-width: 900px) {
  .page-shell { padding: 10px clamp(16px, 4vw, 34px) 10px; }
  .site-header { height: clamp(62px, 9vh, 78px); }
  .hero { grid-template-columns: minmax(0, 1.08fr) minmax(240px, .92fr); gap: clamp(20px, 4vw, 40px); padding: 4px 0 10px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 0; }
  .photo-frame { max-width: 700px; }
  .proof-strip { gap: clamp(18px, 4vw, 40px); }
}

@media (max-width: 560px) {
  .page-shell { padding: 6px 14px 8px; }
  .site-header { height: 72px; min-height: 0; }
  .brand { width: 78px; height: 72px; }
  .brand img { width: 86px; height: 86px; transform: translate(-17px, -9px); }
  .status { padding: 7px 9px; font-size: 8px; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto minmax(120px, 1fr); gap: 10px; padding: 4px 0 8px; }
  .eyebrow { margin-bottom: 7px; font-size: 9px; }
  h1 { max-width: 95%; font-size: clamp(34px, min(11.4vw, 6.7vh), 49px); line-height: .98; }
  .intro { max-width: 96%; margin: 8px 0 10px; font-size: clamp(12px, 3.4vw, 14px); line-height: 1.4; }
  .waitlist > label { margin-bottom: 5px; font-size: 11px; }
  .input-row { padding: 4px; border-radius: 13px; }
  input { padding: 9px 10px; font-size: 12px; }
  button { padding: 11px 12px; font-size: 11px; }
  .form-note { margin-top: 5px; font-size: 9px; }
  .form-message { min-height: 0; margin-top: 3px; font-size: 9px; }
  .hero-visual { max-height: none; }
  .photo-frame { width: min(82vw, 360px); height: 100%; max-height: 215px; border-radius: 20px 20px 66px 20px; aspect-ratio: auto; }
  .photo-frame > img { object-position: 58% center; }
  .item-card { left: 10px; bottom: 9px; width: calc(100% - 20px); gap: 12px; padding: 8px 10px; }
  .item-card > div:first-child span { display: none; }
  .item-card strong { margin: 0; font-size: 13px; }
  .modes { gap: 3px; }
  .modes span { padding: 4px 6px; font-size: 7px; }
  .smart-signal { top: 10px; left: 10px; padding: 7px 9px; border-radius: 10px; }
  .smart-signal > span { font-size: 13px; }
  .smart-signal strong { font-size: 9px; }
  .smart-signal small { font-size: 7px; }
  .orbit { display: none; }
  .proof-strip { max-width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; padding: 6px 0; }
  .proof-strip > div { justify-content: center; gap: 4px; }
  .proof-strip strong { font-size: clamp(8px, 2.25vw, 10px); white-space: nowrap; }
  .proof-icon { width: 17px; height: 17px; border-radius: 5px; font-size: 9px; }
  .proof-icon.arrows { font-size: 11px; }
  footer { padding-top: 5px; font-size: 8px; }
}

@media (max-width: 340px) {
  .status { gap: 7px; padding-inline: 8px; font-size: 7px; }
  .status span { width: 8px; height: 8px; box-shadow: 0 0 0 4px rgba(227,166,0,.13); }
  .proof-strip > div { gap: 2px; }
  .proof-strip strong { font-size: 7px; }
  .proof-icon { width: 14px; height: 14px; font-size: 8px; }
  .proof-icon.arrows { font-size: 9px; }
}

@media (max-height: 700px) {
  .page-shell { padding-top: 6px; padding-bottom: 6px; }
  .site-header { height: 64px; }
  .brand { width: 68px; height: 64px; }
  .brand img { width: 76px; height: 76px; transform: translate(-15px, -8px); }
  .eyebrow { margin-bottom: 7px; }
  .intro { margin-top: 9px; margin-bottom: 10px; }
  .proof-strip { padding-top: 5px; padding-bottom: 5px; }
  footer { padding-top: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
