@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --navy-950: #06152a;
  --navy-900: #0b1f3a;
  --navy-800: #14345c;
  --blue-700: #176bce;
  --blue-600: #2382e7;
  --blue-100: #e9f4ff;
  --teal-600: #0cae9f;
  --teal-500: #16c7b7;
  --teal-100: #ddfaf6;
  --gold-500: #c99b45;
  --ink: #10233d;
  --muted: #617087;
  --line: #dce6f1;
  --surface: #ffffff;
  --surface-soft: #f6fafe;
  --success: #079670;
  --danger: #c44c5d;
  --shadow-sm: 0 10px 30px rgba(19, 48, 82, 0.08);
  --shadow-lg: 0 24px 80px rgba(26, 71, 119, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 1.3em;
  height: 1.3em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  transform: translateY(-150%);
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  z-index: 100;
  inset-block-start: 0;
  height: 82px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 230, 241, 0.7);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 10px 35px rgba(8, 34, 65, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark-wrap {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, #f1fffd, #edf5ff);
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 20px;
  font-weight: 800;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--blue-700);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: #314158;
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 9px;
  background: var(--teal-500);
  transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-700);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(23, 107, 206, 0.25);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 12px 26px rgba(23, 107, 206, 0.24);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(23, 107, 206, 0.32);
}

.button-outline {
  color: var(--blue-700);
  background: #fff;
  border-color: rgba(23, 107, 206, 0.35);
}

.button-outline:hover,
.button-ghost:hover {
  background: var(--blue-100);
  border-color: rgba(23, 107, 206, 0.45);
}

.button-ghost {
  color: var(--blue-700);
  background: transparent;
  border-color: var(--line);
}

.button-small {
  min-height: 44px;
  padding: 9px 18px;
  border-radius: 12px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-soft);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  background:
    linear-gradient(180deg, #fff 0%, #f9fcff 64%, #f4f9fd 100%);
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.32;
  background-image: radial-gradient(rgba(22, 199, 183, 0.26) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 44%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-orb-one {
  top: 90px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(22, 199, 183, 0.14), transparent 70%);
}

.hero-orb-two {
  right: -180px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(23, 107, 206, 0.11), transparent 70%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding-block: 42px 26px;
}

.hero-slider {
  position: relative;
}

.hero-slides {
  position: relative;
  min-height: 594px;
}

.hero-slide {
  --slide-accent: #176bce;
  --slide-accent-soft: #e9f4ff;
  --slide-secondary: #16c7b7;
  --slide-glow: rgba(23, 107, 206, 0.14);
  display: grid;
  position: absolute;
  inset: 0;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: 26px 38px;
  border: 1px solid rgba(207, 222, 237, 0.74);
  border-radius: 34px;
  background:
    radial-gradient(circle at 5% 16%, var(--slide-glow), transparent 34%),
    linear-gradient(128deg, rgba(255, 255, 255, 0.96), var(--slide-accent-soft));
  box-shadow: 0 26px 70px rgba(23, 52, 88, 0.09);
  visibility: hidden;
  opacity: 0;
  transform: translateX(-18px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}

.hero-slide::before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: auto -90px -140px auto;
  width: 360px;
  height: 360px;
  border: 54px solid color-mix(in srgb, var(--slide-secondary) 13%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.hero-slide[data-theme="aqua"] {
  --slide-accent: #0d73d7;
  --slide-accent-soft: #eef9ff;
  --slide-secondary: #16c7b7;
  --slide-glow: rgba(22, 199, 183, 0.16);
}

.hero-slide[data-theme="indigo"] {
  --slide-accent: #4f5bd5;
  --slide-accent-soft: #f1f3ff;
  --slide-secondary: #1ba9d7;
  --slide-glow: rgba(79, 91, 213, 0.14);
}

.hero-slide[data-theme="gold"] {
  --slide-accent: #b57a1b;
  --slide-accent-soft: #fff8e8;
  --slide-secondary: #1b9b91;
  --slide-glow: rgba(222, 166, 65, 0.18);
}

.hero-slide[data-theme="coral"] {
  --slide-accent: #d95c4e;
  --slide-accent-soft: #fff1ee;
  --slide-secondary: #f0a24b;
  --slide-glow: rgba(231, 100, 78, 0.17);
}

.hero-slide[data-theme="violet"] {
  --slide-accent: #7651cb;
  --slide-accent-soft: #f6f0ff;
  --slide-secondary: #1bacc4;
  --slide-glow: rgba(118, 81, 203, 0.16);
}

.hero-slide[data-theme="emerald"] {
  --slide-accent: #078768;
  --slide-accent-soft: #ebfbf4;
  --slide-secondary: #d5a541;
  --slide-glow: rgba(7, 135, 104, 0.15);
}

.hero-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide .hero-content,
.hero-slide .hero-visual {
  z-index: 1;
}

.hero-content {
  padding: 20px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-600);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow {
  padding: 7px 12px;
  color: var(--slide-accent);
  border: 1px solid color-mix(in srgb, var(--slide-accent) 24%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--slide-accent-soft) 82%, white);
}

.eyebrow i,
.status-dot,
.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 5px rgba(22, 199, 183, 0.13);
}

.hero-slide .eyebrow i,
.hero-slide .status-dot {
  background: var(--slide-secondary);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--slide-secondary) 14%, transparent);
}

.hero-content h1,
.hero-content h2 {
  max-width: 640px;
  margin: 20px 0 18px;
  color: var(--navy-900);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -1.5px;
}

.hero-content h2 {
  font-size: clamp(36px, 3.8vw, 58px);
}

.hero-content h1 em,
.hero-content h2 em {
  color: var(--slide-accent);
  font-style: normal;
  background: linear-gradient(180deg, transparent 72%, color-mix(in srgb, var(--slide-secondary) 24%, transparent) 72%);
}

.hero-content > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: #53647a;
  font-size: 13px;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row svg {
  color: var(--slide-accent);
}

.hero-slide .button-primary {
  background: linear-gradient(135deg, var(--slide-accent), var(--slide-secondary));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--slide-accent) 25%, transparent);
}

.hero-slide .button-outline {
  color: var(--slide-accent);
  border-color: color-mix(in srgb, var(--slide-accent) 34%, transparent);
}

.hero-slide .button-outline:hover {
  background: color-mix(in srgb, var(--slide-accent-soft) 78%, white);
  border-color: var(--slide-accent);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-visual > img {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  max-height: 510px;
  object-fit: contain;
  filter: drop-shadow(0 24px 45px rgba(17, 53, 89, 0.12));
}

.visual-halo {
  position: absolute;
  z-index: 0;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--slide-glow), color-mix(in srgb, var(--slide-secondary) 7%, transparent) 48%, transparent 70%);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 188px;
  padding: 13px 16px;
  border: 1px solid rgba(204, 220, 235, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  animation: float-card 5s ease-in-out infinite;
}

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

.floating-card strong {
  color: var(--navy-900);
  font-size: 13px;
}

.floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.floating-card svg {
  flex: 0 0 auto;
  color: var(--slide-accent);
}

.floating-card-top {
  top: 52px;
  right: 10px;
}

.floating-card-bottom {
  bottom: 52px;
  left: 8px;
  animation-delay: -2.2s;
}

.success-card svg {
  color: var(--success);
}

@keyframes float-card {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 44px;
  margin-top: 4px;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.slider-arrow:hover {
  color: var(--blue-700);
  border-color: var(--blue-700);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.slider-dots button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slider-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b8c7d7;
  transition: width 220ms ease, background-color 220ms ease;
}

.slider-dots button.is-active span {
  width: 22px;
  background: var(--blue-700);
}

.slider-timeline {
  display: grid;
  grid-template-columns: minmax(180px, 360px) auto auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  margin-top: 4px;
}

.slider-progress {
  position: relative;
  width: min(32vw, 360px);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce6f1;
}

.slider-progress > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-600), #7651cb);
  transform-origin: left center;
  transition: width 80ms linear;
}

.slider-progress-copy {
  min-width: 135px;
  color: #65758a;
  font-size: 11px;
  white-space: nowrap;
}

.slider-progress-copy b {
  color: var(--navy-800);
  font-size: 12px;
}

.slider-autoplay-toggle {
  padding: 4px 8px;
  color: var(--blue-700);
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.slider-autoplay-toggle:hover {
  background: var(--blue-100);
}

.independence-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 16px auto 0;
  color: #7b8798;
  font-size: 12px;
}

.independence-note svg {
  color: var(--blue-700);
}

.proof-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 105px;
  padding: 20px 24px;
  border-inline-start: 1px solid var(--line);
}

.proof-item:last-child {
  border-inline-start: 0;
}

.proof-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--blue-700);
  border-radius: 14px;
  background: var(--blue-100);
}

.proof-item:nth-child(even) .proof-icon {
  color: var(--teal-600);
  background: var(--teal-100);
}

.proof-item strong,
.proof-item small {
  display: block;
}

.proof-item strong {
  color: var(--navy-900);
  font-size: 14px;
}

.proof-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding-block: 100px;
}

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

.section-heading h2,
.calculator-copy h2,
.transparency-copy h2 {
  margin: 10px 0 0;
  color: var(--navy-900);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.6px;
}

.section-heading p,
.calculator-copy > p,
.transparency-copy > p {
  color: var(--muted);
  line-height: 2;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading p {
  margin: 12px auto 0;
}

.market-section {
  background: var(--surface-soft);
}

.market-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 24px;
}

.market-board,
.market-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.market-board {
  overflow: hidden;
}

.market-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.market-board-head h3 {
  margin: 7px 0 0;
  color: var(--navy-900);
  font-size: 20px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
}

.sample-note {
  padding: 5px 10px;
  color: #7b6670;
  border-radius: 999px;
  background: #fff4f6;
  font-size: 10px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}

th,
td {
  padding: 18px 28px;
  border-bottom: 1px solid #eaf0f6;
  white-space: nowrap;
}

th {
  color: #718097;
  background: #fbfdff;
  font-size: 12px;
  font-weight: 600;
}

td {
  color: #34455d;
  font-size: 14px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background-color 160ms ease;
}

tbody tr:hover {
  background: #f8fcff;
}

td strong,
td small {
  display: block;
}

td strong {
  color: var(--navy-900);
}

td small {
  margin-top: 2px;
  color: #8c99aa;
  font-size: 10px;
}

.speed {
  display: inline-block;
  padding: 5px 9px;
  color: #7a6942;
  border-radius: 999px;
  background: #fff8e9;
  font-size: 10px;
}

.speed-fast {
  color: #08785e;
  background: #e8faf4;
}

.speed-slow {
  color: #6d6682;
  background: #f2effa;
}

.market-summary {
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(22, 199, 183, 0.13), transparent 44%),
    #fff;
}

.summary-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--teal-600);
  border-radius: 16px;
  background: var(--teal-100);
}

.market-summary h3 {
  margin: 20px 0 8px;
  color: var(--navy-900);
  font-size: 21px;
}

.market-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.market-summary ul,
.calculator-copy ul {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.market-summary li,
.calculator-copy li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-block: 10px;
  color: #40536a;
  font-size: 13px;
}

.market-summary li svg,
.calculator-copy li svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--teal-600);
}

.market-summary > a,
.transparency-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
}

.how-section {
  background: #fff;
}

.role-switch {
  display: flex;
  width: fit-content;
  padding: 5px;
  margin: 0 auto 38px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
}

.role-switch button {
  min-width: 180px;
  padding: 11px 18px;
  color: var(--muted);
  border: 0;
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.role-switch button.is-active {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.16);
}

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

.step-card {
  position: relative;
  min-height: 230px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card::after {
  position: absolute;
  content: "";
  left: -30px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 199, 183, 0.12), transparent 68%);
}

.step-card:hover {
  border-color: rgba(23, 107, 206, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.step-card > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue-700);
  border: 1px solid rgba(23, 107, 206, 0.16);
  border-radius: 15px;
  background: var(--blue-100);
  font-size: 17px;
  font-weight: 800;
}

.step-card h3 {
  margin: 24px 0 7px;
  color: var(--navy-900);
  font-size: 17px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.calculator-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(22, 199, 183, 0.08), transparent 30%),
    linear-gradient(135deg, #f5faff, #f9fcff);
}

.calculator-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.calculator-copy > p {
  margin: 16px 0 0;
}

.fee-calculator {
  padding: 30px;
  border: 1px solid rgba(205, 220, 235, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.calculator-title,
.calculator-title > div {
  display: flex;
  align-items: center;
}

.calculator-title {
  justify-content: space-between;
  margin-bottom: 24px;
}

.calculator-title > div {
  gap: 10px;
}

.calculator-title h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 20px;
}

.calculator-title > span {
  color: #8a97a8;
  font-size: 10px;
}

.calculator-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue-700);
  border-radius: 13px;
  background: var(--blue-100);
}

.fee-calculator > label {
  display: block;
  margin: 17px 0 7px;
  color: #52637a;
  font-size: 12px;
  font-weight: 700;
}

.amount-input {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.amount-input input {
  min-width: 0;
  width: 100%;
  color: var(--navy-900);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 22px;
  font-weight: 800;
}

.amount-input span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.range-input {
  width: 100%;
  margin: 15px 0 2px;
  accent-color: var(--blue-700);
}

.seller-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.seller-counter button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue-700);
  border: 0;
  border-radius: 9px;
  background: var(--blue-100);
  cursor: pointer;
  font-size: 20px;
}

.seller-counter strong {
  min-width: 24px;
  text-align: center;
}

.seller-counter span {
  color: var(--muted);
  font-size: 11px;
}

.fee-lines {
  margin-top: 24px;
  padding: 17px 0;
  border-block: 1px dashed var(--line);
}

.fee-lines div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 6px;
  color: #617087;
  font-size: 12px;
}

.fee-lines strong {
  color: var(--navy-900);
  font-size: 12px;
}

.fee-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}

.fee-total > span {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
}

.fee-total strong {
  color: var(--blue-700);
  font-size: 12px;
}

.fee-total b {
  font-size: 24px;
}

.fee-calculator > p {
  margin: 12px 0 0;
  color: #909baa;
  font-size: 9px;
}

.member-access-section {
  padding-block: 78px;
  background: #fff;
}

.member-access-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid #dfe6f4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 12%, rgba(118, 81, 203, 0.14), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(22, 199, 183, 0.13), transparent 32%),
    linear-gradient(135deg, #fbfaff, #f4fbff);
}

.member-access-copy h2 {
  margin: 10px 0 14px;
  color: var(--navy-900);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.5;
}

.member-access-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.member-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.member-feature-grid {
  display: grid;
  gap: 13px;
}

.member-feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(207, 218, 236, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(36, 53, 94, 0.07);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.member-feature-card:hover {
  border-color: rgba(118, 81, 203, 0.28);
  box-shadow: 0 18px 42px rgba(36, 53, 94, 0.11);
  transform: translateY(-2px);
}

.member-feature-card > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #7651cb;
  border-radius: 15px;
  background: #f0eaff;
}

.member-feature-card:nth-child(2) > span {
  color: var(--blue-700);
  background: var(--blue-100);
}

.member-feature-card:nth-child(3) > span {
  color: var(--teal-600);
  background: var(--teal-100);
}

.member-feature-card h3 {
  margin: 0 0 4px;
  color: var(--navy-900);
  font-size: 15px;
}

.member-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.transparency-section {
  padding-block: 80px;
}

.transparency-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding: 55px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 10%, rgba(22, 199, 183, 0.13), transparent 30%),
    var(--surface-soft);
}

.transparency-copy > p {
  margin: 14px 0 20px;
}

.transparency-visual {
  position: relative;
  min-height: 300px;
}

.direct-flow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.flow-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  color: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.flow-user svg {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  color: var(--blue-700);
}

.seller-node svg {
  color: var(--teal-600);
}

.flow-user b {
  font-size: 12px;
}

.flow-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-700));
}

.flow-line::before,
.flow-line::after,
.flow-line i {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal-500);
}

.flow-line::before { right: 10%; }
.flow-line i { right: 50%; }
.flow-line::after { left: 10%; }

.flow-line small {
  position: absolute;
  bottom: 12px;
  padding: 3px 9px;
  color: var(--blue-700);
  border-radius: 999px;
  background: #fff;
  font-size: 9px;
  font-weight: 700;
}

.plusmoney-node {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 18px;
  margin: 56px auto 0;
  border: 1px solid rgba(22, 199, 183, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
}

.plusmoney-node::before {
  position: absolute;
  content: "";
  right: 50%;
  top: 129px;
  width: 1px;
  height: 54px;
  border-right: 1px dashed var(--teal-500);
}

.plusmoney-node img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.plusmoney-node strong,
.plusmoney-node small {
  display: block;
}

.plusmoney-node strong {
  color: var(--navy-900);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.plusmoney-node small {
  color: var(--muted);
  font-size: 9px;
}

.contact-section {
  padding-block: 24px 76px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 54px;
  padding: 52px 58px;
  overflow: hidden;
  border: 1px solid rgba(201, 155, 69, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 5% 15%, rgba(22, 199, 183, 0.18), transparent 30%),
    radial-gradient(circle at 95% 90%, rgba(201, 155, 69, 0.16), transparent 34%),
    linear-gradient(135deg, #f3fffd, #fffaf1);
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-600);
  font-size: 13px;
  font-weight: 700;
}

.contact-kicker svg {
  width: 20px;
  height: 20px;
}

.contact-copy h2 {
  margin: 10px 0 12px;
  color: var(--navy-900);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.5;
}

.contact-copy > p {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.contact-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.contact-copy li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #40536a;
  font-size: 12px;
  font-weight: 600;
}

.contact-copy li svg {
  color: var(--teal-600);
}

.advisor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 28px;
  overflow: hidden;
  border: 1px solid rgba(216, 228, 237, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(25, 57, 86, 0.13);
}

.advisor-card::before {
  position: absolute;
  content: "";
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-600), var(--gold-500));
}

.advisor-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 13px;
  color: #fff;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--teal-600), var(--blue-700));
  box-shadow: 0 14px 30px rgba(12, 174, 159, 0.22);
}

.advisor-icon svg {
  width: 27px;
  height: 27px;
}

.advisor-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.advisor-card h3 {
  margin: 4px 0 8px;
  color: var(--navy-900);
  font-size: 22px;
}

.advisor-phone {
  color: var(--blue-700);
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.advisor-call-button {
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-700));
  box-shadow: 0 12px 28px rgba(23, 107, 206, 0.2);
}

.final-cta {
  padding-block: 50px 100px;
}

.final-cta-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: 56px 62px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 5%, rgba(22, 199, 183, 0.33), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 28px 70px rgba(6, 21, 42, 0.22);
}

.final-cta-shell > div:first-child {
  max-width: 690px;
}

.final-cta-shell span {
  color: #78e3d9;
  font-size: 13px;
  font-weight: 700;
}

.final-cta-shell h2 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.5;
}

.final-cta-shell p {
  margin: 0;
  color: #c8d6e6;
  font-size: 14px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 290px;
}

.button-light {
  color: var(--navy-900);
  background: #fff;
}

.button-glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.final-login-link {
  align-self: center;
  padding: 4px 8px;
  color: #9de9e1;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.final-login-link:hover {
  color: #fff;
}

.site-footer {
  padding-block: 70px 26px;
  color: #aebed0;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 50px;
}

.brand-footer .brand-mark-wrap {
  background: rgba(255, 255, 255, 0.95);
}

.brand-footer .brand-copy strong {
  color: #fff;
}

.footer-brand p {
  max-width: 380px;
  margin: 20px 0 0;
  font-size: 13px;
}

.footer-grid h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 14px;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
  display: block;
  margin-block: 8px;
  color: #aebed0;
  font-size: 12px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid a[dir="ltr"] {
  width: fit-content;
  direction: ltr;
  unicode-bidi: isolate;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
}

.footer-bottom a[dir="ltr"],
.notice-phone {
  direction: ltr;
  unicode-bidi: isolate;
}

.notice-phone {
  display: inline-flex;
  margin-block: 12px 6px;
  color: var(--blue-700);
  font-family: Arial, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.notice-phone:hover {
  color: var(--teal-700);
}

/* Inner pages */
.inner-hero {
  padding-block: 80px 70px;
  background:
    radial-gradient(circle at 15% 20%, rgba(22, 199, 183, 0.12), transparent 28%),
    var(--surface-soft);
}

.inner-hero .container {
  max-width: 880px;
}

.inner-hero h1 {
  margin: 10px 0;
  color: var(--navy-900);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.4;
}

.inner-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.content-page {
  max-width: 880px;
  padding-block: 70px 100px;
}

.content-card {
  padding: 28px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
}

.content-card h2 { font-size: 21px; }
.content-card h3 { font-size: 17px; }

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 14px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card li {
  margin-block: 6px;
}

.notice-card {
  border-color: rgba(201, 155, 69, 0.35);
  background: #fffaf1;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  padding: 20px 0 20px 34px;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  content: "+";
  left: 4px;
  top: 18px;
  color: var(--blue-700);
  font-size: 22px;
}

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

.faq-list details p {
  padding: 0 0 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/*
 * Desktop density is intentionally set to 90% so the first viewport shows the
 * complete hero composition without requiring users to change browser zoom.
 */
@media (min-width: 1200px) {
  body {
    zoom: 0.9;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-slide {
    gap: 20px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 44px;
  }

  .floating-card-top {
    right: -5px;
  }

  .floating-card-bottom {
    left: -5px;
  }

  .proof-item {
    padding-inline: 14px;
  }

  .proof-icon {
    width: 40px;
    height: 40px;
  }

  .role-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    height: 70px;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .main-nav {
    position: fixed;
    z-index: 110;
    top: 70px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 14px;
    border-bottom: 1px solid #edf2f7;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .button-ghost {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    padding-top: 30px;
  }

  .hero-slides {
    min-height: 890px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 14px;
    padding: 24px 28px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1,
  .hero-content h2,
  .hero-content > p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-visual > img {
    max-height: 390px;
  }

  .slider-timeline {
    grid-template-columns: minmax(160px, 300px) auto auto;
  }

  .floating-card-top {
    top: 30px;
    right: 8%;
  }

  .floating-card-bottom {
    bottom: 30px;
    left: 8%;
  }

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

  .proof-item:nth-child(2) {
    border-inline-start: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-heading,
  .market-layout,
  .calculator-shell,
  .transparency-shell {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 16px;
  }

  .market-layout {
    gap: 18px;
  }

  .calculator-shell,
  .member-access-shell,
  .contact-shell {
    gap: 40px;
  }

  .transparency-shell {
    gap: 45px;
  }

  .member-access-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .advisor-card {
    width: min(100%, 420px);
    justify-self: center;
  }

  .final-cta-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-actions {
    flex-direction: row;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-mark-wrap {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  .header-inner {
    gap: 8px;
  }

  .header-actions .button-primary {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero::before {
    display: none;
  }

  .hero-slides {
    min-height: 830px;
  }

  .hero-slide {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .hero-content {
    padding-top: 5px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-content h1,
  .hero-content h2 {
    margin-top: 15px;
    font-size: 34px;
    line-height: 1.46;
    letter-spacing: -0.6px;
  }

  .hero-content > p {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    gap: 10px;
    font-size: 11px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual > img {
    max-height: 330px;
  }

  .slider-controls {
    gap: 8px;
  }

  .slider-dots {
    gap: 2px;
  }

  .slider-dots button {
    width: 22px;
  }

  .slider-timeline {
    grid-template-columns: 1fr auto;
    gap: 7px 10px;
  }

  .slider-progress {
    width: 100%;
  }

  .slider-progress-copy {
    min-width: 128px;
  }

  .slider-autoplay-toggle {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .visual-halo {
    width: 300px;
    height: 300px;
  }

  .floating-card {
    min-width: 150px;
    padding: 9px 11px;
  }

  .floating-card-top {
    top: 10px;
    right: 0;
  }

  .floating-card-bottom {
    bottom: 18px;
    left: 0;
  }

  .floating-card strong {
    font-size: 11px;
  }

  .independence-note {
    align-items: flex-start;
    text-align: center;
  }

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

  .proof-item {
    min-height: 86px;
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 72px;
  }

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

  .section-heading h2,
  .calculator-copy h2,
  .transparency-copy h2 {
    font-size: 29px;
  }

  .market-board-head {
    align-items: flex-start;
    padding: 20px;
  }

  .sample-note {
    max-width: 100px;
    white-space: normal;
  }

  th,
  td {
    padding: 14px 18px;
  }

  .role-switch {
    width: 100%;
  }

  .role-switch button {
    min-width: 0;
    width: 50%;
    padding-inline: 8px;
    font-size: 11px;
  }

  .role-panel {
    grid-template-columns: 1fr;
  }

  .step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    min-height: 0;
    padding: 20px;
  }

  .step-card h3 {
    margin-top: 0;
  }

  .fee-calculator {
    padding: 22px 18px;
  }

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

  .transparency-shell {
    padding: 30px 18px;
  }

  .member-access-shell,
  .contact-shell {
    padding: 34px 20px;
  }

  .member-access-actions {
    flex-direction: column;
  }

  .member-access-actions .button {
    width: 100%;
  }

  .member-feature-card {
    align-items: start;
    padding: 17px 15px;
  }

  .contact-copy ul {
    align-items: flex-start;
    flex-direction: column;
  }

  .advisor-card {
    width: 100%;
  }

  .direct-flow {
    gap: 8px;
  }

  .flow-user {
    width: 78px;
    height: 88px;
  }

  .flow-line small {
    width: 82px;
    text-align: center;
  }

  .final-cta {
    padding-top: 20px;
  }

  .final-cta-shell {
    padding: 38px 22px;
  }

  .final-actions {
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
