:root {
  color-scheme: dark;
  --bg: #050711;
  --bg-soft: #090d1a;
  --panel: rgba(11, 18, 34, 0.74);
  --panel-strong: rgba(14, 23, 44, 0.92);
  --line: rgba(111, 151, 210, 0.26);
  --line-gold: rgba(226, 178, 86, 0.34);
  --text: #f3f7ff;
  --muted: #a9b5cb;
  --muted-strong: #c8d4eb;
  --gold: #f4c56c;
  --gold-strong: #ffd88a;
  --blue: #4fb2ff;
  --cyan: #8fe7ff;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --edge-shadow: 0 0 0 1px rgba(255, 216, 138, 0.06) inset, 0 0 44px rgba(79, 178, 255, 0.08), 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(93, 154, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 154, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 10% 16%, rgba(75, 163, 255, 0.22), transparent 48rem),
    radial-gradient(circle at 26% 22%, rgba(45, 108, 190, 0.12), transparent 42rem),
    radial-gradient(circle at 84% 18%, rgba(244, 197, 108, 0.22), transparent 26rem),
    radial-gradient(circle at 50% 86%, rgba(16, 96, 180, 0.22), transparent 34rem),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto, auto, auto, auto, auto;
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 12%, rgba(79, 178, 255, 0.03) 24%, transparent 43%, rgba(244, 197, 108, 0.035) 58%, transparent 74%),
    radial-gradient(circle at 24% 18%, rgba(56, 122, 213, 0.08), transparent 36rem),
    radial-gradient(circle at center, transparent 0, rgba(5, 7, 17, 0.48) 82%);
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

p {
  color: var(--muted);
  line-height: 1.66;
}

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

.page-glow {
  position: fixed;
  inset: auto -16rem -20rem auto;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 178, 255, 0.22), transparent 68%);
  pointer-events: none;
  filter: blur(8px);
}

.topbar,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(250px, 1.14fr) auto minmax(170px, 0.86fr);
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  background: rgba(5, 7, 17, 0.7);
  backdrop-filter: blur(16px);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 216, 138, 0.26), rgba(79, 178, 255, 0.28), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand img,
.footer img {
  border-radius: 16px;
  box-shadow: 0 0 26px rgba(79, 178, 255, 0.34), 0 0 20px rgba(244, 197, 108, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

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

.nav-cta {
  justify-self: end;
  min-width: 104px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 216, 138, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(79, 178, 255, 0.08);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(255, 216, 138, 0.42);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.section {
  position: relative;
  padding: 86px 0;
  scroll-margin-top: 96px;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(600px, 0.92fr) minmax(550px, 1.08fr);
  align-items: center;
  gap: 28px;
  padding-top: 34px;
}

.hero-copy {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: center;
}

.hero-copy .eyebrow {
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(38px, 4.9vw, 62px);
  line-height: 1.045;
}

h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.04;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  max-width: 640px;
  margin: auto 0;
  color: var(--muted-strong);
  font-size: clamp(19px, 1.82vw, 23px);
}

.actions {
  width: min(100%, 500px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  margin-top: 0;
  transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.primary {
  background: linear-gradient(120deg, #ffe992, #f2bd5b 42%, #bff7ff 100%);
  color: #06101f;
  box-shadow: 0 0 34px rgba(244, 197, 108, 0.24), 0 0 48px rgba(79, 178, 255, 0.2);
}

.secondary {
  border: 1px solid rgba(255, 216, 138, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(79, 178, 255, 0.08);
}

.hero .button {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding-inline: 24px;
  text-align: center;
  white-space: nowrap;
}

.hero .button.secondary {
  order: 1;
}

.hero .button.primary {
  order: 2;
}

.hero-mark {
  position: relative;
  min-height: 620px;
  border: 1px solid transparent;
  border-radius: 38px;
  background:
    linear-gradient(var(--panel-strong), var(--panel-strong)) padding-box,
    linear-gradient(135deg, rgba(255, 216, 138, 0.72), rgba(79, 178, 255, 0.68)) border-box,
    linear-gradient(135deg, rgba(79, 178, 255, 0.12), transparent 42%),
    radial-gradient(circle at center, rgba(244, 197, 108, 0.16), transparent 42%),
    rgba(5, 9, 21, 0.72);
  box-shadow: var(--edge-shadow), inset 0 0 90px rgba(79, 178, 255, 0.1);
  overflow: hidden;
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(79, 178, 255, 0.24);
  border-radius: 30px;
}

.hero-mark::after {
  inset: 70px;
  border-color: rgba(244, 197, 108, 0.24);
  border-radius: 26px;
  transform: rotate(45deg);
}

.logo-orbit {
  position: absolute;
  inset: 50%;
  width: min(62%, 360px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 178, 255, 0.22), transparent 64%);
  box-shadow: 0 0 74px rgba(79, 178, 255, 0.26), inset 0 0 0 1px rgba(255, 216, 138, 0.18);
}

.logo-orbit img {
  width: 78%;
  border-radius: 50%;
  filter: drop-shadow(0 0 28px rgba(244, 197, 108, 0.26));
}

.signal-card {
  position: absolute;
  z-index: 2;
  min-width: 210px;
  padding: 16px;
  border: 1px solid rgba(255, 216, 138, 0.34);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(12, 20, 38, 0.86), rgba(6, 10, 22, 0.78));
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 30px rgba(79, 178, 255, 0.12);
}

.signal-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card strong {
  font-size: 16px;
}

.signal-card-top {
  top: 46px;
  right: 32px;
}

.signal-card-bottom {
  left: 32px;
  bottom: 46px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
}

.text-panel,
.card,
.feature-card,
.price-card,
.faq details,
.lead-form,
.architecture {
  border: 1px solid rgba(111, 151, 210, 0.24);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(15, 25, 46, 0.86), rgba(8, 12, 26, 0.78)) padding-box,
    linear-gradient(135deg, rgba(255, 216, 138, 0.2), rgba(79, 178, 255, 0.16)) border-box;
  box-shadow: var(--edge-shadow);
  backdrop-filter: blur(18px);
}

.text-panel {
  padding: 32px;
}

.text-panel p:first-child {
  margin-top: 0;
}

.dash-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  color: var(--muted-strong);
}

.dash-list li {
  position: relative;
  padding-left: 22px;
}

.dash-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(244, 197, 108, 0.55);
}

.cards,
.direction-grid,
.audience-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.card {
  padding: 26px;
  color: var(--muted-strong);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.card p {
  margin: 0;
}

.section-note {
  grid-column: 1 / -1;
  max-width: 880px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 18px;
}

.architecture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 32px;
  padding: 40px;
  overflow: hidden;
}

.architecture-copy {
  display: grid;
  gap: 18px;
}

.architecture-copy p {
  margin: 0;
}

.strong-line {
  color: var(--gold-strong);
  font-size: 22px;
  font-weight: 900;
}

.blueprint {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.blueprint span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(79, 178, 255, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(79, 178, 255, 0.1), rgba(244, 197, 108, 0.04));
  color: var(--cyan);
  font-weight: 800;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.direction-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

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

.feature-card,
.price-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-card p,
.price-card p {
  margin: 0;
}

.card-index {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.price-card strong {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  color: var(--gold-strong);
  font-size: 27px;
  line-height: 1;
}

.price-card strong span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.62;
}

.price-service {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.48;
  opacity: 0.66;
}

.price-card.highlight {
  transform: translateY(-10px);
  border-color: rgba(255, 216, 138, 0.52);
  background:
    radial-gradient(circle at 18% 0, rgba(255, 216, 138, 0.16), transparent 32%),
    radial-gradient(circle at 100% 18%, rgba(79, 178, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(18, 30, 54, 0.94), rgba(9, 14, 30, 0.86)) padding-box;
  box-shadow: 0 28px 100px rgba(244, 197, 108, 0.16), 0 0 64px rgba(79, 178, 255, 0.16), var(--shadow);
}

.price-badge {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 216, 138, 0.44);
  border-radius: 999px;
  padding: 0 13px;
  background: linear-gradient(120deg, rgba(255, 216, 138, 0.16), rgba(79, 178, 255, 0.1));
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-button {
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  border-radius: 999px;
}

.process-line {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-line li {
  position: relative;
  min-height: 106px;
  padding: 44px 14px 14px;
  border: 1px solid rgba(111, 151, 210, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(11, 18, 34, 0.78), rgba(7, 11, 24, 0.68));
  color: var(--muted-strong);
  font-weight: 700;
}

.process-line li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 24px 26px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.faq details[open] {
  border-color: rgba(255, 216, 138, 0.36);
  background:
    radial-gradient(circle at top right, rgba(79, 178, 255, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(15, 25, 46, 0.9), rgba(8, 12, 26, 0.82));
  box-shadow: 0 0 46px rgba(79, 178, 255, 0.1), var(--shadow);
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold-strong);
  font-weight: 900;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin-bottom: 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 28px;
  align-items: start;
  border: 1px solid transparent;
  border-radius: 34px;
  padding: 36px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 216, 138, 0.14), transparent 28%) padding-box,
    radial-gradient(circle at 100% 80%, rgba(79, 178, 255, 0.18), transparent 32%) padding-box,
    linear-gradient(145deg, rgba(10, 17, 34, 0.86), rgba(5, 8, 18, 0.86)) padding-box,
    linear-gradient(135deg, rgba(255, 216, 138, 0.42), rgba(79, 178, 255, 0.34)) border-box;
  box-shadow: 0 26px 96px rgba(0, 0, 0, 0.46), 0 0 64px rgba(79, 178, 255, 0.08);
}

.cta-copy {
  position: sticky;
  top: 110px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 6px 10px 0 0;
}

.cta-copy .eyebrow {
  margin-bottom: 14px;
}

.cta-copy h2 {
  margin-bottom: 30px;
}

.cta-copy p:not(.eyebrow) {
  margin: 0;
}

.cta-note {
  max-width: 92%;
  margin-top: auto !important;
  padding-top: 38px;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.68;
  opacity: 0.7;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
}

.field,
.agent-select {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.field span,
.agent-select legend {
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(111, 151, 210, 0.32);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(4, 9, 20, 0.88), rgba(8, 14, 28, 0.78));
  color: var(--text);
  font: inherit;
  padding: 16px 17px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 197, 108, 0.14);
}

.agent-select {
  gap: 13px;
}

.agent-select label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(111, 151, 210, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(79, 178, 255, 0.025));
  color: var(--muted-strong);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.agent-select label:hover {
  border-color: rgba(143, 231, 255, 0.34);
  transform: translateY(-1px);
}

.agent-select.is-locked label {
  cursor: not-allowed;
  opacity: 0.68;
}

.agent-select.is-locked label:has(input:checked) {
  cursor: default;
  opacity: 1;
}

.agent-select label:has(input:checked) {
  border-color: rgba(255, 216, 138, 0.68);
  background:
    radial-gradient(circle at 0 0, rgba(255, 216, 138, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(79, 178, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 0 34px rgba(244, 197, 108, 0.1), inset 0 0 0 1px rgba(79, 178, 255, 0.08);
}

.agent-select input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.agent-select strong {
  color: var(--text);
}

.submit-button {
  width: 100%;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted-strong);
}

.form-message.error {
  color: #ffb4b4;
}

.agent-access {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 216, 138, 0.44);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 138, 0.16), transparent 40%),
    rgba(244, 197, 108, 0.08);
}

.agent-access[hidden] {
  display: none;
}

.agent-access p {
  margin: 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 34px 0 48px;
  color: var(--muted);
  font-weight: 700;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.footer-tagline {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    max-width: 720px;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .architecture,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-mark {
    min-height: 440px;
  }

  .direction-grid,
  .pricing-grid,
  .audience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-copy {
    position: static;
    min-height: auto;
  }

  .price-card.highlight {
    transform: none;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 56px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
  }

  .brand {
    gap: 10px;
    min-width: 0;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 0 16px;
    border: 1px solid rgba(255, 216, 138, 0.3);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    color: var(--text);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(79, 178, 255, 0.08), 0 10px 36px rgba(0, 0, 0, 0.18);
  }

  .mobile-menu-toggle[aria-expanded="true"] {
    border-color: rgba(255, 216, 138, 0.5);
    background: linear-gradient(120deg, rgba(255, 216, 138, 0.14), rgba(79, 178, 255, 0.08));
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 20;
    width: min(220px, calc(100vw - 32px));
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(111, 151, 210, 0.28);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(8, 13, 27, 0.97), rgba(12, 20, 38, 0.94));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44), inset 0 0 0 1px rgba(255, 216, 138, 0.05);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    min-height: 38px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 0 12px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-menu a:first-child {
    color: var(--text);
    background: linear-gradient(120deg, rgba(255, 216, 138, 0.13), rgba(79, 178, 255, 0.07));
  }

  .section {
    scroll-margin-top: 0;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 28px;
  }

  .page-glow {
    display: none;
  }

  .actions,
  .button {
    width: 100%;
  }

  .actions {
    grid-template-columns: 1fr;
    transform: none;
  }

  .hero .button {
    white-space: normal;
  }

  .cards,
  .process-line {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    min-height: 350px;
  }

  .signal-card {
    min-width: 0;
    max-width: 190px;
    padding: 12px;
  }

  .signal-card-top {
    top: 20px;
    right: 18px;
  }

  .signal-card-bottom {
    left: 18px;
    bottom: 20px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    margin-left: 0;
  }

  .footer-tagline {
    margin-left: 0;
  }

  .cta-note {
    max-width: 100%;
    margin-top: 28px !important;
    padding-top: 0;
  }

  .architecture,
  .lead-form,
  .text-panel,
  .feature-card,
  .price-card,
  .card,
  .final-cta {
    padding: 20px;
  }
}
