    /* ===========================================================
       Carta Grading · minimal premium, monocromo
       =========================================================== */

    :root {
      --bg: #ffffff;
      --bg-soft: #fafafa;
      --ink: #18181b;
      --muted: #5e5e66;
      --line: #e4e4e7;
      --line-strong: #d4d4d8;
      --card: #ffffff;
      --accent: #fcd00a;
      --brand: #0f4594;
      --accent-soft: #fef3c7;
      --danger: #f87171;
      --danger-soft: #fef2f2;
      --confirm: #5a7a5e;
      --max: 1120px;
      --pad: clamp(1.25rem, 5vw, 4rem);
      --display: "Schibsted Grotesk", system-ui, sans-serif;
      --body: "Inter", system-ui, -apple-system, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--body);
      font-size: 1.0625rem;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    h1, h2, h3 {
      font-family: var(--display);
      font-weight: 600;
      line-height: 1.04;
      letter-spacing: -0.025em;
    }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    .label {
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
    }

    /* ---------- NAV ---------- */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--bg);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 0.9rem var(--pad);
      height: 4.4rem;
    }
    .wordmark {
      font-family: var(--display);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: -0.03em;
    }
    .wordmark span { font-weight: 400; color: var(--brand); }
    .nav-links { display: flex; gap: 2rem; margin-left: auto; }
    .nav-links a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
    .nav-links a:hover { color: var(--ink); }

    /* mobile nav (hidden on desktop) */
    .nav-toggle, .nav-mobile { display: none; }

    /* ---------- BUTTONS / LINKS ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: var(--ink);
      font-family: var(--body);
      font-size: 0.88rem;
      font-weight: 500;
      padding: 0.7rem 1.4rem;
      border: 1px solid var(--accent);
      border-radius: 10px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }
    .btn:hover { opacity: 0.82; transform: translateY(-1px); }
    .btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border-color: var(--line-strong);
    }
    .tier .btn { margin-top: auto; align-self: flex-start; }
    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.9rem;
      font-weight: 500;
    }
    .link-arrow span { transition: transform 0.2s; color: var(--brand); }
    .link-arrow:hover span { transform: translateX(4px); }

    /* ---------- HERO ---------- */
    .hero {
      padding: clamp(2.5rem, 6vw, 5rem) 0;
      background: var(--bg-soft);
    }
    .hero-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }
    .eyebrow {
      font-size: 0.72rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 1.1rem;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 4.8vw, 3.2rem);
      font-weight: 600;
      margin-bottom: 1.2rem;
    }
    .hero-lead {
      font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
      color: var(--muted);
      max-width: 44ch;
      margin-bottom: 1.8rem;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      flex-wrap: wrap;
      margin-bottom: 2.2rem;
    }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      column-gap: 1.2rem;
      row-gap: 0.25rem;
      font-size: 0.85rem;
      color: var(--muted);
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .hero-meta li {
      display: inline-flex;
      align-items: center;
      gap: 1.2rem;
    }
    .hero-meta li:not(:last-child)::after {
      content: "";
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--line-strong);
      flex-shrink: 0;
    }
    @media (max-width: 480px) {
      .hero-meta { flex-direction: column; align-items: flex-start; row-gap: 0.3rem; }
      .hero-meta li { gap: 0; }
      .hero-meta li::after { display: none; }
    }

    /* trust strip · grading houses covered */
    .trust-strip {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .trust-strip-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 1.2rem var(--pad);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem 2rem;
    }
    .trust-strip-label {
      font-family: var(--display);
      font-weight: 500;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .trust-strip-graders {
      display: flex;
      align-items: center;
      gap: 1.2rem 2.4rem;
      flex-wrap: wrap;
    }
    .trust-strip-grader {
      font-family: var(--display);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    /* hero visual · slab outline */
    .hero-visual { display: flex; justify-content: center; }
    .slab-stack {
      position: relative;
      width: min(210px, 52vw);
      aspect-ratio: 5 / 7;
    }
    .slab,
    .slab-back {
      position: absolute;
      inset: 0;
      border-radius: 10px;
      background: var(--card);
      border: 1px solid var(--line-strong);
    }
    .slab-back {
      transform: rotate(-7deg) translate(-12px, 8px);
      opacity: 0.55;
    }
    .slab {
      display: flex;
      flex-direction: column;
      padding: 1rem 1rem 1.4rem;
      box-shadow: 0 12px 28px -16px rgba(24, 24, 27, 0.16);
      transform: rotate(2deg);
      z-index: 2;
    }
    .slab-head {
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      padding: 0.6rem 0.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.8rem;
    }
    .slab-head .slab-mark { font-family: var(--display); font-weight: 600; font-size: 0.9rem; letter-spacing: -0.02em; }
    .slab-head .slab-mark .mark { color: var(--brand); margin-right: 0.25rem; }
    .slab-head .slab-grade {
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
    }
    .slab-window {
      flex: 1;
      margin: 0.9rem 0 0.7rem;
      border-radius: 10px;
      background: var(--bg);
      border: 1px dashed var(--line-strong);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .slab-diamond { font-family: var(--display); font-size: 1.8rem; color: var(--line-strong); line-height: 1; }
    .slab-word {
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.05rem;
      line-height: 1.1;
      letter-spacing: -0.02em;
      text-align: center;
      color: var(--ink);
    }
    .slab-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ---------- SECTIONS ---------- */
    .section {
      padding: clamp(2.6rem, 6vw, 5rem) 0;
    }
    .section-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad);
    }
    .section-line { border-top: 1px solid var(--line); }
    .section-head { margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); max-width: 60ch; }
    .section-head .label { display: block; margin-bottom: 0.8rem; }
    .section-head h2,
    .section-head h1 { font-size: clamp(1.55rem, 3vw, 2.1rem); }

    /* grids */
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .item {
      background: var(--bg-soft);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: clamp(1.4rem, 3vw, 2.1rem);
    }
    .item .label { display: block; margin-bottom: 0.7rem; font-size: 0.62rem; letter-spacing: 0.14em; color: var(--muted); }
    .item h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
    .item p { color: var(--muted); max-width: 44ch; font-size: 0.96rem; }
    a.item {
      display: block;
      text-decoration: none;
      color: inherit;
      position: relative;
    }
    .item-external-icon {
      position: absolute;
      top: 1.2rem;
      right: 1.2rem;
      color: var(--muted);
      transition: color 0.2s, transform 0.2s;
    }
    .item-external-icon svg { width: 18px; height: 18px; display: block; }
    a.item:hover .item-external-icon { color: var(--brand); transform: translate(2px, -2px); }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.5rem, 3vw, 2.6rem);
    }
    .feature h3, .step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
    .feature p { color: var(--muted); font-size: 0.96rem; }
    .step p { color: var(--muted); font-size: 0.88rem; }
    .feature-icon { display: block; width: 28px; height: 28px; color: var(--brand); margin-bottom: 0.85rem; }
    .feature-icon-accent { color: var(--brand); }

    .step {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 1.1rem;
      row-gap: 0.4rem;
      align-items: baseline;
    }
    .step h3, .step p { grid-column: 2; }
    .step-num {
      grid-row: 1;
      align-self: baseline;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2.1rem;
      padding: 0.3rem 0.6rem;
      background: color-mix(in srgb, var(--line) 45%, var(--bg));
      border-radius: 8px;
      font-family: var(--display);
      font-weight: 600;
      font-size: 0.9rem;
      line-height: 1;
      letter-spacing: -0.025em;
      color: var(--muted);
      font-variant-numeric: tabular-nums;
    }

    /* ---------- PRICING TABS (per grader) ---------- */
    .pricing-tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.8rem;
    }
    .pricing-tab {
      background: var(--bg-soft);
      border: 1px solid var(--line-strong);
      color: var(--muted);
      padding: 0.55rem 1.2rem;
      border-radius: 16px;
      font-family: var(--display);
      font-weight: 500;
      font-size: 0.92rem;
      letter-spacing: -0.01em;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s, background-color 0.2s;
    }
    .pricing-tab:hover { border-color: var(--muted); color: var(--ink); }
    .pricing-tab.active {
      background: var(--accent);
      color: var(--ink);
      border-color: var(--accent);
    }
    .pricing-panels {
      background: var(--bg-soft);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 0 1.4rem;
    }
    .pricing-panel { display: none; }
    .pricing-panel.active { display: block; }
    .grader-intro {
      padding: 1.4rem 0 1rem;
      position: relative;
    }
    .grader-logo {
      position: absolute;
      top: 1.4rem;
      right: 0;
      width: 60px;
      height: 30px;
      object-fit: contain;
      color: var(--muted);
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .grader-logo:hover { opacity: 1; }
    .grader-intro .label { display: block; margin-bottom: 0.5rem; }
    .grader-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }
    .grader-link-icon {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0.45;
      transition: opacity 0.2s, transform 0.2s, color 0.2s;
    }
    .grader-link:hover { color: var(--brand); }
    .grader-link:hover .grader-link-icon { opacity: 1; transform: translate(2px, -2px); color: var(--brand); }
    .grader-intro h3 {
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.4rem;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }
    .grader-intro p {
      font-size: 0.96rem;
      color: var(--muted);
      max-width: 60ch;
    }
    .pricing-table-wrap {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 0.4rem 1.4rem;
      margin-bottom: 1.5rem;
    }
    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
    }
    .pricing-table th,
    .pricing-table td {
      padding: 0.95rem 0.5rem;
      text-align: left;
      border-bottom: 1px solid var(--line);
      font-size: 0.96rem;
      vertical-align: baseline;
    }
    .pricing-table th {
      font-family: var(--display);
      font-weight: 500;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      border-bottom-color: var(--line-strong);
      padding-bottom: 0.75rem;
    }
    /* fixed column widths so layout doesn't shift between graders */
    .pricing-table th:nth-child(1), .pricing-table td:nth-child(1) { width: 30%; }
    .pricing-table th:nth-child(2), .pricing-table td:nth-child(2) { width: 28%; }
    .pricing-table th:nth-child(3), .pricing-table td:nth-child(3) { width: 22%; }
    .pricing-table th:nth-child(4), .pricing-table td:nth-child(4) { width: 20%; padding-right: 0; }
    /* price column: header inherits standard th style, only cells get bold ink */
    .pricing-table th.col-price { text-align: right; }
    .pricing-table td.col-price {
      text-align: right;
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.05rem;
      white-space: nowrap;
      color: var(--ink);
      font-variant-numeric: tabular-nums;
    }
    .pricing-table td.col-tier { font-weight: 500; color: var(--ink); }
    .pricing-table td.col-value, .pricing-table td.col-tat { color: var(--muted); font-variant-numeric: tabular-nums; }
    .pricing-table tr:last-child td { border-bottom: 0; }

    /* ---------- LEGACY TIER CARDS (kept for reference, unused) ---------- */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(1.2rem, 2.5vw, 2rem);
    }
    .tier {
      position: relative;
      background: var(--card);
      border: 1px solid var(--line-strong);
      border-radius: 12px;
      padding: clamp(1.4rem, 2.8vw, 2.1rem);
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }
    .tier-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-family: var(--display);
      font-weight: 500;
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brand);
      background: var(--bg);
      border: 1px solid color-mix(in srgb, var(--brand) 30%, var(--line-strong));
      padding: 0.3rem 0.6rem;
      border-radius: 999px;
    }
    .tier .tier-name {
      font-family: var(--display);
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: -0.02em;
    }
    .tier .tier-vol {
      font-size: 0.85rem;
      color: var(--muted);
    }
    .tier .tier-price {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(1.7rem, 3.2vw, 2.2rem);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .tier .tier-price span {
      font-family: var(--body);
      font-weight: 500;
      font-size: 0.88rem;
      color: var(--muted);
      letter-spacing: 0;
      margin-left: 0.4rem;
    }
    .tier ul {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      color: var(--muted);
      font-size: 0.9rem;
    }
    .tier li { display: flex; gap: 0.6rem; align-items: baseline; }
    .tier li::before {
      content: "";
      flex-shrink: 0;
      width: 14px;
      height: 14px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%235a7a5e' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 7 6 10 11 4'/%3E%3C/svg%3E") no-repeat center / contain;
      transform: translateY(2px);
    }
    .pricing-note {
      grid-column: 1 / -1;
      font-size: 0.82rem;
      line-height: 1.55;
      color: var(--muted);
      margin: 1rem auto 0;
      max-width: 62ch;
      text-align: center;
    }

    /* ---------- AUTHENTICATE ---------- */
    .auth {
      background: var(--bg-soft);
      color: var(--ink);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: clamp(1.8rem, 4vw, 2.6rem);
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: clamp(1.5rem, 3.5vw, 2.6rem);
      align-items: center;
    }
    .auth > div { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
    .auth .label { display: block; margin-bottom: 0.35rem; }
    .auth p {
      color: var(--muted);
      max-width: 44ch;
      font-size: 0.92rem;
      line-height: 1.55;
      margin: 0;
    }
    .auth-form {
      display: flex;
      gap: 0.6rem;
      align-items: stretch;
      width: 100%;
    }
    .auth-form input {
      flex: 1;
      min-width: 0;
      background: var(--bg);
      border: 1px solid var(--line-strong);
      border-radius: 10px;
      padding: 0.85rem 1.1rem;
      color: var(--ink);
      font: inherit;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .auth-form input::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); }
    .auth-form input:hover { border-color: var(--muted); }
    .auth-form input:focus {
      border-color: var(--brand);
      background: var(--card);
      box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
    }
    .auth-form .btn {
      padding: 0 1.4rem;
      font-size: 0.92rem;
      white-space: nowrap;
    }
    .auth-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; min-height: 1.2em; }

    /* ---------- CONTACT / FORM ---------- */
    .contact { border-top: 1px solid var(--line); }
    .contact-sub { color: var(--muted); margin-top: 1rem; max-width: 46ch; font-size: 0.92rem; }

    .form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem 1.2rem;
      max-width: 40rem;
    }
    .field { display: flex; flex-direction: column; gap: 0.45rem; }
    .field-full { grid-column: 1 / -1; }
    .field label {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--muted);
    }
    .field .opt { font-weight: 400; }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      background-color: var(--bg-soft);
      border: 1px solid var(--line-strong);
      border-radius: 10px;
      padding: 0.78rem 0.95rem;
      font-family: var(--body);
      font-size: 1rem;
      color: var(--ink);
      transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    }
    .field input:focus,
    .field textarea:focus,
    .field select:focus { background-color: var(--card); }
    .field textarea { resize: vertical; min-height: 5rem; line-height: 1.5; }
    .field select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%236c6a66' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.4rem;
      cursor: pointer;
    }
    .field input::placeholder,
    .field textarea::placeholder {
      color: color-mix(in srgb, var(--muted) 65%, transparent);
    }
    .field input:hover,
    .field textarea:hover,
    .field select:hover { border-color: var(--muted); }
    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      outline: none;
      border-color: var(--brand);
      box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
    }
    .field input:focus-visible,
    .field textarea:focus-visible,
    .field select:focus-visible { outline: none; }

    .form-foot {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      margin-top: 0.6rem;
    }
    .form-foot .btn { padding: 0.85rem 1.6rem; font-size: 0.92rem; }
    .form-note { font-size: 0.82rem; color: var(--muted); }

    /* ---------- FOOTER ---------- */
    .footer {
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
    }
    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: clamp(2rem, 3.5vw, 3rem) var(--pad);
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: clamp(1.6rem, 4vw, 3rem);
    }
    .footer-brand { max-width: 36ch; }
    .footer-brand .wordmark { display: inline-block; margin-bottom: 1.1rem; }
    .footer-brand p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.2rem; }
    .footer-location { margin-bottom: 1.2rem; }
    .footer-location-toggle {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font: inherit;
      color: var(--muted);
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.2s;
    }
    .footer-location-toggle:hover { color: var(--ink); }
    .footer-location-chevron {
      width: 12px;
      height: 12px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.2s;
    }
    .footer-location-toggle[aria-expanded="true"] .footer-location-chevron {
      transform: rotate(180deg);
    }
    .footer-contact-content {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      margin-top: 0.7rem;
    }
    .footer-contact-content[hidden] { display: none; }
    .footer-brand .footer-contact-content > * {
      margin: 0;
      font-size: 0.85rem;
      line-height: 1.5;
    }
    .footer-legal-name { color: var(--muted); }
    .footer-contact-content .footer-mail { align-self: flex-start; }
    .footer-address {
      font-style: normal;
      color: var(--muted);
      font-size: 0.85rem;
      line-height: 1.5;
      margin: 0;
    }
    .footer-mail {
      font-size: 0.9rem;
      border-bottom: 1px solid var(--ink);
      padding-bottom: 2px;
      transition: opacity 0.2s;
    }
    .footer-mail:hover { opacity: 0.6; }

    .footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col-title {
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }
    .footer-col a { font-size: 0.88rem; color: var(--muted); width: fit-content; transition: color 0.2s; }
    .footer-col a:hover { color: var(--ink); }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid var(--line);
      font-size: 0.75rem;
      color: var(--muted);
    }
    .footer-bottom-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad) 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
    .footer-top-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .footer-top-link span { transition: transform 0.2s; }
    .footer-top-link:hover { color: var(--ink); }
    .footer-top-link:hover span { transform: translateY(-3px); }
    .footer-legal { display: inline-flex; gap: 0.45rem; }
    .footer-legal a { text-decoration: none; }
    .footer-legal a:hover { color: var(--ink); }

    /* ---------- ENTRANCE ---------- */
    @keyframes rise {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: none; }
    }
    .fade {
      animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
      animation-delay: calc(var(--d, 0) * 90ms);
    }

    /* ---------- POLISH ---------- */
        .reg {
      font-size: 0.55em;
      color: var(--line-strong);
      vertical-align: super;
      font-weight: 400;
      margin-left: 0.25em;
      line-height: 0;
    }
    .brand-tail { color: var(--brand); font-weight: 400; }
    .ext-icon {
      width: 10px;
      height: 10px;
      margin-left: 0.35em;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0.45;
      vertical-align: baseline;
      transition: opacity 0.2s, transform 0.2s;
    }
    .footer-col a:hover .ext-icon { opacity: 1; transform: translate(2px, -2px); }
    ::selection { background: var(--brand); color: var(--bg); }

    :focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
    .btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--ink); }
    a:focus-visible { outline-offset: 4px; }
    .auth .btn:focus-visible { box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--bg); }

    html { scroll-padding-top: 5rem; }
    h1, h2 { text-wrap: balance; }
    .step-num, .tier-price, .slab-grade, .auth-form input { font-variant-numeric: tabular-nums; }

    /* wordmark: brand cohesion on hover */
    .wordmark span { transition: color 0.25s; }
    .wordmark:hover span { color: var(--ink); }

    /* card "noticed" state · subtle attention, no fake interactivity */
    .item { transition: border-color 0.25s, background-color 0.25s, box-shadow 0.25s; }
    .item:hover {
      border-color: var(--line-strong);
      background: var(--card);
      box-shadow: 0 8px 22px -12px rgba(24, 24, 27, 0.14);
    }

    /* form: label snaps to ink while field is focused */
    .field label { transition: color 0.2s; }
    .field:focus-within label { color: var(--ink); }

    /* hero slab: straightens to vertical on hover */
    .slab { transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1); }
    .hero-visual:hover .slab { transform: rotate(0deg); }

    /* pricing tiers: border darkens on hover (these have CTAs inside) */
    .tier { transition: border-color 0.25s, transform 0.25s, box-shadow 0.35s; }
    .tier:hover {
      border-color: var(--muted);
      transform: translateY(-2px);
      box-shadow: 0 18px 38px -24px rgba(28, 26, 23, 0.22);
    }
    .tier:hover .btn-ghost { border-color: var(--muted); }
    .tier .btn::after {
      content: "→";
      display: inline-block;
      margin-left: 0.4rem;
      transition: transform 0.2s;
    }
    .tier:hover .btn::after { transform: translateX(3px); }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 880px) {
      /* nav → mobile menu */
      .nav-inner { gap: 1rem; }
      .nav-links, .nav-cta { display: none; }
      .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        background: none;
        border: 0;
        cursor: pointer;
        padding: 8px;
        margin-left: auto;
        width: 40px;
        height: 40px;
      }
      .nav-toggle span {
        display: block;
        width: 20px;
        height: 1.5px;
        background: var(--ink);
        transition: transform 0.25s;
      }
      .nav-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(3.5px) rotate(45deg);
      }
      .nav-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
      }
      .nav-mobile {
        display: flex;
        flex-direction: column;
        padding: 0 var(--pad);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
      }
      .nav-mobile.open {
        max-height: 80vh;
        padding: 0.2rem var(--pad) 1.4rem;
        overflow-y: auto;
      }
      .nav-mobile > a {
        font-family: var(--display);
        font-weight: 500;
        font-size: 1.05rem;
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--line);
        color: var(--muted);
        transition: color 0.2s;
      }
      .nav-mobile > a:hover { color: var(--ink); }
      .nav-mobile > a.btn {
        background: transparent;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        padding: 0.85rem 0;
        margin: 0;
        align-self: stretch;
        justify-content: flex-start;
        font-family: var(--display);
        font-weight: 500;
        font-size: 1.05rem;
        color: var(--muted);
      }
      .nav-mobile > a.btn:hover {
        transform: none;
        opacity: 1;
        color: var(--ink);
      }
      .nav-mobile > a:last-child { border-bottom: 0; }
      /* hero → single column, visual hidden */
      .hero-inner { grid-template-columns: 1fr; }
      .hero {
        padding-top: clamp(2.4rem, 6vw, 4.5rem);
        padding-bottom: clamp(2rem, 5vw, 4rem);
      }
      .hero-visual { display: none; }
      /* grids → single column */
      .grid-2 { grid-template-columns: 1fr; }
      .grid-3 { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .auth { grid-template-columns: 1fr; gap: 1.4rem; padding: 1.6rem; }
      /* footer */
      .footer-inner { grid-template-columns: 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      /* form */
      .form { grid-template-columns: 1fr; }
      .field input, .field textarea, .field select { padding: 0.85rem 1rem; font-size: 1rem; }
      .btn { padding: 0.85rem 1.5rem; }
      .form-foot .btn { width: 100%; justify-content: center; }
      .auth-form { flex-direction: column; }
      .auth-form .btn { width: 100%; padding: 0.85rem 1.4rem; justify-content: center; }
    }

    /* typewriter cycler (hero coverage: grader / speed / country) */
    .cycler {
      display: inline-block;
      position: relative;
      color: var(--brand);
    }
    .cycler::after {
      content: "";
      display: inline-block;
      width: 2px;
      height: 0.85em;
      background: currentColor;
      margin-left: 3px;
      vertical-align: middle;
      animation: caret-blink 0.75s steps(1, end) infinite;
    }
    @keyframes caret-blink {
      50% { opacity: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade { animation: none; }
      html { scroll-behavior: auto; }
      .slab,
      .hero-visual:hover .slab { transition: none; }
      .cycler::after { animation: none; }
    }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.15s;
}
.skip-link:focus { top: 1rem; }


.cf-turnstile { display: none; }

.accent-underline {
  background-image: linear-gradient(to top, var(--accent-soft) 38%, transparent 38%);
  padding: 0 0.1em;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
  background-color: var(--danger-soft);
}
.field input[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus,
.field select[aria-invalid="true"]:focus {
  outline-color: var(--danger);
  background-color: var(--card);
}
.field input[aria-invalid="true"] + .field-error,
.field-error { color: var(--danger); font-size: 0.78rem; }

/* ---------- CTA section ---------- */
.cta-section .section-head { margin-bottom: 1.4rem; }
.cta-actions { margin-top: 0; margin-bottom: 1.6rem; }
.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  gap: 0.5rem;
}
.btn-lg span { transition: transform 0.2s; display: inline-block; }
.btn-lg:hover span { transform: translateX(3px); }
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.2rem;
  row-gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
.cta-trust li:not(:last-child)::after {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--line-strong);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .cta-trust { flex-direction: column; align-items: flex-start; row-gap: 0.3rem; }
  .cta-trust li { gap: 0; }
  .cta-trust li::after { display: none; }
}

/* dedicated form page */
.register-page .nav { border-bottom-color: var(--line); }
.register-page .footer-bottom { border-top: 0; }

.back-link { margin-left: auto; color: var(--muted); }
.back-link:hover { color: var(--ink); }
.back-link span { color: var(--brand); }
.back-link:hover span { transform: translateX(-4px); }

/* nav-inner height parity */



.booking-section { padding-bottom: clamp(2rem, 4vw, 3rem); }


#calendly-widget { margin-top: 1.2rem; }

.booking-section .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.booking-section .section-head > * {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Exit-intent modal ---------- */
body.modal-open { overflow: hidden; }

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.exit-modal.visible { opacity: 1; pointer-events: auto; }
.exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 27, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.exit-modal-card {
  position: relative;
  background: var(--bg);
  border-radius: 16px;
  max-width: 32rem;
  width: 100%;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.22);
  transform: translateY(16px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.exit-modal.visible .exit-modal-card { transform: translateY(0); }
.exit-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  background: none;
  border: 0;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.exit-modal-close:hover { color: var(--ink); background: var(--bg-soft); }
.exit-modal-card .label { display: block; margin-bottom: 0.7rem; }
.exit-modal-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.exit-modal-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.3rem;
}
.exit-modal-list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}
.exit-modal-list li {
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.45;
}
.exit-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.exit-modal-cta { width: 100%; margin-bottom: 0.8rem; }
.exit-modal-dismiss {
  display: block;
  margin: 0 auto;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.55rem 0.9rem;
  transition: color 0.2s;
}
.exit-modal-dismiss:hover { color: var(--ink); }

@media (max-width: 880px) {
  .hero h1 { min-height: 2lh; }
}

@media (max-width: 600px) {
  .pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .pricing-table {
    min-width: 460px;
    table-layout: auto;
  }
  .pricing-table th,
  .pricing-table td { white-space: nowrap; }
}
