* {
  box-sizing: border-box;
}

:root {
  --brand-50: #f3f1ff;
  --brand-100: #e6e2ff;
  --brand-200: #cdc5ff;
  --brand-300: #b3a7ff;
  --brand-400: #8a79ff;
  --brand-500: #635bff;
  --brand-600: #544be6;
  --brand-700: #433ac2;
  --brand-800: #332d96;
  --brand-900: #241f69;
  --ink-900: #1f1d3d;
  --ink-700: #3f3a73;
  --ink-500: #5e5a8f;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Aptos", "Helvetica Neue", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(99, 91, 255, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(67, 58, 194, 0.12), transparent 22%),
    linear-gradient(180deg, #faf9ff 0%, #f1efff 100%);
}

a {
  color: var(--brand-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.shell-wide {
  width: min(1160px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--brand-100);
  box-shadow: 0 10px 24px rgba(67, 58, 194, 0.08);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-900);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(67, 58, 194, 0.22);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink-700);
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.78rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  display: grid;
  gap: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--brand-100);
  box-shadow: 0 20px 40px rgba(67, 58, 194, 0.14);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 30;
}

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

.nav-dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink-700);
  font-weight: 600;
  white-space: nowrap;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  background: var(--brand-50);
  color: var(--brand-800);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  background: var(--brand-50);
  color: var(--brand-800);
}

.site-header-download {
  margin-left: 8px;
  white-space: nowrap;
}

.site-nav .site-header-download {
  color: var(--brand-800);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(179, 167, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #241f69 0%, #433ac2 48%, #635bff 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}

.hero::before {
  width: 280px;
  height: 280px;
  top: -90px;
  right: 6%;
}

.hero::after {
  width: 180px;
  height: 180px;
  bottom: -50px;
  left: 8%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 28px;
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  max-width: 11ch;
}

.hero-copy {
  padding-inline: clamp(8px, 1.5vw, 18px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #d7d2ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.hero-text,
.section-copy,
.faq-item p,
.info-card p,
.footer-copy,
.stat-note {
  line-height: 1.6;
}

.hero-text {
  margin: 18px 0 0;
  color: #f2f0ff;
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-panel {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.hero-feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3f1ff, #e1dcff);
  font-size: 1.8rem;
}

.hero-stat-card,
.info-card,
.faq-item {
  background: #fff;
  border: 1px solid var(--brand-100);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(67, 58, 194, 0.1);
}

.hero-stat-card {
  width: 100%;
  padding: 28px;
  color: var(--ink-900);
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}

.hero-stat-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -36px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.2), transparent 70%);
}

.hero-stat-card-home {
  padding: 32px;
  border-radius: 24px;
}

.stat-label,
.footer-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.stat-value {
  margin: 14px 0 0;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.05;
}

.stat-note {
  margin: 14px 0 0;
  color: var(--ink-500);
}

.stat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-insight-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hero-insight-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid #ece9ff;
}

.hero-insight-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-insight-item strong {
  font-size: 1rem;
  color: var(--ink-900);
  text-align: right;
}

.hero-insight-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.stat-list span {
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6f4ff 0%, #ebe7ff 100%);
  color: var(--brand-700);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.hero-panel .metric-strip {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-chip {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-panel .metric-chip {
  background: rgba(9, 23, 42, 0.28);
}

.metric-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.metric-label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.button:hover {
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(180deg, #ffffff 0%, #f4f2ff 100%);
  color: var(--brand-800);
  box-shadow: 0 14px 24px rgba(67, 58, 194, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.content-section {
  padding: 42px 0;
}

.section-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding-inline: clamp(10px, 1.8vw, 20px);
}

.section-muted {
  background: linear-gradient(180deg, rgba(237, 233, 255, 0.9) 0%, rgba(246, 244, 255, 0.95) 100%);
}

.section-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.card-grid,
.faq-list,
.link-list,
.footer-grid {
  display: grid;
  gap: 16px;
}

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

.info-card,
.faq-item {
  padding: 20px;
}

.info-card {
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-200);
  box-shadow: 0 20px 38px rgba(67, 58, 194, 0.16);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3f1ff, #e5e1ff);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--ink-500);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-card h3,
.faq-item h3 {
  margin: 0 0 10px;
}

.inline-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
}

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

.step-card {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f7ff 100%);
  border: 1px solid var(--brand-100);
  box-shadow: 0 12px 28px rgba(67, 58, 194, 0.1);
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-700);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 10px;
}

.step-card p {
  margin: 0;
  color: var(--ink-500);
  line-height: 1.6;
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.8fr);
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #241f69 0%, #433ac2 58%, #635bff 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(67, 58, 194, 0.25);
}

.showcase-main .bullet-list {
  color: #eef5ff;
}

.showcase-main .bullet-list li + li {
  margin-top: 6px;
}

.showcase-eyebrow {
  margin: 0 0 10px;
  color: #ddd9ff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-main h3,
.showcase-side-title {
  margin: 0 0 12px;
}

.showcase-side {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.showcase-side-copy {
  margin: 0 0 18px;
  color: #edf4ff;
  line-height: 1.6;
}

.showcase-side .metric-chip {
  background: rgba(255, 255, 255, 0.12);
}

.device-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(220px, 0.75fr);
  gap: 20px;
  align-items: center;
}

.device-frame {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, #241f69 0%, #433ac2 100%);
  box-shadow: 0 26px 54px rgba(67, 58, 194, 0.3);
}

.device-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 12px;
  color: #ebe8ff;
}

.device-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c6bfff;
}

.device-title {
  font-size: 0.92rem;
  font-weight: 700;
}

.device-chip {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
}

.device-body {
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #faf9ff 0%, #efecff 100%);
}

.mock-card,
.mock-mini-card,
.device-stack-card,
.cta-banner {
  background: #fff;
  border: 1px solid var(--brand-100);
  box-shadow: 0 14px 32px rgba(67, 58, 194, 0.1);
}

.mock-card {
  padding: 16px;
  border-radius: 18px;
}

.mock-card + .mock-card,
.mock-card + .mock-grid,
.mock-grid + .mock-card {
  margin-top: 12px;
}

.mock-card-hero {
  background: linear-gradient(135deg, #332d96 0%, #635bff 100%);
  color: #fff;
  border: none;
}

.mock-eyebrow {
  margin: 0 0 8px;
  color: #ddd9ff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.mock-copy {
  margin: 10px 0 0;
  color: #f2f0ff;
  line-height: 1.55;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  color: var(--ink-700);
}

.mock-row + .mock-row {
  border-top: 1px solid #ece9ff;
}

.mock-row-total {
  color: var(--ink-900);
}

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

.mock-mini-card {
  padding: 14px;
  border-radius: 16px;
}

.mock-mini-label {
  display: block;
  color: var(--ink-500);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-mini-value {
  display: block;
  margin-top: 8px;
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.45;
}

.device-stack-card {
  padding: 22px;
  border-radius: 22px;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f2ff 100%);
}

.pricing-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-calculator-main,
.pricing-calculator-side {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--brand-100);
  box-shadow: 0 14px 32px rgba(67, 58, 194, 0.1);
}

.pricing-calculator-main {
  background:
    radial-gradient(circle at top right, rgba(99, 91, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
}

.pricing-calculator-main .section-copy {
  max-width: 56ch;
}

.pricing-calculator-main h3 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.pricing-calculator-side {
  background: linear-gradient(180deg, #241f69 0%, #433ac2 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pricing-calculator-side .stat-label {
  color: #cbc3ff;
}

.pricing-calculator-side .stat-note {
  color: #ece8ff;
  position: relative;
  z-index: 1;
}

.pricing-calculator-side::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(179, 167, 255, 0.3), transparent 70%);
}

.pricing-fee-amount {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.pricing-sales-amount {
  margin: 12px 0 0;
  color: #ece8ff;
  font-weight: 600;
}

.pricing-preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.pricing-preset {
  appearance: none;
  font: inherit;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--brand-200);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-700);
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background 120ms ease;
}

.pricing-preset:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(67, 58, 194, 0.12);
}

.pricing-preset.is-active {
  border-color: var(--brand-700);
  background: linear-gradient(180deg, var(--brand-700) 0%, var(--brand-500) 100%);
  color: #fff;
}

.calculator-field + .calculator-field {
  margin-top: 18px;
}

.calculator-label-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.calculator-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.calculator-range-hint {
  color: var(--ink-500);
  font-size: 0.82rem;
  font-weight: 600;
}

.calculator-range {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-700) 0%, var(--brand-500) 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.calculator-range::-webkit-slider-runnable-track {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-700) 0%, var(--brand-500) 100%);
}

.calculator-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: var(--brand-900);
  box-shadow: 0 10px 18px rgba(67, 58, 194, 0.22);
}

.calculator-range::-moz-range-track {
  height: 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-700) 0%, var(--brand-500) 100%);
}

.calculator-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--brand-900);
  box-shadow: 0 10px 18px rgba(67, 58, 194, 0.22);
}

.calculator-range-scale {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 0.8rem;
  font-weight: 600;
}

.calculator-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--brand-100);
  background: #faf9ff;
}

.calculator-input-wrap:focus-within {
  border-color: var(--brand-400);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.12);
}

.calculator-currency {
  color: var(--ink-700);
  font-size: 1rem;
  font-weight: 700;
}

.calculator-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink-900);
  font-size: 1.05rem;
  font-weight: 700;
}

.pricing-breakdown {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.pricing-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  color: #ece8ff;
}

.pricing-breakdown-row + .pricing-breakdown-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pricing-breakdown-row strong {
  color: #fff;
}

.pricing-side-link {
  margin-top: 18px;
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.pricing-side-link:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cta-banner h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.button-ghost {
  background: var(--brand-50);
  color: var(--brand-800);
  border: 1px solid var(--brand-200);
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}

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

.link-list a {
  display: block;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--brand-100);
  box-shadow: 0 8px 20px rgba(67, 58, 194, 0.08);
  font-weight: 700;
}

.policy-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.policy-card {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
  border: 1px solid var(--brand-100);
  box-shadow: 0 12px 28px rgba(67, 58, 194, 0.1);
}

.policy-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.policy-card .bullet-list {
  color: var(--ink-700);
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
}

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

.faq-item[open] summary {
  background: #f6f4ff;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--ink-700);
}

.site-footer {
  margin-top: 24px;
  background: #211c5f;
  color: #ebe8ff;
}

.site-footer .shell {
  padding: 28px 0;
  padding-inline: clamp(10px, 1.8vw, 20px);
}

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

.site-footer a {
  display: block;
  margin-top: 10px;
  color: #f6f4ff;
}

@media (max-width: 760px) {
  .shell,
  .shell-wide,
  .section-inner {
    width: min(100%, calc(100% - 32px));
  }

  .hero-copy,
  .section-inner,
  .site-footer .shell {
    padding-inline: 12px;
  }

  .site-header .shell,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .site-header .shell {
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px;
  }

  .site-header-download {
    margin-left: 0;
  }

  .nav-dropdown-menu {
    position: absolute;
    min-width: 220px;
    margin-top: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    box-shadow: 0 20px 40px rgba(67, 58, 194, 0.14);
  }

  .hero {
    padding-top: 4px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel .metric-strip {
    grid-template-columns: 1fr;
  }

  .hero-insight-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-insight-item strong {
    text-align: left;
  }

  .showcase-card {
    grid-template-columns: 1fr;
  }

  .device-showcase,
  .pricing-calculator,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .calculator-label-row,
  .pricing-breakdown-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner-actions {
    justify-content: flex-start;
  }

  .mock-grid {
    grid-template-columns: 1fr;
  }
}

.support-form {
  display: grid;
  gap: 14px;
}

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

.support-field {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink-700);
}

.support-field input,
.support-field textarea,
.support-field select {
  width: 100%;
  border: 1px solid var(--brand-200);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink-900);
  background: #fff;
}

.support-field textarea {
  resize: vertical;
}

.support-field input:focus-visible,
.support-field textarea:focus-visible,
.support-field select:focus-visible {
  outline: 2px solid var(--brand-300);
  outline-offset: 1px;
}

.support-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.support-captcha-wrap {
  display: flex;
  justify-content: flex-start;
}

.support-help-copy {
  margin: 0;
  color: var(--ink-500);
}

.support-form-status {
  margin: 0;
  min-height: 1.3rem;
  color: var(--ink-700);
  font-weight: 600;
}

.support-form-status.is-success {
  color: #0a7d38;
}

.support-form-status.is-error {
  color: #bb1b27;
}

.support-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 800px) {
  .support-form-grid {
    grid-template-columns: 1fr;
  }
}
