:root {
  --black: #050505;
  --coal: #0d0d0d;
  --panel: #151515;
  --gold: #d6b676;
  --gold-light: #efd69b;
  --ivory: #f5f0e6;
  --muted: #aaa69e;
  --line: rgba(214, 182, 118, .22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
  font-family: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; overflow-x: hidden; color: var(--ivory); background: var(--black); }
body.landing-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

.skip-link { position: fixed; z-index: 100; left: 16px; top: -70px; padding: 12px 16px; color: #14100a; background: var(--gold-light); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.landing-loader { position: fixed; z-index: 90; inset: 0; display: grid; place-content: center; justify-items: center; gap: 24px; background: #050505; transition: opacity .45s, visibility .45s; }
.landing-loader.is-leaving { opacity: 0; visibility: hidden; }
.landing-loader img { width: 150px; height: 72px; object-fit: contain; }
.landing-loader p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.loader-orbit { width: 72px; height: 72px; position: relative; }
.loader-orbit span { position: absolute; inset: 0; border: 1px solid rgba(214,182,118,.18); border-top-color: var(--gold); border-radius: 50%; animation: orbit 1.5s linear infinite; }
.loader-orbit span:last-child { inset: 11px; animation-duration: 1s; animation-direction: reverse; }

.landing-header { position: fixed; z-index: 30; top: 0; left: 0; right: 0; min-height: 92px; padding: 18px clamp(24px, 5vw, 76px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; background: linear-gradient(180deg, rgba(5,5,5,.96), rgba(5,5,5,.72), transparent); transition: background .25s, border-color .25s; }
.landing-header.is-scrolled { background: rgba(5,5,5,.9); border-bottom: 1px solid rgba(214,182,118,.12); backdrop-filter: blur(18px); }
.landing-logo { width: max-content; }
.landing-logo img { width: 154px; height: 60px; display: block; object-fit: contain; object-position: left; }
.landing-header nav { display: flex; gap: clamp(24px, 4vw, 58px); }
.landing-header nav a { color: #d6d0c5; font-family: var(--serif); font-size: 17px; transition: color .2s; }
.landing-header nav a:hover { color: var(--gold-light); }
.landing-header > .landing-button { justify-self: end; }

.landing-button { min-height: 56px; padding: 0 24px; display: inline-flex; justify-content: center; align-items: center; gap: 18px; border: 1px solid var(--gold); border-radius: 8px; font-family: var(--serif); font-size: 17px; transition: transform .2s, background .2s, color .2s, box-shadow .2s; position: relative; overflow: hidden; }
.landing-button::after { content: ""; position: absolute; top: -40%; bottom: -40%; left: -45%; width: 30%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent); transform: skewX(-20deg); transition: left .6s; }
.landing-button:hover::after { left: 120%; }
.landing-button:hover { transform: translateY(-2px); }
.landing-button.primary { color: #161108; background: linear-gradient(135deg, var(--gold-light), #b68d46); box-shadow: 0 12px 34px rgba(214,182,118,.12); }
.landing-button.secondary { color: var(--gold-light); background: transparent; }
.landing-button.compact { min-height: 48px; min-width: 136px; padding: 0 22px; }
.landing-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.landing-hero { min-height: 100svh; padding: 150px clamp(24px, 4vw, 72px) 88px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr); gap: clamp(44px, 6vw, 100px); align-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 78% 40%, rgba(214,182,118,.07), transparent 30%), #050505; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 5.2vw, 88px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.hero-copy p { max-width: 650px; margin: 30px 0 38px; color: #c6c0b5; font-family: var(--serif); font-size: clamp(18px, 1.35vw, 22px); line-height: 1.55; }
.product-stage { min-height: 660px; position: relative; perspective: 1200px; --rx: 0deg; --ry: 0deg; }
.stage-map { position: absolute; inset: 4% 0 8% 8%; border: 1px solid rgba(214,182,118,.24); border-radius: 48% 52% 43% 57% / 59% 38% 62% 41%; transform: rotate(-8deg); filter: drop-shadow(0 0 24px rgba(214,182,118,.06)); }
.stage-map::before, .stage-map::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(214,182,118,.09); border-radius: inherit; }
.stage-map::after { inset: 23%; }
.platform-window { position: absolute; width: 76%; min-height: 500px; left: 2%; top: 10%; overflow: hidden; background: linear-gradient(145deg, #1c1a17, #0b0b0b 62%); border: 1px solid rgba(239,214,155,.36); border-radius: 18px; box-shadow: 0 40px 90px rgba(0,0,0,.5); transform: rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .25s ease-out; }
.platform-top { height: 70px; padding: 14px 18px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.platform-top img { width: 86px; height: 42px; object-fit: contain; object-position: left; }
.platform-top span { color: var(--muted); font-size: 12px; }
.platform-top i { width: 28px; height: 28px; margin-left: auto; border: 1px solid var(--line); border-radius: 50%; }
.platform-body { min-height: 430px; display: grid; grid-template-columns: 62px 1fr; }
.platform-body aside { padding: 22px 14px; display: grid; align-content: start; gap: 23px; border-right: 1px solid var(--line); }
.platform-body aside b { width: 28px; height: 28px; display: block; border: 1px solid var(--line); border-radius: 7px; }
.platform-main { padding: 48px 38px; }
.platform-main > p { margin: 0 0 14px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.platform-main h2 { max-width: 460px; margin: 0 0 14px; font-family: var(--serif); font-size: clamp(28px, 2.3vw, 40px); font-weight: 400; line-height: 1.08; }
.platform-main > span { color: var(--muted); font-size: 13px; }
.platform-row { margin-top: 55px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 12px; }
.platform-row i { height: 86px; display: block; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; }
.floating-panel { position: absolute; z-index: 3; width: 40%; padding: 22px; display: grid; gap: 8px; color: var(--ivory); background: rgba(24,23,21,.94); border: 1px solid rgba(239,214,155,.34); border-radius: 14px; box-shadow: 0 24px 54px rgba(0,0,0,.42); backdrop-filter: blur(16px); animation: float 5.5s ease-in-out infinite; }
.floating-panel small { color: var(--gold); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.floating-panel strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.floating-panel > span { color: var(--muted); font-size: 12px; }
.academy-panel { right: 1%; top: 18%; }
.member-panel { right: -2%; top: 47%; animation-delay: -1.2s; }
.benefit-panel { right: 6%; top: 71%; animation-delay: -2.3s; }
.member-panel div { display: flex; margin-top: 5px; }
.member-panel i { width: 32px; height: 32px; margin-right: -5px; display: grid; place-items: center; color: #171209; background: var(--gold); border: 2px solid #191919; border-radius: 50%; font-size: 9px; font-style: normal; font-weight: 900; }
.scroll-cue { width: 40px; height: 54px; position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: grid; place-items: center; }
.scroll-cue span { width: 13px; height: 13px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); animation: scrollCue 1.8s ease-in-out infinite; }

.statement-section { min-height: 520px; padding: clamp(90px, 12vw, 180px) clamp(24px, 8vw, 130px); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); align-items: end; gap: 60px; border-top: 1px solid rgba(214,182,118,.11); background: linear-gradient(135deg, #0c0b09, #050505 68%); }
.statement-section > p { max-width: 950px; margin: 0; font-family: var(--serif); font-size: clamp(42px, 5.1vw, 82px); line-height: 1.04; letter-spacing: -.04em; }
.statement-section > span { max-width: 380px; padding-left: 24px; color: var(--gold-light); border-left: 1px solid var(--gold); font-size: 14px; line-height: 1.7; }

.ecosystem-section { padding: clamp(88px, 10vw, 150px) clamp(24px, 5vw, 76px); }
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.section-title h2 { max-width: 880px; margin: 0; color: var(--gold-light); font-size: clamp(40px, 4.6vw, 72px); line-height: 1.05; letter-spacing: -.035em; }
.section-title p { max-width: 350px; margin: 0; color: var(--muted); line-height: 1.65; }
.feature-tabs { margin: 58px 0 30px; display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.feature-tabs button { min-height: 72px; padding: 10px 4px 18px; display: grid; gap: 7px; justify-items: start; color: var(--muted); background: none; border: 0; border-bottom: 2px solid transparent; font-size: 17px; cursor: pointer; }
.feature-tabs button span { color: #77736d; font-size: 11px; }
.feature-tabs button[aria-selected="true"] { color: var(--gold-light); border-bottom-color: var(--gold); }
.feature-experience { display: grid; grid-template-columns: minmax(250px, .34fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.feature-copy > span { color: var(--gold); font-family: var(--serif); font-size: 42px; }
.feature-copy h3 { margin: 18px 0 14px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.feature-copy p { margin: 0 0 30px; color: var(--muted); line-height: 1.65; }
.feature-copy a { min-height: 46px; display: inline-flex; align-items: center; gap: 16px; color: var(--gold-light); border-bottom: 1px solid var(--gold); font-weight: 750; }
.feature-preview { min-height: 440px; padding: 24px; overflow: hidden; background: radial-gradient(circle at 70% 35%, rgba(214,182,118,.08), transparent 28%), #0d0d0d; border: 1px solid rgba(239,214,155,.42); border-radius: 18px; box-shadow: 0 34px 90px rgba(0,0,0,.35); transition: opacity .2s, transform .2s; }
.feature-preview.is-changing { opacity: .3; transform: translateY(8px); }
.preview-toolbar { height: 58px; display: flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.preview-toolbar img { width: 90px; height: 44px; object-fit: contain; object-position: left; }
.preview-toolbar span { color: var(--gold-light); }
.preview-toolbar i { width: 26px; height: 26px; margin-left: auto; border: 1px solid var(--line); border-radius: 50%; }
.preview-event { min-height: 220px; margin: 35px 0 20px; padding: 32px; display: grid; align-content: center; gap: 13px; background: linear-gradient(120deg, rgba(214,182,118,.09), rgba(255,255,255,.02)); border: 1px solid var(--line); border-radius: 14px; }
.preview-event small { color: var(--gold); font-size: 10px; letter-spacing: .12em; }
.preview-event strong { max-width: 580px; font-family: var(--serif); font-size: clamp(26px, 3vw, 42px); font-weight: 400; }
.preview-event span { color: var(--muted); font-size: 13px; }
.preview-lines { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 12px; }
.preview-lines i { height: 60px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; }

.journey-section { padding: clamp(88px, 9vw, 140px) clamp(24px, 5vw, 76px); color: #17130d; background: var(--ivory); }
.section-title.light h2 { color: #b99555; }
.journey-line { height: 28px; margin-top: 48px; border-top: 1px solid #c9ad77; position: relative; }
.journey-line::before, .journey-line::after, .journey-line span { content: ""; width: 12px; height: 12px; position: absolute; top: -7px; background: var(--ivory); border: 2px solid #c9ad77; border-radius: 50%; }
.journey-line::before { left: 0; }.journey-line::after { right: 0; }.journey-line span { left: 50%; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.journey-grid article { min-height: 240px; padding: 28px clamp(20px, 4vw, 64px); border-left: 1px solid #d6c3a0; }
.journey-grid article:first-child { padding-left: 0; border-left: 0; }
.journey-grid span { color: #c9ad77; font-family: var(--serif); font-size: 62px; }
.journey-grid h3 { margin: 14px 0 12px; font-family: var(--serif); font-size: 28px; }
.journey-grid p { max-width: 310px; margin: 0; color: #514a40; line-height: 1.6; }

.continuity-section { min-height: 760px; padding: clamp(90px, 10vw, 150px) clamp(24px, 6vw, 100px); display: grid; grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr); gap: 70px; align-items: center; overflow: hidden; position: relative; background: radial-gradient(circle at 72% 40%, #1b1710, transparent 37%), #070707; }
.continuity-section::after { content: ""; width: 650px; height: 650px; position: absolute; right: -140px; top: -150px; border: 1px solid rgba(214,182,118,.12); border-radius: 47% 53% 55% 45%; transform: rotate(18deg); }
.continuity-copy { position: relative; z-index: 2; }
.continuity-copy h2 { margin: 0; color: var(--gold-light); font-size: clamp(44px, 5vw, 76px); line-height: 1.03; letter-spacing: -.04em; }
.continuity-copy p { max-width: 560px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.device-stage { min-height: 520px; position: relative; z-index: 2; }
.device-laptop { width: 78%; height: 430px; position: absolute; left: 0; top: 20px; padding: 12px; background: #111; border: 1px solid #44403a; border-radius: 22px 22px 12px 12px; box-shadow: 0 44px 90px rgba(0,0,0,.55); transform: rotate(-2deg); }
.device-laptop > div, .device-phone > div { height: 100%; padding: 28px; overflow: hidden; background: radial-gradient(circle at 85% 0, rgba(214,182,118,.12), transparent 35%), #0a0a0a; border-radius: 13px; }
.device-laptop img, .device-phone img { width: 88px; height: 42px; object-fit: contain; object-position: left; }
.device-laptop h3 { margin: 55px 0 8px; color: var(--gold-light); font-family: var(--serif); font-size: 32px; font-weight: 400; }
.device-laptop p { color: var(--muted); }
.device-laptop span { width: 30%; height: 70px; margin: 44px 2% 0 0; display: inline-block; background: #151515; border: 1px solid var(--line); border-radius: 10px; }
.device-phone { width: 190px; height: 390px; position: absolute; right: 0; bottom: 0; padding: 8px; background: #111; border: 1px solid #4a463e; border-radius: 30px; box-shadow: 0 35px 70px rgba(0,0,0,.6); transform: rotate(3deg); }
.device-phone > div { padding: 20px 14px; border-radius: 23px; }
.device-phone img { width: 70px; }
.device-phone h3 { margin: 42px 0 15px; font-family: var(--serif); font-size: 17px; }
.device-phone span { height: 70px; margin-bottom: 10px; display: block; background: #171717; border: 1px solid var(--line); border-radius: 10px; }
.device-phone strong { color: var(--gold-light); font-size: 12px; }

.final-cta { min-height: 330px; padding: clamp(70px, 8vw, 110px) clamp(24px, 8vw, 130px); display: flex; justify-content: space-between; align-items: center; gap: 50px; background: linear-gradient(105deg, #2b2417, #17130e 58%, #0e0d0b); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.final-cta h2 { max-width: 720px; margin: 0; color: var(--gold-light); font-family: var(--serif); font-size: clamp(42px, 4.5vw, 68px); font-weight: 400; line-height: 1.06; }
.landing-footer { min-height: 190px; padding: 46px clamp(24px, 6vw, 96px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.landing-footer img { width: 190px; height: 80px; object-fit: contain; object-position: left; }
.landing-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; color: #c9c4ba; }
.landing-footer p { justify-self: end; color: #77736c; }

[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.journey-grid article:nth-child(2) { transition-delay: .12s; }
.journey-grid article:nth-child(3) { transition-delay: .24s; }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes scrollCue { 0%, 100% { opacity: .35; transform: translateY(-4px) rotate(45deg); } 50% { opacity: 1; transform: translateY(5px) rotate(45deg); } }

@media (max-width: 1100px) {
  .landing-hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 900px; }
  .product-stage { min-height: 620px; }
  .platform-window { width: 72%; left: 8%; }
  .continuity-section { grid-template-columns: 1fr; }
  .device-stage { width: min(760px, 100%); }
  .final-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .landing-header { min-height: 76px; padding: 10px 18px; grid-template-columns: 1fr auto; }
  .landing-header nav { display: none; }
  .landing-logo img { width: 116px; height: 48px; }
  .landing-button.compact { min-width: 104px; min-height: 44px; padding: 0 16px; font-size: 15px; }
  .landing-hero { min-height: auto; padding: 128px 20px 74px; gap: 36px; }
  .hero-copy h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-copy p { margin: 24px 0 30px; font-size: 17px; }
  .landing-actions { display: grid; }
  .landing-button { width: 100%; min-height: 52px; font-size: 16px; }
  .product-stage { min-height: 520px; margin: 0 -8px; }
  .platform-window { width: 90%; min-height: 390px; left: 0; top: 8%; }
  .platform-top { height: 58px; }.platform-top img { width: 70px; }
  .platform-body { min-height: 330px; grid-template-columns: 48px 1fr; }
  .platform-body aside { padding: 18px 10px; gap: 17px; }.platform-body aside b { width: 25px; height: 25px; }
  .platform-main { padding: 34px 20px; }.platform-main h2 { font-size: 27px; }.platform-row { margin-top: 34px; }.platform-row i { height: 60px; }
  .floating-panel { width: 50%; padding: 15px; }.floating-panel strong { font-size: 15px; }
  .academy-panel { right: -3%; top: 15%; }.member-panel { right: -5%; top: 47%; }.benefit-panel { right: 1%; top: 73%; }
  .statement-section { min-height: 540px; padding: 90px 20px; grid-template-columns: 1fr; align-content: center; gap: 38px; }
  .statement-section > p { font-size: 42px; }.statement-section > span { padding-left: 18px; }
  .ecosystem-section { padding: 88px 20px; }
  .section-title { display: grid; }.section-title h2 { font-size: 42px; }
  .feature-tabs { margin-top: 42px; grid-template-columns: 1fr 1fr; }
  .feature-tabs button { min-height: 68px; }
  .feature-experience { grid-template-columns: 1fr; gap: 40px; }
  .feature-preview { min-height: 350px; padding: 16px; }
  .preview-event { min-height: 180px; padding: 22px; }.preview-event strong { font-size: 26px; }
  .journey-section { padding: 88px 20px; }
  .journey-line { display: none; }
  .journey-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .journey-grid article, .journey-grid article:first-child { min-height: 0; padding: 26px 0; border-left: 0; border-top: 1px solid #d6c3a0; }
  .journey-grid span { font-size: 48px; }
  .continuity-section { min-height: auto; padding: 88px 20px; gap: 50px; }
  .continuity-copy h2 { font-size: 44px; }.continuity-copy p { font-size: 16px; }
  .device-stage { min-height: 410px; }
  .device-laptop { width: 88%; height: 330px; }.device-laptop > div { padding: 20px; }.device-laptop h3 { margin-top: 34px; font-size: 23px; }.device-laptop span { height: 50px; }
  .device-phone { width: 130px; height: 280px; }.device-phone h3 { margin-top: 25px; font-size: 14px; }.device-phone span { height: 45px; }
  .final-cta { min-height: 400px; padding: 76px 20px; }.final-cta h2 { font-size: 44px; }
  .landing-footer { padding: 48px 20px; grid-template-columns: 1fr; justify-items: start; }
  .landing-footer nav { justify-content: flex-start; }.landing-footer p { justify-self: start; }
}

@media (max-width: 390px) {
  .hero-copy h1 { font-size: 42px; }
  .hero-copy p { font-size: 16px; }
  .product-stage { min-height: 460px; }
  .platform-window { min-height: 350px; }
  .platform-main h2 { font-size: 23px; }
  .floating-panel { width: 55%; }.floating-panel > span { display: none; }
  .statement-section > p, .section-title h2, .continuity-copy h2, .final-cta h2 { font-size: 38px; }
  .feature-tabs button { font-size: 14px; }
}

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