/* ============================================
   Reset & Base
   ============================================ */
   *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  :root {
    --bg: #0c0c0e;
    --bg-elevated: #131316;
    --bg-tint: #0f0f12;
    --border: #26262c;
    --border-strong: #3a3a42;
    --text: #ebe8e1;
    --text-dim: #a39e95;
    --text-muted: #6e6a62;
    --accent: #d4ff3a;
    --accent-dim: #8aa424;
    --accent-soft: rgba(212, 255, 58, 0.12);
    --danger: #ff7a5e;
  
    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  
    --container: 1200px;
    --radius: 2px;
    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  
  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.005em;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
  }
  
  img, svg {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease);
  }
  
  ::selection {
    background: var(--accent);
    color: var(--bg);
  }
  
  /* ============================================
     Layout helpers
     ============================================ */
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
  }
  
  /* ============================================
     Grain overlay
     ============================================ */
  .grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }
  
  /* ============================================
     Cursor glow
     ============================================ */
  .cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 255, 58, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s var(--ease);
    opacity: 0;
    will-change: transform;
  }
  
  .cursor-glow.active {
    opacity: 1;
  }
  
  /* ============================================
     Navigation
     ============================================ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 12, 14, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  
  .nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
  }
  
  .logo-mark {
    color: var(--accent);
    font-size: 16px;
  }
  
  .logo-dim {
    color: var(--text-muted);
  }
  
  .nav-links {
    display: flex;
    gap: 28px;
    font-size: 13px;
    color: var(--text-dim);
  }
  
  .nav-links a {
    position: relative;
    padding: 4px 0;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--accent);
    transition: width 0.3s var(--ease);
  }
  
  .nav-links a:hover {
    color: var(--text);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* ============================================
     Hero
     ============================================ */
  .hero {
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center top, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 75%);
    pointer-events: none;
  }
  
  .hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding-bottom: 80px;
  }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 50px;
    margin-bottom: 32px;
  }
  
  .eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2.4s infinite var(--ease);
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    color: var(--text);
  }
  
  .hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--text-dim);
  }
  
  .accent-text {
    color: var(--accent);
    font-style: italic;
    font-weight: 300;
    position: relative;
    white-space: nowrap;
  }
  
  .lede {
    font-size: 15px;
    color: var(--text-dim);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.75;
  }
  
  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    text-transform: lowercase;
  }
  
  .btn-primary {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
  }
  
  .btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
  }
  
  .btn-primary svg {
    transition: transform 0.25s var(--ease);
  }
  
  .btn-primary:hover svg {
    transform: translateX(4px);
  }
  
  .btn-ghost {
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    border-radius: 0;
  }
  
  .btn-ghost:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }
  
  .hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }
  
  .stat-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    color: var(--text);
  }
  
  .stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  
  /* Hero visual */
  .hero-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 540px;
    justify-self: center;
  }
  
  .mixer-svg {
    width: 100%;
    height: 100%;
  }
  
  .io-label {
    font-family: var(--font-body);
    font-size: 9px;
    fill: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  
  .io-label-r {
    text-anchor: end;
  }
  
  .core-rotate-1 {
    transform-origin: 250px 250px;
    animation: rotateCw 22s linear infinite;
  }
  
  .core-rotate-2 {
    transform-origin: 250px 250px;
    animation: rotateCcw 14s linear infinite;
  }
  
  @keyframes rotateCw {
    to { transform: rotate(360deg); }
  }
  
  @keyframes rotateCcw {
    to { transform: rotate(-360deg); }
  }
  
  .visual-caption {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  
  .visual-caption span:first-child {
    color: var(--accent);
  }
  
  /* Marquee */
  .marquee {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    background: var(--bg-tint);
  }
  
  .marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  
  .marquee-track span {
    flex-shrink: 0;
  }
  
  .marquee-track span:nth-child(odd) {
    color: var(--text-dim);
  }
  
  @keyframes marquee {
    to { transform: translateX(-50%); }
  }
  
  /* ============================================
     Sections
     ============================================ */
  .section {
    padding: 140px 0;
    position: relative;
  }
  
  .section-tint {
    background: var(--bg-tint);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .section-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  
  .section-header {
    margin-bottom: 64px;
  }
  
  .section-header.center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-num {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.24em;
    color: var(--accent);
    margin-bottom: 16px;
  }
  
  .section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
  }
  
  .section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  
  .section-sub {
    margin-top: 18px;
    color: var(--text-dim);
    font-size: 14px;
    max-width: 540px;
  }
  
  .section-header.center .section-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-body p {
    color: var(--text-dim);
    margin-bottom: 22px;
    max-width: 64ch;
  }
  
  .section-body .lead-p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    font-weight: 400;
  }
  
  /* ============================================
     Steps
     ============================================ */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    margin-top: 32px;
  }
  
  .step {
    padding: 48px 36px;
    position: relative;
    transition: background 0.4s var(--ease);
  }
  
  .step:not(:last-child) {
    border-right: 1px solid var(--border);
  }
  
  .step:hover {
    background: rgba(212, 255, 58, 0.02);
  }
  
  .step-num {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  
  .step-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    color: var(--accent);
  }
  
  .step h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--text);
  }
  
  .step p {
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.7;
  }
  
  /* ============================================
     Types (custodial vs non-custodial)
     ============================================ */
  .types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  
  .type-card {
    border: 1px solid var(--border);
    padding: 44px 36px;
    background: var(--bg-elevated);
    position: relative;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  }
  
  .type-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }
  
  .type-tag {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 50px;
    margin-bottom: 24px;
  }
  
  .type-tag-accent {
    color: var(--accent);
    border-color: var(--accent-dim);
    background: var(--accent-soft);
  }
  
  .type-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  
  .type-card p {
    color: var(--text-dim);
    margin-bottom: 16px;
    font-size: 13.5px;
  }
  
  .type-list {
    list-style: none;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  
  .type-list li {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: var(--text-dim);
    padding: 8px 0;
  }
  
  .type-list li span {
    color: var(--accent);
    font-weight: 500;
    width: 12px;
    flex-shrink: 0;
  }
  
  /* ============================================
     Reasons grid
     ============================================ */
  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  
  .reason {
    background: var(--bg-tint);
    padding: 44px 36px;
    transition: background 0.3s var(--ease);
  }
  
  .reason:hover {
    background: var(--bg-elevated);
  }
  
  .reason-mark {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 20px;
  }
  
  .reason h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  
  .reason p {
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.7;
  }
  
  /* ============================================
     Legal section
     ============================================ */
  .section-legal {
    background: var(--bg-tint);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .legal-wrap {
    max-width: 760px;
    margin: 0 auto;
  }
  
  .legal-body p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dim);
    margin-bottom: 22px;
  }
  
  .legal-body .lead-p {
    color: var(--text);
  }
  
  .callout {
    margin: 36px 0;
    padding: 28px 32px;
    border: 1px solid var(--accent-dim);
    background: var(--accent-soft);
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .callout-mark {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
  }
  
  .callout div:last-child {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
  }
  
  .callout strong {
    color: var(--accent);
    font-weight: 500;
  }
  
  /* ============================================
     Checklist
     ============================================ */
  .checklist {
    list-style: none;
    max-width: 880px;
    margin: 0 auto;
  }
  
  .checklist li {
    display: flex;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
    transition: padding 0.3s var(--ease);
  }
  
  .checklist li:last-child {
    border-bottom: none;
  }
  
  .checklist li:hover {
    padding-left: 12px;
  }
  
  .checklist .check {
    color: var(--accent);
    font-size: 12px;
    margin-top: 6px;
    flex-shrink: 0;
  }
  
  .checklist strong {
    color: var(--text);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
  }
  
  .checklist li > div {
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.7;
  }
  
  /* ============================================
     FAQ
     ============================================ */
  .faq {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
  }
  
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text);
    transition: color 0.2s var(--ease);
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-item summary:hover {
    color: var(--accent);
  }
  
  .faq-icon {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease), color 0.3s var(--ease);
    font-weight: 300;
  }
  
  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
  }
  
  .faq-content {
    padding-bottom: 26px;
    max-width: 64ch;
  }
  
  .faq-content p {
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.75;
  }
  
  /* ============================================
     Footer
     ============================================ */
  .footer {
    background: var(--bg-tint);
    border-top: 1px solid var(--border);
    padding-top: 80px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    padding-bottom: 80px;
  }
  
  .footer-brand {
    max-width: 380px;
  }
  
  .footer-tag {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.7;
  }
  
  .footer-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-heading {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  
  .footer-col a {
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.2s var(--ease);
  }
  
  .footer-col a:hover {
    color: var(--accent);
  }
  
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding: 28px 0;
  }
  
  .footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  /* ============================================
     Content images
     ============================================ */
  .content-image {
    margin: 56px auto 0;
    max-width: 880px;
    position: relative;
  }
  
  .content-image-wide {
    max-width: 100%;
    margin-top: 48px;
    margin-bottom: 56px;
  }
  
  .content-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    transition: border-color 0.4s var(--ease);
  }
  
  .content-image:hover img {
    border-color: var(--border-strong);
  }
  
  .content-image figcaption {
    margin-top: 14px;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .content-image figcaption span:first-child {
    color: var(--accent);
  }
  
  /* When content-image is inside section-grid body, give it full container width */
  .section-body + .content-image,
  .section .content-image {
    grid-column: 1 / -1;
  }
  
  /* ============================================
     Reveal animations
     ============================================ */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Stagger children */
  .section-header.is-visible + .section-body .reveal,
  .steps .reveal:nth-child(1) { transition-delay: 0s; }
  .steps .reveal:nth-child(2) { transition-delay: 0.12s; }
  .steps .reveal:nth-child(3) { transition-delay: 0.24s; }
  
  .reasons-grid .reveal:nth-child(1) { transition-delay: 0s; }
  .reasons-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
  .reasons-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
  .reasons-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
  
  .types-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
  
  .checklist li.reveal:nth-child(1) { transition-delay: 0s; }
  .checklist li.reveal:nth-child(2) { transition-delay: 0.06s; }
  .checklist li.reveal:nth-child(3) { transition-delay: 0.12s; }
  .checklist li.reveal:nth-child(4) { transition-delay: 0.18s; }
  .checklist li.reveal:nth-child(5) { transition-delay: 0.24s; }
  .checklist li.reveal:nth-child(6) { transition-delay: 0.3s; }
  
  .faq .reveal:nth-child(1) { transition-delay: 0s; }
  .faq .reveal:nth-child(2) { transition-delay: 0.05s; }
  .faq .reveal:nth-child(3) { transition-delay: 0.1s; }
  .faq .reveal:nth-child(4) { transition-delay: 0.15s; }
  .faq .reveal:nth-child(5) { transition-delay: 0.2s; }
  .faq .reveal:nth-child(6) { transition-delay: 0.25s; }
  .faq .reveal:nth-child(7) { transition-delay: 0.3s; }
  
  /* ============================================
     Responsive
     ============================================ */
  @media (max-width: 980px) {
    .container { padding: 0 24px; }
  
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 48px;
      min-height: auto;
      padding: 24px 0 64px;
    }
  
    .hero-visual {
      order: -1;
      max-width: 360px;
    }
  
    .section { padding: 96px 0; }
  
    .section-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .steps {
      grid-template-columns: 1fr;
    }
  
    .step:not(:last-child) {
      border-right: none;
      border-bottom: 1px solid var(--border);
    }
  
    .types-grid,
    .reasons-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  
    .nav-links {
      display: none;
    }
  
    .content-image {
      margin-top: 40px;
    }
  
    .content-image-wide {
      margin-top: 32px;
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 600px) {
    .nav-inner { padding: 16px 20px; }
    .container { padding: 0 20px; }
  
    .hero {
      padding-top: 48px;
    }
  
    .hero h1 { font-size: 2.2rem; }
  
    .hero-stats {
      flex-wrap: wrap;
      gap: 24px;
    }
  
    .stat-num { font-size: 20px; }
  
    .section { padding: 72px 0; }
    .section-header { margin-bottom: 40px; }
  
    .step,
    .type-card,
    .reason {
      padding: 32px 24px;
    }
  
    .callout {
      padding: 20px 22px;
      flex-direction: column;
      gap: 12px;
    }
  
    .faq-item summary {
      font-size: 16px;
    }
  
    .footer-bottom-inner {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
  }
  
  /* ============================================
     Reduced motion
     ============================================ */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  
    .reveal {
      opacity: 1;
      transform: none;
    }
  }