:root {
  --night: #082f36;
  --night-deep: #052329;
  --cream: #fff7e9;
  --sand: #f2e1c4;
  --coral: #ff5f50;
  --coral-dark: #e54e43;
  --sun: #ffc966;
  --aqua: #16a6ab;
  --aqua-light: #73d8d2;
  --ink: #12373c;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(4, 40, 46, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; color: white; background: var(--night); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 clamp(24px, 5vw, 76px);
  color: white;
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { height: 72px; background: rgba(5, 35, 41, .94); box-shadow: 0 12px 40px rgba(0,0,0,.14); backdrop-filter: blur(15px); }
.brand { display: flex; align-items: center; gap: 11px; color: white; text-decoration: none; }
.brand img { width: 49px; height: 49px; object-fit: contain; }
.brand span { font-weight: 900; font-size: 18px; letter-spacing: .05em; }
.brand i { color: var(--coral); font-family: Georgia, serif; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); font-size: 13px; font-weight: 700; }
.main-nav a { position: relative; text-decoration: none; }
.main-nav > a:not(.nav-play)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--coral); transition: right .2s ease; }
.main-nav > a:hover::after { right: 0; }
.nav-play { padding: 11px 17px; border: 1px solid rgba(255,255,255,.35); border-radius: 100px; transition: .2s ease; }
.nav-play:hover { color: var(--night); background: white; }
.nav-play span { color: var(--coral); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; }
.nav-toggle span { display: block; width: 17px; height: 2px; margin: 5px auto; background: white; transition: .25s ease; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 6vw, 96px);
  padding: 132px clamp(24px, 7vw, 116px) 82px;
  color: white;
  background:
    radial-gradient(circle at 9% 90%, rgba(22,166,171,.34), transparent 24%),
    linear-gradient(128deg, var(--night-deep), var(--night) 60%, #0c4650);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 31px 31px; mask-image: linear-gradient(120deg, #000, transparent 58%); }
.hero-sun { position: absolute; top: -170px; right: -130px; width: 520px; height: 520px; border: 1px solid rgba(255,201,102,.22); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,201,102,.035), 0 0 0 160px rgba(255,201,102,.025); }
.hero-copy { position: relative; z-index: 2; max-width: 670px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 20px; color: var(--aqua-light); font-size: 11px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow span { width: 35px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--aqua); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Arial Black", Inter, sans-serif; letter-spacing: -.045em; }
h1 { margin-bottom: 25px; font-size: clamp(56px, 6.5vw, 104px); line-height: .91; }
h1 em, h2 em { color: var(--coral); font-family: Georgia, serif; font-weight: 500; letter-spacing: -.06em; }
.hero-lead { max-width: 590px; margin-bottom: 33px; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 58px; padding: 0 25px; border: 1px solid transparent; border-radius: 100px; font-size: 13px; font-weight: 900; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--night); background: var(--sun); box-shadow: 0 13px 32px rgba(255,201,102,.18); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(255,201,102,.28); }
.button-primary span { display: grid; place-items: center; width: 28px; height: 28px; color: white; background: var(--coral); border-radius: 50%; }
.button-ghost { color: white; border-color: rgba(255,255,255,.27); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 23px; color: rgba(255,255,255,.51); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #71e796; box-shadow: 0 0 0 5px rgba(113,231,150,.11), 0 0 16px #71e796; }

.hero-world { position: relative; z-index: 2; aspect-ratio: 1.05; max-height: 680px; border: 1px solid rgba(255,255,255,.16); border-radius: 48% 48% 8% 8% / 42% 42% 8% 8%; box-shadow: 0 45px 100px rgba(0,0,0,.3); overflow: hidden; transform: rotate(1.5deg); }
.scene-sky { position: absolute; inset: 0 0 45%; background: linear-gradient(#66d2d3, #c1ede0 68%, #ffd89a); }
.scene-sky::after { content: ""; position: absolute; top: 19%; right: 16%; width: 98px; height: 98px; border-radius: 50%; background: #ffe39c; box-shadow: 0 0 50px rgba(255,233,152,.8); }
.scene-cloud { position: absolute; z-index: 1; width: 95px; height: 15px; border-radius: 20px; background: rgba(255,255,255,.55); filter: blur(1px); }
.scene-cloud::before, .scene-cloud::after { content: ""; position: absolute; bottom: 0; border-radius: 50%; background: inherit; }
.scene-cloud::before { left: 20px; width: 31px; height: 31px; }
.scene-cloud::after { left: 47px; width: 44px; height: 44px; }
.scene-cloud-one { top: 18%; left: 12%; }
.scene-cloud-two { top: 31%; right: 10%; transform: scale(.7); }
.scene-sea { position: absolute; inset: 45% 0 0; background: linear-gradient(170deg, #1bb9be, #087987 65%, #075766); }
.scene-sea span { position: absolute; width: 30%; height: 3px; border-radius: 5px; background: rgba(255,255,255,.48); }
.scene-sea span:nth-child(1) { top: 13%; left: 8%; }
.scene-sea span:nth-child(2) { top: 27%; right: 3%; width: 38%; }
.scene-sea span:nth-child(3) { top: 42%; left: 29%; width: 20%; }
.scene-beach { position: absolute; z-index: 2; left: -10%; right: -5%; bottom: 13%; height: 43%; background: #f8d59b; transform: rotate(-10deg); box-shadow: inset 0 15px 0 rgba(255,255,255,.45); }
.scene-promenade { position: absolute; z-index: 3; left: -12%; right: -5%; bottom: -5%; height: 31%; background: repeating-linear-gradient(110deg, #eee3cb 0 18px, #dfd0b4 18px 20px); transform: rotate(-9deg); border-top: 12px solid #f06a5d; }
.scene-building { position: absolute; z-index: 4; bottom: 23%; background: #fff3df; box-shadow: inset -13px -12px 0 rgba(18,55,60,.09), 0 14px 25px rgba(30,80,80,.15); }
.scene-building::before { content: ""; position: absolute; left: 13%; right: 13%; top: 35%; height: 18%; background: repeating-linear-gradient(90deg, #087987 0 16%, #fff3df 16% 26%); }
.scene-building b { position: absolute; top: 8%; left: 12%; color: var(--coral); font-size: 12px; letter-spacing: .13em; }
.building-one { right: 4%; width: 37%; height: 30%; transform: rotate(2deg); }
.building-two { right: 34%; width: 26%; height: 22%; background: #ffc966; transform: rotate(-1deg); }
.scene-palm { position: absolute; z-index: 7; width: 10px; height: 36%; bottom: 16%; background: #8d5d42; transform-origin: bottom; }
.scene-palm i, .scene-palm b { position: absolute; top: -8px; left: 50%; width: 90px; height: 56px; border-radius: 100% 0; background: #0d7d72; box-shadow: 5px 9px 0 #0e9382; transform: translateX(-50%) rotate(-25deg); }
.scene-palm b { transform: translateX(-45%) scaleX(-1) rotate(-30deg); }
.palm-one { left: 18%; transform: rotate(-7deg); }
.palm-two { right: 30%; bottom: 20%; height: 25%; transform: scale(.78) rotate(7deg); }
.scene-person { position: absolute; z-index: 8; bottom: 11%; width: 16px; height: 46px; border-radius: 8px 8px 3px 3px; background: var(--coral); box-shadow: 0 8px 12px rgba(5,35,41,.22); }
.scene-person::before { content: ""; position: absolute; left: 1px; top: -13px; width: 14px; height: 14px; border-radius: 50%; background: #6d3e2f; }
.person-one { left: 42%; }
.person-two { left: 49%; height: 40px; background: #2f768d; }
.person-three { left: 56%; height: 48px; background: #ffb539; }
.scene-card { position: absolute; z-index: 12; right: 22px; bottom: 20px; display: flex; align-items: center; gap: 13px; padding: 13px 17px; color: white; border: 1px solid rgba(255,255,255,.25); border-radius: 15px; background: rgba(5,35,41,.82); backdrop-filter: blur(12px); }
.scene-card .live-dot { flex: 0 0 auto; }
.scene-card div { display: grid; line-height: 1.15; }
.scene-card small { font-size: 8px; letter-spacing: .15em; opacity: .58; }
.scene-card strong { margin-top: 4px; font-size: 11px; letter-spacing: .08em; }
.scroll-cue { position: absolute; bottom: 18px; left: 50%; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .24em; transform: translateX(-50%) rotate(90deg); transform-origin: center; }
.scroll-cue span { width: 31px; height: 1px; background: currentColor; }

.section-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.world-section { padding: 130px 0 145px; }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 60px; margin-bottom: 68px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -25px; }
.section-heading h2, .feature-intro h2 { margin-bottom: 0; font-size: clamp(47px, 5.3vw, 78px); line-height: .96; }
.section-heading > p:last-child { max-width: 460px; margin: 0 0 4px; color: #6f8585; font-size: 17px; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-card { position: relative; min-height: 500px; display: flex; flex-direction: column; padding: 30px; border-radius: 10px; overflow: hidden; }
.story-card p { position: relative; z-index: 2; max-width: 270px; margin-top: auto; margin-bottom: 12px; font-size: 14px; }
.story-card h3 { position: relative; z-index: 2; margin: 0; font-size: 31px; }
.story-number { position: absolute; z-index: 2; top: 23px; right: 25px; font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.story-art { position: absolute; inset: 0; }
.story-arrival { color: var(--night); background: var(--sun); }
.story-arrival::after { content: ""; position: absolute; width: 280px; height: 280px; top: 72px; left: 50%; border: 1px solid rgba(8,47,54,.15); border-radius: 50%; transform: translateX(-50%); box-shadow: 0 0 0 38px rgba(255,255,255,.08), 0 0 0 76px rgba(255,255,255,.06); }
.plane { position: absolute; z-index: 2; top: 37%; left: 50%; color: var(--coral); font-size: 76px; transform: translate(-50%, -50%) rotate(18deg); }
.route { position: absolute; z-index: 1; top: 19%; left: 18%; width: 65%; height: 43%; border: 2px dashed rgba(8,47,54,.35); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(9deg); }
.pin { position: absolute; top: 21%; left: 19%; color: var(--night); font-size: 19px; }
.story-explore { color: white; background: var(--aqua); }
.boulevard { top: 17%; left: -20%; right: -20%; bottom: 28%; background: linear-gradient(90deg, #f4d28e 0 21%, #e95c51 21% 24%, #f2e7cb 24% 77%, #0c7f89 77%); transform: rotate(-13deg); }
.boulevard::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 41px, rgba(8,47,54,.1) 41px 43px); }
.boulevard i { position: absolute; z-index: 2; left: calc(26% + var(--offset, 0px)); top: 10%; width: 8px; height: 70px; background: #8d5d42; }
.boulevard i::before { content: ""; position: absolute; top: -12px; left: -24px; width: 58px; height: 40px; border-radius: 50%; background: var(--night); }
.boulevard i:nth-child(1) { --offset: 15px; }
.boulevard i:nth-child(2) { --offset: 100px; top: 33%; }
.boulevard i:nth-child(3) { --offset: 200px; top: 15%; }
.boulevard i:nth-child(4) { --offset: 290px; top: 40%; }
.story-together { color: white; background: var(--coral); }
.story-together::before { content: ""; position: absolute; top: -100px; left: -60px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.055), 0 0 0 110px rgba(255,255,255,.04); }
.avatars { display: flex; align-items: flex-end; justify-content: center; gap: 6px; padding-bottom: 43%; }
.avatars i { position: relative; width: 66px; height: 120px; border-radius: 35px 35px 12px 12px; background: var(--sun); box-shadow: 0 13px 0 rgba(8,47,54,.12); }
.avatars i::before { content: ""; position: absolute; top: -47px; left: 8px; width: 51px; height: 51px; border-radius: 50%; background: #744a3b; }
.avatars i:nth-child(2) { z-index: 2; height: 151px; background: var(--night); }
.avatars i:nth-child(2)::before { background: #c58160; }
.avatars i:nth-child(3) { height: 108px; background: var(--aqua-light); }

.feature-section { padding: 120px 0 145px; color: white; background: var(--night); overflow: hidden; }
.feature-intro { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; }
.feature-intro .eyebrow { flex: 0 0 auto; margin-bottom: 11px; }
.feature-intro h2 { max-width: 730px; }
.feature-marquee { width: max-content; margin: 90px 0 70px; color: rgba(255,255,255,.055); font-family: "Arial Black", sans-serif; font-size: clamp(55px, 8vw, 120px); line-height: 1; white-space: nowrap; animation: marquee 28s linear infinite; }
.feature-marquee span { color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }
.feature-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 17px; }
.feature-card { min-height: 310px; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.035); transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(115,216,210,.4); background: rgba(255,255,255,.06); }
.feature-card.feature-large { min-height: 420px; background: linear-gradient(140deg, rgba(22,166,171,.25), rgba(255,255,255,.03)); }
.feature-wide { grid-column: 1 / -1; min-height: 280px; flex-direction: row; align-items: flex-end; background: linear-gradient(110deg, rgba(255,95,80,.15), rgba(255,255,255,.025)); }
.feature-icon { display: grid; place-items: center; width: 64px; height: 64px; color: var(--sun); border: 1px solid rgba(255,201,102,.35); border-radius: 50%; font-size: 21px; font-weight: 900; }
.feature-card div { max-width: 570px; }
.feature-card small { color: var(--aqua-light); font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.feature-card h3 { margin: 9px 0 13px; font-size: clamp(25px, 2.5vw, 38px); line-height: 1.06; }
.feature-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.steps-section { padding: 130px 0 155px; }
.steps-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #c8d0c8; }
.steps-list li { display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: center; min-height: 160px; padding: 25px 0; border-bottom: 1px solid #c8d0c8; }
.steps-list li > span { display: grid; place-items: center; width: 51px; height: 51px; color: var(--coral); border: 1px solid #d6b4a8; border-radius: 50%; font-family: Georgia, serif; font-size: 22px; }
.steps-list h3 { margin: 0 0 5px; font-size: 29px; }
.steps-list p { margin: 0; color: #6f8585; }

.final-cta { position: relative; min-height: 740px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 110px 24px; color: white; text-align: center; background: linear-gradient(145deg, #0b3f45, var(--night-deep)); overflow: hidden; }
.final-cta::before { content: ""; position: absolute; left: 50%; bottom: -290px; width: 920px; height: 540px; border-radius: 50%; background: linear-gradient(#23afb4, #08717d); transform: translateX(-50%); box-shadow: inset 0 18px 0 rgba(255,255,255,.14); }
.cta-logo { position: relative; z-index: 2; width: 145px; height: 145px; margin-bottom: 24px; object-fit: contain; filter: drop-shadow(0 18px 25px rgba(0,0,0,.18)); }
.final-cta .eyebrow { position: relative; z-index: 2; }
.final-cta h2 { position: relative; z-index: 2; margin-bottom: 37px; font-size: clamp(55px, 7vw, 98px); line-height: .9; }
.final-cta .button { position: relative; z-index: 2; }
.cta-orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.orbit-one { width: 720px; height: 720px; }
.orbit-two { width: 980px; height: 980px; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 25px; align-items: center; padding: 44px clamp(24px, 5vw, 76px); color: rgba(255,255,255,.57); background: var(--night-deep); font-size: 12px; }
.footer-brand { color: white; }
.site-footer p { margin: 0; text-align: center; }
.site-footer div { display: flex; gap: 21px; }
.site-footer div a { text-decoration: none; }
.site-footer div a:hover { color: white; }
.site-footer small { grid-column: 1 / -1; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 720px; }
  .hero-world { width: min(100%, 650px); justify-self: center; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading .eyebrow { margin-bottom: 0; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { min-height: 430px; }
  .feature-intro { display: block; }
  .feature-intro .eyebrow { margin-bottom: 20px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand, .site-footer div { justify-content: center; }
}

@media (max-width: 700px) {
  .site-header { height: 76px; padding: 0 20px; }
  .brand img { width: 42px; height: 42px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: absolute; top: 76px; left: 14px; right: 14px; display: grid; gap: 0; padding: 10px; color: white; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(5,35,41,.98); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 14px; }
  .nav-play { margin-top: 4px; text-align: center; }
  .hero { grid-template-columns: minmax(0, 1fr); gap: 55px; padding: 120px 22px 80px; }
  h1 { font-size: clamp(52px, 17vw, 75px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-world { width: 100%; min-height: 405px; border-radius: 44% 44% 5% 5% / 34% 34% 5% 5%; }
  .scene-building { bottom: 22%; }
  .scene-person { transform: scale(.7); transform-origin: bottom; }
  .section-shell { width: min(100% - 36px, 1180px); }
  .world-section, .feature-section, .steps-section { padding-top: 92px; padding-bottom: 100px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .feature-intro h2 { font-size: 48px; }
  .story-card { min-height: 420px; padding: 24px; }
  .feature-marquee { margin: 65px 0 50px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card.feature-large, .feature-wide { grid-column: auto; min-height: 330px; flex-direction: column; align-items: stretch; padding: 25px; }
  .steps-list li { grid-template-columns: 66px 1fr; min-height: 140px; }
  .steps-list h3 { font-size: 23px; }
  .steps-list p { font-size: 14px; }
  .final-cta { min-height: 650px; }
  .site-footer { padding: 40px 24px; }
}

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