:root {
  --lux-ink: #0a100e;
  --lux-ink-soft: #151c19;
  --lux-forest: #172721;
  --lux-ivory: #f0ede5;
  --lux-paper: #e6e1d6;
  --lux-mist: #c8cec8;
  --lux-gold: #bd9d5d;
  --lux-gold-light: #e9d5a8;
  --lux-line: rgba(10, 16, 14, 0.16);
  --lux-line-inverse: rgba(240, 237, 229, 0.18);
  --lux-serif: 'Cormorant', Georgia, serif;
  --lux-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  background: var(--lux-ink);
  scroll-padding-top: 100px;
}

body {
  overflow-x: hidden;
  background: var(--lux-ivory);
  color: var(--lux-ink);
  font-family: var(--lux-sans);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  content: '';
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

a,
button,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

/* Form controls do not inherit typography by default; without this they fall
   back to the browser's Arial. */
button,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--lux-gold-light);
  outline-offset: 4px;
}

/* The gold focus ring vanishes against the gold waitlist panel, which is the
   primary conversion form. Ink on gold is roughly 13:1. */
.membership-form-wrap :focus-visible {
  outline-color: var(--lux-ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: '';
  background: currentColor;
  opacity: 0.55;
}

/* Navigation */
.nav {
  top: 22px;
  left: 28px;
  right: 28px;
  border: 1px solid rgba(240, 237, 229, 0.16);
  border-radius: 2px;
  background: rgba(10, 16, 14, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  color: var(--lux-ivory);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.nav-inner {
  max-width: none;
  min-height: 70px;
  padding: 0 24px;
}

.nav-logo {
  gap: 12px;
  color: var(--lux-ivory);
  font-family: var(--lux-serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-logo:hover,
.nav-logo:focus-visible {
  color: var(--lux-ivory);
  text-decoration: none;
}

.nav-mark {
  position: relative;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(233, 213, 168, 0.72);
  border-radius: 50%;
}

.nav-mark::before,
.nav-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 8px;
  border: 1px solid var(--lux-gold-light);
  border-radius: 50%;
  content: '';
  transform: translate(-50%, -50%) rotate(36deg);
}

.nav-mark::after {
  transform: translate(-50%, -50%) rotate(-36deg);
}

.nav-edition {
  margin-left: 2px;
  padding-left: 13px;
  border-left: 1px solid var(--lux-line-inverse);
  color: rgba(240, 237, 229, 0.5);
  font-family: var(--lux-sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.nav-links {
  gap: 34px;
}

.nav-links a {
  color: rgba(240, 237, 229, 0.72);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--lux-ivory);
}

.nav-right {
  gap: 16px;
}

.lang-toggle {
  border-color: rgba(240, 237, 229, 0.14);
  border-radius: 0;
}

.lang-btn {
  min-width: 38px;
  min-height: 38px;
  padding: 6px 9px;
  color: rgba(240, 237, 229, 0.5);
  font-size: 10px;
}

.lang-btn.active {
  background: rgba(233, 213, 168, 0.12);
  color: var(--lux-gold-light);
}

.nav-invitation,
.hero-primary,
.waitlist-submit {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  border: 1px solid var(--lux-gold-light);
  border-radius: 0;
  background: var(--lux-gold-light);
  color: var(--lux-ink);
  font-family: var(--lux-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 260ms ease, background 260ms ease, transform 260ms ease;
}

.nav-invitation {
  padding: 0 18px;
}

.nav-invitation::after,
.hero-primary::after {
  width: 24px;
  height: 1px;
  content: '';
  background: currentColor;
  transition: width 260ms ease;
}

.nav-invitation:hover,
.hero-primary:hover {
  background: transparent;
  color: var(--lux-gold-light);
  text-decoration: none;
}

.nav-invitation:hover::after,
.hero-primary:hover::after {
  width: 34px;
}

.nav-hamburger svg {
  color: var(--lux-ivory);
}

.mobile-menu {
  border-top-color: var(--lux-line-inverse);
  background: rgba(10, 16, 14, 0.96);
}

.mobile-menu a {
  color: rgba(240, 237, 229, 0.82);
}

.mobile-menu .nav-invitation {
  color: var(--lux-ink);
}

/* Hero */
.luxury-hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(83, 118, 99, 0.2), transparent 32%),
    linear-gradient(128deg, #09100e 0%, #101815 58%, #090d0c 100%);
  color: var(--lux-ivory);
  isolation: isolate;
}

.luxury-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: '';
  background:
    linear-gradient(90deg, transparent 0 49.94%, rgba(240, 237, 229, 0.07) 50%, transparent 50.06%),
    linear-gradient(rgba(240, 237, 229, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 18vh;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 95%);
}

.luxury-hero::after {
  position: absolute;
  right: 50%;
  bottom: -35%;
  width: 1px;
  height: 90%;
  content: '';
  background: linear-gradient(transparent, rgba(233, 213, 168, 0.45), transparent);
  transform: rotate(41deg);
  transform-origin: bottom;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100% - 80px, 1500px);
  min-height: max(780px, 100svh);
  margin: 0 auto;
  padding-top: 132px;
  grid-template-columns: minmax(470px, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 72px 0 96px;
}

.hero-kicker {
  margin-bottom: 34px;
  color: var(--lux-gold-light);
}

.hero-title {
  margin: 0;
  color: var(--lux-ivory);
  font-family: var(--lux-serif);
  font-size: clamp(70px, 7.2vw, 122px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero-title em {
  display: block;
  margin-left: 12%;
  color: var(--lux-gold-light);
  font-weight: 500;
}

.hero-title .title-indent {
  display: block;
  margin-left: 24%;
}

.hero-subtitle {
  max-width: 510px;
  margin: 42px 0 0 24%;
  color: rgba(240, 237, 229, 0.7);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 34px 0 0 24%;
}

.hero-primary {
  min-width: 230px;
  min-height: 54px;
  padding: 0 24px;
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 237, 229, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-secondary::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--lux-gold-light);
  border-radius: 50%;
  content: '';
}

.hero-secondary:hover {
  color: var(--lux-ivory);
  text-decoration: none;
}

.hero-proof {
  display: grid;
  max-width: 510px;
  margin: 64px 0 0 24%;
  padding-top: 22px;
  border-top: 1px solid var(--lux-line-inverse);
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof div {
  padding-right: 14px;
}

.hero-proof div + div {
  padding-left: 18px;
  border-left: 1px solid var(--lux-line-inverse);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 5px;
  color: var(--lux-ivory);
  font-family: var(--lux-serif);
  font-size: 18px;
  font-weight: 600;
}

.hero-proof span {
  color: rgba(240, 237, 229, 0.42);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  align-self: stretch;
  min-height: 620px;
}

.control-map {
  position: absolute;
  inset: 0;
}

/* Standing horizon so the stage is never an empty box: it shows before the
   coastline data arrives, and stays if the request or the canvas ever fails. */
.control-map::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84%, 530px);
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(233, 213, 168, 0.34);
  border-radius: 50%;
  content: '';
  background: radial-gradient(
    circle at 34% 30%,
    rgba(41, 66, 57, 0.55),
    rgba(8, 17, 16, 0.92) 72%
  );
  transform: translate(-50%, -50%);
  transition: opacity 700ms ease;
}

.control-map-canvas {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.control-map.is-live::before {
  opacity: 0;
}

.control-map.is-live .control-map-canvas {
  opacity: 1;
}

.control-map-callouts {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Zero-size anchor: the script moves it to the craft, the card hangs off it. */
.map-callout {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.map-callout::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 1px;
  content: '';
  background: linear-gradient(90deg, rgba(240, 223, 174, 0.7), rgba(240, 223, 174, 0));
  opacity: 0;
  transition: opacity 520ms ease;
}

.map-callout.is-flipped::before {
  left: -26px;
}

.map-callout-card {
  position: absolute;
  bottom: 6px;
  left: 26px;
  display: grid;
  gap: 3px;
  width: max-content;
  max-width: 206px;
  padding: 10px 13px;
  border: 1px solid rgba(233, 213, 168, 0.2);
  border-radius: 3px;
  background: rgba(9, 18, 17, 0.82);
  opacity: 0;
  backdrop-filter: blur(6px);
  transform: translateY(5px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.map-callout.is-flipped .map-callout-card {
  right: 26px;
  left: auto;
}

.map-callout.is-visible::before,
.map-callout.is-visible .map-callout-card {
  opacity: 1;
}

.map-callout.is-visible .map-callout-card {
  transform: translateY(0);
}

.map-callout-craft {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--lux-ivory);
  font-family: var(--lux-serif);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.map-callout-craft::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: '';
  background: #8fbfa1;
}

.map-callout.is-task .map-callout-craft::before {
  background: #d9bf84;
}

.map-callout-line {
  color: rgba(240, 237, 229, 0.72);
  font-family: var(--lux-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .control-map-canvas,
  .control-map::before,
  .map-callout::before,
  .map-callout-card {
    transition: none;
  }
}

.orbit-label {
  position: absolute;
  right: 12px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 237, 229, 0.42);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.orbit-label::before {
  width: 1px;
  height: 46px;
  content: '';
  background: rgba(240, 237, 229, 0.32);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(240, 237, 229, 0.38);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll::before {
  width: 46px;
  height: 1px;
  content: '';
  background: currentColor;
}

/* Editorial introduction */
.manifesto {
  position: relative;
  display: grid;
  padding: clamp(76px, 8vw, 112px) max(40px, calc((100vw - 1420px) / 2));
  overflow: hidden;
  background: var(--lux-paper);
  grid-template-columns: minmax(200px, 0.55fr) minmax(600px, 1.45fr);
  gap: 7vw;
  align-items: start;
}

.manifesto::after {
  position: absolute;
  right: -8vw;
  bottom: -28vw;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(10, 16, 14, 0.09);
  border-radius: 50%;
  content: '';
  box-shadow: 0 0 0 7vw rgba(10, 16, 14, 0.018), 0 0 0 14vw rgba(10, 16, 14, 0.014);
}

.manifesto-index {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(10, 16, 14, 0.68);
  font-family: var(--lux-serif);
}

.manifesto-index strong {
  color: var(--lux-ink);
  font-size: 48px;
  font-weight: 500;
}

.manifesto-copy {
  position: relative;
  z-index: 1;
}

.manifesto h2 {
  max-width: 970px;
  margin: 0;
  color: var(--lux-ink);
  font-family: var(--lux-serif);
  font-size: clamp(54px, 6.2vw, 100px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.manifesto h2 em {
  color: #6a736c;
  font-weight: 500;
}

.manifesto-note {
  display: grid;
  max-width: 720px;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid var(--lux-line);
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.manifesto-note p {
  color: #4b524d;
  font-size: 13px;
  line-height: 1.9;
}

/* Product command deck */
.command-section {
  position: relative;
  padding: clamp(80px, 8.5vw, 118px) max(40px, calc((100vw - 1420px) / 2));
  overflow: hidden;
  background: var(--lux-ink);
  color: var(--lux-ivory);
}

.command-section::before {
  position: absolute;
  inset: 0;
  content: '';
  background:
    radial-gradient(circle at 5% 70%, rgba(189, 157, 93, 0.1), transparent 27%),
    linear-gradient(90deg, transparent 49.95%, rgba(240, 237, 229, 0.04) 50%, transparent 50.05%);
  pointer-events: none;
}

.command-heading {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 78px;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 7vw;
  align-items: end;
}

.command-heading .eyebrow {
  color: var(--lux-gold-light);
}

.command-heading h2 {
  max-width: 860px;
  margin: 0;
  font-family: var(--lux-serif);
  font-size: clamp(58px, 6.5vw, 104px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.command-heading h2 span {
  display: block;
  margin-left: 15%;
  color: var(--lux-gold-light);
}

/* Story chapters */
.stories {
  background: var(--lux-ivory);
}

.story {
  display: grid;
  padding: clamp(74px, 7.5vw, 106px) max(40px, calc((100vw - 1420px) / 2));
  border-bottom: 1px solid var(--lux-line);
  grid-template-columns: minmax(320px, 0.82fr) minmax(500px, 1.18fr);
  gap: 8vw;
  align-items: center;
}

.story:nth-child(even) {
  background: var(--lux-paper);
}

.story:nth-child(even) .story-copy {
  order: 2;
}

.story:nth-child(even) .story-visual {
  order: 1;
}

.story-number {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 46px;
  color: #555c56;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.story-number::after {
  width: 54px;
  height: 1px;
  content: '';
  background: currentColor;
}

.story h3 {
  max-width: 550px;
  margin: 0;
  font-family: var(--lux-serif);
  font-size: clamp(52px, 5.2vw, 82px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.story-copy > p {
  max-width: 470px;
  margin-top: 34px;
  color: #525852;
  font-size: 13px;
  line-height: 1.9;
}

.story-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 40px;
  padding-top: 19px;
  border-top: 1px solid var(--lux-line);
}

.story-specs span {
  color: #515852;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-visual {
  position: relative;
}

/* Real app screenshots, framed as devices */
.device {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 237, 229, 0.14);
  border-radius: 26px;
  background: var(--lux-ink);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.4),
    0 2px 0 rgba(240, 237, 229, 0.06) inset;
}

.device img {
  display: block;
  width: 100%;
  height: auto;
}

.stories .device {
  border-color: rgba(10, 16, 14, 0.1);
  box-shadow: 0 34px 78px rgba(10, 16, 14, 0.16);
}

.device-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
}

.device-showcase .device {
  width: min(100%, 320px);
}

/* The centre screen leads; the outer two sit back and slightly lower. */
.device-showcase .is-lead {
  z-index: 2;
  width: min(100%, 372px);
}

.device-showcase .is-aside {
  opacity: 0.78;
  transform: translateY(26px) scale(0.95);
}

.story-visual .device {
  width: min(100%, 340px);
  margin-inline: auto;
}

@media (max-width: 820px) {
  .device-showcase {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  /* One phone reads better than three thumbnails on a handset. */
  .device-showcase .is-aside {
    display: none;
  }

  .device-showcase .is-lead {
    width: min(100%, 300px);
  }

  .story-visual .device {
    width: min(100%, 290px);
  }
}

/* Download actions */
.download-actions {
  margin: 30px 0 4px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-row a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid var(--lux-ink);
  border-radius: 2px;
  background: var(--lux-ink);
  color: var(--lux-ivory);
  font-family: var(--lux-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 240ms ease, color 240ms ease;
}

.store-row a:hover,
.store-row a:focus-visible {
  background: transparent;
  color: var(--lux-ink);
  text-decoration: none;
}

.store-row svg {
  width: 19px;
  height: 19px;
  flex: none;
}

/* Both sit on the gold panel, where the base tertiary ink fails AA. */
.membership-form-wrap .download-note {
  color: rgba(10, 16, 14, 0.74);
}

.download-pending {
  margin: 16px 0 0;
  color: rgba(10, 16, 14, 0.66);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .store-row a {
    width: 100%;
    justify-content: center;
  }
}

/* Membership and pricing */
.membership {
  display: grid;
  background: var(--lux-ink);
  color: var(--lux-ivory);
  grid-template-columns: 0.92fr 1.08fr;
}

.membership-copy {
  display: flex;
  padding: clamp(72px, 7.5vw, 104px) max(48px, calc((100vw - 1420px) / 2));
  padding-right: 8vw;
  flex-direction: column;
  justify-content: center;
}

.membership-copy .eyebrow {
  color: var(--lux-gold-light);
}

.membership-copy h2 {
  max-width: 630px;
  margin: 44px 0 0;
  font-family: var(--lux-serif);
  font-size: clamp(62px, 6vw, 100px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.membership-copy h2 span {
  color: var(--lux-gold-light);
}

.membership-copy > p {
  max-width: 520px;
  margin-top: 38px;
  color: rgba(240, 237, 229, 0.56);
  font-size: 13px;
  line-height: 1.9;
}

.membership-price {
  display: flex;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid var(--lux-line-inverse);
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.membership-price strong {
  font-family: var(--lux-serif);
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.membership-price strong small {
  color: rgba(240, 237, 229, 0.68);
  font-family: var(--lux-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.membership-price span {
  max-width: 180px;
  color: rgba(240, 237, 229, 0.68);
  font-size: 8px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-align: right;
  text-transform: uppercase;
}

.membership-form-wrap {
  display: flex;
  position: relative;
  padding: 120px 8vw;
  overflow: hidden;
  background: var(--lux-gold-light);
  color: var(--lux-ink);
  flex-direction: column;
  justify-content: center;
}

.membership-form-wrap::before {
  position: absolute;
  top: -13vw;
  right: -13vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(10, 16, 14, 0.17);
  border-radius: 50%;
  content: '';
  box-shadow: 0 0 0 5vw rgba(10, 16, 14, 0.035), 0 0 0 10vw rgba(10, 16, 14, 0.025);
}

.membership-form-wrap > * {
  position: relative;
  z-index: 1;
}

.membership-form-wrap .pricing-badge {
  align-self: flex-start;
  margin: 0 0 34px;
  padding: 8px 11px;
  border-color: rgba(10, 16, 14, 0.35);
  border-radius: 0;
  background: transparent;
  color: var(--lux-ink);
  font-size: 8px;
}

.membership-form-wrap h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--lux-serif);
  font-size: clamp(50px, 4.6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.pricing-waitlist-desc {
  max-width: 540px;
  margin: 28px 0 36px;
  color: rgba(10, 16, 14, 0.64);
  font-size: 12px;
  line-height: 1.8;
}

.waitlist-counter {
  display: block;
  margin-bottom: 28px;
}

.waitlist-counter-bar {
  width: 100%;
  max-width: none;
  height: 2px;
  border-radius: 0;
  background: rgba(10, 16, 14, 0.16);
}

.waitlist-counter-fill {
  border-radius: 0;
  background: var(--lux-ink);
}

.waitlist-counter-text {
  display: block;
  margin-top: 10px;
  color: rgba(10, 16, 14, 0.76);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.waitlist-form {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  border-bottom: 1px solid var(--lux-ink);
  grid-template-columns: 1fr auto;
  gap: 0;
}

.waitlist-input {
  min-width: 0;
  min-height: 62px;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--lux-ink);
  font-family: var(--lux-serif);
  font-size: 22px;
}

.waitlist-input:focus {
  border: 0;
}

/* The visible label for this field is its placeholder (the real <label> is
   .sr-only), so it has to clear AA against the gold panel: 5.36:1 here. */
.waitlist-input::placeholder {
  color: rgba(10, 16, 14, 0.66);
}

/* The base status colours are tuned for the ivory page, not this gold panel. */
.membership-form-wrap .waitlist-msg.success {
  color: #33523b;
}

.membership-form-wrap .waitlist-msg.error {
  color: #8a2b2b;
}

.waitlist-submit {
  min-width: 160px;
  padding: 0 16px;
  border: 0;
  background: var(--lux-ink);
  color: var(--lux-ivory);
}

.waitlist-submit:hover {
  background: var(--lux-forest);
  color: var(--lux-ivory);
}

.waitlist-note {
  max-width: 480px;
  margin-top: 20px;
  color: rgba(10, 16, 14, 0.7);
  font-size: 9px;
  line-height: 1.7;
}

.waitlist-msg {
  min-height: 24px;
  margin-top: 12px;
  font-size: 11px;
}

/* FAQ */
.faq {
  display: grid;
  max-width: none;
  margin: 0;
  padding: clamp(78px, 8vw, 112px) max(40px, calc((100vw - 1420px) / 2));
  background: var(--lux-ivory);
  grid-template-columns: 0.72fr 1.28fr;
  gap: 9vw;
}

.faq .section-header {
  position: sticky;
  top: 130px;
  align-self: start;
  margin: 0;
  text-align: left;
}

.faq .section-header .eyebrow {
  margin-bottom: 38px;
  color: #4c544e;
}

.faq .section-header h2 {
  max-width: 480px;
  margin: 0;
  font-family: var(--lux-serif);
  font-size: clamp(54px, 5vw, 82px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.faq-list {
  border-top: 1px solid var(--lux-ink);
}

.faq details {
  border-bottom-color: var(--lux-line);
}

.faq summary {
  min-height: 88px;
  padding: 24px 0;
  color: var(--lux-ink);
  font-family: var(--lux-serif);
  font-size: 23px;
  font-weight: 500;
}

.faq summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid var(--lux-line);
  border-radius: 50%;
  color: var(--lux-ink);
  font-family: var(--lux-sans);
  font-size: 16px;
  place-items: center;
}

.faq details p {
  max-width: 620px;
  padding: 0 50px 26px 0;
  color: #545b55;
  font-size: 12px;
  line-height: 1.9;
}

/* Footer and consent */
.footer {
  padding: 72px max(40px, calc((100vw - 1420px) / 2)) 44px;
  border-top: 1px solid var(--lux-line-inverse);
  background: var(--lux-ink);
  color: var(--lux-ivory);
  text-align: left;
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 74px;
}

.footer-logo {
  gap: 14px;
  margin: 0;
  color: var(--lux-ivory);
  font-family: var(--lux-serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.footer-logo .nav-mark {
  width: 40px;
  height: 40px;
}

.footer-contact {
  margin: 0;
}

.footer-contact a {
  color: var(--lux-gold-light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-legal {
  justify-content: flex-start;
  gap: 12px 25px;
  max-width: 940px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--lux-line-inverse);
}

.footer-legal a {
  color: rgba(240, 237, 229, 0.68);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-copy {
  margin-top: 28px;
  color: rgba(240, 237, 229, 0.58);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consent-banner {
  right: 24px;
  bottom: 24px;
  left: auto;
  /* The base stylesheet centres the banner with left:50% + translateX(-50%).
     Re-anchoring to the right edge has to clear the transform too, or the
     banner sits half its own width off-screen and the decline button becomes
     unreachable on phones. */
  width: min(520px, calc(100vw - 48px));
  transform: none;
  padding: 22px;
  border: 1px solid rgba(233, 213, 168, 0.28);
  border-radius: 0;
  background: rgba(10, 16, 14, 0.96);
  color: var(--lux-ivory);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.consent-copy h2 {
  color: var(--lux-ivory);
  font-size: 21px;
  font-weight: 500;
}

.consent-copy p {
  color: rgba(240, 237, 229, 0.56);
  font-size: 10px;
  line-height: 1.7;
}

.consent-btn {
  border-color: rgba(240, 237, 229, 0.24);
  border-radius: 0;
  background: transparent;
  color: var(--lux-ivory);
  font-size: 9px;
}

.consent-btn.primary {
  border-color: var(--lux-gold-light);
  background: var(--lux-gold-light);
  color: var(--lux-ink);
}

/* Legal pages stay calm and highly readable. */
.legal-page {
  max-width: 820px;
  padding: 150px 28px 90px;
}

.legal-page h1 {
  font-family: var(--lux-serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.legal-page h2 {
  font-family: var(--lux-serif);
  font-size: 25px;
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  font-size: 13px;
  line-height: 1.85;
}

.legal-back {
  color: var(--lux-forest);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Reveal animation uses only compositor-friendly properties. It is scoped to
   .js so that the content is never hidden unless a script is present and able
   to reveal it again. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .hero-shell {
    width: min(100% - 52px, 1200px);
    grid-template-columns: minmax(420px, 1fr) minmax(390px, 0.9fr);
  }

  .hero-title {
    font-size: clamp(66px, 8vw, 98px);
  }

}

@media (max-width: 820px) {
  .nav {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .nav-inner {
    min-height: 62px;
    padding: 0 16px;
  }

  .nav-edition,
  .nav-links,
  .nav-right .nav-invitation {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }

  .luxury-hero,
  .hero-shell {
    min-height: 920px;
  }

  .hero-shell {
    display: block;
    width: 100%;
    padding: 122px 24px 70px;
  }

  .hero-copy {
    max-width: 640px;
    padding: 36px 0 0;
  }

  .hero-title {
    font-size: clamp(62px, 17vw, 88px);
  }

  .hero-title em {
    margin-left: 5%;
  }

  .hero-title .title-indent,
  .hero-subtitle,
  .hero-actions,
  .hero-proof {
    margin-left: 10%;
  }

  .hero-subtitle {
    max-width: 430px;
    margin-top: 28px;
    font-size: 12px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    max-width: 470px;
    margin-top: 40px;
  }

  /* The map becomes its own band below the copy. Overlapping it behind the
     headline put ivory text on the bright limb of the globe. */
  .hero-stage {
    position: relative;
    margin-top: 44px;
    min-height: 380px;
  }

  .hero-scroll {
    display: none;
  }

  .manifesto,
  .command-heading,
  .story,
  .faq,
  .membership {
    grid-template-columns: 1fr;
  }

  .manifesto {
    min-height: 0;
    padding: 100px 24px;
    gap: 50px;
  }

  .manifesto h2 {
    font-size: clamp(50px, 13vw, 76px);
  }

  .manifesto-note {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .command-section {
    padding: 105px 24px;
  }

  .command-heading {
    gap: 42px;
  }

  .story {
    min-height: 0;
    padding: 100px 24px;
    gap: 60px;
  }

  .story:nth-child(even) .story-copy,
  .story:nth-child(even) .story-visual {
    order: initial;
  }

  .story-visual {
    min-height: 460px;
  }

  .membership-copy,
  .membership-form-wrap {
    min-height: 660px;
    padding: 100px 34px;
  }

  .membership-copy {
    padding-right: 34px;
  }

  .faq {
    padding: 100px 24px;
    gap: 58px;
  }

  .faq .section-header {
    position: static;
  }

  .footer {
    padding: 70px 24px 36px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav-logo {
    font-size: 22px;
  }

  .lang-btn {
    min-width: 34px;
  }

  .hero-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-title {
    font-size: clamp(58px, 18vw, 76px);
  }

  .hero-title .title-indent,
  .hero-subtitle,
  .hero-actions,
  .hero-proof {
    margin-left: 0;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 7px;
  }

  .hero-stage {
    margin-top: 34px;
    min-height: 300px;
  }

  .map-callout-card {
    max-width: 148px;
    padding: 8px 10px;
  }

  .command-heading h2 {
    font-size: 58px;
  }

  .story h3 {
    font-size: 54px;
  }

  .story-visual {
    min-height: 390px;
  }

  .membership-copy,
  .membership-form-wrap {
    min-height: 610px;
    padding: 82px 24px;
  }

  .membership-copy h2,
  .membership-form-wrap h3 {
    font-size: 54px;
  }

  .membership-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .membership-price span {
    text-align: left;
  }

  .waitlist-form {
    display: block;
    border: 0;
  }

  .waitlist-input {
    width: 100%;
    border-bottom: 1px solid var(--lux-ink);
  }

  .waitlist-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 14px;
  }

  .faq summary {
    padding-right: 8px;
    font-size: 19px;
  }

  .footer-logo {
    font-size: 44px;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Must match the specificity of `.js [data-reveal]` to override it. */
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  /* The map still draws; it just draws a single stationary frame, with the
     first callout resting in place instead of cycling. */
}

@media (forced-colors: active) {
  .nav,
  .consent-banner {
    border: 1px solid CanvasText;
  }
}
