:root {
  color-scheme: dark;
  --bg: #07000e;
  --panel: rgba(18, 6, 31, 0.86);
  --panel-strong: rgba(26, 8, 45, 0.94);
  --line: rgba(255, 76, 229, 0.28);
  --line-strong: rgba(255, 70, 226, 0.58);
  --text: #fff7ff;
  --muted: rgba(255, 238, 255, 0.72);
  --pink: #ff3dd7;
  --pink-hot: #ff2a9f;
  --violet: #8f39ff;
  --cyan: #46e3ff;
  --amber: #ffc76b;
  --green: #20e69a;
  --shadow: 0 22px 80px rgba(255, 36, 178, 0.22);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 64% 13%, rgba(255, 60, 219, 0.24), transparent 28%),
    radial-gradient(circle at 16% 12%, rgba(97, 49, 255, 0.27), transparent 30%),
    linear-gradient(135deg, rgba(11, 3, 22, 0.96), rgba(20, 2, 29, 0.98)),
    var(--bg);
  color: var(--text);
}

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

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 0, 14, 0.94), rgba(7, 0, 14, 0.16) 45%, rgba(7, 0, 14, 0.82)),
    repeating-linear-gradient(118deg, transparent 0 34px, rgba(255, 68, 220, 0.045) 35px 36px);
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  background: #fff;
  color: #100017;
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 70, 226, 0.18);
  background: rgba(7, 0, 14, 0.72);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1220px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: clamp(118px, 11vw, 142px);
  height: auto;
  aspect-ratio: 260 / 68;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 53, 218, 0.46));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 5px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.nav-menu > a:not(.nav-cta) {
  color: rgba(255, 238, 255, 0.78);
}

.nav-cta,
.btn,
.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta:hover,
.btn:hover,
.panel-link:hover {
  transform: translateY(-2px);
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 59, 214, 0.6);
  background: linear-gradient(135deg, rgba(255, 60, 218, 0.24), rgba(103, 41, 255, 0.19));
  box-shadow: 0 0 26px rgba(255, 44, 185, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(25, 5, 42, 0.88);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--text);
}

main {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 96px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.08fr);
  gap: 54px;
  align-items: start;
}

.hero-copy,
.command-visual,
.visual-card,
.path-stack article,
.signal-strip article,
.info-panel,
.steps,
.community,
.faq,
.final-cta,
.room-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(25, 4, 42, 0.87), rgba(9, 2, 18, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-copy {
  position: relative;
  min-width: 0;
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::before,
.command-visual::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 50, 214, 0.12), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(67, 222, 255, 0.12), transparent 36%);
}

.eyebrow,
.panel-kicker,
.path-stack small,
.signal-strip span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 61, 215, 0.5);
  border-radius: 999px;
  background: rgba(255, 61, 215, 0.1);
  color: #ffd7f6;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before,
.panel-kicker::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(32, 230, 154, 0.8);
  content: "";
}

.agent-signature {
  margin: 20px 0 0;
  color: #fff1ff;
  font-size: 17px;
  font-weight: 900;
}

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

h1 {
  margin: 18px 0 18px;
  max-width: 650px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.91;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
  color: var(--pink);
  text-shadow: 0 0 28px rgba(255, 58, 214, 0.36);
  overflow-wrap: break-word;
}

h1 .title-main {
  color: var(--text);
  text-shadow: none;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  min-width: 190px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #ff3fd8, #ad3cff 58%, #ff4a9d);
  box-shadow: 0 16px 38px rgba(255, 52, 199, 0.28);
}

.btn-secondary {
  border-color: rgba(70, 227, 255, 0.44);
  background: rgba(3, 22, 31, 0.72);
  color: #e8fbff;
}

.id-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid rgba(255, 199, 107, 0.45);
  border-radius: 999px;
  background: rgba(255, 199, 107, 0.1);
  color: #ffe4ab;
  padding: 10px 14px;
}

.id-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(255, 199, 107, 0.8);
}

.command-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1.34fr) minmax(210px, 0.74fr);
  gap: 14px;
  padding: 18px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(105, 34, 255, 0.22);
}

.visual-card {
  position: relative;
  min-height: 620px;
  border-radius: 26px;
  overflow: hidden;
}

.visual-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(to top, rgba(7, 0, 14, 0.98), transparent);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 20%;
}

.visual-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 61, 215, 0.42);
  border-radius: 18px;
  background: rgba(8, 0, 16, 0.75);
  padding: 14px;
  backdrop-filter: blur(16px);
}

.visual-label span,
.visual-label strong {
  display: block;
}

.visual-label span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-label strong {
  margin-top: 4px;
  font-size: 19px;
}

.path-stack {
  display: grid;
  gap: 14px;
  align-content: center;
}

.path-stack article {
  border-radius: 22px;
  padding: 18px;
}

.path-stack small {
  padding: 6px 10px;
  color: #c9f8ff;
  border-color: rgba(70, 227, 255, 0.45);
  background: rgba(70, 227, 255, 0.09);
}

.path-stack h2 {
  margin: 12px 0 8px;
  font-size: 21px;
  line-height: 1.05;
}

.path-stack p,
.signal-strip p,
.info-panel p,
.community p,
.faq p,
.final-cta p,
.steps span {
  color: var(--muted);
  line-height: 1.55;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 4px 0 48px;
}

.signal-strip article {
  border-radius: 22px;
  padding: 20px;
}

.signal-strip span {
  border-color: rgba(255, 199, 107, 0.5);
  background: rgba(255, 199, 107, 0.1);
  color: #ffe4ab;
}

.signal-strip strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.info-panel,
.steps,
.community,
.faq,
.final-cta {
  border-radius: 28px;
  padding: 28px;
}

.info-panel h2,
.steps h2,
.community h2,
.faq h2,
.final-cta h2 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.panel-link {
  margin-top: 18px;
  min-width: 170px;
  padding: 0 20px;
  border: 1px solid rgba(255, 61, 215, 0.45);
  background: rgba(255, 61, 215, 0.12);
}

.steps {
  margin-bottom: 20px;
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
}

.room-card {
  border-radius: 26px;
  padding: 22px;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 60, 218, 0.22), transparent 26%),
    linear-gradient(145deg, rgba(3, 21, 31, 0.9), rgba(19, 4, 33, 0.92));
}

.room-top,
.room-actions,
.avatars {
  display: flex;
  align-items: center;
}

.room-top {
  gap: 10px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff345e;
  box-shadow: 0 0 18px rgba(255, 52, 94, 0.8);
}

.room-top em {
  margin-left: auto;
  border-radius: 999px;
  background: #ff345e;
  padding: 6px 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.avatars {
  gap: 12px;
  margin-top: 22px;
}

.avatars span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 61, 215, 0.7);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 61, 215, 0.75), rgba(70, 227, 255, 0.28));
  font-weight: 900;
}

.wave {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  height: 84px;
  margin-top: 12px;
}

.wave span {
  width: 7px;
  border-radius: 99px;
  background: linear-gradient(to top, var(--cyan), var(--pink), var(--amber));
}

.wave span:nth-child(1),
.wave span:nth-child(12) {
  height: 18px;
}

.wave span:nth-child(2),
.wave span:nth-child(11) {
  height: 30px;
}

.wave span:nth-child(3),
.wave span:nth-child(10) {
  height: 42px;
}

.wave span:nth-child(4),
.wave span:nth-child(9) {
  height: 56px;
}

.wave span:nth-child(5),
.wave span:nth-child(8) {
  height: 70px;
}

.wave span:nth-child(6),
.wave span:nth-child(7) {
  height: 82px;
}

.room-actions {
  gap: 10px;
  margin-top: 18px;
}

.room-actions span {
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.faq {
  margin-bottom: 20px;
}

.support-boundary {
  margin: 14px 0 4px;
  border: 1px solid rgba(255, 74, 205, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px 16px;
}

details {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 0;
}

details:last-child {
  padding-bottom: 0;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.final-cta h2 {
  max-width: 680px;
}

.site-footer {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 70, 226, 0.18);
  color: rgba(255, 238, 255, 0.64);
  padding: 28px 0 42px;
}

.site-footer strong {
  color: var(--text);
}

@media (min-width: 981px) {
  .hero-copy {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 4px;
    overflow: visible;
  }

  .hero-copy::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(12, 2, 22, 0.96);
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 36px;
  }

  .command-visual {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 520px;
  }

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

  .path-stack article {
    min-height: 150px;
  }

  .signal-strip,
  .content-grid,
  .steps ol,
  .community {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  main,
  .site-footer {
    width: min(calc(100vw - 32px), 342px);
    margin-left: 16px;
    margin-right: auto;
  }

  .nav-shell {
    height: 68px;
  }

  .brand img {
    width: 100px;
    height: auto;
    aspect-ratio: 260 / 68;
  }

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

  .brand small {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding: 18px 0 26px;
  }

  .hero-copy {
    padding: 18px;
    border-radius: 24px;
  }

  .eyebrow {
    font-size: 10px;
    padding: 7px 10px;
  }

  .agent-signature {
    margin-top: 14px;
    font-size: 13px;
  }

  h1 {
    margin: 14px 0;
    font-size: clamp(31px, 9.2vw, 36px);
    line-height: 0.96;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .btn,
  .nav-cta,
  .panel-link {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
  }

  .id-badge {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 9px 10px;
  }

  .command-visual {
    padding: 12px;
    border-radius: 24px;
  }

  .visual-card {
    min-height: 318px;
    border-radius: 20px;
  }

  .visual-card img {
    object-position: 58% 18%;
  }

  .visual-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .path-stack {
    grid-template-columns: 1fr;
  }

  .path-stack article,
  .signal-strip article,
  .info-panel,
  .steps,
  .community,
  .faq,
  .final-cta {
    border-radius: 22px;
    padding: 18px;
  }

  .path-stack h2 {
    font-size: 20px;
  }

  .signal-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .signal-strip article {
    min-height: 145px;
  }

  .signal-strip span {
    font-size: 10px;
  }

  .signal-strip strong {
    font-size: 15px;
  }

  .signal-strip p,
  .path-stack p,
  .info-panel p,
  .community p,
  .faq p,
  .final-cta p,
  .steps span {
    font-size: 14px;
  }

  .info-panel h2,
  .steps h2,
  .community h2,
  .faq h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .avatars {
    justify-content: space-between;
  }

  .avatars span {
    width: 54px;
    height: 54px;
  }

  .final-cta {
    display: block;
  }

  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
    padding-bottom: 34px;
  }

  .site-footer span {
    display: block;
    margin-top: 8px;
  }
}
