:root {
  color-scheme: dark;
  --bg: #050609;
  --bg-2: #080b12;
  --surface: rgba(255,255,255,.066);
  --surface-2: rgba(255,255,255,.095);
  --surface-3: rgba(7, 10, 17, .84);
  --line: rgba(255,255,255,.12);
  --line-2: rgba(255,255,255,.18);
  --text: #f6f7fb;
  --muted: #a7afbf;
  --soft: #727c91;
  --blue: #6ab7ff;
  --blue-2: #2d86ff;
  --violet: #8d78ff;
  --red: #a9252b;
  --gold: #d2ad63;
  --good: #bff0d1;
  --warn: #ffd19a;
  --shadow: 0 28px 90px rgba(0,0,0,.42);
  --shadow-soft: 0 18px 60px rgba(0,0,0,.32);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --wide: 1360px;
  --header-height: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at 18% -10%, rgba(84, 171, 255, .22), transparent 30rem),
    radial-gradient(circle at 94% 6%, rgba(169, 37, 43, .18), transparent 27rem),
    radial-gradient(circle at 50% 110%, rgba(141, 120, 255, .12), transparent 36rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 52%, var(--bg) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.055), transparent 35rem);
  opacity: .75;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

p { margin: 0; color: var(--muted); }

h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: -.048em; }

h1 { font-size: clamp(3.05rem, 7.1vw, 6.9rem); max-width: 980px; }
h2 { font-size: clamp(2.15rem, 4.5vw, 4.65rem); }
h3 { font-size: 1.13rem; letter-spacing: -.02em; }

code, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

code {
  padding: .13rem .38rem;
  color: #dcecff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}

pre {
  overflow: auto;
  margin: 1rem 0 0;
  padding: 1.1rem;
  color: #dce7f7;
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  white-space: pre-wrap;
}

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 48px), var(--wide)); margin-inline: auto; }

.section { padding: 104px 0; }
.section-lg { padding: 118px 0 112px; }
.section-md { padding: 98px 0 86px; }
.section-quiet {
  border-block: 1px solid rgba(255,255,255,.075);
  background: linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.014));
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: .8rem 1rem;
  color: #06111e;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(5,6,9,.74);
  backdrop-filter: blur(22px) saturate(130%);
  border-bottom: 1px solid rgba(255,255,255,.082);
}

.nav-shell {
  width: min(calc(100% - 32px), 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .82rem;
  min-width: max-content;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(169,37,43,.26);
}

.brand span { display: grid; gap: .08rem; }
.brand strong { font-size: .98rem; letter-spacing: -.018em; }
.brand small { color: var(--soft); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; }

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: .2rem;
  padding: .35rem;
  border: 1px solid rgba(255,255,255,.075);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
}

.site-nav a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
  padding: .64rem .8rem;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255,255,255,.085);
}

.nav-button {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  border-radius: 999px;
  color: #081120;
  font-size: .86rem;
  font-weight: 950;
  background: linear-gradient(135deg, #90ceff, var(--blue), var(--violet));
  box-shadow: 0 16px 42px rgba(82, 161, 255, .2);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.nav-toggle i {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.glass-panel {
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.034));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(125%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  margin-bottom: 1.1rem;
  color: #dbeaff;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--gold));
}

.lead {
  max-width: 760px;
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .94rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.button-primary {
  color: #07111f;
  background: linear-gradient(135deg, #9ed5ff 0%, var(--blue) 42%, var(--violet) 100%);
  box-shadow: 0 24px 60px rgba(82, 161, 255, .24);
}

.button-primary:hover,
.button-primary:focus-visible { box-shadow: 0 30px 78px rgba(82, 161, 255, .34); }

.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,.064);
  border-color: rgba(255,255,255,.14);
}

.button-secondary:hover,
.button-secondary:focus-visible { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.23); }

.text-link {
  display: inline-flex;
  width: max-content;
  margin-top: 1.4rem;
  color: #d9ecff;
  font-weight: 950;
  border-bottom: 1px solid rgba(106,183,255,.55);
}

.home-hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.2rem);
}

.hero-copy { position: relative; z-index: 2; }

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: .62rem;
  margin-top: 1.35rem;
}

.signal-row span {
  color: #c5cfdf;
  font-size: .82rem;
  font-weight: 850;
  padding: .48rem .7rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.042);
}

.hero-ambient {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.hero-blue { width: 420px; height: 420px; right: 5%; top: 12%; background: rgba(70,150,255,.16); }
.hero-red { width: 420px; height: 420px; left: -150px; bottom: 10%; background: rgba(169,37,43,.14); }

.desktop-showcase { position: relative; z-index: 1; }

.desktop-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #090d14;
  box-shadow: 0 36px 110px rgba(0,0,0,.58), 0 0 0 1px rgba(106,183,255,.06) inset;
}

.desktop-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.12), transparent 25%, transparent 72%, rgba(255,255,255,.04)),
    radial-gradient(circle at 20% 0%, rgba(106,183,255,.12), transparent 28rem);
}

.desktop-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: .52rem;
  padding: 0 .9rem;
  background: rgba(255,255,255,.045);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.desktop-topbar strong {
  margin-left: .45rem;
  color: #aeb8ca;
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .02em;
}

.traffic { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.traffic-red { background: #b03a3f; }
.traffic-gold { background: #c2a160; }
.traffic-green { background: #5fa87e; }

.desktop-frame img {
  width: 100%;
  aspect-ratio: 2048 / 874;
  object-fit: cover;
}

.desktop-caption {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: -34px;
  max-width: 420px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
}

.desktop-caption strong { display: block; margin-bottom: .2rem; }
.desktop-caption span { color: var(--muted); font-size: .9rem; }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.section-copy { max-width: 720px; }
.section-copy h2 { margin-bottom: 1.2rem; }
.section-copy p + p { margin-top: 1rem; }

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: #090c12;
  box-shadow: var(--shadow);
}

.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .48rem .7rem;
  color: #eaf2ff;
  font-size: .76rem;
  font-weight: 900;
  background: rgba(0,0,0,.44);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.photo-card-large {
  inset: 0 10% 8% 0;
}

.photo-card:not(.photo-card-large) {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 44%;
}

.section-header {
  max-width: 820px;
  margin-bottom: 3rem;
}

.section-header.center { margin-inline: auto; text-align: center; }
.section-header h2 { margin-bottom: 1rem; }

.feature-grid {
  display: grid;
  gap: 1rem;
}
.feature-grid.compact { grid-template-columns: repeat(4, 1fr); }
.feature-grid.detailed { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  min-height: 230px;
  padding: 1.35rem;
  border-radius: var(--radius-md);
}
.feature-grid.detailed .feature-card { min-height: 285px; }

.feature-icon {
  width: max-content;
  min-width: 56px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  padding: 0 .7rem;
  color: #dcecff;
  font-size: .69rem;
  font-weight: 950;
  letter-spacing: .05em;
  border: 1px solid rgba(106,183,255,.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(106,183,255,.16), rgba(141,120,255,.1));
}

.feature-card h3 { margin-bottom: .7rem; }
.feature-card p { font-size: .95rem; }

.center-block { display: flex; justify-content: center; margin-top: 2rem; }

.section-image-band {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.075);
  background:
    linear-gradient(90deg, rgba(169,37,43,.1), rgba(106,183,255,.08)),
    rgba(255,255,255,.02);
}

.image-band-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1.28fr);
  gap: 2rem;
  align-items: center;
}
.image-band-grid h2 { margin-bottom: 1.1rem; }

.image-band-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.image-band-cards img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-soft);
}
.image-band-cards img:first-child { grid-column: span 2; height: 300px; }

.mascot-section { padding-top: 92px; }
.mascot-grid {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.mascot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background: #090b10;
  box-shadow: var(--shadow);
}

.cta-section { padding: 0 0 110px; }
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 0%, rgba(106,183,255,.16), transparent 24rem),
    radial-gradient(circle at 90% 100%, rgba(169,37,43,.16), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.cta-panel h2 { max-width: 760px; font-size: clamp(2rem, 4vw, 3.8rem); }
.cta-actions { margin-top: 0; justify-content: flex-end; }

.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 0%, rgba(106,183,255,.14), transparent 29rem),
    radial-gradient(circle at 90% 20%, rgba(169,37,43,.14), transparent 26rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 5.85rem); }

.page-hero-card, .guide-hero-image, .version-card, .mascot-mini-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.page-hero-card img, .guide-hero-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.two-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.large-panel {
  overflow: hidden;
  min-height: 420px;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border-radius: var(--radius-xl);
}
.large-panel h2 { margin-bottom: 1.1rem; }
.large-panel p + p { margin-top: 1rem; }
.image-panel { padding: 0; }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }

.check-list {
  display: grid;
  gap: .75rem;
  margin: 1.3rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 20px rgba(106,183,255,.4);
}

.guide-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.guide-index {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border-radius: 22px;
}
.guide-index strong {
  margin: .25rem .35rem .5rem;
  color: #e8f1ff;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.guide-index a {
  color: var(--muted);
  padding: .65rem .72rem;
  border-radius: 13px;
  font-size: .9rem;
  font-weight: 800;
}
.guide-index a:hover, .guide-index a:focus-visible { color: var(--text); background: rgba(255,255,255,.07); }

.guide-content {
  display: grid;
  gap: 1.2rem;
}
.guide-block {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.028));
  box-shadow: var(--shadow-soft);
}
.guide-block h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.35rem); }
.guide-block > p { max-width: 900px; }
.guide-note {
  display: grid;
  gap: .35rem;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(210,173,99,.22);
  border-radius: 18px;
  background: rgba(210,173,99,.075);
}
.guide-note strong { color: #f5e0ab; }
.guide-note span { color: var(--muted); }

.guide-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin-top: 1.25rem;
}
.guide-steps section {
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(0,0,0,.16);
}
.guide-steps h3 { margin-bottom: .55rem; }

.workspace-map {
  overflow: hidden;
  margin: 1.35rem 0;
  border-radius: 24px;
}
.workspace-map img { width: 100%; }

.callout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin-top: 1.25rem;
}
.callout-grid.three { grid-template-columns: repeat(3, 1fr); }
.callout-grid div {
  min-height: 130px;
  display: grid;
  gap: .42rem;
  align-content: start;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
}
.callout-grid strong { color: #f4f7ff; }
.callout-grid span { color: var(--muted); font-size: .94rem; }

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1.25rem;
}
.image-row img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
}
.feedback-template { margin: 1.25rem 0; padding: 1.1rem; border-radius: 24px; }

.version-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  min-height: 410px;
}
.version-label {
  display: block;
  color: var(--soft);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.version-card > strong {
  display: block;
  font-size: clamp(1.65rem, 3.2vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 1.4rem;
}
.version-card dl { display: grid; gap: .95rem; margin: 0; }
.version-card div { padding-top: .95rem; border-top: 1px solid rgba(255,255,255,.1); }
.version-card dt {
  color: var(--soft);
  font-size: .73rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.version-card dd { margin: .25rem 0 0; color: #eef4ff; font-weight: 800; }

.number-list {
  margin: 1.2rem 0 0;
  padding-left: 1.3rem;
  color: var(--muted);
}
.number-list li + li { margin-top: .82rem; }

.release-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1.1fr);
  gap: 2rem;
  align-items: start;
}
.release-list { display: grid; gap: 1rem; }
.release-list article { padding: 1.35rem; border-radius: 24px; }
.release-list h3 { margin-bottom: .75rem; }

.beta-layout {
  display: grid;
  grid-template-columns: minmax(330px, .68fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}
.beta-side { position: sticky; top: calc(var(--header-height) + 22px); }
.beta-info-card { padding: clamp(1.3rem, 3vw, 2rem); border-radius: var(--radius-xl); }
.beta-info-card h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 1rem; }

.mascot-mini-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
}
.mascot-mini-card img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
}
.mascot-mini-card strong { display: block; font-size: 1.25rem; margin-bottom: .35rem; }
.mascot-mini-card span { color: var(--muted); }

.beta-form {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
}
.form-title { margin-bottom: 1.25rem; }
.form-title h2 { font-size: clamp(2rem, 4vw, 3.15rem); margin-bottom: .45rem; }

.form-grid { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-grid.two { grid-template-columns: repeat(2, 1fr); }
.form-full { display: grid; margin-bottom: 1rem; }

label span {
  display: inline-block;
  color: #e0e8f4;
  font-size: .88rem;
  font-weight: 900;
  margin-bottom: .46rem;
}

input, select, textarea {
  width: 100%;
  color: var(--text);
  font: inherit;
  padding: .93rem .98rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  outline: 0;
  background: rgba(0,0,0,.28);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
textarea { resize: vertical; min-height: 120px; }
::placeholder { color: rgba(167,175,191,.58); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(106,183,255,.72);
  box-shadow: 0 0 0 4px rgba(106,183,255,.12);
  background: rgba(0,0,0,.36);
}
.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: .75rem;
  align-items: start;
  margin: 1rem 0 1.25rem;
}
.checkbox-row input { width: 18px; height: 18px; margin-top: .24rem; accent-color: var(--blue); }
.checkbox-row span { color: var(--muted); line-height: 1.5; margin: 0; }
.form-submit { width: 100%; }
.form-status { min-height: 1.5rem; margin-top: 1rem; font-weight: 850; }
.form-status.success { color: var(--good); }
.form-status.error { color: var(--warn); }

/* Honeypot fields are intentionally present in the DOM but moved far off-screen.
   This reduces basic bots without relying only on display:none. Production-grade protection needs a backend. */
.honeypot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: .001;
  overflow: hidden;
  pointer-events: none;
}
.honeypot-field input {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
}
.honeypot-secondary { transform: translateX(-120vw); }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.2rem;
  align-items: start;
}
.faq-list { display: grid; gap: .8rem; }
.faq-list details {
  padding: 1.1rem 1.25rem;
  border-radius: 22px;
}
.faq-list summary {
  cursor: pointer;
  color: #f5f8ff;
  font-weight: 950;
  letter-spacing: -.01em;
}
.faq-list p { margin-top: .8rem; }
.faq-side {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  overflow: hidden;
  padding: 1rem;
  border-radius: var(--radius-xl);
}
.faq-side img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.11);
  margin-bottom: 1.1rem;
}
.faq-side h2 { font-size: 2.2rem; margin-bottom: .65rem; }
.faq-side .button { width: 100%; margin-top: 1.2rem; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.28);
  padding: 2rem 0;
}
.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand img { width: 42px; height: 42px; }
.footer-note { margin-top: .85rem; max-width: 560px; font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .8rem; }
.footer-links a { color: var(--muted); font-size: .9rem; font-weight: 850; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 1180px) {
  .nav-shell { grid-template-columns: auto auto auto; }
  .site-nav {
    position: absolute;
    top: calc(var(--header-height) + 10px);
    left: 16px;
    right: 16px;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: .8rem;
    border-radius: 24px;
    background: rgba(5,6,9,.96);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .9rem 1rem; }
  .nav-toggle { display: inline-block; }
  .nav-button { display: none; }

  .hero-grid,
  .split-section,
  .page-hero-grid,
  .image-band-grid,
  .mascot-grid,
  .release-grid,
  .beta-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .desktop-showcase { max-width: 920px; }
  .desktop-caption { position: static; margin: 1rem 0 0; max-width: none; }
  .feature-grid.compact,
  .feature-grid.detailed { grid-template-columns: repeat(2, 1fr); }
  .guide-shell { grid-template-columns: 1fr; }
  .guide-index, .beta-side, .faq-side { position: static; }
  .guide-index { display: flex; flex-wrap: wrap; }
  .guide-index strong { width: 100%; }
}

@media (max-width: 820px) {
  .container, .container-wide { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  .section-lg { padding: 86px 0 84px; }
  .section-md { padding: 72px 0 68px; }
  .hero-grid { gap: 2.4rem; }
  .desktop-topbar strong { display: none; }
  .signal-row span { width: 100%; text-align: center; }
  .photo-stack { min-height: 460px; }
  .photo-card-large { inset: 0 0 20% 0; }
  .photo-card:not(.photo-card-large) { width: 58%; height: 36%; }
  .feature-grid.compact,
  .feature-grid.detailed,
  .two-panel-grid,
  .guide-steps,
  .callout-grid,
  .callout-grid.three,
  .image-row,
  .form-grid.two {
    grid-template-columns: 1fr;
  }
  .image-band-cards { grid-template-columns: 1fr; }
  .image-band-cards img:first-child { grid-column: auto; }
  .image-band-cards img, .image-band-cards img:first-child { height: 250px; }
  .cta-panel, .footer-layout { flex-direction: column; align-items: flex-start; }
  .cta-actions { justify-content: flex-start; }
  .button { width: 100%; }
  .hero-actions, .cta-actions { width: 100%; flex-direction: column; }
  .mascot-mini-card { grid-template-columns: 1fr; }
  .mascot-mini-card img { width: 100%; height: 240px; }
  .page-hero-card img, .guide-hero-image img { height: 300px; }
}

@media (max-width: 520px) {
  :root { --header-height: 72px; }
  h1 { font-size: clamp(2.65rem, 16vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .brand small { display: none; }
  .brand img { width: 40px; height: 40px; }
  .nav-shell { width: min(calc(100% - 24px), 1320px); }
  .desktop-frame { border-radius: 18px; }
  .desktop-topbar { height: 34px; }
  .photo-stack { min-height: 380px; }
  .photo-card figcaption { font-size: .68rem; }
  .large-panel, .guide-block, .beta-form, .cta-panel { border-radius: 24px; }
}

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