:root {
    --ink: #1E1E1E;
    --paper: #F6F0E6;
    --paper-dim: #E8DFD3;
    --surface: #FFFFFF;
    --bg-sand: #F0E8DC;
    --bg-rust-tint: #FAF1EB;
    --bg-blue-tint: #DCE8FD;
    --bg-blue-soft: #EEF4FF;
    --surface-hover: #E8DFD3;
    --pop: #C65D3A;
    --pop-deep: #A84A2B;
    --accent: #2563EB;
    --accent-deep: #1D4ED8;
    --accent-soft: #DCE8FD;
    --peach: #FAF1EB;
    --teal: var(--accent);
    --teal-deep: var(--accent-deep);
    --rust: var(--pop);
    --rust-deep: var(--pop-deep);
    --muted: rgba(30, 30, 30, 0.8);
    --border: rgba(37, 99, 235, 0.14);
    --display: 'Sora', system-ui, sans-serif;
    --sans: var(--display);
    --serif: var(--display);
    --mono: 'Space Mono', monospace;
    --accent-font: 'Kalam', cursive;
    --nav-h: 64px;
    --hero-inset-left: clamp(1.5rem, 4vw, 4rem);
    --hero-inset-right: clamp(1.5rem, 3vw, 3rem);
    --hero-gradient:
      radial-gradient(ellipse 80% 60% at 100% 0%, rgba(37, 99, 235, 0.14) 0%, transparent 55%),
      radial-gradient(ellipse 70% 55% at 0% 100%, rgba(37, 99, 235, 0.18) 0%, transparent 50%),
      radial-gradient(ellipse 55% 45% at 50% 100%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
      linear-gradient(165deg, #F6F0E6 0%, #EEF4FF 48%, #E8DFD3 100%);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0.75rem;
    z-index: 500;
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    text-decoration: none;
  }
  .skip-link:focus {
    left: 0.75rem;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee-track { animation: none; }
  }
  body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  picture { display: contents; }
  a { color: inherit; text-decoration: none; }
  .mono { font-family: var(--mono); font-size: 0.8125rem; letter-spacing: 0.04em; text-transform: uppercase; }
  .serif { font-family: var(--display); font-weight: 700; }
  .site-nav {
    position: sticky;
    top: 0;
    z-index: 300;
    height: var(--nav-h);
    background: rgba(238, 244, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .site-nav-inner {
    max-width: none;
    margin: 0;
    height: 100%;
    padding: 0 var(--hero-inset-right) 0 var(--hero-inset-left);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .site-nav-brand {
    font-family: var(--display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--pop);
    white-space: nowrap;
  }
  .site-nav-brand:hover { color: var(--pop-deep); }
  .site-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
  }
  .site-nav-links a {
    font-family: var(--mono);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
    white-space: nowrap;
  }
  .site-nav-links a:hover { color: var(--accent); }
  .site-nav-cta {
    background: var(--pop);
    color: #FFFFFF !important;
    padding: 0.5rem 1.125rem;
    font-weight: 700;
    font-size: 0.875rem !important;
    letter-spacing: 0.05em !important;
    border-radius: 999px;
    transition: background 0.2s, transform 0.2s;
  }
  .site-nav-cta:hover { background: var(--pop-deep); color: #FFFFFF !important; border: none; transform: translateY(-1px); }
  .site-nav-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1.5px solid var(--ink);
    border-radius: 0.25rem;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
  }
  .site-nav-toggle:hover {
    background: var(--bg-blue-tint);
  }
  .site-nav-toggle-icon {
    position: relative;
    width: 1.125rem;
    height: 1.5px;
    background: currentColor;
    transition: background 0.2s;
  }
  .site-nav-toggle-icon::before,
  .site-nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.2s, top 0.2s;
  }
  .site-nav-toggle-icon::before { top: -6px; }
  .site-nav-toggle-icon::after { top: 6px; }
  .site-nav-toggle[aria-expanded="true"] .site-nav-toggle-icon { background: transparent; }
  .site-nav-toggle[aria-expanded="true"] .site-nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
  .site-nav-toggle[aria-expanded="true"] .site-nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--hero-gradient);
    align-items: stretch;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem var(--hero-inset-right) 3rem var(--hero-inset-left);
    color: var(--ink);
    position: relative;
    z-index: 1;
  }
  .hero-tag {
    color: var(--accent);
    margin-bottom: 2rem;
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
  }
  .hero h1 em {
    font-family: var(--accent-font);
    font-style: normal;
    font-weight: 700;
    color: var(--accent);
    position: relative;
    display: inline-block;
    z-index: 0;
  }
  .hero h1 em::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: -0.08em;
    right: -0.05em;
    top: 0.52em;
    bottom: 0.02em;
    background: color-mix(in srgb, var(--pop) 62%, transparent);
    transform: rotate(-1.25deg) skewX(-2deg);
    border-radius: 0.14em 0.06em 0.1em 0.12em;
    pointer-events: none;
  }
  .hero-lead {
    max-width: 28rem;
    color: var(--muted);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
  }
  .hero-lead strong { color: var(--ink); font-weight: 600; }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }
  .btn-rust {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pop);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.9rem 1.5rem;
    border: 2px solid var(--pop);
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .btn-rust:hover { background: transparent; color: var(--pop); transform: translateY(-1px); }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
  .hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: transparent;
    padding: 2rem 0 0;
    overflow: hidden;
    z-index: 1;
    min-height: 100%;
  }
  .hero-portrait-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    padding: 0 1.5rem;
    flex: 1;
  }
  .hero-portrait {
    width: auto;
    max-width: min(572px, 95%);
    max-height: min(81vh, 728px);
    height: auto;
    object-fit: contain;
    object-position: bottom center;
  }
  .hero-stat-strip {
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-top: auto;
    flex-shrink: 0;
  }
  .hero-stat {
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--border);
    color: var(--ink);
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: var(--accent);
  }
  .hero-stat span {
    font-family: var(--mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
  }
  .marquee-band {
    background: var(--accent);
    color: var(--paper);
    padding: 0.875rem 0;
    overflow: hidden;
  }
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
  }
  .marquee-track span {
    font-family: var(--mono);
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 2rem;
    white-space: nowrap;
  }
  .marquee-track span::after { content: ' ◆ '; opacity: 0.4; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .paper { background: var(--paper); color: var(--ink); }
  .ink { background: var(--surface); color: var(--ink); }
  #results {
    background: var(--bg-blue-soft);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  }
  #about {
    background: var(--paper);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
  }
  #faq {
    background: var(--bg-blue-soft);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
  }
  .section {
    padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  }
  .section-inner { max-width: 72rem; margin: 0 auto; }
  .section-header { margin-bottom: 3rem; }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--accent-deep);
  }
  .section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 36rem;
    line-height: 1.5;
  }
  .paper .section-subtitle { color: var(--muted); }
  .ink .section-subtitle { color: var(--muted); }
  #results .results-section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem 2rem;
    align-items: end;
    border-bottom: 2px solid var(--ink);
    padding-bottom: clamp(1rem, 2vw, 1.35rem);
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
    text-align: left;
  }
  #results .results-section-head .section-title {
    margin-bottom: 0;
    max-width: none;
  }
  #results .results-section-head .section-subtitle {
    margin-bottom: 0;
    max-width: 36rem;
  }
  #results .results-meta {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--muted);
    text-align: right;
    line-height: 1.5;
  }
  .result-case {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    padding: clamp(1.75rem, 3vw, 2.5rem) 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.12);
  }
  .result-case:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .result-case:nth-child(even) { direction: rtl; }
  .result-case:nth-child(even) > * { direction: ltr; }
  .result-eyebrow {
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .result-eyebrow::after {
    content: '';
    height: 1px;
    width: 2.5rem;
    background: rgba(30, 30, 30, 0.12);
    flex-shrink: 0;
  }
  .result-headline {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 1rem;
  }
  .result-headline .result-highlight {
    font-family: var(--accent-font);
    font-style: normal;
    font-weight: 700;
    color: var(--accent);
  }
  .result-sub {
    font-size: clamp(1.0625rem, 1.75vw, 1.2rem);
    font-weight: 500;
    line-height: 1.6;
    color: rgba(30, 30, 30, 0.92);
    max-width: 36rem;
  }
  .result-quote-box {
    background: var(--bg-blue-tint);
    border: 1.5px solid var(--ink);
    border-radius: 0.35rem;
    padding: clamp(1.15rem, 2vw, 1.5rem) clamp(1.15rem, 2vw, 1.35rem);
    box-shadow: 4px 4px 0 var(--ink);
    position: relative;
  }
  .result-quote-box::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 0.85rem;
    font-family: var(--accent-font);
    font-size: clamp(3.5rem, 8vw, 4.5rem);
    line-height: 1;
    color: var(--ink);
    opacity: 0.12;
    pointer-events: none;
  }
  .result-quote-text {
    font-size: clamp(1.0625rem, 1.75vw, 1.125rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
  }
  .result-quote-who {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(30, 30, 30, 0.12);
    position: relative;
    z-index: 1;
  }
  .result-quote-who img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--ink);
    flex-shrink: 0;
  }
  .result-quote-who .name {
    font-weight: 700;
    font-size: 0.9375rem;
  }
  .result-quote-who .role {
    font-size: 0.8125rem;
    color: var(--muted);
  }
  @media (max-width: 768px) {
    #results .results-section-head {
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }
    #results .results-meta { text-align: left; }
    .result-case,
    .result-case:nth-child(even) {
      grid-template-columns: 1fr;
      direction: ltr;
    }
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .about-copy p {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
    max-width: 32rem;
  }
  .about-copy p strong { color: var(--accent); font-weight: 600; }
  .about-visual {
    position: relative;
    width: 100%;
    min-width: 0;
    display: grid;
    aspect-ratio: 4 / 5;
    overflow: visible;
  }
  .about-visual picture,
  .about-photo {
    display: block !important;
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
  }
  .about-visual img {
    display: block;
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 88%;
  }
  .about-visual::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    background: var(--accent);
    border-radius: 0.5rem;
    pointer-events: none;
  }
  .problems-section {
    background: var(--bg-blue-soft);
    color: var(--ink);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  }
  .problems-section .section-header {
    text-align: center;
    max-width: none;
    margin: 0 auto 2rem;
  }
  .problems-section .section-title {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.08;
  }
  @media (min-width: 768px) {
    .problems-section .section-title { white-space: nowrap; }
  }
  .problems-section .section-subtitle {
    color: var(--muted);
    font-size: clamp(1.125rem, 2vw, 1.3125rem);
    line-height: 1.5;
    margin: 0 auto;
    max-width: 40rem;
  }
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
  }
  .problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
  }
  .problem-card-num {
    font-family: var(--serif);
    font-size: 1.75rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.22;
  }
  .problem-card-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .problem-card h3 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
  }
  .problem-card p {
    font-size: clamp(1.0625rem, 1.75vw, 1.1875rem);
    line-height: 1.6;
    color: rgba(30, 30, 30, 0.92);
  }
  @media (max-width: 900px) {
    .problems-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .problems-grid { grid-template-columns: 1fr; }
  }
  #how {
    background: var(--bg-blue-soft);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  }
  .process-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }
  .process-side {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
  }
  .process-side .section-header { margin-bottom: 1.5rem; }
  .process-lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1.5rem;
    max-width: 22rem;
  }
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .process-step {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.75rem 1.75rem 1.75rem 2rem;
    border-left: 4px solid var(--accent);
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
  }
  .process-step:hover {
    background: var(--paper-dim);
    border-color: rgba(37, 99, 235, 0.3);
    border-left-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
  }
  .process-step + .process-step {
    margin-top: 1rem;
  }
  .process-step-label {
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
  }
  .process-step h3 {
    font-family: var(--serif);
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0.625rem;
  }
  .process-step p {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--muted);
  }
  .process-step p + p { margin-top: 0.65rem; }
  .process-step-note {
    margin-top: 0.75rem;
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--muted);
  }
  .process-arrow {
    display: flex;
    justify-content: center;
    padding: 0.35rem 0;
    color: var(--accent);
    font-size: 1.125rem;
    line-height: 1;
  }
  @media (max-width: 900px) {
    .process-layout { grid-template-columns: 1fr; }
    .process-side { position: static; }
    .process-lead { max-width: none; }
  }
  .why-compare {
    background: var(--surface);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  }
  .why-compare-header {
    text-align: center;
    max-width: none;
    margin: 0 auto 2rem;
  }
  .why-compare-header .section-title {
    margin-bottom: 0.5rem;
    font-size: clamp(1.875rem, 2.75vw, 2.875rem);
    line-height: 1.12;
  }
  .why-compare-header .section-subtitle { margin: 0 auto; font-size: clamp(1.0625rem, 2vw, 1.25rem); }
  .compare-matrix-wrap {
    overflow-x: auto;
    padding: 0.5rem 0 0.25rem;
  }
  .compare-matrix {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 6.5rem 6.5rem;
    min-width: min(100%, 40rem);
    border: 1px solid var(--border);
    border-radius: 0.875rem;
    background: var(--surface);
    overflow: hidden;
  }
  .compare-cell {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border);
    min-height: 3.75rem;
  }
  .compare-matrix > :nth-last-child(-n+3) { border-bottom: none; }
  .compare-head {
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    min-height: auto;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
  .compare-head-desc {
    background: var(--paper);
    color: var(--muted);
    border-bottom: 1px solid var(--border);
  }
  .compare-head-them {
    background: var(--paper-dim);
    color: var(--muted);
    justify-content: center;
    text-align: center;
    border-left: 1px solid var(--border);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .compare-desc {
    background: var(--surface);
    color: rgba(30, 30, 30, 0.9);
    font-size: clamp(1.0625rem, 1.75vw, 1.2rem);
    line-height: 1.5;
  }
  .compare-icon-cell {
    justify-content: center;
    padding: 0.8rem 0.5rem;
    border-left: 1px solid var(--border);
  }
  .compare-icon-cell--them { background: var(--paper); }
  .compare-icon-cell--me {
    background: var(--bg-blue-soft);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
  }
  .compare-head--me {
    justify-content: center;
    text-align: center;
    background: var(--accent);
    color: var(--paper);
    border-top: 2px solid var(--accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-radius: 0.75rem 0.75rem 0 0;
    margin-top: -0.5rem;
    padding-top: 1.1rem;
    padding-bottom: 1rem;
    box-shadow: 0 -2px 20px rgba(37, 99, 235, 0.2), 0 8px 28px rgba(37, 99, 235, 0.15);
    z-index: 1;
  }
  .compare-icon-cell--me-last {
    border-bottom: 2px solid var(--accent) !important;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.1);
    margin-bottom: -1px;
    padding-bottom: calc(0.8rem + 2px);
  }
  .compare-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 700;
  }
  .compare-mark--yes { background: var(--accent); color: #fff; }
  .compare-mark--no { background: rgba(37, 99, 235, 0.1); color: var(--muted); }
  @media (max-width: 540px) {
    .compare-matrix { grid-template-columns: minmax(12rem, 1fr) 4.5rem 4.5rem; }
    .compare-desc { font-size: 1rem; padding: 0.75rem; }
    .compare-mark { width: 2rem; height: 2rem; font-size: 0.9rem; }
  }
  #contact {
    background: var(--paper);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
  }
  .contact-inner { max-width: 72rem; margin: 0 auto; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }
  .contact-copy {
    padding: clamp(1rem, 2vw, 2rem) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
  }
  .contact-copy .section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.25rem;
  }
  .contact-copy #contact-title {
    font-family: var(--display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.25rem;
  }
  .contact-copy > p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 28rem;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .form-panel {
    border: 1.5px solid var(--ink);
    border-radius: 0.25rem;
    background: var(--surface);
    box-shadow: 8px 8px 0 var(--ink);
    overflow: hidden;
  }
  .form-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1.5px solid var(--ink);
    margin-bottom: 0;
  }
  .form-tabs button {
    padding: 1rem 1.125rem;
    border: none;
    background: var(--paper-dim);
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    color: var(--ink);
    transition: background 0.2s, color 0.2s;
    margin-bottom: 0;
  }
  .form-tabs button:not(:last-child) {
    border-right: 1.5px solid var(--ink);
  }
  .form-tabs button.active {
    background: var(--ink);
    color: var(--paper);
    border-bottom-color: transparent;
    font-weight: 600;
  }
  .form-tabs button:hover:not(.active) {
    background: var(--bg-blue-tint);
  }
  .contact-form {
    padding: clamp(2rem, 3.5vw, 2.5rem);
    font-size: 1.0625rem;
    line-height: 1.55;
  }
  .field { margin-bottom: 1.35rem; }
  .field label {
    display: block;
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--muted);
  }
  .field label .opt { text-transform: none; letter-spacing: 0; font-family: var(--sans); color: var(--muted); font-size: 1.0625rem; }
  .input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--display);
    font-size: 1.125rem;
    border: 1.5px solid var(--ink);
    border-radius: 0.25rem;
    background: var(--paper);
    color: var(--ink);
    outline: none;
    transition: box-shadow 0.2s;
  }
  .input:focus {
    box-shadow: 3px 3px 0 var(--accent);
  }
  select.input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231E1E1E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }
  select.input:invalid { color: var(--muted); }
  textarea.input { min-height: 7.5rem; resize: vertical; }
  .hint { font-size: 0.9375rem; color: var(--muted); margin-top: 0.5rem; display: block; line-height: 1.45; }
  .notice {
    background: var(--bg-blue-tint);
    border: 1.5px solid var(--ink);
    padding: 1.125rem 1.25rem;
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.55;
    margin-bottom: 1.75rem;
    border-radius: 0.25rem;
  }
  .notice strong { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 1.0625rem; }
  .form-intro { font-size: 1.0625rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.5; }
  .btn-submit {
    width: 100%;
    padding: 1.125rem 1.5rem;
    background: var(--pop);
    color: #FFFFFF;
    border: 2px solid var(--pop);
    border-radius: 999px;
    font-family: var(--display);
    font-size: 1.125rem;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .btn-submit:hover { background: transparent; color: var(--pop); transform: translateY(-1px); }
  .form-tabs button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
  }
  .contact-info-panel[hidden] { display: none !important; }
  .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-info-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .contact-info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .contact-info-label {
    display: block;
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }
  .contact-info-item a,
  .contact-info-item p {
    font-family: var(--display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-deep);
    line-height: 1.4;
  }
  .contact-info-item a:hover {
    color: var(--accent);
  }
  @media (max-width: 900px) {
    .contact-copy { position: static; }
    .form-tabs button { font-size: 0.875rem; padding: 0.875rem 0.5rem; }
  }
  #faq .section-header { margin-bottom: 1.75rem; }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-item summary {
    padding: 1.15rem 0;
    font-weight: 600;
    font-size: clamp(1.0625rem, 1.75vw, 1.1875rem);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-family: var(--mono);
    font-size: 1.125rem;
    color: var(--accent);
    flex-shrink: 0;
  }
  .faq-item[open] summary::after { content: '−'; }
  .faq-item p {
    padding-bottom: 1.15rem;
    font-size: clamp(1rem, 1.6vw, 1.0625rem);
    color: var(--muted);
    line-height: 1.55;
  }
  .cta-band {
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
    text-align: center;
  }
  .cta-band-title {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-band p {
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 32rem;
    margin: 0 auto 1.75rem;
  }
  .cta-band--ink {
    background: linear-gradient(135deg, var(--bg-blue-tint) 0%, #C5D9FA 55%, var(--bg-blue-soft) 100%);
    color: var(--ink);
    border-top: 1px solid rgba(37, 99, 235, 0.16);
    border-bottom: 1px solid rgba(37, 99, 235, 0.16);
  }
  .cta-band--ink .cta-band-title { color: var(--accent); }
  .cta-band--ink p { color: var(--muted); }
  .cta-band--paper {
    background: var(--paper);
    color: var(--ink);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .cta-band--paper p { color: var(--muted); }
  .cta-band--rust {
    background: linear-gradient(135deg, var(--pop) 0%, #d4734f 100%);
    color: #FFFFFF;
  }
  .cta-band--rust .cta-band-title { color: #FFFFFF; }
  .cta-band--rust p { color: rgba(255, 255, 255, 0.92); }
  .cta-highlight {
    font-family: var(--accent-font);
    font-weight: 700;
    color: var(--accent);
    background: #FFFFFF;
    padding: 0.06em 0.4em;
    border-radius: 0.15em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .cta-band--rust .btn-rust {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--accent);
  }
  .cta-band--rust .btn-rust:hover {
    background: transparent;
    color: var(--paper);
    border-color: var(--paper);
  }
  .site-footer {
    background: var(--bg-blue-soft);
    color: var(--muted);
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
  }
  .site-footer-brand {
    font-family: var(--display);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    white-space: nowrap;
  }
  .site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .site-footer-links a,
  .site-footer-links span {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--accent-deep);
    line-height: 1.4;
  }
  .site-footer-links a {
    border-bottom: 1px solid rgba(29, 78, 216, 0.25);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
  }
  .site-footer-links span {
    color: var(--muted);
  }
  .site-footer-links a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }
  .site-footer-copy {
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    margin-left: auto;
  }
  @media (max-width: 640px) {
    .site-footer { flex-direction: column; align-items: flex-start; }
    .site-footer-copy { margin-left: 0; }
  }
  @media (max-width: 900px) {
    .hero {
      display: flex;
      flex-direction: column;
      padding: 2rem 1.5rem 0;
    }
    .hero-copy,
    .hero-visual { display: contents; }
    .hero-tag { order: 1; }
    .hero h1 { order: 2; margin-bottom: 0; }
    .hero-portrait-wrap {
      order: 3;
      margin: 1.5rem 0 1rem;
      padding: 0;
    }
    .hero-lead { order: 4; margin-top: 0; }
    .hero-actions { order: 5; }
    .hero-stat-strip { order: 6; margin-top: 1.5rem; }
    .hero-portrait { max-height: min(65vh, 598px); max-width: 88%; }
    .site-nav-toggle { display: inline-flex; }
    .site-nav-links {
      display: none;
      position: absolute;
      top: var(--nav-h);
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0.75rem var(--hero-inset-right) 1.25rem var(--hero-inset-left);
      background: rgba(238, 244, 255, 0.98);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .site-nav-links.is-open { display: flex; }
    .site-nav-links a {
      display: block;
      padding: 0.875rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.875rem;
    }
    .site-nav-links a:last-child { border-bottom: none; }
    .site-nav-links .site-nav-cta {
      margin-top: 0.5rem;
      text-align: center;
      padding: 0.75rem 1.125rem !important;
    }
    .hero-stat-strip { grid-template-columns: 1fr; }
    .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
    .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
    .about-grid { align-items: start; }
    .about-visual {
      width: min(16rem, 82vw);
      max-width: 16rem;
      margin: 2rem auto 1.25rem;
    }
    .about-visual::before {
      top: 0.75rem;
      left: 0.75rem;
      right: -0.75rem;
      bottom: -0.75rem;
    }
  }
  #problem,
  #why-me,
  #results,
  .cta-band,
  #how,
  #about,
  #faq,
  #contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
  }
