:root {
  --bg: #f4f5ff;
  --surface: #ffffff;
  --surface-alt: #f6f7fd;
  --dark: #17171c;
  --ink: #1d1e27;
  --muted: #707487;
  --line: #e5e8f2;
  --purple: #673de6;
  --purple-2: #5b31dc;
  --green: #00b090;
  --yellow: #ffcd35;
  --focus-ring: rgba(255, 205, 53, 0.88);
  --shadow: 0 24px 70px rgba(23, 23, 28, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shell: min(1280px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(180deg, var(--dark) 0 360px, var(--bg) 360px 100%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -64px;
  z-index: 120;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

button,
input,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.announcement-bar {
  min-height: 38px;
  padding: 8px 18px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  background: var(--yellow);
  color: #161616;
  text-align: center;
  font-size: 13px;
}

.announcement-copy {
  font-weight: 700;
}

.announcement-timer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-variant-numeric: tabular-nums;
}

.announcement-timer span {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.announcement-timer strong,
.announcement-bar a {
  font-weight: 800;
}

.announcement-timer small {
  font-size: 11px;
  font-weight: 700;
}

.announcement-bar a {
  text-decoration: none;
}

.nav-shell,
.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  background: var(--dark);
  color: white;
  padding-bottom: 48px;
}

.topbar {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 26px;
  height: 26px;
  position: relative;
  display: inline-block;
}

.brand-mark i {
  position: absolute;
  display: block;
  background: white;
}

.brand-mark i:nth-child(1) {
  left: 0;
  top: 0;
  width: 9px;
  height: 11px;
  transform: skewY(18deg);
}

.brand-mark i:nth-child(2) {
  left: 11px;
  top: 6px;
  width: 13px;
  height: 6px;
}

.brand-mark i:nth-child(3) {
  left: 0;
  bottom: 0;
  width: 19px;
  height: 8px;
  clip-path: polygon(0 0, 64% 0, 100% 100%, 0 100%);
}

.brand-word,
h1,
h2,
h3,
.price,
.stat-card strong,
.trust-card strong {
  font-family: "Sora", sans-serif;
}

.brand-word {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link,
.top-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 16px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
}

.has-caret::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 300px;
  padding: 10px;
  display: grid;
  gap: 6px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 40;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-sublink {
  display: block;
  padding: 14px;
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-sublink:hover {
  background: var(--surface-alt);
  transform: translateY(-1px);
}

.nav-sublink span {
  display: block;
  font-weight: 700;
}

.nav-sublink small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.locale-pill,
.account-button {
  min-height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
}

.locale-pill {
  gap: 10px;
  color: white;
}

.locale-flag {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, transparent 25%, #f7d246 25% 75%, transparent 75%),
    linear-gradient(0deg, #1f8f4f, #1f8f4f);
  position: relative;
}

.locale-flag::after {
  content: "";
  position: absolute;
  inset: 4px 8px;
  border-radius: 999px;
  background: #243f92;
}

.account-button {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
}

.toolbar-field {
  min-height: 76px;
  padding: 0 18px;
  border-radius: 18px;
  background: white;
  display: flex;
  align-items: center;
  gap: 16px;
}

.toolbar-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #7e8194;
  border-radius: 999px;
  position: relative;
  flex: none;
}

.toolbar-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  background: #7e8194;
  border-radius: 999px;
  transform: rotate(45deg);
}

.toolbar-field input {
  width: 100%;
  border: none;
  outline: none;
  color: var(--ink);
  font-size: 18px;
  background: transparent;
}

.toolbar-field input::placeholder {
  color: #8a8ea3;
}

.toolbar-button,
.button {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.toolbar-button {
  min-width: 156px;
  min-height: 76px;
  color: white;
  background: linear-gradient(90deg, var(--purple), #7d55f8);
  box-shadow: 0 18px 36px rgba(103, 61, 230, 0.28);
}

.toolbar-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  font-size: 15px;
}

.hero-stage {
  min-height: 540px;
  margin-top: 16px;
  padding: 56px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: end;
  gap: 28px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 205, 53, 0.22), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(103, 61, 230, 0.4), transparent 28%),
    radial-gradient(circle at 78% 82%, rgba(0, 176, 144, 0.22), transparent 22%),
    linear-gradient(138deg, #181824 0%, #1c1f33 44%, #11131b 100%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% 40%;
  height: 68%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.16), transparent 16%),
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-10deg);
  pointer-events: none;
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

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

.eyebrow,
.eyebrow-light,
.offer-tag,
.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow-light {
  margin: 0 0 18px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  background: rgba(103, 61, 230, 0.12);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

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

h1 {
  max-width: 11ch;
  font-size: clamp(48px, 6vw, 74px);
  line-height: 0.98;
}

h2 {
  max-width: 16ch;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.08;
}

.hero-text,
.section-heading p:last-child,
.feature-card p,
.dark-card p,
.pricing-copy,
.recommendation-copy,
.faq-card p,
.site-footer p,
.trust-card span,
.stat-card span {
  font-size: 18px;
  line-height: 1.62;
}

.hero-text,
.hero-points,
.toolbar-note {
  max-width: 58ch;
}

.hero-text,
.hero-points li {
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  border: 1px solid transparent;
}

.button:hover,
.toolbar-button:hover,
.feature-card a:hover,
.top-links a:hover,
.account-button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: linear-gradient(90deg, var(--purple), var(--purple-2));
  box-shadow: 0 18px 34px rgba(103, 61, 230, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.full {
  width: 100%;
}

.hero-points,
.offer-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.hero-points li,
.offer-list li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before,
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.hero-offer,
.feature-card,
.dark-card,
.pricing-card,
.advisor-card,
.proposal-card,
.faq-card,
.trust-card,
.stat-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-offer,
.trust-card,
.feature-card,
.pricing-card,
.advisor-card,
.proposal-card,
.stat-card,
.faq-card {
  padding: 28px;
}

.offer-tag,
.mini-badge {
  background: rgba(103, 61, 230, 0.12);
  color: var(--purple);
}

.dark-card .mini-badge.dark {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.hero-offer p,
.hero-offer li,
.pricing-card li,
.proposal-card li,
.advisor-card label,
.feature-card p,
.dark-card p,
.section-heading p:last-child,
.faq-card p,
.site-footer p,
.trust-card span,
.stat-card span {
  color: var(--muted);
}

.price-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 18px;
}

.price-stack > div {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.price-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price,
.price-stack strong,
.stat-card strong {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.price span,
.price-stack strong span {
  font-size: 18px;
}

.content-shell {
  padding-top: 42px;
  padding-bottom: 64px;
}

.section {
  margin-bottom: 28px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading p:last-child {
  margin: 12px 0 0;
}

.trust-grid,
.pill-row,
.feature-grid,
.split-grid,
.stats-grid,
.pricing-grid,
.advisor-grid,
.footer-grid,
.footer-links {
  display: grid;
  gap: 18px;
}

.trust-grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pill-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.split-grid,
.advisor-grid,
.footer-grid,
.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.pill-row span {
  min-height: 56px;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 700;
}

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

.feature-visual {
  min-height: 210px;
  border-radius: 22px;
  border: 1px solid #ebe9ff;
  background-size: cover;
  background-position: center;
}

.feature-visual.landing {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 24% 28%, rgba(255, 205, 53, 0.46), transparent 22%),
    linear-gradient(135deg, #6e46ea 0%, #7f59f8 50%, #4d2fb3 100%);
}

.feature-visual.institutional {
  background:
    linear-gradient(140deg, rgba(103, 61, 230, 0.1), rgba(103, 61, 230, 0.02)),
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(135deg, #ffffff 0%, #f1efff 42%, #ece8ff 100%);
}

.feature-visual.panel {
  background:
    linear-gradient(180deg, rgba(14, 20, 35, 0.3), rgba(14, 20, 35, 0.12)),
    radial-gradient(circle at 18% 24%, rgba(0, 176, 144, 0.3), transparent 20%),
    linear-gradient(135deg, #0f1220 0%, #1d2340 52%, #212a53 100%);
}

.feature-card.highlight {
  background: linear-gradient(180deg, #ffffff, #f4f2ff);
}

.feature-card a {
  margin-top: auto;
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}

.dark-card {
  padding: 34px;
  color: white;
  background:
    radial-gradient(circle at 18% 24%, rgba(103, 61, 230, 0.28), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(0, 176, 144, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(24, 24, 29, 0.98), rgba(35, 36, 45, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, 0.78);
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card.featured {
  background: linear-gradient(180deg, #ffffff, #f3f0ff);
  border-color: rgba(103, 61, 230, 0.18);
}

.pricing-copy,
.recommendation-copy {
  margin: 0;
}

.advisor-card {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.toggle-grid,
.faq-list {
  display: grid;
  gap: 12px;
}

.toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
}

.toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
}

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

.faq-card p {
  margin: 12px 0 0;
}

.site-footer {
  padding: 48px 0 64px;
  background: #0f1016;
  color: white;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  font-family: "Sora", sans-serif;
  font-size: 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.nav-link.active,
.top-links a.active {
  color: white;
  font-weight: 700;
}

.nav-link.active:not(.has-caret),
.top-links a.active:not(.has-caret) {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

.nav-sublink.active {
  background: linear-gradient(135deg, #f4f1ff, #ffffff);
}

.nav-sublink.active span,
.nav-sublink.active small {
  color: var(--purple);
}

.page-hero {
  min-height: 460px;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.page-hero.pricing-hero {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 205, 53, 0.22), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(103, 61, 230, 0.36), transparent 30%),
    linear-gradient(136deg, #181824 0%, #201b35 48%, #13131c 100%);
}

.page-hero.services-hero {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 78% 22%, rgba(103, 61, 230, 0.4), transparent 24%),
    linear-gradient(136deg, #17171c 0%, #23284a 54%, #171a28 100%);
}

.page-hero.explore-hero {
  background:
    radial-gradient(circle at 14% 24%, rgba(0, 176, 144, 0.28), transparent 22%),
    radial-gradient(circle at 84% 22%, rgba(103, 61, 230, 0.34), transparent 24%),
    linear-gradient(136deg, #13161f 0%, #1b2340 48%, #11141d 100%);
}

.page-hero.support-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 205, 53, 0.22), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(103, 61, 230, 0.3), transparent 24%),
    linear-gradient(136deg, #17171c 0%, #1c2438 50%, #171920 100%);
}

.page-hero.openclaw-hero {
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 176, 144, 0.22), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(103, 61, 230, 0.42), transparent 26%),
    linear-gradient(136deg, #12151d 0%, #1c2140 50%, #12141b 100%);
}

.hero-side-card,
.portal-card,
.quick-card,
.step-card,
.channel-card,
.mini-stat,
.table-card,
.cta-banner {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-side-card,
.portal-card,
.quick-card,
.step-card,
.channel-card,
.mini-stat,
.table-card,
.cta-banner {
  padding: 28px;
}

.hero-side-card {
  display: grid;
  gap: 16px;
}

.hero-side-card h2 {
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.08;
}

.hero-side-card p,
.portal-card p,
.quick-card p,
.step-card p,
.channel-card p,
.table-card p,
.cta-banner p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-side-card .button + .button {
  margin-top: -2px;
}

.portal-grid,
.quick-grid,
.step-grid,
.support-grid,
.mini-stat-grid,
.link-grid {
  display: grid;
  gap: 18px;
}

.portal-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.mini-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.portal-card,
.quick-card,
.step-card,
.channel-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.portal-card a,
.quick-card a,
.step-card a,
.channel-card a {
  margin-top: auto;
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
}

.portal-card .mini-badge,
.quick-card .mini-badge,
.step-card .mini-badge,
.channel-card .mini-badge {
  width: fit-content;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.mini-stat strong {
  font-family: "Sora", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.mini-stat span {
  color: var(--muted);
  line-height: 1.55;
}

.table-card {
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: var(--surface-alt);
  font-family: "Sora", sans-serif;
  font-size: 14px;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #ffffff, #f1efff);
}

.cta-banner h3 {
  max-width: 15ch;
}

.channel-list,
.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.channel-list li,
.support-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.channel-list li::before,
.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.bread-crumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.bread-crumb a {
  text-decoration: none;
}

.highlight-panel {
  display: grid;
  gap: 14px;
}

.highlight-panel .button {
  width: 100%;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 450ms ease, transform 450ms ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .topbar,
  .toolbar,
  .hero-stage,
  .page-hero,
  .feature-grid,
  .split-grid,
  .pricing-grid,
  .advisor-grid,
  .footer-grid,
  .quick-grid,
  .step-grid,
  .support-grid,
  .mini-stat-grid,
  .link-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .top-links,
  .nav-actions {
    justify-content: flex-start;
  }

  .top-links {
    gap: 14px;
  }

  .nav-item,
  .nav-link {
    width: 100%;
  }

  .nav-link {
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .nav-sublink {
    color: white;
  }

  .nav-sublink small {
    color: rgba(255, 255, 255, 0.68);
  }

  .nav-sublink.active {
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-sublink.active span,
  .nav-sublink.active small {
    color: white;
  }

  .trust-grid,
  .stats-grid,
  .pill-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .announcement-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .announcement-timer {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-shell,
  .page-shell {
    width: min(100vw - 16px, 1280px);
  }

  .toolbar-field,
  .toolbar-button {
    min-height: 62px;
  }

  .hero-stage,
  .page-hero,
  .hero-offer,
  .trust-card,
  .feature-card,
  .pricing-card,
  .advisor-card,
  .proposal-card,
  .faq-card,
  .stat-card,
  .portal-card,
  .quick-card,
  .step-card,
  .channel-card,
  .mini-stat,
  .table-card,
  .cta-banner,
  .hero-side-card {
    padding: 22px;
  }

  .hero-stage {
    min-height: auto;
    padding: 24px;
  }

  .page-hero {
    min-height: auto;
    padding: 24px;
  }

  .price-stack,
  .trust-grid,
  .stats-grid,
  .pill-row,
  .footer-links,
  .compare-table thead {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .proposal-actions,
  .cta-banner {
    flex-direction: column;
  }

  .button,
  .toolbar-button {
    width: 100%;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tr {
    border-bottom: 1px solid var(--line);
  }

.compare-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
