  :root {
    --eu-blue: #003399;
    --eu-blue-deep: #002878;
    --eu-blue-bright: #2552d9;
    --eu-blue-soft: #eef2fb;
    --eu-blue-soft-2: #dde5f6;
    --eu-yellow: #ffcc00;

    --ink: #0f172a;
    --ink-2: #334155;
    --ink-3: #475569;
    --muted: #64748b;
    --muted-2: #94a3b8;
    --line: #e6eaf2;
    --line-2: #d6dce8;
    --line-3: #c2cad8;
    --bg: #ffffff;
    --bg-2: #fafbfc;
    --bg-3: #f4f6fa;

    --green: #16a34a;
    --green-soft: #dcfce7;
    --green-line: #bbf7d0;
    --red: #b91c1c;
    --red-soft: #fee2e2;

    --shadow-sm: 0 1px 2px rgba(15,23,42,.04);
    --shadow-md: 0 4px 14px rgba(15,23,42,.06);
    --shadow-blue: 0 6px 20px rgba(0,51,153,.15);

    --radius: 10px;
    --radius-sm: 6px;
    --max: 1180px;

    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg-2);
    font-size: 16px; line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  ::selection { background: var(--eu-blue); color: #fff; }
  a { color: var(--eu-blue); text-decoration: none; }
  a:hover { text-decoration: underline; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

  .mono { font-family: var(--mono); font-feature-settings: "ss01", "cv11"; }
  .small-caps {
    font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.05em;
    color: var(--muted); text-transform: uppercase; font-weight: 600;
  }

  /* ─── Top stripe ─────────────────────────────────────── */
  .stripe {
    height: 3px;
    background: linear-gradient(90deg, var(--eu-blue) 0 80%, var(--eu-yellow) 80% 100%);
  }

  /* ─── Header ───────────────────────────────────────────── */
  header.site {
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    position: sticky; top: 0; z-index: 30;
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; gap: 24px;
  }
  .nav .left { display: flex; align-items: center; gap: 28px; }
  .brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1.05rem; color: var(--ink); letter-spacing: -0.01em;
  }
  .brand:hover { text-decoration: none; }
  .brand .mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 7px;
    background: var(--eu-blue); color: #fff; font-weight: 800; font-size: 0.78rem;
  }
  .brand .tld { color: var(--muted); font-weight: 500; }

  nav.primary { display: flex; align-items: center; gap: 24px; }
  nav.primary a { color: var(--ink-2); font-weight: 500; font-size: 0.92rem; }
  nav.primary a.active { color: var(--eu-blue); }
  nav.primary a:hover { color: var(--eu-blue); text-decoration: none; }

  .nav .right { display: flex; align-items: center; gap: 12px; }
  .status-pill {
    display: inline-flex; align-items: center; gap: 8px;
    height: 28px; padding: 0 12px;
    border: 1px solid var(--line-2); border-radius: 999px;
    background: var(--bg);
    font-family: var(--mono); font-size: 0.74rem; color: var(--ink-2);
  }
  .status-pill .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(22,163,74,.5);
    animation: pulse-green 2s infinite;
  }
  @keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); }
    70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
  }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 8px;
    font-weight: 600; font-size: 0.92rem;
    cursor: pointer; border: 1px solid transparent;
    transition: background .15s, border-color .15s, color .15s, transform .06s, box-shadow .15s;
    font-family: inherit; white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--eu-blue); color: #fff; box-shadow: var(--shadow-blue); }
  .btn-primary:hover { background: var(--eu-blue-deep); text-decoration: none; }
  .btn-ghost { background: var(--bg); color: var(--ink); border-color: var(--line-2); }
  .btn-ghost:hover { background: var(--bg-3); border-color: var(--line-3); text-decoration: none; }
  .btn .arrow { font-family: var(--mono); }

  /* ─── Page hero ───────────────────────────────────────── */
  .page-hero {
    padding: 48px 0 32px;
    background:
      radial-gradient(900px 280px at 30% -50px, rgba(0,51,153,.10), transparent 70%),
      var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 18px;
    font-size: 0.84rem; color: var(--muted); font-family: var(--mono);
    flex-wrap: wrap;
  }
  .breadcrumb a { color: var(--muted); }
  .breadcrumb a:hover { color: var(--eu-blue); text-decoration: none; }
  .breadcrumb .sep { color: var(--line-3); }
  .breadcrumb .current { color: var(--ink-2); }

  .ph-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 0.82rem;
    color: var(--eu-blue); margin-bottom: 14px;
    text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
  }
  .ph-eyebrow::before { content: "★"; color: var(--eu-yellow); font-size: 0.96rem; }

  .ph h1 {
    margin: 0; font-size: clamp(2.2rem, 4.4vw, 3rem);
    letter-spacing: -0.025em; line-height: 1.05; font-weight: 700;
    color: var(--ink); max-width: 820px;
  }
  .ph h1 .accent { color: var(--eu-blue); }
  .ph .lede {
    margin: 18px 0 0; max-width: 720px;
    font-size: 1.06rem; color: var(--ink-2); line-height: 1.6;
  }

  /* ─── Body ───────────────────────────────────────────── */
  .body {
    padding: 36px 0 64px;
  }
  .body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
  }

  /* ─── Form ──────────────────────────────────────────── */
  .form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }
  .form-section {
    padding: 32px;
    border-bottom: 1px solid var(--line);
  }
  .form-section:last-of-type { border-bottom: 0; }
  .form-section.alt { background: var(--bg-2); }

  .section-h {
    display: flex; align-items: center; gap: 14px;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }
  .section-h .num {
    font: 700 0.78rem var(--mono);
    background: var(--eu-blue); color: #fff;
    padding: 4px 10px; border-radius: 4px;
    letter-spacing: 0.04em;
  }
  .section-h h2 {
    margin: 0; font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em;
    color: var(--ink);
    flex: 1;
  }
  .section-h .help-link {
    font: 600 0.78rem var(--mono); color: var(--muted);
  }
  .section-h .help-link:hover { color: var(--eu-blue); text-decoration: none; }

  /* Form rows */
  .row {
    display: grid; gap: 18px;
    margin-bottom: 18px;
  }
  .row.col-2 { grid-template-columns: 1fr 1fr; }
  .row.col-2-1 { grid-template-columns: 2fr 1fr; }
  .row:last-child { margin-bottom: 0; }

  .form-section > .field + .field,
  .form-section > .help { margin-top: 18px; }
  .form-section > .help {
    font-size: 0.84rem; color: var(--muted); line-height: 1.5; margin-bottom: 0;
  }
  .form-section > .help a { color: var(--eu-blue); border-bottom: 1px dashed var(--eu-blue-soft-2); }
  .form-section > .help a:hover { background: var(--eu-blue-soft); text-decoration: none; }

  .field { display: flex; flex-direction: column; gap: 6px; }
  .field label {
    font-weight: 600; font-size: 0.92rem; color: var(--ink);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .field label .req {
    font-family: var(--mono); color: var(--red); font-size: 0.86rem; font-weight: 700;
  }
  .field label .opt {
    font-family: var(--mono); color: var(--muted-2); font-size: 0.74rem;
    text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500;
  }
  .field .help {
    font-size: 0.84rem; color: var(--muted); line-height: 1.5;
  }
  .field .help a { color: var(--eu-blue); border-bottom: 1px dashed var(--eu-blue-soft-2); }
  .field .help a:hover { background: var(--eu-blue-soft); text-decoration: none; }

  .input, .textarea, .select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    background: var(--bg);
    color: var(--ink);
    font: 0.96rem var(--sans);
    line-height: 1.4;
    transition: border-color .12s, box-shadow .12s, background .12s;
  }
  .input:hover, .textarea:hover, .select:hover { border-color: var(--line-3); }
  .input:focus, .textarea:focus, .select:focus {
    outline: 0; border-color: var(--eu-blue);
    box-shadow: 0 0 0 4px rgba(0,51,153,.10);
    background: #fff;
  }
  .input::placeholder, .textarea::placeholder { color: var(--muted-2); }
  .textarea { resize: vertical; min-height: 110px; line-height: 1.55; font-family: inherit; }
  .select {
    appearance: none; -webkit-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    cursor: pointer;
  }

  /* Input with prefix (e.g. https://) */
  .input-grp {
    display: flex; align-items: stretch;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    background: var(--bg);
    overflow: hidden;
    transition: border-color .12s, box-shadow .12s;
  }
  .input-grp:hover { border-color: var(--line-3); }
  .input-grp:focus-within {
    border-color: var(--eu-blue);
    box-shadow: 0 0 0 4px rgba(0,51,153,.10);
    background: #fff;
  }
  .input-grp .prefix {
    display: inline-flex; align-items: center;
    padding: 0 12px;
    background: var(--bg-3);
    border-right: 1px solid var(--line-2);
    font: 600 0.86rem var(--mono);
    color: var(--muted);
  }
  .input-grp input {
    flex: 1; padding: 10px 14px;
    border: 0; outline: 0; background: transparent;
    font: 0.96rem var(--sans); color: var(--ink);
  }
  .input-grp input::placeholder { color: var(--muted-2); }

  /* Char count */
  .field .meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 4px;
    font: 0.78rem var(--mono); color: var(--muted);
  }
  .field .meta .count strong { color: var(--ink); }

  /* Toggle */
  .toggle-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg);
    cursor: pointer;
    transition: background .12s, border-color .12s;
  }
  .toggle-row:hover { background: var(--bg-3); border-color: var(--line-3); }
  .toggle-row.on { border-color: var(--eu-blue-soft-2); background: var(--eu-blue-soft); }
  .toggle-row .info { flex: 1; min-width: 0; }
  .toggle-row .info-h {
    font-weight: 600; font-size: 0.94rem; color: var(--ink);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .toggle-row .info-help {
    font-size: 0.84rem; color: var(--muted); margin-top: 2px; line-height: 1.45;
  }
  .toggle-row.on .info-h { color: var(--eu-blue); }
  .switch {
    width: 36px; height: 20px;
    background: var(--line-2); border-radius: 999px;
    position: relative; flex: none;
    transition: background .15s;
  }
  .switch::after {
    content: ""; position: absolute; top: 2px; left: 2px;
    width: 16px; height: 16px; border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    transition: left .15s;
  }
  .toggle-row.on .switch { background: var(--eu-blue); }
  .toggle-row.on .switch::after { left: 18px; }

  /* Tag/chip input for "replaces" */
  .chip-input {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 8px 10px;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    background: var(--bg);
    transition: border-color .12s, box-shadow .12s;
    cursor: text;
    min-height: 44px;
  }
  .chip-input:hover { border-color: var(--line-3); }
  .chip-input:focus-within {
    border-color: var(--eu-blue);
    box-shadow: 0 0 0 4px rgba(0,51,153,.10);
    background: #fff;
  }
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 4px 4px 12px;
    background: var(--eu-blue-soft);
    border: 1px solid var(--eu-blue-soft-2);
    border-radius: 999px;
    font: 500 0.86rem var(--sans);
    color: var(--eu-blue);
  }
  .chip .x {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(0,51,153,.12);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 0.74rem; color: var(--eu-blue);
    cursor: pointer;
  }
  .chip .x:hover { background: var(--eu-blue); color: #fff; }
  .chip-input input {
    flex: 1; min-width: 100px;
    border: 0; outline: 0; background: transparent;
    font: 0.92rem var(--sans);
    color: var(--ink);
    padding: 4px 6px;
  }
  .chip-input input::placeholder { color: var(--muted-2); }

  /* Radio cards (for relation to product) */
  .radio-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  }
  .radio-card {
    border: 1px solid var(--line-2);
    border-radius: 8px;
    padding: 12px 14px;
    background: var(--bg);
    cursor: pointer;
    transition: background .12s, border-color .12s;
    display: flex; align-items: start; gap: 10px;
  }
  .radio-card:hover { background: var(--bg-3); border-color: var(--line-3); }
  .radio-card.selected {
    background: var(--eu-blue-soft); border-color: var(--eu-blue); color: var(--eu-blue);
  }
  .radio-card .dot {
    width: 16px; height: 16px; border-radius: 50%; flex: none;
    border: 1.5px solid var(--line-3); background: #fff;
    margin-top: 2px;
    transition: border-color .12s, background .12s;
  }
  .radio-card.selected .dot {
    border-color: var(--eu-blue);
    background: var(--eu-blue);
    box-shadow: inset 0 0 0 3px #fff;
  }
  .radio-card .info { flex: 1; min-width: 0; }
  .radio-card .lbl { font-weight: 600; font-size: 0.92rem; line-height: 1.2; color: var(--ink); }
  .radio-card.selected .lbl { color: var(--eu-blue); }
  .radio-card .desc { font-size: 0.8rem; color: var(--muted); margin-top: 4px; line-height: 1.4; }

  /* Checkbox row (terms) */
  .checkbox-row {
    display: flex; align-items: start; gap: 10px;
    padding: 12px 0;
    cursor: pointer;
  }
  .checkbox-row .check {
    width: 18px; height: 18px; border-radius: 4px;
    border: 1.5px solid var(--line-3);
    background: var(--bg);
    flex: none; margin-top: 2px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .12s, border-color .12s;
  }
  .checkbox-row.checked .check { background: var(--eu-blue); border-color: var(--eu-blue); }
  .checkbox-row.checked .check::after {
    content: ""; width: 8px; height: 5px;
    border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
  }
  .checkbox-row .lbl {
    font-size: 0.92rem; color: var(--ink-2); line-height: 1.5;
  }
  .checkbox-row .lbl strong { color: var(--ink); font-weight: 600; }
  .checkbox-row .lbl a { color: var(--eu-blue); font-weight: 500; }
  .checkbox-row .lbl a:hover { text-decoration: underline; }

  /* hCaptcha placeholder */
  .captcha {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--line-2);
    border-radius: 8px;
    max-width: 320px;
  }
  .captcha .left {
    display: flex; align-items: center; gap: 12px;
  }
  .captcha .check-box {
    width: 22px; height: 22px;
    border: 1.5px solid var(--line-3);
    border-radius: 4px;
    background: var(--bg);
    flex: none;
  }
  .captcha .text {
    font-weight: 500; color: var(--ink); font-size: 0.92rem;
  }
  .captcha .brand-mini {
    text-align: right;
  }
  .captcha .brand-mini .name {
    font: 700 0.74rem var(--sans); color: var(--ink);
  }
  .captcha .brand-mini .legal {
    font: 0.66rem var(--mono); color: var(--muted-2); margin-top: 2px;
  }

  /* Submit footer */
  .submit-foot {
    padding: 24px 32px;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .submit-foot .left-help {
    font: 0.86rem var(--mono); color: var(--muted);
  }
  .submit-foot .left-help strong { color: var(--ink-2); font-weight: 600; }
  .submit-foot .actions {
    display: inline-flex; gap: 10px;
  }
  .btn-submit {
    padding: 12px 22px;
    font-size: 0.96rem;
  }

  /* ─── Live preview card ───────────────────────────── */
  .preview-card .preview-sub {
    font-size: 0.78rem; color: var(--muted);
    margin: -6px 0 14px;
  }
  .preview-card .listing.is-preview {
    display: flex; flex-direction: column; gap: 12px;
    padding: 16px;
    border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff; color: var(--ink);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
  }
  .preview-card .listing-head { display: flex; gap: 12px; align-items: center; }
  .preview-card .listing-logo {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--eu-blue-soft); color: var(--eu-blue);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; letter-spacing: -0.02em;
    flex: none;
    border: 1px solid var(--eu-blue-soft-2);
    transition: color .15s, background .15s;
  }
  .preview-card .listing-logo[data-empty] { color: var(--muted-2); background: var(--bg-3); border-color: var(--line); }
  .preview-card .listing-id { min-width: 0; }
  .preview-card .listing-name {
    font-weight: 600; font-size: 0.96rem; line-height: 1.2; color: var(--ink);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .preview-card .listing-name[data-empty] { color: var(--muted-2); font-weight: 500; }
  .preview-card .listing-cat {
    font: 0.74rem var(--mono); color: var(--muted); margin-top: 3px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .preview-card .listing-cat[data-empty] { color: var(--muted-2); }
  .preview-card .listing-tag {
    margin: 0;
    font-size: 0.86rem; color: var(--ink-2); line-height: 1.45;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: 2.5em;
  }
  .preview-card .listing-tag[data-empty] { color: var(--muted-2); font-style: italic; }
  .preview-card .listing-foot {
    margin-top: 2px;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    padding-top: 10px; border-top: 1px dashed var(--line);
  }
  .preview-card .flag {
    display: inline-flex; align-items: center; gap: 6px;
    font: 0.78rem var(--mono); color: var(--ink-2); font-weight: 500;
  }
  .preview-card .flag .swatch {
    width: 18px; height: 13px; border-radius: 2px; overflow: hidden;
    border: 1px solid rgba(15,23,42,.08); flex: none;
    background-size: 100% 100%; background-position: center;
  }
  .preview-card .flag .swatch-empty { background: var(--bg-3); }
  .preview-card .badge {
    display: inline-flex; align-items: center;
    font-size: 0.7rem; font-weight: 600;
    padding: 2px 8px; border-radius: 999px;
    background: var(--bg-3); color: var(--ink-2);
    border: 1px solid var(--line);
  }
  .preview-card .badge.dpa { background: var(--eu-blue-soft); color: var(--eu-blue); border-color: var(--eu-blue-soft-2); }
  .preview-card .badge[hidden] { display: none; }

  /* ─── Sidebar ──────────────────────────────────────── */
  .sidebar {
    display: flex; flex-direction: column; gap: 14px;
    align-self: start;
    position: sticky;
    top: 88px;
  }

  .side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
  }
  .side-card.accent {
    background:
      radial-gradient(400px 120px at 90% -20%, rgba(0,51,153,.08), transparent 70%),
      #fff;
    border-color: var(--eu-blue-soft-2);
    position: relative;
    overflow: hidden;
  }
  .side-card.accent::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--eu-blue) 0 80%, var(--eu-yellow) 80% 100%);
  }
  .side-h {
    display: flex; justify-content: space-between; align-items: center;
    margin: 0 0 14px;
    font: 700 0.94rem var(--sans); color: var(--ink);
  }
  .side-h .small-caps { color: var(--muted); }

  .timeline {
    display: flex; flex-direction: column; gap: 12px;
    position: relative;
  }
  .timeline::before {
    content: ""; position: absolute;
    top: 14px; bottom: 14px; left: 11px;
    width: 2px; background: var(--line-2);
  }
  .timeline-step {
    display: flex; gap: 12px; align-items: start;
    position: relative;
  }
  .timeline-step .dot {
    width: 24px; height: 24px; flex: none;
    border-radius: 50%;
    background: var(--bg-3);
    border: 1.5px solid var(--line-3);
    color: var(--muted);
    display: inline-flex; align-items: center; justify-content: center;
    font: 700 0.74rem var(--mono);
    z-index: 1;
  }
  .timeline-step.done .dot {
    background: var(--green-soft); border-color: var(--green-line); color: #15803d;
  }
  .timeline-step.active .dot {
    background: var(--eu-blue); border-color: var(--eu-blue); color: #fff;
  }
  .timeline-step .body {
    flex: 1; min-width: 0; padding-top: 1px;
  }
  .timeline-step .body strong {
    font-size: 0.92rem; color: var(--ink); font-weight: 600;
    display: block; line-height: 1.2;
  }
  .timeline-step .body span {
    display: block; margin-top: 2px;
    font: 0.78rem var(--mono); color: var(--muted);
  }

  /* Prepare list */
  .prepare-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .prepare-list li {
    display: flex; gap: 10px; align-items: start;
    font-size: 0.88rem; color: var(--ink-2); line-height: 1.5;
  }
  .prepare-list li::before {
    content: ""; width: 16px; height: 16px; border-radius: 4px;
    background: var(--eu-blue-soft); border: 1px solid var(--eu-blue-soft-2);
    flex: none; margin-top: 2px;
  }

  /* Criteria mini reminder */
  .crit-mini {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .crit-mini li {
    display: flex; gap: 10px; align-items: start;
  }
  .crit-mini li .check {
    width: 22px; height: 22px; flex: none;
    border-radius: 50%;
    background: var(--green-soft); color: #15803d;
    border: 1px solid var(--green-line);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .crit-mini li .check svg { width: 11px; height: 11px; }
  .crit-mini li .info { flex: 1; min-width: 0; }
  .crit-mini li .info strong {
    font-size: 0.88rem; color: var(--ink); font-weight: 600; line-height: 1.2;
  }
  .crit-mini li .info p {
    margin: 2px 0 0; font-size: 0.8rem; color: var(--muted); line-height: 1.4;
  }
  .side-card .foot-link {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--line-2);
    display: flex; justify-content: space-between; align-items: center;
    font: 0.84rem var(--mono);
  }
  .side-card .foot-link a {
    color: var(--eu-blue); font-weight: 600;
  }

  /* ─── Footer ────────────────────────────────────────────── */
  footer.site {
    background: #0b1226; color: #cbd5e1;
    padding: 56px 0 32px;
  }
  footer.site a { color: #cbd5e1; }
  footer.site a:hover { color: #fff; text-decoration: none; }
  .foot-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px; margin-bottom: 32px;
  }
  .foot-brand .brand { color: #fff; }
  .foot-brand .brand .tld { color: #94a3b8; }
  .foot-brand p {
    color: #94a3b8; font-size: 0.88rem; max-width: 320px; margin: 14px 0 0; line-height: 1.6;
  }
  .foot-col h4 {
    font: 600 0.74rem var(--mono); text-transform: uppercase; letter-spacing: 0.06em;
    color: #94a3b8; margin: 0 0 14px;
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; }
  .foot-col li { margin-bottom: 9px; }
  .foot-col a { font-size: 0.92rem; }
  .foot-bar {
    border-top: 1px solid #1e293b; padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
    font-size: 0.84rem; color: #94a3b8; font-family: var(--mono);
  }

  /* ─── Responsive ────────────────────────────────────────── */
  @media (max-width: 1000px) {
    nav.primary { display: none; }
    .status-pill { display: none; }
    .body-grid { grid-template-columns: 1fr; gap: 24px; }
    .sidebar { position: static; }
    .row.col-2, .row.col-2-1 { grid-template-columns: 1fr; }
    .radio-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .nav .right .btn-ghost { display: none; }
    .form-section { padding: 22px; }
    .submit-foot { padding: 20px 22px; flex-direction: column; align-items: stretch; }
    .submit-foot .actions { justify-content: stretch; }
    .submit-foot .actions .btn { flex: 1; justify-content: center; }
    .foot-grid { grid-template-columns: 1fr; gap: 24px; }
    .captcha { max-width: none; }
  }
