:root {
  --ink: #020714;
  --ink-2: #071128;
  --panel: rgba(8, 18, 42, 0.72);
  --panel-strong: rgba(5, 12, 30, 0.88);
  --line: rgba(125, 180, 255, 0.38);
  --line-hot: rgba(176, 82, 255, 0.56);
  --text: #f7fbff;
  --muted: #c8d3e7;
  --muted-2: #92a3c2;
  --blue: #1fa4ff;
  --blue-2: #5c7cff;
  --cyan: #66d7ff;
  --violet: #a653ff;
  --green: #31d180;
  --max: 1440px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(111, 62, 255, 0.14), transparent 20%, transparent 78%, rgba(32, 160, 255, 0.16)),
    radial-gradient(circle at 70% 16%, rgba(32, 160, 255, 0.24), transparent 24%),
    linear-gradient(180deg, #010511 0%, #06122a 48%, #020615 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(87, 170, 255, 0.72) 0 1px, transparent 1.5px);
  background-position: 0 0, 24px 32px;
  background-size: 92px 92px, 138px 138px;
  opacity: 0.42;
}

body::after {
  content: "";
  position: fixed;
  inset: 86px 0 auto;
  z-index: -1;
  height: 360px;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 45%, rgba(77, 149, 255, 0.2) 46%, transparent 47%),
    linear-gradient(70deg, transparent 0 58%, rgba(157, 83, 255, 0.16) 59%, transparent 60%);
  opacity: 0.68;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  padding: 10px 14px;
  background: #ffffff;
  color: #071128;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 104px;
  border-bottom: 1px solid rgba(105, 155, 255, 0.22);
  background: rgba(2, 6, 18, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(var(--max), 100%);
  min-height: 104px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand,
.nav-menu,
.nav-links,
.brand-pill,
.hero-actions,
.trust-row,
.panel-heading,
.rail-card,
.final-cta,
.final-actions,
.btn {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 16px;
}

.crush-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  filter: drop-shadow(0 0 18px rgba(172, 70, 255, 0.7));
}

.brand-crush,
.brand-agency {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-crush strong {
  color: #ffffff;
  font-size: 25px;
  font-weight: 950;
}

.brand-crush small,
.brand-agency small {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-agency strong {
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-rule {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(130, 180, 255, 0.8), transparent);
}

.menu-toggle {
  display: none;
}

.nav-menu {
  justify-content: space-between;
  min-width: 0;
  gap: 24px;
}

.nav-links {
  justify-content: center;
  gap: 48px;
  min-width: 0;
  margin-left: auto;
  color: #f6f8ff;
  font-size: 17px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.brand-pill {
  gap: 12px;
  min-height: 54px;
  border: 1px solid rgba(145, 180, 255, 0.62);
  border-radius: 28px;
  padding: 0 22px;
  background: rgba(8, 18, 42, 0.58);
  box-shadow: inset 0 0 22px rgba(71, 150, 255, 0.12);
  white-space: nowrap;
}

.brand-pill img {
  width: 34px;
  height: 34px;
}

.brand-pill span {
  font-size: 17px;
  font-weight: 900;
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  order: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.98fr) minmax(420px, 0.82fr) minmax(310px, 0.54fr);
  grid-template-rows: auto auto;
  gap: 18px;
  width: min(var(--max), 100%);
  min-height: 510px;
  margin: 0 auto;
  padding: 26px 0 18px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 6;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  padding: 0 0 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  margin-bottom: 26px;
  color: #f2f8ff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 14px rgba(40, 158, 255, 0.85));
}

.eyebrow b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5d550;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

h1 span {
  color: #5f7dff;
  text-shadow: 0 0 26px rgba(65, 117, 255, 0.45);
}

.hero-subtitle {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(246, 249, 255, 0.78);
  font-size: 22px;
  line-height: 1.5;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.btn,
.command-card a {
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 28px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.btn-primary {
  min-width: 280px;
  border-color: rgba(112, 216, 255, 0.92);
  background: linear-gradient(135deg, #7b35ff 0%, #006eff 55%, #12cbff 100%);
}

.btn-secondary,
.command-card a {
  min-width: 300px;
  background: rgba(8, 17, 38, 0.74);
  box-shadow: inset 0 0 18px rgba(108, 150, 255, 0.1), 0 18px 45px rgba(0, 0, 0, 0.34);
}

.btn img:not(.btn-arrow) {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.btn-arrow {
  width: 20px;
  height: 18px;
  object-fit: contain;
  margin-left: auto;
}

.trust-row {
  gap: 16px;
  max-width: 610px;
}

.trust-row article {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  flex: 1;
  border: 1px solid rgba(118, 171, 255, 0.34);
  border-radius: 16px;
  padding: 12px 18px;
  background: rgba(8, 18, 42, 0.68);
  box-shadow: inset 0 0 26px rgba(53, 142, 255, 0.08);
}

.trust-row img {
  width: 42px;
  height: 42px;
}

.trust-row span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.22;
}

.guardian-stage {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  min-height: 506px;
  overflow: visible;
}

.guardian-stage::before {
  content: "";
  position: absolute;
  inset: 36px 0 44px;
  border-radius: 50%;
  background: rgba(39, 126, 255, 0.14);
  filter: blur(30px);
}

.guardian-stage img {
  position: absolute;
  left: -88px;
  top: -72px;
  width: 640px;
  max-width: none;
  filter: drop-shadow(0 20px 52px rgba(0, 0, 0, 0.6));
}

.manifesto-card,
.path-rail,
.command-card,
.rooms-section,
.faq-section,
.final-cta {
  border: 1px solid rgba(110, 173, 255, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(15, 35, 80, 0.72), rgba(3, 8, 22, 0.86)),
    rgba(6, 15, 35, 0.82);
  box-shadow: var(--shadow), inset 0 0 34px rgba(54, 141, 255, 0.08);
}

.manifesto-card {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  min-height: 310px;
  padding: 30px 28px;
}

.panel-heading {
  gap: 16px;
  margin-bottom: 28px;
}

.panel-heading h2 {
  margin-bottom: 0;
  color: #7ca9ff;
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.manifesto-emblem {
  display: none;
}

.manifesto-card ul {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.manifesto-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.36;
}

.manifesto-card li img {
  width: 34px;
  height: 34px;
}

.path-rail {
  grid-column: 3;
  grid-row: 2;
  display: grid;
  gap: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rail-card {
  justify-content: flex-start;
  gap: 18px;
  min-height: 108px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  background: linear-gradient(145deg, rgba(20, 30, 76, 0.8), rgba(5, 9, 24, 0.86));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36), inset 0 0 28px rgba(35, 128, 255, 0.1);
}

.rail-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.rail-card strong,
.rail-card small {
  display: block;
}

.rail-card strong {
  margin-bottom: 4px;
  color: #7db3ff;
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.rail-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.36;
}

.host-rail {
  border-color: var(--line-hot);
}

.host-rail strong {
  color: #d66dff;
}

.agency-rail {
  border-color: rgba(229, 91, 255, 0.62);
}

.agency-rail strong {
  color: #ed70ff;
}

.command-section {
  order: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 16px;
}

.section-heading span {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.1;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.command-card {
  min-height: 328px;
  padding: 24px;
}

.command-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.command-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 24px;
}

.command-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.command-card ul {
  display: grid;
  gap: 8px;
  min-height: 78px;
  margin: 0 0 20px;
  padding-left: 18px;
  color: #e7efff;
}

.command-card li::marker {
  color: var(--cyan);
}

.command-card a {
  min-width: 0;
  width: 100%;
  min-height: 52px;
  border-radius: 13px;
  font-size: 16px;
}

.command-card a img {
  width: 20px;
  height: 18px;
  object-fit: contain;
  margin-left: auto;
}

.rooms-section,
.faq-section,
.final-cta {
  width: min(var(--max), calc(100% - 32px));
  margin: 22px auto 0;
}

.rooms-section {
  order: 1;
}

.faq-section {
  order: 3;
}

.final-cta {
  order: 4;
}

.rooms-section {
  padding: 18px;
}

.compact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  margin-bottom: 14px;
}

.compact-heading h2 {
  margin-bottom: 0;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.room-card {
  position: relative;
  min-height: 218px;
  border: 1px solid rgba(112, 170, 255, 0.34);
  border-radius: 14px;
  padding: 10px 12px 14px;
  overflow: hidden;
  background: rgba(4, 12, 30, 0.84);
}

.room-card img {
  width: 100%;
  height: 118px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(110, 173, 255, 0.26);
}

.room-card strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 17px;
}

.room-card p {
  margin: 2px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.room-card small {
  color: var(--muted);
  font-size: 12px;
}

.room-card small::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(49, 209, 128, 0.8);
}

.faq-section {
  padding: 22px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-grid details {
  border: 1px solid rgba(112, 170, 255, 0.26);
  border-radius: 14px;
  background: rgba(4, 12, 30, 0.72);
  overflow: hidden;
}

.faq-grid summary {
  min-height: 54px;
  padding: 16px 18px;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.faq-grid p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 34px;
  padding: 20px 28px;
  background:
    linear-gradient(90deg, rgba(116, 48, 255, 0.22), rgba(7, 20, 48, 0.9) 35%, rgba(7, 20, 48, 0.9)),
    rgba(6, 15, 35, 0.9);
}

.final-cta > img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 18px rgba(164, 68, 255, 0.78));
}

.final-cta h2 {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 30px;
}

.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.final-actions {
  gap: 18px;
}

.final-actions .btn {
  min-width: 278px;
  min-height: 58px;
}

.mobile-dock {
  display: none;
}

@media (min-width: 1241px) {
  .hero {
    grid-template-columns: 584px minmax(490px, 1fr) 312px;
    overflow: visible;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    max-width: 680px;
    font-size: 56px;
  }

  .guardian-stage img {
    left: -20px;
    top: -68px;
    width: 620px;
  }

  .manifesto-card {
    position: absolute;
    grid-column: auto;
    grid-row: auto;
    top: 26px;
    right: 0;
    width: 312px;
  }

  .path-rail {
    position: absolute;
    grid-column: auto;
    grid-row: auto;
    top: 328px;
    right: 0;
    width: 312px;
  }

  .rooms-section {
    width: min(1112px, calc(100% - 344px));
    margin-top: 0;
    margin-right: auto;
    margin-left: max(0px, calc((100% - var(--max)) / 2));
  }
}

@media (max-width: 1240px) {
  .site-header {
    min-height: 82px;
  }

  .nav-shell {
    min-height: 82px;
    padding: 0 18px;
  }

  .brand-crush strong {
    font-size: 22px;
  }

  .brand-agency strong {
    font-size: 20px;
  }

  .nav-links {
    gap: 24px;
    font-size: 15px;
  }

  .hero {
    grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 0.8fr);
    width: min(100% - 24px, 1040px);
  }

  .manifesto-card,
  .path-rail {
    grid-column: 1 / -1;
  }

  .manifesto-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    min-height: 0;
  }

  .manifesto-card .panel-heading {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .manifesto-emblem {
    display: block;
    align-self: center;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(96, 166, 255, 0.32);
    border-radius: 18px;
    object-fit: cover;
  }

  .path-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rail-card {
    min-height: 128px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .guardian-stage img {
    left: -70px;
    top: -42px;
    width: 545px;
  }

  .command-grid,
  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .final-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-actions .btn {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    min-height: 70px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 70px;
    padding: 0 14px;
  }

  .brand {
    gap: 9px;
  }

  .crush-mark {
    width: 39px;
    height: 39px;
    border-radius: 10px;
  }

  .brand-crush strong {
    font-size: 14px;
  }

  .brand-crush small {
    font-size: 8px;
  }

  .brand-rule {
    display: none;
  }

  .brand-agency {
    place-items: center;
    min-width: 88px;
    padding-top: 2px;
  }

  .brand-agency strong {
    font-size: 12px;
    line-height: 1;
  }

  .brand-agency small {
    font-size: 8px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(145, 180, 255, 0.6);
    border-radius: 12px;
    background: rgba(4, 12, 30, 0.78);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 10px;
    right: 10px;
    z-index: 70;
    grid-template-columns: 1fr;
    gap: 14px;
    border: 1px solid rgba(112, 170, 255, 0.36);
    border-radius: 16px;
    padding: 14px;
    background: rgba(2, 7, 18, 0.98);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-menu {
    display: grid;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 22px;
    margin-left: 0;
    font-size: 14px;
  }

  .brand-pill {
    justify-content: center;
    min-height: 46px;
  }

  .hero {
    display: block;
    width: min(100% - 28px, 390px);
    min-height: 430px;
    padding: 10px 0 8px;
    overflow: hidden;
  }

  .hero-copy {
    position: relative;
    z-index: 6;
    padding-top: 0;
  }

  .eyebrow {
    display: none;
  }

  h1 {
    max-width: 215px;
    margin: 4px 0 8px;
    font-size: 28px;
    line-height: 1.08;
  }

  .hero-subtitle {
    max-width: 198px;
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    gap: 8px;
    width: 170px;
    margin-bottom: 10px;
  }

  .btn {
    min-width: 0;
    min-height: 34px;
    width: 100%;
    gap: 8px;
    border-radius: 9px;
    padding: 0 10px;
    font-size: 11px;
  }

  .btn img:not(.btn-arrow) {
    width: 18px;
    height: 18px;
  }

  .btn-arrow {
    width: 14px;
    height: 12px;
  }

  .trust-row {
    position: relative;
    z-index: 7;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    margin-top: 16px;
  }

  .trust-row article {
    grid-template-columns: 28px 1fr;
    min-height: 38px;
    gap: 6px;
    border-radius: 9px;
    padding: 6px 7px;
  }

  .trust-row img {
    width: 27px;
    height: 27px;
  }

  .trust-row span {
    font-size: 9px;
    line-height: 1.18;
  }

  .guardian-stage {
    position: absolute;
    inset: 54px 0 auto 122px;
    z-index: 2;
    min-height: 330px;
    pointer-events: none;
  }

  .guardian-stage::before {
    inset: 26px 18px 48px;
    filter: blur(18px);
  }

  .guardian-stage img {
    left: 0;
    top: -8px;
    width: 265px;
  }

  .manifesto-card {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 10px;
    min-height: 0;
    margin-top: 8px;
    border-radius: 12px;
    padding: 12px;
  }

  .manifesto-card .panel-heading {
    grid-column: 2;
    gap: 8px;
    margin-bottom: 0;
  }

  .panel-heading img {
    width: 24px;
    height: 24px;
  }

  .panel-heading h2 {
    font-size: 12px;
  }

  .manifesto-emblem {
    display: block;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 86px;
    height: 86px;
    border: 1px solid rgba(96, 166, 255, 0.32);
    border-radius: 50%;
    object-fit: cover;
  }

  .manifesto-card ul {
    grid-column: 2;
    gap: 6px;
  }

  .manifesto-card li {
    grid-template-columns: 18px 1fr;
    gap: 6px;
    font-size: 9.5px;
  }

  .manifesto-card li img {
    width: 17px;
    height: 17px;
  }

  .path-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
  }

  .rail-card {
    display: grid;
    place-items: center;
    min-height: 137px;
    gap: 8px;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
  }

  .rail-card img {
    width: 42px;
    height: 42px;
  }

  .rail-card strong {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .rail-card small {
    font-size: 8.5px;
    line-height: 1.25;
  }

  .command-section,
  .rooms-section,
  .faq-section,
  .final-cta {
    width: min(100% - 28px, 390px);
  }

  .command-section {
    padding-top: 10px;
  }

  .section-heading {
    margin-bottom: 10px;
  }

  .section-heading span {
    font-size: 11px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .section-heading p {
    font-size: 12px;
  }

  .command-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .command-card {
    min-height: 0;
    border-radius: 12px;
    padding: 16px;
  }

  .command-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .command-card h3 {
    font-size: 18px;
  }

  .command-card p,
  .command-card li {
    font-size: 12px;
  }

  .command-card ul {
    min-height: 0;
    margin-bottom: 14px;
  }

  .command-card a {
    min-height: 42px;
    font-size: 13px;
  }

  .rooms-section,
  .faq-section,
  .final-cta {
    margin-top: 12px;
    border-radius: 12px;
  }

  .rooms-section {
    padding: 10px;
  }

  .compact-heading {
    align-items: center;
    margin-bottom: 8px;
  }

  .room-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .room-grid::-webkit-scrollbar {
    display: none;
  }

  .room-card {
    flex: 0 0 96px;
    min-height: 112px;
    border-radius: 8px;
    padding: 5px;
  }

  .room-card img {
    height: 54px;
    border-radius: 6px;
  }

  .room-card strong {
    margin-top: 6px;
    font-size: 10px;
  }

  .room-card p {
    margin-bottom: 5px;
    font-size: 7.5px;
  }

  .room-card small {
    font-size: 7px;
  }

  .room-card small::before {
    width: 5px;
    height: 5px;
    margin-right: 4px;
  }

  .faq-section {
    padding: 14px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-grid details {
    border-radius: 10px;
  }

  .faq-grid summary {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .faq-grid p {
    padding: 0 12px 12px;
    font-size: 11px;
  }

  .final-cta {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 72px;
    padding: 12px;
  }

  .final-cta > img {
    width: 46px;
    height: 46px;
  }

  .final-cta h2 {
    font-size: 16px;
  }

  .final-cta p {
    font-size: 10px;
  }

  .final-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .final-actions .btn {
    min-height: 34px;
  }

  .mobile-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 68;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 44px;
    border-top: 1px solid rgba(112, 170, 255, 0.28);
    background: rgba(2, 7, 18, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-dock a {
    display: grid;
    place-items: center;
    color: #9cb8e9;
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-dock a:first-child {
    color: var(--cyan);
  }
}

@media (max-width: 380px) {
  .hero {
    width: calc(100% - 20px);
  }

  h1 {
    max-width: 174px;
    font-size: 28px;
  }

  .hero-subtitle {
    max-width: 176px;
  }

  .hero-actions {
    width: 164px;
  }

  .guardian-stage {
    left: 112px;
  }

  .guardian-stage img {
    width: 258px;
  }
}
