:root {
  --navy-950: #03131f;
  --navy-900: #061b2a;
  --navy-800: #092a3a;
  --ink: #edf5f1;
  --muted: #9eb5b2;
  --gold: #e9b85a;
  --gold-light: #f5d88c;
  --teal: #55d2bd;
  --line: rgba(174, 220, 211, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { position: relative; margin: 0; color: var(--ink); background: var(--navy-950); font-family: "DM Sans", sans-serif; isolation: isolate; }
body::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background-image: url("assets/pirate-chart-pattern.png");
  background-image: image-set(url("assets/pirate-chart-pattern.webp") type("image/webp"), url("assets/pirate-chart-pattern.png") type("image/png"));
  background-position: center 120px;
  background-repeat: repeat;
  background-size: 680px 680px;
  opacity: .055;
  pointer-events: none;
}
body > main,
body > footer { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: auto;
  padding: 14px 5vw;
}
.site-header.is-fixed {
  position: fixed;
  max-width: none;
  padding-top: 6px;
  padding-bottom: 6px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  animation: header-return .28s ease both;
  isolation: isolate;
}
.site-header.is-fixed::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 -34px;
  content: "";
  background: linear-gradient(180deg, rgba(2,14,23,.98) 0%, rgba(2,14,23,.9) 45%, rgba(2,14,23,.48) 72%, transparent 100%);
  pointer-events: none;
}
.site-header.is-fixed .site-logo { width: clamp(92px, 8vw, 116px); }
@keyframes header-return {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

.brand, .brand picture { display: inline-flex; align-items: center; }
.site-logo { display: block; width: clamp(150px, 15vw, 205px); height: auto; filter: drop-shadow(0 5px 12px rgba(0,0,0,.35)); }
nav { display: flex; align-items: center; gap: 34px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
nav a { transition: color .2s ease; }
nav a:hover { color: #fff; }
.account-link, .profile-link { border: 0; color: inherit; background: none; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.account-link:hover { color: #fff; }
.profile-link { display: inline-flex; gap: 9px; align-items: center; padding: 0; color: #fff; }
.profile-link[hidden] { display: none; }
.profile-link > span:first-child { display: grid; width: 34px; height: 34px; place-items: center; overflow: hidden; border: 1px solid rgba(233,184,90,.72); border-radius: 50%; color: #251b0b; background: var(--gold); background-position: center; background-size: cover; font-size: 12px; font-weight: 700; }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(233,184,90,.7); color: var(--gold-light); }

.auth-modal { width: min(440px, calc(100% - 32px)); max-height: calc(100svh - 32px); margin: auto; padding: 0; overflow: visible; border: 0; border-radius: 20px; outline: 0; color: var(--ink); background: transparent; opacity: 0; transform: translateY(12px) scale(.98); transition: opacity .18s ease, transform .18s ease, overlay .18s allow-discrete, display .18s allow-discrete; }
.auth-modal[open] { opacity: 1; transform: none; }
.auth-modal::backdrop { background: rgba(1,11,18,.76); backdrop-filter: blur(12px) saturate(.75); }
@starting-style { .auth-modal[open] { opacity: 0; transform: translateY(12px) scale(.98); } }
.auth-card { position: relative; width: 100%; max-height: calc(100svh - 32px); overflow: auto; padding: 38px; border: 1px solid rgba(174,220,211,.2); border-radius: 20px; background: radial-gradient(circle at 85% 0, rgba(85,210,189,.12), transparent 35%), linear-gradient(155deg, rgba(10,43,57,.98), rgba(3,19,31,.99) 70%); box-shadow: 0 32px 100px rgba(0,0,0,.58), inset 0 1px rgba(255,255,255,.04); }
.auth-card h2 { font-size: 39px; line-height: 1.05; letter-spacing: -.02em; }
.auth-close { position: absolute; top: 14px; right: 15px; display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; color: var(--muted); background: rgba(255,255,255,.035); font-size: 21px; line-height: 1; cursor: pointer; }
.auth-intro { margin: 14px 0 25px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 20px; padding: 4px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(1,11,18,.38); }
.auth-tabs button { padding: 10px; border: 0; border-radius: 8px; color: var(--muted); background: none; font: inherit; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: .18s ease; }
.auth-tabs button.active { color: #09231f; background: var(--teal); box-shadow: 0 5px 16px rgba(0,0,0,.2); }
#landingAuthForm { display: grid; gap: 13px; }
#landingAuthForm [hidden] { display: none !important; }
#landingAuthForm .signup-only { display: none !important; }
#landingAuthForm.signup-mode .signup-only { display: grid !important; }
#landingAuthForm.signup-mode .signin-only { display: none !important; }
#landingAuthForm label { display: grid; gap: 7px; color: #a8bdb9; font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
#landingAuthForm input { width: 100%; padding: 13px 14px; border: 1px solid rgba(174,220,211,.16); border-radius: 11px; outline: none; color: var(--ink); background: rgba(1,11,18,.62); box-shadow: inset 0 1px 3px rgba(0,0,0,.24); color-scheme: dark; font: inherit; font-size: 14px; transition: border-color .18s, box-shadow .18s; }
#landingAuthForm input:focus { border-color: rgba(85,210,189,.72); box-shadow: 0 0 0 3px rgba(85,210,189,.09), inset 0 1px 3px rgba(0,0,0,.2); }
#landingAuthForm input:-webkit-autofill { -webkit-text-fill-color: var(--ink); box-shadow: 0 0 0 1000px #061d2a inset; caret-color: var(--ink); }
.auth-submit { width: 100%; margin-top: 5px; border-radius: 11px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 9px 25px rgba(0,0,0,.22); cursor: pointer; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: #708b89; font-size: 10px; text-transform: uppercase; }
.auth-divider::before, .auth-divider::after { flex: 1; height: 1px; content: ""; background: var(--line); }
.google-button { display: flex; width: 100%; align-items: center; justify-content: center; gap: 12px; padding: 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; color: var(--ink); background: rgba(255,255,255,.045); font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: border-color .18s, background .18s; }
.google-button:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.075); }
.google-button b { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: #174ea6; background: #fff; }
.auth-message { min-height: 20px; margin: 16px 0 0; color: var(--gold-light); font-size: 12px; line-height: 1.5; }
.auth-message.error { color: #ffb2a8; }
.handoff-message { margin: 0 32px 20px 0; padding: 11px 13px; border: 1px solid rgba(233,184,90,.25); border-radius: 10px; background: rgba(233,184,90,.07); }
.handoff-message.error { border-color: rgba(255,113,98,.32); background: rgba(255,113,98,.08); }
.auth-modal[data-view="connecting"] .auth-close { display: none; }
.connecting-card { display: grid; min-height: 270px; padding: 24px 0 14px; place-content: center; justify-items: center; text-align: center; }
.connecting-card[hidden] { display: none; }
.connecting-logo { display: block; width: 150px; height: auto; margin: 0 0 19px; filter: drop-shadow(0 12px 20px rgba(0,0,0,.34)); }
.connecting-card h2 { max-width: 310px; font-size: 36px; }
.profile-avatar.connecting-avatar { width: 88px; height: 88px; margin-top: 28px; animation: connecting-avatar-pulse 1.8s ease-in-out infinite; }
.connecting-name { margin: 17px 0 0; color: var(--ink); font-family: "Marcellus", serif; font-size: 27px; line-height: 1.1; }
@keyframes connecting-avatar-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0,0,0,.3), 0 0 0 0 rgba(233,184,90,.22); }
  50% { box-shadow: 0 14px 34px rgba(0,0,0,.38), 0 0 0 9px rgba(233,184,90,0); }
}
.profile-card { text-align: center; }
.profile-card h2 { margin-top: 13px; }
.profile-avatar { display: grid; width: 76px; height: 76px; margin: 15px auto 0; place-items: center; overflow: hidden; border: 2px solid var(--gold); border-radius: 50%; color: #251b0b; background: var(--gold); background-position: center; background-size: cover; box-shadow: 0 10px 28px rgba(0,0,0,.3); font-size: 25px; font-weight: 700; }
.profile-card > p:not(.eyebrow) { color: var(--muted); }
.profile-provider { margin-bottom: 28px; font-size: 12px; text-transform: capitalize; }
.profile-signout { display: block; margin: 25px auto 0; border: 0; color: var(--muted); background: none; font: inherit; font-size: 11px; text-decoration: underline; cursor: pointer; }

.hero { position: relative; display: flex; align-items: center; min-height: min(900px, 100svh); overflow: hidden; isolation: isolate; }
.hero-art { position: absolute; z-index: -3; inset: 0; overflow: hidden; background: url("assets/hero-v2.webp") center 45% / cover no-repeat; transform: scale(1.015); }
.hero-background-video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(2,16,26,.96) 0%, rgba(3,19,30,.78) 37%, rgba(3,17,26,.22) 66%, rgba(2,13,21,.18)), linear-gradient(0deg, var(--navy-950) 0%, transparent 28%, rgba(1,11,18,.42) 100%); }
.hero-content { position: relative; z-index: 1; width: min(660px, 90vw); margin-left: max(5vw, calc((100vw - 1300px) / 2)); padding: 140px 0 110px; }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .25em; }
h1, h2, h3 { margin: 0; font-family: "Marcellus", serif; font-weight: 400; }
h1 { font-size: clamp(54px, 7.2vw, 108px); line-height: .89; letter-spacing: -.035em; text-shadow: 0 8px 30px rgba(0,0,0,.34); }
h1 em { color: var(--gold-light); font-style: normal; }
.hero-copy { max-width: 550px; margin: 30px 0 0; color: rgba(237,245,241,.82); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-width: 164px; padding: 15px 24px; border: 1px solid rgba(255,255,255,.28); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { border-color: var(--gold); color: #251b0b; background: var(--gold); box-shadow: 0 9px 28px rgba(0,0,0,.22); }
.button.primary:hover { background: var(--gold-light); }
.button.secondary { background: rgba(4,24,35,.38); backdrop-filter: blur(8px); }
.button.secondary:hover { border-color: rgba(255,255,255,.7); background: rgba(4,24,35,.64); }
.build-note { display: flex; align-items: center; gap: 9px; margin-top: 24px; color: rgba(255,255,255,.57); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.build-note-dot { flex: 0 0 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.hero-player { position: absolute; z-index: 1; top: 52.5%; right: max(3.5vw, calc((100vw - 1920px) / 2)); width: min(45vw, 900px); aspect-ratio: 16 / 9; overflow: hidden; border: 0; background: transparent; box-shadow: 0 18px 24px -14px rgba(0,0,0,.88), 0 44px 72px -30px rgba(0,0,0,.78), 0 78px 120px -52px rgba(0,0,0,.6); opacity: 0; visibility: hidden; transform: translateY(calc(-50% + 24px)) scale(.96); transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.22, 1, .36, 1), visibility 0s linear 1.2s; }
.hero-player.is-visible { opacity: 1; visibility: visible; transform: translateY(-50%) scale(1); transition-delay: 0s; }
.hero-player-frame, .hero-player-embed { display: block; width: 100%; height: 100%; }
.hero-player-embed { border: 0; }
.scroll-cue { position: absolute; right: 5vw; bottom: 34px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.66); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue span { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); }

.devices-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 7vw, 92px) 0 clamp(48px, 5vw, 72px);
  border-top: 1px solid rgba(174,220,211,.08);
  border-bottom: 1px solid rgba(174,220,211,.1);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 64%, rgba(24,113,127,.2), transparent 48%),
    linear-gradient(180deg, #03131f, #051d2a 62%, #03131f);
  isolation: isolate;
}
.devices-showcase::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(1180px, 88vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(233,184,90,.55), transparent);
  transform: translateX(-50%);
}
.devices-copy { position: relative; z-index: 1; width: min(780px, calc(100% - 44px)); margin: 0 auto; }
.devices-copy h2 { font-size: clamp(36px, 4vw, 54px); line-height: 1.04; }
.devices-copy > p:not(.eyebrow) { max-width: 680px; margin: 16px auto 24px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.devices-art { display: block; width: min(1040px, calc(100% - 48px)); margin: 14px auto 0; line-height: 0; }
.devices-art img { display: block; width: 100%; height: auto; filter: drop-shadow(0 28px 34px rgba(0,0,0,.42)); }

.section { width: min(100%, 1320px); margin: auto; padding: clamp(72px, 7vw, 104px) 5vw; }
.editorial-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .75fr); gap: clamp(36px, 6vw, 88px); align-items: end; margin-bottom: clamp(38px, 4vw, 58px); }
.editorial-heading h2, .mechanics-story h2, .voyage-intro h2, .final-cta h2 { font-size: clamp(38px, 4.3vw, 64px); line-height: 1.04; letter-spacing: -.025em; }
main > section h2 em { color: var(--gold-light); font-style: normal; }
.editorial-summary { padding-bottom: 5px; }
.editorial-summary p, .section-lede { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.78; }
.editorial-summary p + p { margin-top: 16px; }
.editorial-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.editorial-link span { color: var(--teal); font-size: 16px; transition: transform .2s ease; }
.editorial-link:hover span, .editorial-link:focus-visible span { transform: translateX(4px); }
.proof-frame { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); background: #041722; box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.proof-frame picture, .proof-frame img { display: block; width: 100%; }
.proof-frame img { height: auto; }
.proof-link { display: block; }
.proof-link:focus-visible { outline: 2px solid var(--gold-light); outline-offset: -3px; }
.proof-frame figcaption { display: flex; justify-content: space-between; gap: 18px; padding: 13px 16px; border-top: 1px solid var(--line); color: rgba(237,245,241,.66); background: rgba(2,15,24,.94); font-size: 10px; font-weight: 700; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }
.proof-frame figcaption span:last-child { color: #799794; text-align: right; }

.world-showcase { position: relative; }
.world-showcase::before { position: absolute; z-index: -1; top: 17%; right: 3%; width: 54%; aspect-ratio: 1; border-radius: 50%; content: ""; background: rgba(38,141,145,.08); filter: blur(100px); pointer-events: none; }
.world-map-layout { display: grid; grid-template-columns: minmax(0, 1.78fr) minmax(260px, 1fr); gap: clamp(24px, 3vw, 36px); align-items: start; max-width: 1100px; margin: 0 auto; }
.world-chart-column, .world-evidence { min-width: 0; }
.world-media-label { margin: 0 0 13px; color: rgba(237,245,241,.72); font-family: inherit; font-size: 10px; font-weight: 700; letter-spacing: .11em; line-height: 1.5; text-transform: uppercase; }
.world-chart { box-shadow: 0 34px 100px rgba(0,0,0,.38), -20px 20px 0 rgba(85,210,189,.035); }
.world-chart a { display: block; overflow: hidden; }
.world-chart img { transition: transform .8s cubic-bezier(.22, 1, .36, 1); }
.world-chart a:hover img { transform: scale(1.012); }
.world-detail-stack { display: grid; gap: 14px; }
.world-detail img { width: 100%; height: auto; }

.mechanics-story { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(38px, 5vw, 72px); align-items: center; width: min(100%, 1280px); }
.mechanics-copy h2 { margin-top: 1px; }
.mechanics-copy > .section-lede { margin-top: 21px; }
.mechanics-list { display: grid; margin: 25px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.mechanics-list li { display: grid; grid-template-columns: 34px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.mechanics-list li > span { padding-top: 3px; color: var(--teal); font: 13px "Marcellus", serif; }
.mechanics-list h3 { font-size: 20px; line-height: 1.25; }
.mechanics-list p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.mechanics-copy > .editorial-link { margin-top: 24px; }
.gameplay-proof { box-shadow: 0 34px 100px rgba(0,0,0,.38), 22px 22px 0 rgba(233,184,90,.035); }

.voyage-loop { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr); gap: clamp(42px, 5vw, 76px); align-items: center; width: min(100%, 1280px); }
.voyage-intro > .section-lede { max-width: 420px; margin-top: 23px; }
.voyage-carousel-shell { display: grid; grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 10px; align-items: center; min-width: 0; }
.voyage-arrow { display: grid; width: 42px; height: 64px; padding: 0; place-items: center; border: 1px solid var(--line); color: var(--gold-light); background: rgba(7,35,47,.7); font: 34px/1 "Marcellus", serif; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.voyage-arrow[hidden] { display: none; }
.voyage-arrow:hover, .voyage-arrow:focus-visible { border-color: rgba(85,210,189,.75); outline: 0; background: rgba(12,56,68,.94); transform: translateY(-2px); }
.voyage-carousel-stage { min-width: 0; padding: 18px 20px 50px; outline: 0; cursor: grab; touch-action: pan-y; user-select: none; }
.voyage-carousel-stage.is-dragging { cursor: grabbing; }
.voyage-carousel-stage:focus-visible { box-shadow: 0 0 0 1px var(--teal); }
.voyage-proof-stack { display: grid; gap: 20px; margin: 0; padding: 0; list-style: none; }
.voyage-proof-card { display: grid; grid-template-columns: minmax(0, 1fr); min-width: 0; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(9,42,58,.98), rgba(3,19,31,.99)); box-shadow: 0 24px 60px rgba(0,0,0,.3); transform-origin: center; }
.voyage-loop.is-enhanced .voyage-proof-card { grid-area: 1 / 1; width: calc(100% - 42px); max-width: 840px; justify-self: center; transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .45s ease, filter .45s ease; }
.voyage-loop.is-enhanced .voyage-proof-card[data-depth="0"] { z-index: 4; opacity: 1; transform: translateX(var(--voyage-drag-x, 0px)) rotate(-.25deg); }
.voyage-loop.is-enhanced .voyage-proof-card[data-depth="1"] { z-index: 3; opacity: .82; filter: brightness(.78); transform: translate(14px, 12px) rotate(1deg) scale(.985); }
.voyage-loop.is-enhanced .voyage-proof-card[data-depth="2"] { z-index: 2; opacity: .58; filter: brightness(.62); transform: translate(-8px, 23px) rotate(-1.1deg) scale(.97); }
.voyage-loop.is-enhanced .voyage-proof-card[data-depth="3"] { z-index: 1; opacity: .34; filter: brightness(.5); transform: translate(7px, 34px) rotate(.6deg) scale(.955); }
.voyage-loop.is-enhanced .voyage-proof-card:not([data-depth="0"]) { pointer-events: none; }
.voyage-carousel-stage.is-dragging .voyage-proof-card[data-depth="0"] { transition: none; }
.voyage-proof-card .proof-frame { display: grid; min-height: 0; aspect-ratio: 1.36; border: 0; border-bottom: 1px solid var(--line); box-shadow: none; }
.voyage-proof-card .proof-frame picture { height: 100%; }
.voyage-proof-card img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.proof-copy { display: grid; grid-template-columns: 34px 1fr; gap: 15px; align-content: center; padding: 28px 24px; }
.proof-copy > span { color: rgba(233,184,90,.75); font: 18px "Marcellus", serif; }
.proof-copy .eyebrow { margin-bottom: 11px; }
.proof-copy h3 { font-size: clamp(21px, 1.8vw, 27px); line-height: 1.15; }
.proof-copy p:last-child { max-width: 360px; margin: 11px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.harbour-fleet { width: min(100%, 1280px); }
.fleet-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.fleet-facts li { min-width: 0; padding-top: 14px; border-top: 1px solid var(--line); }
.fleet-facts strong { display: block; color: var(--gold-light); font: 26px "Marcellus", serif; }
.fleet-facts span { display: block; margin-top: 5px; color: #789592; font-size: 10px; font-weight: 700; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.harbour-gallery { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 18px; height: clamp(500px, 45vw, 620px); }
.harbour-feature { grid-row: 1 / -1; }
.harbour-gallery .proof-frame { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-height: 0; box-shadow: 0 26px 78px rgba(0,0,0,.28); }
.harbour-gallery picture { height: 100%; min-height: 0; }
.harbour-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.final-cta { position: relative; display: grid; min-height: 460px; overflow: hidden; place-items: center; padding: 72px 5vw; border-top: 1px solid var(--line); text-align: center; background: radial-gradient(circle at 50% 36%, rgba(40,148,151,.22), transparent 32%), linear-gradient(180deg, #041824, #02111b); isolation: isolate; }
.final-cta::before { position: absolute; z-index: -1; inset: 0; content: ""; background-image: linear-gradient(rgba(174,220,211,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(174,220,211,.035) 1px, transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(circle at center, #000, transparent 68%); }
.final-cta > div { width: min(760px, 100%); }
.final-cta h2 { margin-bottom: 20px; font-size: clamp(50px, 6.2vw, 90px); }
.final-cta-copy { max-width: 570px; margin: 0 auto 34px; color: var(--muted); font-size: 15px; line-height: 1.75; }

footer { display: grid; grid-template-columns: 1.2fr 1fr auto auto; gap: 34px; align-items: center; padding: 38px max(5vw, calc((100vw - 1300px) / 2)); border-top: 1px solid var(--line); color: var(--muted); background: #02111b; font-size: 11px; }
.footer-brand { color: var(--ink); }
.footer-brand .site-logo { width: 150px; }
.footer-links { display: flex; gap: 24px; color: var(--ink); font-weight: 600; }
footer > small { white-space: nowrap; }

@media (max-width: 1240px) {
  .hero { display: block; }
  .hero-content { padding-bottom: 54px; }
  .hero-player { position: relative; top: auto; right: auto; width: min(760px, 90vw); margin: 0 auto 92px; transform: translateY(18px) scale(.985); }
  .hero-player.is-visible { transform: none; }
}

@media (max-width: 1050px) {
  .voyage-loop { grid-template-columns: 1fr; gap: 30px; }
  .voyage-intro { max-width: 680px; }
  .voyage-intro > .section-lede { max-width: 580px; }
}

@media (max-width: 900px) {
  .site-header { padding-top: 18px; }
  nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: 780px; }
  .hero-art { background-position: 68% center; }
  .hero-background-video { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,16,26,.95), rgba(3,18,28,.55)), linear-gradient(0deg, var(--navy-950), transparent 42%); }
  .devices-showcase { padding: 70px 0 52px; }
  .devices-art { width: min(900px, calc(100% - 32px)); margin-top: 24px; }
  .editorial-heading, .mechanics-story { grid-template-columns: 1fr; }
  .editorial-heading { gap: 30px; }
  .editorial-summary { max-width: 680px; }
  .world-map-layout { grid-template-columns: 1fr; max-width: 720px; }
  .world-detail-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mechanics-story { gap: 48px; }
  .mechanics-copy { max-width: 720px; }
  .gameplay-proof { max-width: 760px; }
  .harbour-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; height: auto; }
  .harbour-feature { grid-row: auto; grid-column: 1 / -1; }
  .harbour-gallery picture { height: auto; }
  .harbour-gallery img { height: auto; aspect-ratio: 1.5; }
  .harbour-feature img { aspect-ratio: 16 / 9; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p { text-align: right; }
}

@media (max-width: 700px) {
  .voyage-carousel-shell { grid-template-columns: 36px minmax(0, 1fr) 36px; gap: 4px; }
  .voyage-arrow { width: 36px; height: 58px; font-size: 30px; }
  .voyage-carousel-stage { padding: 12px 10px 45px; }
  .voyage-loop.is-enhanced .voyage-proof-card { width: calc(100% - 30px); }
  .harbour-gallery { grid-template-columns: 1fr; }
  .harbour-feature { grid-column: auto; }
  .harbour-gallery img, .harbour-feature img { aspect-ratio: 1.5; }
}

@media (max-width: 560px) {
  .site-header { padding-top: 12px; }
  .site-header.is-fixed { padding-top: 5px; padding-bottom: 5px; }
  .site-header.is-fixed::before { bottom: -24px; }
  .site-header.is-fixed .site-logo { width: 46px; }
  nav { gap: 11px; }
  .account-link { font-size: 10px; }
  .profile-link > span:last-child { display: none; }
  .site-logo { width: 62px; }
  .footer-brand .site-logo { width: 82px; }
  .nav-cta { padding: 10px 13px; }
  .hero { min-height: 740px; }
  .hero-content { margin: 0; padding: 140px 22px 90px; }
  .hero-player { width: calc(100% - 44px); margin-bottom: 72px; }
  .hero-copy { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 280px; }
  .scroll-cue { display: none; }
  .devices-showcase { padding: 64px 0 44px; }
  .devices-copy > p:not(.eyebrow) { font-size: 14px; }
  .devices-art { width: calc(100% - 24px); margin: 26px auto 0; }
  .section { padding: 64px 22px; }
  .editorial-heading { margin-bottom: 36px; }
  .editorial-heading h2, .mechanics-story h2, .voyage-intro h2 { font-size: clamp(35px, 11vw, 48px); }
  .world-detail-stack { grid-template-columns: 1fr; }
  .proof-frame figcaption { display: grid; gap: 5px; }
  .proof-frame figcaption span:last-child { text-align: left; }
  .proof-copy { grid-template-columns: 30px 1fr; gap: 12px; padding: 24px 20px; }
  .fleet-facts { gap: 8px; }
  .fleet-facts li { padding-right: 4px; }
  .final-cta { min-height: 420px; padding: 62px 22px; }
  footer { grid-template-columns: 1fr; padding: 32px 22px; text-align: left; }
  footer > p { text-align: left; }
  .auth-card { padding: 36px 24px 28px; }
  .auth-card h2 { font-size: 35px; }
  .connecting-logo { width: 132px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-background-video { display: none; }
}
