:root {
  --night: #100b2d;
  --night-soft: #211648;
  --ink: #20173d;
  --muted: #706783;
  --paper: #fffaf7;
  --pink: #fb5f9b;
  --pink-dark: #d83e7e;
  --peach: #ffb36f;
  --lilac: #bba9ff;
  --aqua: #9ee8ec;
  --line: rgba(32, 23, 61, 0.12);
  --shadow: 0 24px 80px rgba(43, 18, 84, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: white;
}
.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
}
.brand b { color: var(--aqua); font-weight: 800; }
.brand-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--peach), var(--pink));
  box-shadow: 0 8px 24px rgba(251, 95, 155, .3);
}
.brand-mark span { width: 3px; border-radius: 99px; background: white; }
.brand-mark span:nth-child(1) { height: 9px; }
.brand-mark span:nth-child(2) { height: 17px; }
.brand-mark span:nth-child(3) { height: 12px; }
.nav-links { display: flex; gap: 34px; color: rgba(255,255,255,.72); font-size: 14px; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 750;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; color: white; background: transparent; cursor: pointer; }

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 76% 25%, rgba(255, 179, 111, .26), transparent 19%),
    radial-gradient(circle at 58% 80%, rgba(251, 95, 155, .24), transparent 27%),
    linear-gradient(130deg, #0d0828 0%, #21134d 52%, #4d207a 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 56%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 430px; height: 430px; right: -100px; top: 90px; background: rgba(255, 179, 111, .11); }
.hero-glow-two { width: 340px; height: 340px; left: 33%; bottom: -150px; background: rgba(158, 232, 236, .1); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-copy { max-width: 590px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--pink-dark); }
.hero h1 {
  margin: 26px 0 22px;
  font-size: clamp(54px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.065em;
}
h1 em, h2 em { color: var(--peach); font-style: normal; }
.hero-copy > p { max-width: 500px; margin: 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.button-primary { color: var(--night); background: var(--aqua); }
.button-light { color: var(--night); background: white; }
.button span { font-size: 18px; line-height: 1; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: white; font-size: 13px; font-weight: 750; }
.text-link span { font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 54px; color: rgba(255,255,255,.57); font-size: 12px; }
.avatar-stack { display: flex; padding-left: 5px; }
.avatar { width: 30px; height: 30px; display: grid; place-items: center; margin-left: -5px; border: 2px solid #21134d; border-radius: 50%; color: var(--night); font-size: 10px; font-weight: 900; }
.avatar-one { background: var(--peach); }.avatar-two { background: var(--aqua); }.avatar-three { background: var(--lilac); }.avatar-four { color: white; background: var(--pink); }

.hero-art { position: relative; min-height: 620px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transform: rotate(-28deg); }
.orbit-large { width: 610px; height: 310px; top: 180px; left: 0; }
.orbit-small { width: 420px; height: 220px; top: 225px; left: 80px; border-color: rgba(158,232,236,.22); transform: rotate(32deg); }
.phone { position: absolute; overflow: hidden; border: 8px solid #191330; border-radius: 38px; background: #191330; box-shadow: 20px 36px 70px rgba(0,0,0,.3); }
.phone-main { width: 282px; height: 572px; z-index: 3; top: 40px; right: 90px; transform: rotate(7deg); animation: phone-float 6s ease-in-out infinite; }
.phone-back { width: 248px; height: 500px; z-index: 2; top: 124px; right: 310px; opacity: .8; transform: rotate(-10deg); filter: saturate(.7); }
.phone-speaker { position: absolute; z-index: 2; width: 70px; height: 5px; left: 50%; top: 7px; transform: translateX(-50%); border-radius: 10px; background: #30294a; }
.phone-screen { position: absolute; inset: 0; padding: 27px 17px 12px; border-radius: 28px; background: linear-gradient(180deg, #2b175b 0%, #100d2b 65%); }
.app-status { display: flex; justify-content: space-between; color: rgba(255,255,255,.72); font-size: 8px; font-weight: 700; }
.app-heading { margin: 24px 3px 18px; }.app-heading span { display: block; color: rgba(255,255,255,.6); font-size: 9px; }.app-heading strong { display: block; margin-top: 4px; color: white; font-size: 20px; }
.room-featured { position: relative; min-height: 190px; overflow: hidden; padding: 17px; border-radius: 22px; background: linear-gradient(142deg, #e8659c, #8242ab); box-shadow: 0 15px 30px rgba(251,95,155,.2); }
.room-featured::after { content: ""; position: absolute; width: 135px; height: 135px; right: -25px; top: 30px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,255,255,.08), 0 0 0 37px rgba(255,255,255,.05); }
.room-orb { position: absolute; right: 8px; bottom: 6px; width: 100px; height: 100px; border-radius: 50%; background: radial-gradient(circle at 28% 28%, var(--peach), transparent 16%), linear-gradient(145deg, rgba(255,255,255,.32), rgba(255,255,255,.03)); }
.room-orb i { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: white; }.room-orb i:nth-child(1) { top: 20px; left: 22px; }.room-orb i:nth-child(2) { top: 47px; left: 62px; }.room-orb i:nth-child(3) { top: 73px; left: 32px; }
.room-copy { position: relative; z-index: 1; }.live-label { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,.78); font-size: 7px; font-weight: 800; letter-spacing: .13em; }.live-label b, .live-dot { width: 5px; height: 5px; border-radius: 50%; background: #ffca6c; box-shadow: 0 0 8px #ffca6c; }
.room-copy strong { display: block; margin-top: 20px; color: white; font-size: 21px; line-height: 1.03; }.room-copy small { display: block; margin-top: 10px; color: rgba(255,255,255,.72); font-size: 8px; }
.join-bubble { position: absolute; z-index: 2; right: 14px; bottom: 14px; width: 32px; height: 32px; border: 0; border-radius: 50%; color: var(--night); background: var(--aqua); font-size: 17px; cursor: pointer; }
.section-label { display: flex; justify-content: space-between; margin: 22px 3px 12px; color: white; font-size: 10px; font-weight: 700; }.section-label a { color: var(--aqua); font-size: 8px; }
.mini-room-list { display: grid; gap: 9px; }.mini-room { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 9px; padding: 9px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.06); }.mini-room-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: var(--night); font-size: 14px; }.icon-lilac { background: var(--lilac); }.icon-peach { background: var(--peach); }.mini-room b, .mini-room small { display: block; }.mini-room b { color: rgba(255,255,255,.9); font-size: 9px; }.mini-room small { margin-top: 2px; color: rgba(255,255,255,.45); font-size: 7px; }.mini-room em { color: rgba(255,255,255,.5); font-size: 7px; font-style: normal; }
.bottom-nav { position: absolute; inset: auto 8px 7px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.38); text-align: center; font-size: 13px; }.bottom-nav span { display: grid; justify-items: center; gap: 1px; }.bottom-nav small { font-size: 6px; }.bottom-nav .selected { color: var(--aqua); }.bottom-nav .bottom-plus { width: 27px; height: 27px; margin: auto; border-radius: 50%; color: var(--night); background: var(--aqua); font-size: 20px; }
.back-screen { padding: 34px 20px; background: linear-gradient(155deg, #302065, #15102f); }.back-header { color: rgba(255,255,255,.8); font-size: 18px; font-weight: 800; }.discover-pill { width: 100%; height: 28px; margin-top: 24px; border-radius: 99px; background: rgba(255,255,255,.12); }.discover-lines { display: grid; gap: 10px; margin-top: 25px; }.discover-lines span { display: block; height: 8px; border-radius: 8px; background: rgba(255,255,255,.12); }.discover-lines span:nth-child(2) { width: 70%; }.discover-lines span:nth-child(3) { width: 45%; }.discover-card { height: 180px; margin-top: 30px; border-radius: 20px; background: linear-gradient(145deg, #8f78e9, #e45e99); opacity: .6; }
.floating-note { position: absolute; z-index: 5; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.19); border-radius: 99px; color: rgba(255,255,255,.82); background: rgba(22, 13, 58, .72); box-shadow: 0 15px 30px rgba(0,0,0,.16); backdrop-filter: blur(12px); font-size: 10px; }.note-one { top: 16px; right: 30px; }.note-two { right: 0; bottom: 64px; }.mini-wave { width: 17px; height: 12px; display: inline-block; background: linear-gradient(90deg, transparent 0 7%, var(--aqua) 7% 16%, transparent 16% 25%, var(--aqua) 25% 34%, transparent 34% 43%, var(--aqua) 43% 52%, transparent 52% 61%, var(--aqua) 61% 70%, transparent 70%); }.live-dot { display: inline-block; }
.sound-burst { position: absolute; z-index: 4; left: 24px; bottom: 92px; display: flex; align-items: center; gap: 4px; height: 34px; }.sound-burst span { width: 4px; border-radius: 99px; background: var(--peach); animation: sound 1.1s ease-in-out infinite alternate; }.sound-burst span:nth-child(1) { height: 12px; animation-delay: .1s; }.sound-burst span:nth-child(2) { height: 25px; animation-delay: .2s; }.sound-burst span:nth-child(3) { height: 34px; animation-delay: .3s; }.sound-burst span:nth-child(4) { height: 22px; animation-delay: .4s; }.sound-burst span:nth-child(5) { height: 14px; animation-delay: .5s; }
@keyframes phone-float { 50% { transform: rotate(7deg) translateY(-12px); } } @keyframes sound { to { transform: scaleY(.45); } }
.scroll-cue { position: absolute; z-index: 2; bottom: 30px; left: 50%; display: flex; align-items: center; gap: 10px; transform: translateX(-50%); color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }.scroll-cue span { width: 5px; height: 5px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 10px var(--aqua); }

.marquee-band { overflow: hidden; color: var(--night); background: var(--aqua); }.marquee-track { display: flex; align-items: center; justify-content: space-around; min-width: max-content; gap: 36px; padding: 17px 0; font-size: 14px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }.marquee-track i { color: var(--pink-dark); font-style: normal; }
.section { padding: 132px 0; }.section-light { background: var(--paper); }.section-intro { max-width: 690px; }.section-intro h2, .rooms-copy h2 { margin: 22px 0 20px; font-size: clamp(45px, 5vw, 70px); line-height: .98; letter-spacing: -.06em; }.section-intro h2 span, .rooms-copy h2 span { color: var(--pink-dark); }.section-intro p, .rooms-copy > p { max-width: 530px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }.feature-card { position: relative; min-height: 390px; overflow: hidden; padding: 30px; border-radius: var(--radius); }.feature-card-tall { color: white; background: #271650; }.feature-card-pink { color: var(--night); background: #ff8bb7; }.feature-card-dark { color: white; background: #151029; }.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 50%; color: var(--night); background: var(--aqua); font-size: 22px; }.feature-card-pink .feature-icon { background: var(--peach); }.feature-card-dark .feature-icon { color: white; background: var(--pink); }.card-kicker { display: block; margin-bottom: 18px; opacity: .62; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }.feature-card h3 { margin: 0; font-size: 30px; line-height: 1.03; letter-spacing: -.04em; }.feature-card p { position: relative; z-index: 1; max-width: 230px; margin-top: 18px; opacity: .7; font-size: 13px; line-height: 1.65; }.wave-visual { position: absolute; right: 25px; bottom: 22px; display: flex; align-items: end; gap: 4px; height: 94px; opacity: .7; }.wave-visual span { width: 5px; border-radius: 5px; background: var(--aqua); }.wave-visual span:nth-child(1) { height: 30px; }.wave-visual span:nth-child(2) { height: 52px; }.wave-visual span:nth-child(3) { height: 84px; }.wave-visual span:nth-child(4) { height: 45px; }.wave-visual span:nth-child(5) { height: 68px; }.wave-visual span:nth-child(6) { height: 29px; }.wave-visual span:nth-child(7) { height: 75px; }.wave-visual span:nth-child(8) { height: 42px; }.wave-visual span:nth-child(9) { height: 60px; }.floating-tags { position: absolute; right: 24px; bottom: 26px; display: flex; flex-wrap: wrap; justify-content: end; gap: 8px; max-width: 180px; }.floating-tags span { padding: 8px 11px; border: 1px solid rgba(32,23,61,.24); border-radius: 99px; font-size: 10px; }.pulse-visual { position: absolute; right: 28px; bottom: 26px; display: grid; place-items: center; width: 130px; height: 130px; border: 1px solid rgba(251,95,155,.4); border-radius: 50%; color: var(--pink); }.pulse-visual::before, .pulse-visual::after { content: ""; position: absolute; inset: 17px; border: 1px solid rgba(251,95,155,.33); border-radius: 50%; }.pulse-visual::after { inset: 35px; }.pulse-visual span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 12px var(--aqua); }.pulse-visual b { position: relative; z-index: 1; color: white; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }

.rooms-section { color: white; background: #f0e8ff; }.rooms-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }.rooms-visual { position: relative; min-height: 500px; }.rooms-visual::before { content: ""; position: absolute; width: 440px; height: 440px; top: 30px; left: 10px; border-radius: 50%; background: linear-gradient(145deg, #d4c5ff, #fca4c6); }.room-card-main { position: absolute; z-index: 2; top: 40px; left: 36px; width: min(380px, calc(100% - 45px)); min-height: 390px; padding: 27px; border-radius: 25px; color: white; background: linear-gradient(155deg, #21114d, #100b2d); box-shadow: 24px 28px 60px rgba(43,18,84,.24); transform: rotate(-5deg); }.room-card-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.57); font-size: 11px; }.room-card-title { display: flex; gap: 20px; align-items: start; margin-top: 52px; }.room-spark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--night); background: var(--peach); }.room-card-title h3 { margin: 0; font-size: 33px; line-height: 1.02; letter-spacing: -.045em; }.room-card-title em { color: var(--aqua); font-style: normal; }.speaker-row { display: flex; align-items: center; margin-top: 58px; }.speaker { width: 34px; height: 34px; display: grid; place-items: center; margin-right: -7px; border: 2px solid #21114d; border-radius: 50%; color: var(--night); font-size: 11px; font-weight: 900; }.speaker-a { background: var(--pink); }.speaker-b { background: var(--aqua); }.speaker-c { background: var(--lilac); }.speaker-d { color: white; background: #4a356d; }.speaker-row small { margin-left: 16px; color: rgba(255,255,255,.45); font-size: 10px; }.room-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 34px; color: rgba(255,255,255,.65); }.room-controls button { padding: 11px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; color: white; background: rgba(255,255,255,.08); font-size: 10px; cursor: pointer; }.chat-bubble { position: absolute; z-index: 3; padding: 13px 17px; border: 1px solid rgba(32,23,61,.1); border-radius: 99px; color: var(--ink); background: white; box-shadow: 0 13px 35px rgba(43,18,84,.12); font-size: 11px; }.chat-bubble-one { top: 37px; right: 0; transform: rotate(5deg); }.chat-bubble-two { right: 25px; bottom: 63px; transform: rotate(-4deg); background: var(--aqua); }.rooms-copy { color: var(--ink); }.room-list { display: grid; gap: 0; margin-top: 38px; border-top: 1px solid var(--line); }.room-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 4px 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }.room-number { grid-row: span 2; color: var(--pink-dark); font-size: 11px; font-weight: 850; }.room-list strong { font-size: 15px; }.room-list small { color: var(--muted); font-size: 12px; }

.promise-section { padding: 105px 0; color: white; background: var(--pink-dark); }.promise-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: end; }.promise-section h2 { margin: 20px 0 0; font-size: clamp(45px, 5vw, 68px); line-height: .95; letter-spacing: -.06em; }.promise-copy { max-width: 440px; }.promise-copy p { color: rgba(255,255,255,.75); font-size: 19px; line-height: 1.65; }.text-link-light { margin-top: 20px; }.download-section { position: relative; overflow: hidden; padding: 150px 0; color: white; text-align: center; background: linear-gradient(130deg, #100b2d, #2a165e); }.download-content { position: relative; z-index: 1; display: grid; justify-items: center; }.download-section h2 { margin: 24px 0 20px; font-size: clamp(50px, 6vw, 82px); line-height: .95; letter-spacing: -.065em; }.download-section p { max-width: 450px; margin: 0 0 30px; color: rgba(255,255,255,.67); font-size: 16px; line-height: 1.7; }.download-note { display: flex; align-items: center; gap: 8px; margin-top: 23px; color: rgba(255,255,255,.42); font-size: 11px; }.download-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 10px var(--aqua); }.download-orb { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }.download-orb-one { width: 520px; height: 520px; left: -230px; top: -220px; box-shadow: 0 0 0 35px rgba(255,255,255,.03), 0 0 0 70px rgba(255,255,255,.02); }.download-orb-two { width: 400px; height: 400px; right: -180px; bottom: -220px; border-color: rgba(158,232,236,.18); }
.site-footer { color: rgba(255,255,255,.52); background: #0b0821; }.footer-top { display: flex; justify-content: space-between; align-items: center; padding: 48px 0; }.footer-links { display: flex; gap: 25px; font-size: 12px; }.footer-links a:hover { color: white; }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-bottom a:hover { color: white; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.inner-page { background: #fffaf7; }
.inner-header { position: relative; background: var(--night); }
.inner-hero { padding: 120px 0 110px; color: white; background: radial-gradient(circle at 80% 18%, rgba(251,95,155,.27), transparent 24%), linear-gradient(130deg, #100b2d, #2c1760); }
.inner-hero-short { padding-bottom: 90px; }
.inner-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.inner-hero h1 { margin: 26px 0 0; font-size: clamp(52px, 6vw, 82px); line-height: .97; letter-spacing: -.065em; }
.inner-hero-grid > p, .inner-lead { max-width: 560px; margin: 0; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.75; }
.inner-hero .inner-lead { margin-top: 24px; }
.content-section { padding: 105px 0; background: white; }
.content-section-tint { background: #f1eaff; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.story-card { padding: 36px; border-radius: var(--radius); color: white; background: var(--pink-dark); }
.story-number { font-size: 11px; font-weight: 850; letter-spacing: .15em; }
.story-card h2 { margin: 110px 0 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -.05em; }
.prose { max-width: 650px; color: var(--muted); font-size: 19px; line-height: 1.9; }
.prose p:first-child { margin-top: 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-grid article { min-height: 260px; padding: 30px; border-radius: 24px; background: white; }
.value-grid article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: white; background: var(--night); }
.value-grid h3 { margin: 50px 0 10px; font-size: 24px; letter-spacing: -.03em; }
.value-grid p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.policy-layout { display: grid; grid-template-columns: .35fr .65fr; gap: 90px; }
.policy-index { position: sticky; top: 40px; align-self: start; display: grid; gap: 18px; }
.policy-index span { color: var(--pink-dark); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.policy-index strong { font-size: 32px; line-height: 1.2; }
.policy-sections { border-top: 1px solid var(--line); }
.policy-sections section { display: grid; grid-template-columns: 45px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.policy-sections section > span { color: var(--pink-dark); font-size: 11px; font-weight: 850; }
.policy-sections h2 { margin: 0 0 10px; font-size: 27px; letter-spacing: -.035em; }
.policy-sections p { margin: 0; color: var(--muted); line-height: 1.75; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-cards > * { position: relative; min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-radius: 24px; color: white; background: var(--night); transition: transform .2s ease, background .2s ease; }
.contact-cards > *:nth-child(2) { color: var(--night); background: var(--aqua); }.contact-cards > *:nth-child(3) { color: var(--night); background: var(--pink); }
.contact-cards span { opacity: .62; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-cards strong { font-size: 18px; overflow-wrap: anywhere; }
.contact-cards em { position: absolute; right: 26px; top: 27px; opacity: .55; font-size: 9px; font-style: normal; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.company-note { display: grid; grid-template-columns: .4fr 1fr; gap: 8px 30px; margin-top: 70px; padding-top: 35px; border-top: 1px solid var(--line); }
.company-note span { grid-row: span 2; color: var(--pink-dark); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.company-note strong { font-size: 20px; }
.company-note p { margin: 0; color: var(--muted); }
.legal-copy { max-width: 760px; color: var(--muted); font-size: 17px; line-height: 1.85; }
.legal-copy > p:first-child { margin-top: 0; padding: 24px; border-left: 3px solid var(--pink); color: var(--ink); background: #fff2f7; }
.legal-copy h2 { margin: 48px 0 12px; color: var(--ink); font-size: 27px; letter-spacing: -.035em; }
.legal-copy a { color: var(--pink-dark); text-decoration: underline; text-underline-offset: 3px; }
.compact-footer .footer-bottom { padding-top: 28px; border-top: 0; }

@media (max-width: 940px) {
  .shell { width: min(100% - 40px, 1180px); }
  .nav-links { position: absolute; top: 75px; left: 20px; right: 20px; display: none; flex-direction: column; gap: 0; padding: 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(16,11,45,.96); box-shadow: var(--shadow); }.nav-links.open { display: flex; }.nav-links a { padding: 13px; }.menu-toggle { display: inline-block; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 150px; }.hero-copy { max-width: 700px; }.hero-art { min-height: 570px; }.phone-main { right: 18%; }.phone-back { right: 46%; }.rooms-layout, .promise-layout { grid-template-columns: 1fr; gap: 40px; }.rooms-copy { max-width: 650px; }.rooms-visual { min-height: 500px; }.feature-grid { grid-template-columns: 1fr 1fr; }.feature-card-tall { grid-row: span 2; }.feature-card { min-height: 340px; }
  .inner-hero-grid, .story-grid, .policy-layout { grid-template-columns: 1fr; gap: 50px; }.policy-index { position: static; }.value-grid, .contact-cards { grid-template-columns: 1fr 1fr; }.company-note { grid-template-columns: 1fr; }.company-note span { grid-row: auto; }
}
@media (max-width: 620px) {
  .shell { width: min(100% - 30px, 1180px); }.nav { min-height: 76px; }.brand { font-size: 12px; }.nav-cta { display: none; }.hero { min-height: 790px; }.hero-grid { padding: 120px 0 40px; }.hero h1 { font-size: clamp(50px, 15vw, 72px); }.hero-copy > p { font-size: 16px; }.hero-actions { align-items: start; flex-direction: column; gap: 20px; }.hero-proof { margin-top: 38px; }.hero-art { min-height: 460px; transform: scale(.78); transform-origin: top center; margin-bottom: -95px; margin-left: -45px; margin-right: -45px; }.phone-main { right: 15px; }.phone-back { right: 250px; }.orbit-large { left: -120px; }.note-one { right: 0; }.note-two { right: -20px; }.sound-burst { left: -20px; }.scroll-cue { display: none; }.marquee-track { gap: 20px; padding: 14px 0; font-size: 11px; }.section { padding: 88px 0; }.section-intro h2, .rooms-copy h2 { font-size: 49px; }.feature-grid { grid-template-columns: 1fr; }.feature-card-tall { grid-row: auto; }.feature-card { min-height: 345px; }.rooms-visual { min-height: 430px; transform: scale(.82); transform-origin: top left; width: 122%; margin-bottom: -78px; }.rooms-visual::before { width: 390px; height: 390px; }.room-card-main { left: 13px; }.chat-bubble-one { right: -20px; }.chat-bubble-two { right: 4px; }.promise-layout { gap: 30px; }.promise-section { padding: 82px 0; }.promise-section h2 { font-size: 52px; }.promise-copy p { font-size: 17px; }.download-section { padding: 105px 0; }.download-section h2 { font-size: 54px; }.footer-top, .footer-bottom { align-items: start; flex-direction: column; gap: 26px; }.footer-links { flex-wrap: wrap; gap: 14px 22px; }
  .inner-hero { padding: 85px 0 75px; }.inner-hero h1 { font-size: 50px; }.inner-hero-grid > p, .inner-lead { font-size: 16px; }.content-section { padding: 75px 0; }.story-card h2 { margin-top: 80px; }.value-grid, .contact-cards { grid-template-columns: 1fr; }.policy-sections section { grid-template-columns: 32px 1fr; gap: 12px; }.contact-cards a { min-height: 190px; }.legal-copy { font-size: 15px; }
}

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