  :root {
    --bg:        #ffffff;
    --bg-2:      oklch(0.975 0.003 240);
    --ink:       oklch(0.18 0.012 250);
    --ink-2:     oklch(0.40 0.010 250);
    --ink-3:     oklch(0.60 0.012 250);
    --line:      oklch(0.91 0.005 240);
    --line-2:    oklch(0.95 0.004 240);
    --accent:    oklch(0.55 0.13 155);
    --accent-ink:oklch(0.30 0.09 155);
    --accent-bg: oklch(0.96 0.03 155);
    --danger:    oklch(0.58 0.14 25);
    --warn:      oklch(0.72 0.13 75);

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 22px;

    --shadow-sm: 0 1px 0 rgba(20,22,28,0.04), 0 1px 2px rgba(20,22,28,0.04);
    --shadow-md: 0 1px 0 rgba(20,22,28,0.04), 0 8px 24px -10px rgba(20,22,28,0.10);
    --shadow-lg: 0 1px 0 rgba(20,22,28,0.04), 0 24px 60px -24px rgba(20,22,28,0.18);
  }

  * { box-sizing: border-box; -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  html { overflow-x: clip; }

  .display { font-family: 'Inter Tight', 'Inter', sans-serif; letter-spacing: -0.02em; font-weight: 600; }
  .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; cursor: pointer; }
  a, button, summary, .btn, [role="button"] {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  a:active, button:active, summary:active, .btn:active, [role="button"]:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  }
  :focus:not(:focus-visible) {
    outline: none;
  }

  .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

  /* nav */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--bg) 80%, transparent);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--line-2);
  }
  .nav-row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .brand { display: inline-flex; align-items: center; }
  .brand-logo { height: 28px; width: auto; display: block; }

  .nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--ink-2); }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { display: flex; gap: 10px; align-items: center; font-size: 14px; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    height: 36px; padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: white;
    font-weight: 500;
    transition: background .15s, border-color .15s, transform .05s;
  }
  .btn:hover { border-color: oklch(0.82 0.005 240); }
  .btn:active { transform: translateY(1px); }
  .btn-primary {
    background: var(--ink); color: white; border-color: var(--ink);
  }
  .btn-primary:hover { background: oklch(0.26 0.012 250); border-color: oklch(0.26 0.012 250); }
  .btn-accent {
    background: var(--accent); color: white; border-color: var(--accent);
  }
  .btn-accent:hover { background: oklch(0.50 0.13 155); border-color: oklch(0.50 0.13 155); }
  .btn-ghost { background: transparent; border-color: transparent; }
  .btn-ghost:hover { background: var(--bg-2); }

  /* hero */
  .hero { padding: 72px 0 96px; }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 64px;
    align-items: center;
  }
  .hero-grid > * { min-width: 0; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 10px;
    background: white;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
  h1.hero-title {
    font-family: 'Inter Tight'; font-weight: 600;
    font-size: clamp(40px, 5.4vw, 68px); line-height: 1.02; letter-spacing: -0.035em;
    margin: 22px 0 20px;
    text-wrap: balance;
  }
  .hero-sub {
    font-size: 18px; color: var(--ink-2); max-width: 520px; line-height: 1.5;
    text-wrap: pretty;
  }
  .hero-cta { margin-top: 28px; display: flex; gap: 10px; align-items: center; }
  .hero-meta { margin-top: 22px; font-size: 13px; color: var(--ink-3); display: flex; gap: 18px; flex-wrap: wrap; }
  .hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
  .hero-meta svg { width: 14px; height: 14px; }

  /* hero widget — soft background card, no stage frame */
  .widget-stage {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
  }
  .widget {
    width: 100%;
    max-width: 440px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
  .widget,
  .widget * {
    cursor: default !important;
    pointer-events: none !important;
  }
  .widget-body { padding: 18px; }

  /* multi-step flow */
  .widget-head {
    padding: 8px 12px 8px 8px;
    border-bottom: 1px solid var(--line-2);
    display: flex; align-items: center;
  }
  .widget-back {
    background: transparent; border: none;
    height: 26px;
    display: grid; place-items: center;
    border-radius: 999px;
    color: var(--ink-2);
    cursor: pointer;
    overflow: hidden;
    width: 0; opacity: 0; margin-right: 0;
    transform: translateX(-4px);
    pointer-events: none;
    transition: width .25s, margin .25s, opacity .2s, transform .2s, background .15s, color .15s;
  }
  .widget-back:hover { background: var(--bg-2); color: var(--ink); }
  .widget[data-step="2"] .widget-back, .widget[data-step="3"] .widget-back, .widget[data-step="4"] .widget-back, .widget[data-step="5"] .widget-back, .widget[data-step="6"] .widget-back {
    width: 26px; margin-right: 6px;
    opacity: 1; transform: translateX(0); pointer-events: auto;
  }
  .widget-brand {
    display: flex; align-items: center; gap: 8px;
    flex: 1; min-width: 0;
  }
  .widget-brand-mark {
    width: 18px; height: 18px;
    border-radius: 5px;
    background: oklch(0.22 0.025 250);
    color: white;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .widget-brand-mark svg { width: 10px; height: 10px; }
  .widget-brand-name {
    font-size: 12px; font-weight: 600; color: var(--ink);
    letter-spacing: -0.005em;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .widget-step-label {
    font-size: 11px; color: var(--ink-3);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
  }
  .widget-steps-wrap {
    overflow: hidden; position: relative;
    transition: height .4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .widget-steps {
    display: flex;
    align-items: flex-start;
    transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .widget-step {
    flex: 0 0 100%; min-width: 0;
    padding: 18px;
    transition: opacity .3s;
  }
  .widget[data-step="1"] .widget-steps { transform: translateX(0); }
  .widget[data-step="2"] .widget-steps { transform: translateX(-100%); }
  .widget[data-step="3"] .widget-steps { transform: translateX(-200%); }
  .widget[data-step="4"] .widget-steps { transform: translateX(-300%); }
  .widget[data-step="5"] .widget-steps { transform: translateX(-400%); }
  .widget[data-step="6"] .widget-steps { transform: translateX(-500%); }
  .widget[data-step="1"] .widget-step:not(:nth-child(1)),
  .widget[data-step="2"] .widget-step:not(:nth-child(2)),
  .widget[data-step="3"] .widget-step:not(:nth-child(3)),
  .widget[data-step="4"] .widget-step:not(:nth-child(4)),
  .widget[data-step="5"] .widget-step:not(:nth-child(5)),
  .widget[data-step="6"] .widget-step:not(:nth-child(6)) {
    opacity: 0.35;
  }

  /* KYC sub-step visuals */
  .kyc-doc-frame {
    position: relative; width: 100%; aspect-ratio: 16/10;
    margin-top: 14px;
    border: 1px solid var(--line-2); border-radius: 10px;
    background: linear-gradient(135deg, var(--bg-2), var(--bg));
    overflow: hidden;
  }
  .kyc-doc-preview {
    position: absolute; inset: 14px;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 10px; background: oklch(0.98 0.005 250);
    border-radius: 6px; border: 1px solid var(--line-2);
  }
  .kyc-doc-photo {
    width: 38px; height: 46px; border-radius: 3px;
    background: linear-gradient(135deg, oklch(0.85 0.02 80), oklch(0.65 0.04 60));
  }
  .kyc-doc-mrz { display: flex; flex-direction: column; gap: 3px; }
  .kyc-doc-mrz span {
    height: 6px; background: var(--ink); opacity: 0.78; border-radius: 1px;
  }
  .kyc-doc-mrz span:nth-child(1) { width: 92%; }
  .kyc-doc-mrz span:nth-child(2) { width: 96%; }
  .kyc-doc-mrz span:nth-child(3) { width: 70%; }
  .kyc-scan-line {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: kyc-scan 1.8s ease-in-out infinite;
  }
  @keyframes kyc-scan {
    0%, 100% { top: 8%; }
    50% { top: 92%; }
  }
  .kyc-checks {
    margin-top: 12px; display: grid; gap: 6px;
    font-size: 13px; color: var(--ink-2);
  }
  .kyc-check {
    display: flex; align-items: center; gap: 8px;
    opacity: 0; transform: translateY(4px);
    transition: opacity .35s ease-out, transform .35s ease-out;
  }
  .kyc-check.in { opacity: 1; transform: translateY(0); }
  .kyc-tick {
    width: 16px; height: 16px; border-radius: 999px;
    background: var(--accent-bg); color: var(--accent-ink);
    display: grid; place-items: center;
    font-size: 10px; font-weight: 700;
  }

  .kyc-selfie-frame {
    position: relative; width: 100%; aspect-ratio: 16/10;
    margin-top: 14px;
    border: 1px solid var(--line-2); border-radius: 10px;
    background: var(--bg-2);
    display: grid; place-items: center;
    overflow: hidden;
    transition: background .4s;
  }
  .kyc-selfie-frame.captured { animation: selfie-flash .55s ease-out; }
  @keyframes selfie-flash {
    0% { background: white; }
    25% { background: white; }
    100% { background: var(--bg-2); }
  }
  .kyc-selfie-circle {
    width: 96px; height: 96px;
    border: 2px dashed var(--line);
    border-radius: 999px;
    display: grid; place-items: center;
    color: var(--ink-3);
    position: relative; z-index: 1;
    background: var(--bg);
  }
  .kyc-selfie-circle svg { width: 48px; height: 48px; }
  .kyc-selfie-pulse {
    position: absolute;
    width: 96px; height: 96px;
    border-radius: 999px;
    border: 2px solid var(--accent);
    animation: kyc-pulse 1.6s ease-out infinite;
  }
  @keyframes kyc-pulse {
    0% { transform: scale(0.85); opacity: 0.8; }
    100% { transform: scale(1.45); opacity: 0; }
  }
  .kyc-selfie-hint {
    margin-top: 10px; font-size: 13px; color: var(--ink-2); text-align: center;
  }
  .widget-amount.changing { opacity: 0; transform: translateY(4px); }
  .widget-amount {
    transition: opacity .2s, transform .2s;
  }
  /* success state */
  .widget-success {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; padding: 14px 0 18px; text-align: center;
  }
  .success-icon {
    width: 56px; height: 56px; border-radius: 999px;
    background: var(--accent-bg);
    display: grid; place-items: center;
    color: var(--accent);
    animation: pop .35s cubic-bezier(0.22, 1.4, 0.36, 1) .1s both;
  }
  .success-icon svg { width: 26px; height: 26px; }
  @keyframes pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
  .success-title {
    font-family: 'Inter Tight'; font-weight: 600;
    font-size: 22px; letter-spacing: -0.02em;
    margin-top: 4px;
  }
  .success-sub { font-size: 13px; color: var(--ink-3); }
  .success-list {
    width: 100%; margin-top: 10px;
    display: grid; gap: 8px; font-size: 13px;
    text-align: left;
  }
  .success-list-row {
    display: flex; justify-content: space-between;
    border-bottom: 1px dashed var(--line-2);
    padding-bottom: 8px;
  }
  .success-list-row:last-child { border-bottom: none; padding-bottom: 0; }
  .success-list-row strong { font-weight: 500; }
  .widget-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
  .widget-row + .widget-row { border-top: 1px dashed var(--line-2); }
  .widget-row .k { color: var(--ink-3); }
  .widget-row .v { font-variant-numeric: tabular-nums; }

  .widget-pill {
    font-size: 11px; padding: 3px 8px; border-radius: 999px;
    background: var(--accent-bg); color: var(--accent-ink);
    font-weight: 500;
  }
  .widget-amount {
    font-family: 'Inter Tight'; font-weight: 600;
    font-size: 36px; letter-spacing: -0.02em;
    margin: 6px 0 2px;
    font-variant-numeric: tabular-nums;
  }
  .widget-prop { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }

  .field-group { display: grid; gap: 8px; }
  .field-label { font-size: 12px; color: var(--ink-2); }
  .field {
    height: 40px; border: 1px solid var(--line); border-radius: 8px;
    padding: 0 12px; font-size: 14px;
    display: flex; align-items: center; gap: 8px;
    background: white;
  }
  .field-multi { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

  .pm-list { display: grid; gap: 8px; margin: 14px 0; }
  .pm-row {
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--line); border-radius: 10px;
    padding: 10px 12px; font-size: 13px;
    background: white;
    cursor: pointer;
  }
  .pm-row.selected { border-color: var(--ink); box-shadow: 0 0 0 2px oklch(0.18 0.012 250 / 0.06); }
  .pm-logo {
    width: 28px; height: 20px; border-radius: 4px; background: var(--bg-2);
    border: 1px solid var(--line-2);
    display: grid; place-items: center;
    font-size: 9px; font-weight: 600; color: var(--ink-2);
    letter-spacing: 0.04em;
  }
  .pm-logo svg { width: 14px; height: 14px; display: block; }
  .pm-logo-dark { background: var(--ink); border-color: var(--ink); color: white; }
  .pm-meta { flex: 1; display: flex; flex-direction: column; }
  .pm-meta, .pm-name, .pm-sub { min-width: 0; }
  .pm-name { font-weight: 500; }
  .pm-sub { color: var(--ink-3); font-size: 12px; }
  .pm-radio {
    width: 16px; height: 16px; border-radius: 999px; border: 1.5px solid var(--line);
    display: grid; place-items: center;
  }
  .pm-row.selected .pm-radio { border-color: var(--ink); }
  .pm-row.selected .pm-radio::after {
    content:""; width: 8px; height: 8px; border-radius: 999px; background: var(--ink);
  }

  .pay-btn {
    width: 100%; height: 44px;
    background: var(--ink); color: white;
    border: none; border-radius: 10px;
    font-weight: 500; font-size: 14px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 4px;
  }
  .pay-btn .lock { width: 12px; height: 12px; }

  .widget-actions {
    padding: 0 18px 16px;
  }
  .widget-actions .pay-btn { margin-top: 0; transition: transform .25s; }
  .pay-btn.press { animation: cta-press .35s ease-out; }
  @keyframes cta-press {
    0% { transform: scale(1); }
    45% { transform: scale(0.96); }
    100% { transform: scale(1); }
  }
  .pm-row {
    transition: border-color .2s, box-shadow .2s, background .2s;
  }
  .typing-caret::after {
    content: '|';
    display: inline-block;
    margin-left: 1px;
    color: var(--ink-3);
    animation: caret-blink 1s steps(1) infinite;
  }
  @keyframes caret-blink {
    50% { opacity: 0; }
  }

  .widget-foot {
    padding: 12px 18px; border-top: 1px solid var(--line-2);
    font-size: 11px; color: var(--ink-3);
    display: flex; align-items: center; justify-content: center;
  }

  /* sections */
  section { padding: 96px 0; }
  .section-head { max-width: 760px; margin-bottom: 56px; }
  .section-eyebrow {
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--accent-ink); font-weight: 500;
  }
  h2.section-title {
    font-family: 'Inter Tight'; font-weight: 600;
    font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -0.025em;
    margin: 12px 0 16px;
    text-wrap: balance;
  }
  .section-sub { font-size: 17px; color: var(--ink-2); max-width: 620px; line-height: 1.5; }

  /* logo strip */
  .logos {
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    padding: 28px 0;
  }
  .logos-row {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    align-items: center;
    gap: 44px;
  }
  .logos-label {
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink-3);
    line-height: 1.55;
  }
  .logo-set {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    align-items: stretch;
    gap: 16px;
  }
  .logo-card {
    min-height: 72px;
    border: 1px solid var(--line-2);
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 28px oklch(0.18 0.012 250 / 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
  }
  .customer-logo {
    display: block;
    width: 100%;
    height: 34px;
    max-width: 138px;
    object-fit: contain;
    opacity: .92;
    filter: grayscale(1) saturate(0) brightness(.48) contrast(1.45);
    transition: opacity .15s ease, transform .15s ease;
  }
  .logo-card:hover .customer-logo {
    opacity: 1;
    transform: translateY(-1px);
  }
  .logo-card-light {
    background: white;
    border-color: var(--line-2);
  }
  .logo-card-light .customer-logo {
    opacity: .92;
    filter: grayscale(1) saturate(0) brightness(.48) contrast(1.45);
  }
  .customer-logo-wide { max-width: 156px; }
  .customer-logo-scandium { max-width: 154px; }
  .customer-logo-kaanon { max-width: 132px; }
  .customer-logo-hybr { max-width: 120px; }

  /* modules — checkin.com style vertical menu */
  .modules-checkin {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    padding: 48px 56px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    background: var(--bg);
    align-items: center;
  }
  .modules-list {
    display: flex; flex-direction: column;
  }
  .modules-item {
    all: unset;
    cursor: pointer;
    display: block;
    padding: 18px 0;
    border-top: 1px solid var(--line-2);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
  }
  .modules-item:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 6px;
    border-radius: 10px;
  }
  .modules-item:last-child { border-bottom: 1px solid var(--line-2); }
  .modules-item-head {
    display: flex; align-items: center; gap: 14px;
  }
  .modules-item-icon {
    width: 28px; height: 28px;
    display: grid; place-items: center;
    color: var(--ink-2);
    flex: 0 0 28px;
    transition: color .25s, opacity .25s;
  }
  .modules-item-icon svg { width: 22px; height: 22px; }
  .modules-item:not(.active) .modules-item-icon { opacity: 0.45; }
  .modules-item-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-3);
    letter-spacing: 0.06em;
    flex: 0 0 auto;
  }
  .modules-item-name {
    font-family: 'Inter Tight';
    font-weight: 500;
    font-size: 18px;
    color: var(--ink-3);
    letter-spacing: -0.01em;
    transition: color .25s, font-weight .25s;
    flex: 1;
  }
  .modules-item.active .modules-item-name { color: var(--ink); font-weight: 600; }
  .modules-item.active .modules-item-icon { color: var(--ink); opacity: 1; }
  .modules-item-focus {
    font-size: 10px; letter-spacing: 0.06em;
    color: var(--ink-3);
    border: 1px solid var(--line);
    padding: 3px 8px; border-radius: 999px;
    text-transform: uppercase; font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .25s;
  }
  .modules-item.active .modules-item-focus { opacity: 1; }
  .modules-item-body {
    margin-left: 42px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease, margin-top .35s ease;
  }
  .modules-item.active .modules-item-body {
    grid-template-rows: 1fr;
    margin-top: 12px;
  }
  .modules-item-body-inner {
    overflow: hidden;
    min-height: 0;
  }
  .modules-item-desc {
    font-size: 13.5px;
    color: var(--ink-3);
    line-height: 1.55;
    margin-bottom: 14px;
  }
  .modules-item-progress {
    height: 2px;
    background: var(--line-2);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
  }
  .modules-item-progress-bar {
    position: absolute;
    inset: 0 auto 0 0;
    background: var(--accent);
    width: 0;
    border-radius: 999px;
  }
  .modules-checkin.timer-running .modules-item.active .modules-item-progress-bar {
    animation: moduleProgress 11000ms linear forwards;
  }
  .modules-checkin.paused .modules-item.active .modules-item-progress-bar,
  .modules-checkin:not(.timer-running) .modules-item.active .modules-item-progress-bar {
    animation-play-state: paused;
  }
  @keyframes moduleProgress {
    from { width: 0; }
    to { width: 100%; }
  }

  .modules-mocks {
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    min-height: 540px;
  }
  .modules-mock-panel {
    grid-area: 1 / 1;
    width: 100%;
    max-width: 460px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
  .modules-mock-panel,
  .modules-mock-panel * {
    cursor: default;
  }
  .modules-mock-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .module-num {
    font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em; font-family: 'JetBrains Mono';
  }
  .module-num-row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  .module-focus {
    font-size: 10px; letter-spacing: 0.06em;
    color: var(--ink-3);
    border: 1px solid var(--line);
    padding: 3px 8px; border-radius: 999px;
    text-transform: uppercase; font-weight: 500;
    white-space: nowrap;
  }
  .module-title { font-family: 'Inter Tight'; font-weight: 600; font-size: 28px; letter-spacing: -0.025em; line-height: 1.1; }
  .module-desc { color: var(--ink-2); font-size: 15px; line-height: 1.55; }
  .module-mock {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    display: flex; flex-direction: column;
    max-width: 460px;
    width: 100%;
    justify-self: center;
  }
  /* shared mock helpers (used in module-mocks) */
  .mock-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 12px; border-bottom: 1px solid var(--line-2);
    margin-bottom: 14px;
    gap: 8px;
  }
  .mock-applicant { display: flex; align-items: center; gap: 12px; padding: 4px 0 10px; }
  .mock-avatar {
    width: 36px; height: 36px; border-radius: 999px;
    background: var(--accent-bg); color: var(--accent-ink);
    display: grid; place-items: center;
    font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
    flex: 0 0 auto;
  }
  .mock-doc {
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 10px; padding: 14px;
    margin: 4px 0 12px;
  }
  /* passport bio page mock used in KYC card */
  .mock-passport {
    background: linear-gradient(135deg, oklch(0.96 0.008 250) 0%, oklch(0.90 0.022 245) 100%);
    border: 1px solid oklch(0.82 0.025 245);
    border-radius: 6px;
    padding: 10px 12px;
    position: relative;
  }
  .mock-passport-head {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid oklch(0.75 0.04 250 / 0.35);
    margin-bottom: 10px;
  }
  .mock-passport-crest {
    width: 22px; height: 22px; border-radius: 4px;
    background: oklch(0.40 0.10 270);
    flex: 0 0 auto; position: relative;
    box-shadow: inset 0 0 0 1px oklch(0.78 0.06 70 / 0.6);
  }
  .mock-passport-crest::before {
    content: ""; position: absolute; inset: 4px;
    border: 1px solid oklch(0.85 0.08 80);
    border-radius: 2px;
  }
  .mock-passport-crest::after {
    content: ""; position: absolute;
    left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    background: oklch(0.85 0.08 80);
    clip-path: polygon(50% 0, 61% 35%, 100% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 0 35%, 39% 35%);
  }
  .mock-passport-country {
    font-size: 9.5px; letter-spacing: 0.08em; font-weight: 700;
    color: oklch(0.22 0.06 260);
    text-transform: uppercase;
    line-height: 1.1;
  }
  .mock-passport-type {
    font-size: 8.5px; letter-spacing: 0.08em;
    color: oklch(0.42 0.04 250);
    margin-top: 2px; text-transform: uppercase;
  }
  .mock-passport-body { display: flex; gap: 12px; }
  .mock-passport-photo {
    width: 48px; height: 60px; border-radius: 3px;
    background: linear-gradient(180deg, oklch(0.84 0.015 240) 0%, oklch(0.78 0.02 240) 100%);
    border: 1px solid oklch(0.72 0.025 240);
    flex: 0 0 auto; position: relative; overflow: hidden;
  }
  .mock-passport-photo::before {
    content: ""; position: absolute;
    left: 50%; top: 9px; transform: translateX(-50%);
    width: 18px; height: 18px; border-radius: 999px;
    background: oklch(0.60 0.045 35);
  }
  .mock-passport-photo::after {
    content: ""; position: absolute;
    left: 50%; bottom: -12px; transform: translateX(-50%);
    width: 38px; height: 28px; border-radius: 50%;
    background: oklch(0.42 0.03 250);
  }
  .mock-passport-fields {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; gap: 5px;
  }
  .mock-passport-name {
    font-size: 11px; font-weight: 700;
    color: oklch(0.18 0.04 250);
    letter-spacing: 0.02em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .mock-passport-row {
    display: flex; gap: 14px;
    font-size: 8.5px;
    color: oklch(0.42 0.04 250);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .mock-passport-row strong {
    color: oklch(0.18 0.04 250);
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .mock-passport-mrz {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    color: oklch(0.32 0.04 250);
    letter-spacing: 0.06em;
    margin-top: 10px;
    padding-top: 7px;
    border-top: 1px solid oklch(0.75 0.04 250 / 0.35);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .mock-checks { display: grid; gap: 8px; font-size: 12.5px; }
  .mock-check { display: flex; justify-content: space-between; }
  .mock-check span:first-child { color: var(--ink-3); }
  .mock-pass { color: var(--accent-ink); font-weight: 500; }
  .mock-calendar {
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px;
    padding: 4px 0;
  }
  .mock-month {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    font-size: 9px; color: var(--ink-3);
  }
  .mock-month .mc-dot {
    width: 7px; height: 7px; border-radius: 999px;
    background: var(--accent);
  }
  .mock-feed { display: grid; }
  .mock-feed-item {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid var(--line-2);
    gap: 12px;
  }
  .mock-feed-item:last-child { border-bottom: none; padding-bottom: 4px; }
  .mock-foot {
    border-top: 1px solid var(--line-2);
    margin-top: 14px; padding-top: 12px;
    font-size: 11px; color: var(--ink-3);
    display: flex; justify-content: space-between; align-items: center;
  }

  /* Module 07 — guarantee tier cards */
  .tier-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  }
  .tier-card {
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 12px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .tier-card.tier-plus {
    border-color: var(--accent);
    background: var(--accent-bg);
  }
  .tier-name {
    display: flex; align-items: center; gap: 6px;
  }
  .tier-pill {
    font-size: 10px; font-weight: 600;
    padding: 2px 7px; border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .tier-pill-muted { background: var(--bg-2); color: var(--ink-2); border: 1px solid var(--line-2); }
  .tier-pill-accent { background: var(--accent); color: white; }
  .tier-tag {
    font-size: 10px; color: var(--accent-ink);
    font-weight: 500;
  }
  .tier-price {
    font-family: 'Inter Tight';
    font-size: 22px; font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
  }
  .tier-price small {
    font-size: 11px; font-weight: 500; color: var(--ink-3); margin-left: 2px;
  }
  .tier-meta {
    font-size: 11px;
    color: var(--ink-3);
    display: grid; gap: 3px;
    margin-top: 2px;
  }
  .tier-meta strong { color: var(--ink-2); font-weight: 500; }

  /* dashboard band */
  .band {
    background: var(--ink);
    color: white;
    border-radius: var(--r-xl);
    padding: 64px;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
    position: relative; overflow: hidden;
  }
  .band h2 { color: white; }
  .band .section-eyebrow { color: oklch(0.78 0.10 155); }
  .band p { color: oklch(0.78 0.005 250); }
  .band-mock {
    background: oklch(0.22 0.005 250);
    border: 1px solid oklch(0.28 0.005 250);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  }
  .band-mock-head {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid oklch(0.28 0.005 250);
    font-size: 12px; color: oklch(0.65 0.005 250);
  }
  .band-mock-head .dot {
    width: 10px; height: 10px; border-radius: 999px;
    background: oklch(0.32 0.005 250);
  }
  .table {
    width: 100%; border-collapse: collapse; font-size: 12px;
    color: oklch(0.85 0.005 250);
  }
  .table th, .table td {
    text-align: left; padding: 10px 14px;
    border-bottom: 1px solid oklch(0.26 0.005 250);
    font-weight: 400;
  }
  .table th {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
    color: oklch(0.55 0.005 250); font-weight: 500;
  }
  .table td.num { font-variant-numeric: tabular-nums; }
  .pill {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; padding: 2px 8px; border-radius: 999px;
    background: oklch(0.30 0.06 155); color: oklch(0.85 0.10 155);
  }
  .pill.warn { background: oklch(0.32 0.07 75); color: oklch(0.85 0.10 75); }
  .pill.danger { background: oklch(0.32 0.07 25); color: oklch(0.85 0.10 25); }

  /* renter band — split frame */
  .split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1px;
    background: var(--line-2);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    overflow: hidden;
  }
  .split > div { background: var(--bg); padding: 48px; min-height: 520px; display: flex; flex-direction: column; gap: 24px; min-width: 0; }
  .phone {
    margin-top: auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 14px 14px 24px;
    box-shadow: var(--shadow-md);
    max-width: 280px;
    align-self: center;
    width: 100%;
  }
  .phone-status {
    display: flex; justify-content: space-between;
    font-size: 11px; padding: 4px 10px; color: var(--ink-2); font-weight: 500;
    font-variant-numeric: tabular-nums;
  }
  .phone-screen {
    border-radius: 18px; padding: 18px;
    background: var(--bg-2); border: 1px solid var(--line-2);
    display: flex; flex-direction: column; gap: 14px;
    margin-top: 8px;
  }
  .phone-row { display: flex; justify-content: space-between; font-size: 13px; }

  /* api preview */
  .code-card {
    background: oklch(0.16 0.005 250);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .code-tabs {
    display: flex; gap: 0;
    border-bottom: 1px solid oklch(0.24 0.005 250);
    padding: 0 6px;
  }
  .code-tab {
    padding: 10px 14px; font-size: 12px;
    color: oklch(0.65 0.005 250);
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
  }
  .code-tab.active {
    color: white; border-bottom-color: var(--accent);
  }
  pre.code {
    margin: 0; padding: 22px 24px;
    color: oklch(0.88 0.005 250);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px; line-height: 1.65;
    overflow-x: auto;
  }
  .tk-key { color: oklch(0.78 0.12 280); }
  .tk-str { color: oklch(0.78 0.10 155); }
  .tk-num { color: oklch(0.80 0.13 75); }
  .tk-com { color: oklch(0.50 0.005 250); font-style: italic; }
  .tk-fn  { color: oklch(0.80 0.10 220); }

  /* stats */
  .stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
  }
  .stat { padding: 32px 28px; border-right: 1px solid var(--line-2); }
  .stat:last-child { border-right: none; }
  .stat-num { font-family: 'Inter Tight'; font-weight: 600; font-size: 40px; letter-spacing: -0.025em; line-height: 1; }
  .stat-label { color: var(--ink-3); font-size: 13px; margin-top: 8px; }

  /* dual cta */
  .dual {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line-2);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    overflow: hidden;
  }
  .dual > div {
    background: var(--bg); padding: 48px;
    display: flex; flex-direction: column; gap: 14px;
    min-height: 280px;
  }
  .dual h3 { font-family: 'Inter Tight'; font-weight: 600; font-size: 28px; letter-spacing: -0.02em; margin: 0; }
  .dual p { color: var(--ink-2); margin: 0; font-size: 15px; }
  .dual a.go {
    margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
    font-weight: 500; color: var(--ink);
  }
  .dual .go svg { transition: transform .15s; }
  .dual a.go:hover .go svg, .dual a.go:hover svg { transform: translateX(3px); }

  /* footer */
  footer {
    border-top: 1px solid var(--line-2);
    padding: 64px 0 48px;
    color: var(--ink-3);
    font-size: 13px;
  }
  .foot-grid {
    display: grid; grid-template-columns: minmax(220px, 1.6fr) repeat(5, minmax(120px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
  }
  .foot-col h5 {
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink-2); font-weight: 500; margin: 0 0 16px;
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .foot-col a:hover { color: var(--ink); }
  .foot-address {
    margin: 14px 0 0;
    line-height: 1.55;
    color: var(--ink-3);
  }
  .foot-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; border-top: 1px solid var(--line-2);
    font-size: 12px;
  }

  /* compare table */
  .compare-wrap {
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bg);
  }
  .compare-table {
    width: 100%; border-collapse: collapse;
    font-size: 14px;
  }
  .compare-table thead th {
    text-align: left; padding: 22px 24px;
    font-family: 'Inter Tight'; font-weight: 600;
    font-size: 18px; letter-spacing: -0.01em;
    border-bottom: 1px solid var(--line-2);
    color: var(--ink);
  }
  .compare-table thead th:first-child {
    color: var(--ink-3); font-family: 'Inter';
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .compare-table th.col-cp {
    background: var(--accent-bg); color: var(--accent-ink);
    border-left: 1px solid var(--line-2);
  }
  .compare-table th.col-other { color: var(--ink-2); border-left: 1px solid var(--line-2); }
  .compare-table tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line-2);
    vertical-align: top;
  }
  .compare-table tbody tr:last-child td { border-bottom: none; }
  .compare-table td.row-label { color: var(--ink-2); font-weight: 500; width: 38%; }
  .compare-table td.col-cp {
    background: color-mix(in srgb, var(--accent-bg) 50%, white);
    border-left: 1px solid var(--line-2);
    color: var(--ink);
  }
  .compare-table td.col-other {
    border-left: 1px solid var(--line-2);
    color: var(--ink-3);
  }
  .compare-check {
    color: var(--accent); font-weight: 600; margin-right: 6px;
  }
  .compare-dash { color: var(--ink-3); margin-right: 6px; }

  /* pricing landing + homepage CTA */
  .pricing-page-hero {
    padding: 72px 0 24px;
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
  }
  .pricing-page-head {
    max-width: 780px;
    margin-bottom: 0;
  }
  .pricing-page-title {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
  }
  .pricing-compact-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .pricing-compact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 40px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    background: var(--bg-2);
  }
  .pricing-compact-card .section-head,
  .pricing-compact-card .section-sub,
  .pricing-compact-card .section-title {
    margin-bottom: 0;
  }
  .pricing-compact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
  }
  .pricing-savings-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    align-items: stretch;
    background:
      radial-gradient(circle at 85% 10%, rgba(0, 92, 55, 0.08), transparent 28%),
      var(--bg-2);
  }
  .pricing-savings-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    min-width: 0;
  }
  .pricing-savings-copy .pricing-compact-actions {
    justify-content: flex-start;
    margin-top: 6px;
  }
  .pricing-savings-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    background: var(--bg);
    box-shadow: 0 20px 50px rgba(12, 20, 16, 0.06);
  }
  .pricing-savings-kicker {
    color: var(--accent);
    font-family: 'Inter Tight';
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.035em;
  }
  .pricing-savings-note {
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.45;
    margin: 2px 0 0;
  }
  .pricing-savings-example {
    color: var(--ink-3);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
  }
  .pricing-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 14px;
    font-weight: 650;
  }
  .pricing-bar-label {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .pricing-bar-value {
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
  }
  .pricing-bar-competitor {
    width: 100%;
    color: var(--ink);
    background: #e3e5eb;
  }
  .pricing-bar-rentlink {
    width: 38%;
    min-width: 210px;
    color: #fff;
    background: var(--accent);
  }

  .savings-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
  }
  .savings-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .savings-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 15, 0.48);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .savings-modal-panel {
    position: relative;
    width: min(920px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    background: var(--bg);
    box-shadow: 0 32px 90px rgba(9, 16, 13, 0.28);
  }
  .savings-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--ink-2);
  }
  .savings-modal-close svg {
    width: 16px;
    height: 16px;
    display: block;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
  }
  .savings-modal-close:hover { color: var(--ink); border-color: oklch(0.82 0.005 240); }
  .savings-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
    gap: 1px;
    background: var(--line-2);
  }
  .savings-modal-copy,
  .savings-calculator {
    background: var(--bg);
    padding: 40px;
  }
  .savings-modal-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
  .savings-modal-copy h2 {
    margin: 0;
    font-family: 'Inter Tight';
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  .savings-modal-copy p {
    margin: 0;
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.55;
  }
  .savings-assumption-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .savings-assumption-list span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: var(--bg-2);
    color: var(--ink-2);
    font-size: 12px;
    font-weight: 600;
  }
  .savings-calculator {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .savings-field {
    display: grid;
    gap: 8px;
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 650;
  }
  .savings-input-wrap {
    display: grid;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--bg-2);
    color: var(--ink-3);
  }
  .savings-input-wrap-currency { grid-template-columns: auto minmax(0, 1fr); }
  .savings-input-wrap-suffix { grid-template-columns: minmax(0, 1fr) auto; }
  .savings-input-prefix,
  .savings-input-suffix {
    min-width: 0;
    white-space: nowrap;
    line-height: 1;
  }
  .savings-input-suffix {
    color: var(--ink-3);
    font-size: 13px;
    font-weight: 600;
  }
  .savings-input-wrap input {
    min-width: 0;
    width: 100%;
    border: none;
    background: transparent;
    color: var(--ink);
    font: 650 20px/1 'Inter Tight', 'Inter', sans-serif;
    outline: none;
  }
  .savings-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
  }
  .savings-result-card,
  .savings-total-card {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: var(--r-lg);
  }
  .savings-result-card span,
  .savings-total-card span {
    color: inherit;
    opacity: .78;
    font-size: 12px;
    font-weight: 650;
  }
  .savings-result-card strong,
  .savings-total-card strong {
    font-family: 'Inter Tight';
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .savings-result-card small,
  .savings-total-card small {
    color: inherit;
    opacity: .7;
    font-size: 12px;
    line-height: 1.35;
  }
  .savings-result-card-muted {
    background: #e3e5eb;
    color: var(--ink);
  }
  .savings-result-card-accent,
  .savings-total-card {
    background: var(--accent);
    color: white;
  }
  .savings-result-card-accent {
    background: var(--accent-bg);
    color: var(--accent-ink);
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  }
  .savings-total-card {
    min-height: 126px;
    align-content: center;
    padding: 24px;
  }
  .savings-total-card strong { font-size: clamp(32px, 4vw, 46px); }
  .savings-email-cta {
    align-self: stretch;
    justify-content: center;
    min-height: 42px;
    margin-top: 0;
  }

  /* pricing — didit.me-style configurator + hero + custom */
  .pricing-head-row {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 24px; margin-bottom: 32px;
  }
  .pricing-head-row .section-head { margin-bottom: 0; }
  .pricing-currency {
    display: inline-flex; gap: 2px;
    background: var(--bg-2); border: 1px solid var(--line-2);
    padding: 3px; border-radius: 999px;
    flex: 0 0 auto;
  }
  .pricing-currency button {
    border: none; background: transparent;
    color: var(--ink-3); cursor: pointer;
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'Inter Tight'; font-weight: 500; font-size: 12px;
    padding: 7px 12px; border-radius: 999px;
    transition: background .15s, color .15s;
    min-width: 38px;
    white-space: nowrap;
  }
  .pricing-currency button em {
    font-style: normal;
    color: currentColor;
    opacity: .68;
    letter-spacing: .04em;
  }
  .pricing-currency button:hover { color: var(--ink); }
  .pricing-currency button[aria-pressed="true"] {
    background: var(--ink); color: white;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    gap: 1px;
    background: var(--line-2);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    overflow: hidden;
  }
  .pricing-panel {
    background: var(--bg);
    padding: 40px;
    display: flex; flex-direction: column;
    gap: 24px;
  }
  .pricing-panel-dark {
    background: var(--ink);
    color: white;
  }
  .pricing-panel-head { display: flex; flex-direction: column; gap: 6px; }
  .pricing-panel-title {
    font-family: 'Inter Tight'; font-weight: 600;
    font-size: 22px; letter-spacing: -0.02em;
  }
  .pricing-panel-sub { color: var(--ink-3); font-size: 14px; line-height: 1.5; }
  .pricing-panel-dark .pricing-panel-sub { color: oklch(0.78 0.005 250); }
  .pricing-features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 11px;
    font-size: 14px;
  }
  .pricing-features li {
    display: flex; align-items: flex-start; gap: 10px;
    color: oklch(0.85 0.005 250);
  }
  .pricing-features li::before {
    content: "✓"; color: oklch(0.78 0.10 155);
    font-weight: 600; flex-shrink: 0;
  }
  .pricing-cta { margin-top: auto; }
  .pricing-foot {
    margin-top: 24px;
    color: var(--ink-3);
    font-size: 13px;
    text-align: center;
    line-height: 1.55;
  }

  /* configurator panel */
  .pricing-config-rows {
    display: flex; flex-direction: column; gap: 18px;
  }
  .pricing-config-row {
    display: flex; flex-direction: column; gap: 8px;
  }
  .pricing-config-label {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 13px; font-weight: 500; color: var(--ink-2);
  }
  .pricing-config-label-value {
    font-family: 'Inter Tight'; font-weight: 600; font-size: 14px;
    color: var(--ink); font-variant-numeric: tabular-nums;
  }
  .pricing-slider {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 4px;
    background: var(--line-2);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
  }
  .pricing-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 18px; height: 18px;
    background: var(--accent);
    border: 2px solid white;
    border-radius: 999px;
    box-shadow: 0 1px 4px oklch(0.50 0.10 155 / 0.35);
    cursor: pointer;
    transition: transform .12s;
  }
  .pricing-slider::-moz-range-thumb {
    width: 18px; height: 18px;
    background: var(--accent);
    border: 2px solid white;
    border-radius: 999px;
    box-shadow: 0 1px 4px oklch(0.50 0.10 155 / 0.35);
    cursor: pointer;
  }
  .pricing-slider:hover::-webkit-slider-thumb { transform: scale(1.08); }
  .pricing-slider-scale {
    display: flex; justify-content: space-between;
    font-size: 10px; color: var(--ink-3);
    font-family: 'JetBrains Mono', monospace;
    margin-top: 2px;
  }
  .pricing-toggle-list {
    display: flex; flex-direction: column;
    gap: 1px;
    background: var(--line-2);
    border: 1px solid var(--line-2);
    border-radius: var(--r-md);
    overflow: hidden;
  }
  .pricing-toggle {
    background: var(--bg);
    padding: 12px 14px;
    display: grid; grid-template-columns: 18px 1fr auto; gap: 12px;
    align-items: center;
    cursor: pointer;
    transition: background .12s;
    font-size: 13.5px;
  }
  .pricing-toggle:hover { background: var(--bg-2); }
  .pricing-toggle input { margin: 0; cursor: pointer; accent-color: var(--accent); }
  .pricing-toggle-name {
    display: flex; flex-direction: column; gap: 2px;
    min-width: 0;
  }
  .pricing-toggle-name strong { font-weight: 500; color: var(--ink); }
  .pricing-toggle-name span { color: var(--ink-3); font-size: 11.5px; }
  .pricing-toggle-price {
    font-family: 'Inter Tight'; font-weight: 600; font-size: 13px;
    color: var(--ink-2); letter-spacing: -0.01em;
    white-space: nowrap; font-variant-numeric: tabular-nums;
  }
  .pricing-radio-group {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  }
  .pricing-radio {
    display: flex; flex-direction: column; gap: 2px;
    padding: 10px 12px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-md);
    background: var(--bg);
    cursor: pointer;
    text-align: left;
    transition: border-color .12s, background .12s;
    font-family: 'Inter';
  }
  .pricing-radio:hover { border-color: var(--ink-3); }
  .pricing-radio input { display: none; }
  .pricing-radio-name {
    font-size: 12.5px; font-weight: 500; color: var(--ink);
  }
  .pricing-radio-meta {
    font-size: 10.5px; color: var(--ink-3);
    font-family: 'JetBrains Mono', monospace;
  }
  .pricing-radio.is-active {
    border-color: var(--ink); background: var(--bg-2);
  }

  /* hero panel */
  .pricing-hero {
    background: var(--bg-2);
    position: relative;
    border-left: 1px solid var(--accent);
  }
  .pricing-hero-tag {
    position: absolute; top: 16px; right: 16px;
    background: var(--accent); color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
    padding: 4px 9px; border-radius: 999px;
  }
  .pricing-hero-price {
    font-family: 'Inter Tight'; font-weight: 600;
    font-size: 56px; letter-spacing: -0.04em; line-height: 1;
    color: var(--ink); font-variant-numeric: tabular-nums;
    display: flex; align-items: baseline; gap: 6px;
  }
  .pricing-hero-price small {
    font-family: 'Inter'; font-weight: 500; font-size: 16px;
    color: var(--ink-3); letter-spacing: 0;
  }
  .pricing-hero-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent-bg); color: var(--accent-ink);
    border: 1px solid oklch(0.84 0.06 155);
    padding: 5px 10px; border-radius: 999px;
    font-size: 12px; font-weight: 500;
    width: fit-content;
  }
  .pricing-hero-pill svg { width: 12px; height: 12px; }
  .pricing-hero-addon {
    font-family: 'Inter Tight'; font-weight: 500;
    font-size: 18px; color: var(--ink); letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
  }
  .pricing-hero-addon-total {
    font-weight: 600; color: var(--ink);
  }
  .pricing-hero-addon-meta {
    color: var(--ink-3); font-size: 12px; margin-top: 4px;
    line-height: 1.45;
  }
  .pricing-hero-divider {
    font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-3); font-family: 'JetBrains Mono', monospace;
    display: flex; align-items: center; gap: 10px;
    margin-top: 4px;
  }
  .pricing-hero-divider::before,
  .pricing-hero-divider::after {
    content: ""; flex: 1; height: 1px; background: var(--line-2);
  }
  .pricing-hero-features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
    font-size: 14px;
  }
  .pricing-hero-features li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--ink-2);
  }
  .pricing-hero-features li::before {
    content: "✓"; color: var(--accent-ink);
    font-weight: 600; flex-shrink: 0;
  }

  @media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-hero { border-left: none; border-top: 1px solid var(--accent); }
    .pricing-head-row { flex-direction: column; align-items: flex-start; }
    .pricing-compact-card { grid-template-columns: 1fr; align-items: flex-start; }
    .pricing-compact-actions { justify-content: flex-start; }
    .pricing-savings-visual { width: 100%; }
  }
  @media (max-width: 720px) {
    .pricing-radio-group { grid-template-columns: 1fr; }
    .pricing-panel { padding: 28px; }
    .pricing-page-hero { padding: 52px 0 12px; }
    .pricing-compact-card { padding: 28px; }
    .pricing-compact-actions { width: 100%; }
    .pricing-savings-visual { padding: 20px; }
    .pricing-bar { grid-template-columns: 1fr; gap: 4px; min-height: 70px; align-items: start; padding: 14px; }
    .pricing-bar-rentlink { width: 100%; min-width: 0; }
  }

  /* customer segments / solutions */
  .segments-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line-2); border: 1px solid var(--line-2);
    border-radius: var(--r-xl); overflow: hidden;
  }
  .segment {
    background: var(--bg);
    padding: 32px;
    display: flex; flex-direction: column; gap: 20px;
    min-height: 320px;
  }
  .segment-cta {
    margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
    font-weight: 500; color: var(--accent-ink); font-size: 14px;
    align-self: flex-start;
  }
  .segment-cta:hover { color: var(--accent); }
  .segment-cta svg { transition: transform .15s; }
  .segment-cta:hover svg { transform: translateX(3px); }

  /* RentLink access channels */
  .access-channels-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .access-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line-2);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    overflow: hidden;
  }
  .access-channel-card {
    background: var(--bg);
    min-width: 0;
    min-height: 300px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .access-channel-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink-3);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
  }
  .access-channel-title {
    font-family: 'Inter Tight';
    font-weight: 600;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 2px 0 0;
  }
  .access-channel-copy {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 520px;
  }
  .access-channel-card .segment-cta {
    margin-top: auto;
  }

  @media (max-width: 1120px) {
    .access-channel-card {
      min-height: 320px;
      padding: 24px;
    }
    .access-channel-title { font-size: 22px; }
    .access-channel-copy { font-size: 14px; }
  }

  @media (max-width: 860px) {
    .access-channels-grid {
      grid-template-columns: 1fr;
    }
    .access-channel-card {
      min-height: 0;
      padding: 24px;
    }
    .access-channel-card .segment-cta {
      margin-top: 6px;
    }
  }

  /* ---- responsive ---- */
  @media (max-width: 1280px) {
    .segments-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 1024px) {
    .hero-grid, .split, .segments-grid, .band, .stats, .foot-grid { grid-template-columns: 1fr; }
    .pricing-panel { padding: 32px; }
    .pricing-savings-card { grid-template-columns: 1fr; }
    .pricing-savings-visual { max-width: none; }
    .pricing-compact-actions { justify-content: flex-start; }
    .savings-modal-copy,
    .savings-calculator { padding: 34px; }
    /* on small screens, stack the list above the active mock */
    .modules-checkin { grid-template-columns: 1fr; padding: 24px; gap: 28px; }
    .modules-mocks { min-height: auto; }
    .modules-mock-panel { max-width: 100%; }
    .compare-wrap { overflow-x: auto; }
    .compare-table { min-width: 720px; }
    .stat { border-right: none; border-bottom: 1px solid var(--line-2); }
    .logos-row { grid-template-columns: 1fr; align-items: start; gap: 28px; }
    .logo-set { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
    .band { padding: 40px; }
    section { padding: 64px 0; }
    .nav-links { display: none; }
    section > .wrap > div[style*="grid-template-columns: 1fr 1.3fr"] { grid-template-columns: 1fr !important; padding: 32px !important; gap: 32px !important; }
    section > .wrap > div[style*="grid-template-columns: 1fr 1.1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
    section > .wrap > div > div[style*="grid-template-columns: 1fr auto 1.1fr"] { grid-template-columns: 1fr !important; }
    section > .wrap > div > div[style*="grid-template-columns: 1fr auto 1.1fr"] > div:nth-child(2) svg { transform: rotate(90deg); }
    div[style*="position: sticky"] { position: static !important; }
  }
  @media (max-width: 720px) {
    .wrap { padding: 0 20px; }
    .nav-row { height: 60px; gap: 16px; }
    .brand-logo { height: 26px; }
    .nav-cta { gap: 6px; flex-shrink: 0; }
    .nav-cta .btn-ghost { display: none; }
    .nav-cta .login-menu-trigger { display: inline-flex; }
    .nav-cta .btn-primary { padding: 0 12px; }

    .hero { padding: 48px 0 64px; }
    .hero-grid { gap: 32px; }
    .hero-sub { max-width: none; font-size: 17px; }
    .hero-cta { flex-wrap: wrap; }
    .logos-row { gap: 24px; }
    .logos-label { max-width: 320px; }
    .logo-set { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .logo-card:last-child:nth-child(odd) { grid-column: 1 / -1; width: calc((100% - 14px) / 2); justify-self: center; }
    .logo-card { min-height: 68px; padding: 16px; }
    .customer-logo { height: 32px; max-width: 132px; }
    .customer-logo-wide { max-width: 146px; }
    .customer-logo-scandium { max-width: 144px; }

    .widget-stage {
      padding: 20px;
      border-radius: var(--r-lg);
      width: 100%;
      min-width: 0;
    }
    .widget { max-width: 100%; }
    .widget-step { padding: 16px; }
    .widget-actions { padding: 0 16px 14px; }
    .widget-amount { font-size: 32px; }
    .pm-row { min-width: 0; }
    .pm-name, .pm-sub { overflow-wrap: anywhere; }

    .modules-checkin {
      display: block;
      padding: 20px;
    }
    .modules-list::before {
      content: "Auto-advances card by card. Tap any module to jump.";
      display: block;
      margin-bottom: 10px;
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-3);
    }
    .modules-mocks { display: none; }
    .modules-list .modules-mock-panel {
      display: block;
      width: 100%;
      max-width: none;
      margin-top: 16px;
      opacity: 1;
      visibility: visible;
      transform: none;
      pointer-events: none;
    }
    .modules-list .module-mock {
      padding: 18px;
      box-shadow: none;
    }
    .access-channels-grid { grid-template-columns: 1fr; }
    .access-channel-card {
      min-height: 0;
      padding: 24px;
    }
    .pricing-compact-card { padding: 28px; }
    .pricing-savings-visual { padding: 22px; }
    .pricing-bar-rentlink { width: 100%; min-width: 0; }
    .savings-modal {
      align-items: end;
      padding: 12px;
    }
    .savings-modal-panel {
      width: 100%;
      max-height: calc(100vh - 24px);
      border-radius: 18px;
    }
    .savings-modal-copy,
    .savings-calculator { padding: 26px 22px; }
    .savings-modal-close { top: 14px; right: 14px; }
    .savings-modal-grid { grid-template-columns: 1fr; }
    .savings-modal-copy {
      justify-content: flex-start;
      gap: 14px;
      padding-right: 58px;
    }
    .savings-modal-copy h2 {
      font-size: clamp(29px, 9vw, 36px);
      line-height: 1.05;
    }
    .savings-modal-copy p { font-size: 15px; }
    .savings-calculator { gap: 14px; }
    .savings-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .savings-result-card,
    .savings-total-card { padding: 15px; }
    .savings-result-card strong { font-size: clamp(23px, 7vw, 28px); }
    .savings-total-card {
      min-height: 112px;
      padding: 20px;
    }
    .savings-total-card strong { font-size: clamp(32px, 9vw, 42px); }
  }
  @media (max-width: 600px) {
    .wrap { padding: 0 18px; }
    .nav-row { gap: 12px; }
    .nav-cta .btn-primary { display: none; }
    .hero-sub { font-size: 16px; line-height: 1.55; max-width: 320px; }
    .widget-stage {
      display: flex;
      padding: 12px;
      border-radius: var(--r-lg);
      overflow: hidden;
    }
    .widget {
      width: 100%;
      max-width: 322px;
    }
    .widget-head { padding: 8px 10px 8px 8px; }
    .widget-step { padding: 14px; }
    .widget-actions { padding: 0 14px 14px; }
    .widget-foot { padding: 10px 14px; }
    .widget-amount { font-size: 30px; }
    .field { height: 38px; padding: 0 10px; }
    .pm-row { gap: 8px; padding: 9px 10px; }
    .pm-radio { flex: 0 0 16px; }
    .logos-row { grid-template-columns: 1fr; gap: 20px; }
    .logo-set { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; width: 100%; max-width: 260px; justify-self: center; margin-inline: auto; }
    .logo-card { width: 100%; min-width: 0; min-height: 58px; justify-self: stretch; padding: 12px 8px; }
    .logo-card:last-child:nth-child(odd) { grid-column: 1 / -1; width: calc((100% - 10px) / 2); justify-self: center; }
    .customer-logo { height: 28px; max-width: 104px; }
    .customer-logo-wide { max-width: 110px; }
    .customer-logo-scandium { max-width: 110px; }
    .customer-logo-hybr { max-width: 92px; }
    .customer-logo-kaanon { max-width: 96px; }
  }

  @media (max-width: 420px) {
    .wrap { padding: 0 18px; }
    .btn { height: 34px; padding: 0 12px; }
    .nav-cta .btn-primary { display: none; }
    .hero-sub { font-size: 16px; line-height: 1.55; }
    .widget-stage { padding: 12px; }
    .widget { width: 100%; max-width: 320px; }
    .widget-step { padding: 14px; }
    .widget-actions { padding: 0 14px 14px; }
    .savings-modal { padding: 10px; }
    .savings-modal-panel { max-height: calc(100vh - 20px); }
    .savings-modal-copy,
    .savings-calculator { padding: 20px 18px; }
    .savings-modal-copy {
      gap: 10px;
      padding-right: 56px;
    }
    .savings-modal-copy h2 {
      font-size: clamp(26px, 8vw, 31px);
      line-height: 1.04;
    }
    .savings-modal-copy p {
      font-size: 13px;
      line-height: 1.42;
    }
    .savings-assumption-list { gap: 6px; }
    .savings-assumption-list span {
      min-height: 25px;
      padding: 0 8px;
      font-size: 10px;
    }
    .savings-field { gap: 6px; }
    .savings-input-wrap {
      min-height: 48px;
      padding: 0 14px;
    }
    .savings-input-suffix { font-size: 12px; }
    .savings-results { gap: 8px; }
    .savings-result-card,
    .savings-total-card { padding: 13px; }
    .savings-result-card strong { font-size: clamp(21px, 6.4vw, 25px); }
    .savings-result-card small { font-size: 10px; }
    .savings-total-card {
      min-height: 104px;
      padding: 18px;
    }
  }

  @media (max-width: 370px) {
    .savings-modal-copy p { display: none; }
    .savings-modal-copy h2 { font-size: 25px; }
    .savings-modal-copy,
    .savings-calculator { padding-block: 18px; }
    .savings-calculator { gap: 9px; }
    .savings-total-card { min-height: 98px; }
    .savings-email-cta { min-height: 40px; }
  }

/* ---- shared launch utilities ---- */
.login-menu {
  position: relative;
  display: inline-flex;
}
.login-menu summary {
  list-style: none;
}
.login-menu summary::-webkit-details-marker {
  display: none;
}
.login-menu-trigger {
  cursor: pointer;
  white-space: nowrap;
}
.login-menu[open] .login-menu-trigger {
  background: var(--bg-2);
  border-color: var(--line);
}
.login-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 80;
  width: min(260px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: white;
  box-shadow: var(--shadow-lg);
}
.login-menu-panel::before {
  content: '';
  position: absolute;
  inset: -10px 0 auto 0;
  height: 10px;
}
.login-menu-panel a {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-radius: var(--r-md);
}
.login-menu-panel a:hover,
.login-menu-panel a:focus-visible {
  background: var(--bg-2);
}
.login-menu-panel span {
  font-weight: 600;
  color: var(--ink);
}
.login-menu-panel small {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.35;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

.nav-access { display: flex; gap: 8px; align-items: center; }

.contact-section { background: var(--bg); }
.contact-grid { grid-template-columns: repeat(3, 1fr); }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

.page-main { padding: 72px 0 96px; }
.page-hero { padding: 64px 0 32px; border-bottom: 1px solid var(--line-2); }
.page-kicker { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.page-title { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.035em; margin: 14px 0 18px; font-weight: 600; }
.page-subtitle { max-width: 760px; color: var(--ink-2); font-size: 18px; line-height: 1.55; }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 48px; align-items: start; }
.legal-sidebar { position: sticky; top: 92px; border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 16px; background: var(--bg-2); }
.legal-sidebar h2 { margin: 0 0 10px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.legal-sidebar a { display: block; padding: 7px 0; font-size: 13px; color: var(--ink-2); }
.legal-sidebar a:hover { color: var(--ink); }
.legal-content { max-width: 820px; min-width: 0; }
.legal-card { border: 1px solid var(--line-2); border-radius: var(--r-xl); background: white; box-shadow: var(--shadow-sm); padding: 40px; }
.legal-card h1, .legal-card h2, .legal-card h3 { font-family: 'Inter Tight', 'Inter', sans-serif; letter-spacing: -0.02em; line-height: 1.15; }
.legal-card h1 { font-size: 36px; margin: 0 0 18px; }
.legal-card h2 { font-size: 26px; margin: 42px 0 12px; padding-top: 8px; }
.legal-card h3 { font-size: 18px; margin: 28px 0 10px; }
.legal-card p, .legal-card li { color: var(--ink-2); }
.legal-card p { margin: 0 0 14px; }
.legal-card ul, .legal-card ol { padding-left: 22px; margin: 0 0 18px; }
.legal-card li + li { margin-top: 6px; }
.legal-card a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-card hr { border: 0; border-top: 1px solid var(--line-2); margin: 32px 0; }
.legal-card table { width: 100%; border-collapse: collapse; margin: 18px 0 28px; font-size: 14px; }
.legal-card th, .legal-card td { border: 1px solid var(--line-2); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal-card th { background: var(--bg-2); color: var(--ink); font-weight: 600; }
.notice-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; background: var(--bg-2); color: var(--ink-2); margin: 24px 0; }

@media (max-width: 1024px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .page-main { padding: 48px 0 72px; }
  .page-hero { padding: 48px 0 24px; }
  .legal-card { padding: 24px; border-radius: var(--r-lg); }
  .legal-card table { display: block; overflow-x: auto; white-space: nowrap; }
  .nav-access .tenant-login { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
