:root {
  --deep: #043a5f;
  --blue: #06a8ff;
  --sky: #73d7ff;
  --foam: #f4fdff;
  --mint: #74f5c3;
  --lime: #d7ff58;
  --orange: #ffad35;
  --coral: #ff6f82;
  --ink: #062235;
  --muted: rgba(6,34,53,.68);
  --white-soft: rgba(255,255,255,.78);
  --line: rgba(6,34,53,.12);
  --ease-out: cubic-bezier(.23,1,.32,1);
  --ease-in-out: cubic-bezier(.77,0,.175,1);
  --wrap: min(1180px, calc(100% - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #dff8ff; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #dff8ff;
  line-height: 1.45;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
.skip-link {
  position: fixed; top: 14px; left: 14px; z-index: 200; transform: translateY(-160%);
  background: var(--ink); color: #fff; border-radius: 999px; padding: 10px 14px; font-weight: 950;
  transition: transform 160ms var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, .button:focus-visible { outline: 3px solid rgba(255,173,53,.55); outline-offset: 4px; }
.nav-shell {
  position: fixed; z-index: 100; top: 16px; left: 50%; width: min(780px, calc(100% - 28px)); transform: translateX(-50%);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  border: 1px solid rgba(255,255,255,.72); border-radius: 999px;
  background: rgba(255,255,255,.46); backdrop-filter: blur(22px) saturate(170%);
  padding: 10px 12px 10px 18px; box-shadow: 0 24px 80px rgba(0,105,165,.18);
}
.brand { color: var(--ink); font-size: 30px; font-weight: 1000; letter-spacing: -.1em; line-height: .85; }
.nav-links { display: flex; align-items: center; gap: 16px; color: rgba(6,34,53,.72); font-size: 13px; font-weight: 900; }
.nav-links a { transition: color 160ms var(--ease-out), transform 160ms var(--ease-out); }
.nav-links a:hover { color: var(--deep); transform: translateY(-1px); }
.nav-action { background: var(--ink); color: #fff !important; border-radius: 999px; padding: 9px 13px; box-shadow: 0 12px 30px rgba(6,34,53,.16); }
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.98) 0 4rem, rgba(255,255,255,.4) 4.1rem, transparent 15rem),
    radial-gradient(circle at 78% 30%, rgba(255,173,53,.62), transparent 18rem),
    radial-gradient(circle at 16% 20%, rgba(116,245,195,.78), transparent 21rem),
    linear-gradient(180deg, #bdf0ff 0%, #64d8ff 34%, #07a5e7 68%, #056aab 100%);
}
#ocean-life { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -4; }
.sun-orb { position: absolute; right: 7vw; top: 13vh; width: clamp(110px, 17vw, 230px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, #fff 0 35%, #ffe08c 50%, rgba(255,173,53,.05) 70%); filter: blur(.2px); opacity: .9; z-index: -3; }
.sea-glow { position: absolute; inset: auto -10% -24% -10%; height: 45vh; z-index: -2; background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.8), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.18), transparent); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(223,248,255,.80) 0%, rgba(223,248,255,.55) 42%, rgba(255,255,255,.15) 100%); }
.hero::after { content: ""; position: absolute; left: -12%; right: -12%; bottom: -1px; height: 20vh; z-index: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' fill-opacity='.92' d='M0,128 C180,205 316,42 514,108 C724,178 812,228 1012,138 C1198,54 1304,98 1440,142 L1440,240 L0,240 Z'/%3E%3Cpath fill='%23eaffff' fill-opacity='.72' d='M0,158 C206,86 334,218 558,142 C796,60 908,132 1078,178 C1238,222 1344,120 1440,96 L1440,240 L0,240 Z'/%3E%3C/svg%3E") bottom center/100% 100% no-repeat; pointer-events: none; }
.fruit-cloud { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.fruit { position: absolute; display: block; border-radius: 50%; filter: drop-shadow(0 22px 28px rgba(6,71,105,.20)); animation: floatFruit 7s var(--ease-in-out) infinite; }
.fruit::after { content: ""; position: absolute; inset: 18%; border: 3px solid rgba(255,255,255,.78); border-radius: 50%; }
.fruit.lime { width: 88px; aspect-ratio: 1; background: radial-gradient(circle at 35% 30%, #f6ffd1 0 12%, #d7ff58 13% 54%, #52cf6f 55%); }
.fruit.orange { width: 118px; aspect-ratio: 1; background: radial-gradient(circle at 35% 30%, #fff0ad 0 12%, #ffbd3b 13% 53%, #ff7e35 54%); }
.fruit.berry { width: 72px; aspect-ratio: 1; background: radial-gradient(circle at 36% 32%, #ffd7e0 0 14%, #ff6f82 15% 56%, #dc3f6b 57%); }
.one { left: 7vw; top: 65vh; animation-delay: -1.2s; }
.two { right: 32vw; top: 18vh; animation-delay: -3s; }
.three { right: 9vw; top: 61vh; animation-delay: -5s; }
.leaf { position: absolute; width: 66px; height: 34px; border-radius: 100% 0 100% 0; background: linear-gradient(135deg, #64efb4, #0a9f77); filter: drop-shadow(0 18px 24px rgba(3,93,84,.20)); animation: floatFruit 8s var(--ease-in-out) infinite; }
.leaf-a { left: 46vw; top: 76vh; transform: rotate(-22deg); }
.leaf-b { right: 12vw; top: 28vh; transform: rotate(32deg); animation-delay: -4s; }
@keyframes floatFruit { 0%,100% { transform: translate3d(0,0,0) rotate(-4deg); } 50% { transform: translate3d(0,-22px,0) rotate(8deg); } }
.hero-frame { position: relative; z-index: 2; width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, 430px); gap: clamp(28px, 7vw, 90px); align-items: center; padding: 126px 0 110px; }
.micro { margin: 0 0 18px; color: var(--deep); font-size: 11px; font-weight: 1000; letter-spacing: .20em; text-transform: uppercase; }
h1 { max-width: 900px; margin: 0; color: #05243a; font-size: clamp(55px, 9.8vw, 122px); font-weight: 1000; letter-spacing: -.091em; line-height: .82; text-wrap: balance; text-shadow: 0 20px 60px rgba(255,255,255,.30); }
.hero-text { max-width: 680px; margin: 28px 0 0; color: rgba(6,34,53,.77); font-size: clamp(18px, 2.1vw, 24px); font-weight: 650; line-height: 1.36; text-wrap: pretty; }
.fact-strip { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.fact-strip span { border: 1px solid rgba(255,255,255,.72); border-radius: 999px; background: rgba(255,255,255,.52); padding: 10px 13px; color: var(--ink); font-size: 12px; font-weight: 1000; box-shadow: 0 12px 28px rgba(0,124,182,.08); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 19px; font-weight: 1000; border: 1px solid rgba(6,34,53,.16); transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out); }
.button:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(6,34,53,.16); }
.button:active { transform: scale(.98); }
.button.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.button.ghost { background: rgba(255,255,255,.38); color: var(--ink); border-color: rgba(255,255,255,.65); }
.button.light { background: #fff; border-color: #fff; color: var(--ink); }
.bottle-stage { position: relative; justify-self: end; width: min(100%, 430px); min-height: 570px; display: grid; place-items: center; perspective: 1200px; }
.splash-ring { position: absolute; width: 105%; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 120deg, rgba(255,255,255,.0), rgba(255,255,255,.85), rgba(116,245,195,.6), rgba(255,173,53,.55), rgba(255,255,255,.0)); filter: blur(.2px); animation: spin 18s linear infinite; opacity: .72; }
@keyframes spin { to { transform: rotate(360deg); } }
.bottle { position: relative; width: 210px; height: 510px; border-radius: 44px 44px 52px 52px; background: linear-gradient(110deg, rgba(255,255,255,.95), rgba(222,249,255,.64) 18%, rgba(34,181,235,.22) 44%, rgba(255,255,255,.78) 62%, rgba(116,245,195,.34)); border: 1px solid rgba(255,255,255,.9); box-shadow: inset 18px 0 28px rgba(255,255,255,.38), inset -18px 0 24px rgba(0,124,190,.16), 0 45px 95px rgba(4,83,130,.28); transform: rotate(-7deg); overflow: hidden; }
.cap { position: absolute; left: 50%; top: -34px; width: 116px; height: 54px; transform: translateX(-50%); border-radius: 24px 24px 12px 12px; background: linear-gradient(90deg, #026aa7, #6ee7ff, #026aa7); box-shadow: inset 0 6px 12px rgba(255,255,255,.42); }
.bottle-highlight { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,.72) 20%, transparent 28% 100%); mix-blend-mode: screen; }
.label { position: absolute; left: 17px; right: 17px; bottom: 44px; min-height: 220px; border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)); padding: 22px 18px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: inset 0 0 0 1px rgba(6,34,53,.10); }
.label-brand { font-size: 58px; font-weight: 1000; letter-spacing: -.12em; line-height: .78; color: var(--ink); }
.label-line { height: 1px; background: linear-gradient(90deg, var(--ink), transparent); margin: 18px 0; }
.label-copy { font-size: 10px; font-weight: 1000; letter-spacing: .18em; color: rgba(6,34,53,.70); }
.label-proof { width: max-content; max-width: 100%; margin-top: 12px; border-radius: 999px; padding: 9px 10px; background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 1000; letter-spacing: .08em; }
.water-shadow { position: absolute; width: 72%; height: 34px; bottom: 8px; border-radius: 50%; background: radial-gradient(ellipse, rgba(6,76,124,.35), transparent 70%); filter: blur(10px); }
.taste-section, .waitlist-section { background: #fff; color: var(--ink); }
.taste-section { padding: clamp(82px, 12vw, 150px) max(20px, calc((100vw - 1180px)/2)); }
.section-kicker { color: #1681a8; font-size: 11px; font-weight: 1000; letter-spacing: .24em; margin-bottom: 22px; }
.taste-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); gap: clamp(36px, 7vw, 90px); align-items: start; }
h2 { margin: 0; font-size: clamp(42px, 7vw, 88px); font-weight: 1000; letter-spacing: -.082em; line-height: .88; text-wrap: balance; }
.taste-copy p, .wave-card p, .waitlist-card p { color: var(--muted); font-size: clamp(17px, 2vw, 21px); font-weight: 600; line-height: 1.48; text-wrap: pretty; }
.taste-cards { display: grid; gap: 12px; }
.taste-cards div { position: relative; overflow: hidden; border-radius: 28px; padding: 25px; min-height: 162px; color: var(--ink); background: linear-gradient(135deg, rgba(115,215,255,.22), rgba(116,245,195,.20) 55%, rgba(255,173,53,.16)); border: 1px solid rgba(6,34,53,.08); }
.taste-cards div:nth-child(2) { background: linear-gradient(135deg, rgba(255,173,53,.25), rgba(255,111,130,.14), rgba(255,255,255,.9)); }
.taste-cards span { color: #1681a8; font-size: 11px; font-weight: 1000; letter-spacing: .18em; }
.taste-cards strong { display: block; margin-top: 32px; font-size: 34px; letter-spacing: -.06em; line-height: .9; }
.taste-cards p { margin: 9px 0 0; color: rgba(6,34,53,.68); font-weight: 650; }
.moments-section { display: grid; grid-template-columns: repeat(3, 1fr); background: #056aab; }
.moment { min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(24px, 4vw, 46px); color: #fff; border-right: 1px solid rgba(255,255,255,.24); overflow: hidden; position: relative; transition: transform 220ms var(--ease-out), filter 220ms var(--ease-out); }
.moment::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at 70% 18%, rgba(255,255,255,.74), transparent 13rem), linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,61,110,.35)); }
.moment::after { content: ""; position: absolute; width: 180px; aspect-ratio: 1; right: -40px; top: 48px; border-radius: 50%; background: rgba(255,255,255,.18); box-shadow: -70px 80px 0 rgba(255,255,255,.10); }
.moment.sauna { background: linear-gradient(135deg, #ffad35, #08a5e6); }
.moment.travel { background: linear-gradient(135deg, #73d7ff, #064f9d); }
.moment.sport { background: linear-gradient(135deg, #74f5c3, #06a8ff 52%, #ff6f82); }
.moment > * { position: relative; z-index: 1; }
.moment:last-child { border-right: 0; }
.moment:hover { transform: translateY(-4px); filter: saturate(1.08); }
.moment span { font-size: 11px; font-weight: 1000; letter-spacing: .2em; }
.moment h3 { margin: 18px 0 10px; font-size: clamp(34px, 4vw, 58px); line-height: .88; letter-spacing: -.075em; }
.moment p { margin: 0; color: rgba(255,255,255,.82); font-size: 16px; font-weight: 680; }
.wave-section { position: relative; background: linear-gradient(180deg, #fff 0%, #dff8ff 100%); padding: clamp(86px, 13vw, 160px) max(20px, calc((100vw - 1180px)/2)); overflow: hidden; }
.wave-section::before { content: ""; position: absolute; left: -10%; right: -10%; top: -1px; height: 130px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23056aab' fill-opacity='1' d='M0,20 C190,120 330,12 542,82 C722,142 870,164 1050,82 C1212,8 1328,72 1440,116 L1440,0 L0,0 Z'/%3E%3C/svg%3E") top center/100% 100% no-repeat; }
.wave-card { position: relative; z-index: 1; max-width: 980px; border-radius: 42px; background: rgba(255,255,255,.66); border: 1px solid rgba(255,255,255,.8); padding: clamp(28px, 5vw, 62px); box-shadow: 0 35px 100px rgba(5,106,171,.14); backdrop-filter: blur(18px); }
.wave-card h2 { color: var(--ink); }
.material-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.material-tags span { border: 1px solid rgba(6,34,53,.12); border-radius: 999px; padding: 11px 14px; color: var(--ink); font-weight: 900; background: rgba(255,255,255,.66); }
.waitlist-section { padding: clamp(80px, 12vw, 150px) max(20px, calc((100vw - 1180px)/2)); background: linear-gradient(135deg, #06a8ff, #74f5c3 58%, #fff4c2); }
.waitlist-card { display: flex; align-items: end; justify-content: space-between; gap: 30px; border-radius: 38px; background: rgba(6,34,53,.92); color: #fff; padding: clamp(28px, 5vw, 58px); box-shadow: 0 35px 100px rgba(6,34,53,.22); }
.waitlist-card .micro { color: var(--lime); }
.waitlist-card h2 { max-width: 800px; }
.waitlist-card p { color: rgba(255,255,255,.70); max-width: 680px; }
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px max(20px, calc((100vw - 1180px)/2)); color: rgba(6,34,53,.58); background: #eaffff; font-size: 13px; font-weight: 700; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  .nav-shell { top: 10px; width: calc(100% - 20px); }
  .nav-links { gap: 10px; font-size: 12px; }
  .nav-links a:not(.nav-action):not(:first-child) { display: none; }
  .hero { min-height: auto; align-items: start; }
  .hero::before { background: linear-gradient(180deg, rgba(223,248,255,.90), rgba(223,248,255,.55) 70%, rgba(255,255,255,.05)); }
  .hero-frame { grid-template-columns: 1fr; padding-top: 105px; padding-bottom: 90px; gap: 28px; }
  h1 { font-size: clamp(49px, 13vw, 80px); line-height: .86; }
  .hero-text { font-size: 18px; margin-top: 22px; }
  .bottle-stage { justify-self: center; width: 100%; min-height: 400px; order: -1; margin-top: 12px; }
  .bottle { width: 162px; height: 390px; border-radius: 34px 34px 42px 42px; }
  .cap { width: 88px; height: 42px; top: -26px; }
  .label { left: 13px; right: 13px; bottom: 32px; min-height: 170px; border-radius: 22px; padding: 17px 14px; }
  .label-brand { font-size: 44px; }
  .one { left: 3vw; top: 55vh; }
  .two { right: 6vw; top: 12vh; width: 88px; }
  .three { display: none; }
  .leaf-a { left: 70vw; top: 47vh; }
  .leaf-b { display: none; }
  .taste-grid { grid-template-columns: 1fr; }
  .moments-section { grid-template-columns: 1fr; }
  .moment { min-height: 265px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .waitlist-card { display: block; }
  .waitlist-card .button { width: 100%; margin-top: 24px; }
  .footer { display: grid; }
}
@media (max-width: 430px) {
  .brand { font-size: 29px; }
  .hero-actions .button { width: 100%; }
  .fact-strip span { flex: 1 1 calc(50% - 9px); text-align: center; padding-inline: 8px; }
  h1 { font-size: clamp(43px, 12.2vw, 56px); letter-spacing: -.081em; line-height: .9; }
  .bottle-stage { min-height: 350px; }
  .fruit.lime { width: 66px; }
  .fruit.orange { width: 82px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
  .reveal { opacity: 1; transform: none; }
  #ocean-life { display: none; }
}
