/* DollarFerry base styles */

:root {
  --bg: #ffffff;
  --hero: #efefef;
  --surface-2: #f5f5f5;
  --surface-3: #eeeeee;
  --line: #e6e6e6;
  --line-strong: #d8d8d8;

  --ink: #111827;          /* gray-900 — text & dark elements */
  --ink-soft: #1f2433;
  --text-2: #4b5563;
  --text-3: #8a8f99;

  --accent: #f26522;       /* orange */
  --accent-hover: #e05a1a;
  --accent-soft: #fdeee5;
  --accent-2: #ff5f03;     /* shader streak orange */
  --partner: #e8704e;

  --warn: #c2740b;
  --warn-soft: #fbf0db;
  --no: #d8503f;
  --no-soft: #fbe7e3;
  --ok: #1f7a4d;
  --ok-soft: #e7f3ec;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.14);

  --maxw: 1440px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  counter-reset: cpeb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent-hover); text-underline-offset: 3px; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 500; line-height: 1.1; letter-spacing: 0; margin: 0 0 .5em; }
h1 { font-size: clamp(1.75rem, 7vw, 4.2rem); line-height: 1.08; letter-spacing: 0; }
@media (min-width: 640px) { h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); } }
h2 { font-size: clamp(1.5rem, 4vw, 3.2rem); line-height: 1.12; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin: 0 0 1.05em; }

/* ---------- layout ---------- */
.cp-wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.cp-section { padding-block: clamp(64px, 9vw, 124px); }
.cp-section--tight { padding-block: clamp(40px, 6vw, 76px); }
.cp-grid { display: grid; gap: clamp(18px, 3vw, 30px); }
@media (min-width: 760px) { .cp-cols-2 { grid-template-columns: 1fr 1fr; } .cp-cols-3 { grid-template-columns: repeat(3, 1fr); } }
.cp-center { text-align: center; }

.cp-skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; }
.cp-skip:focus { left: 0; }

/* ---------- header: white pill nav ---------- */
.cp-header { position: sticky; top: 0; z-index: 60; }
.cp-header--float { position: absolute; top: 0; left: 0; right: 0; }
.cp-header__row {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: var(--radius-pill);
  padding: 7px 7px 7px 16px; margin-top: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.cp-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1.05rem; letter-spacing: 0; }
.cp-brand__mark { width: 36px; height: 36px; flex: none; }
.cp-brand b { font-weight: 700; }
.cp-nav { display: none; align-items: center; gap: 22px; margin-left: 14px; }
.cp-nav a { color: var(--ink); text-decoration: none; font-size: .95rem; transition: color .3s var(--ease); }
.cp-nav a:hover { color: var(--text-3); }
.cp-nav a[aria-current="page"] { color: var(--accent); }
.cp-header__cta { display: none; margin-left: auto; }
@media (min-width: 940px) { .cp-nav, .cp-header__cta { display: inline-flex; } }

.cp-menu-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cp-burger { margin-left: auto; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; cursor: pointer; }
.cp-burger svg { width: 20px; height: 20px; }
@media (min-width: 940px) { .cp-burger { display: none; } }
.cp-mobile { display: none; background: #fff; border-radius: var(--radius-lg); margin-top: 8px; padding: 8px clamp(16px, 4vw, 22px) calc(14px + env(safe-area-inset-bottom)); box-shadow: var(--shadow); }
.cp-menu-toggle:checked ~ .cp-mobile { display: block; }
@media (min-width: 940px) { .cp-mobile { display: none !important; } }
.cp-mobile a { display: flex; align-items: center; min-height: 50px; color: var(--ink); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--line); }
.cp-mobile a:last-child { border-bottom: 0; }
.cp-mobile .cp-btn { margin-top: 12px; }

/* ---------- buttons: pill + arrow circle, text-roll ---------- */
.cp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: .95rem; text-decoration: none; cursor: pointer;
  border: 0; border-radius: var(--radius-pill); padding: 11px 24px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.cp-btn:has(.cp-btn__a) { padding: 9px 10px 9px 22px; }
.cp-btn__t { overflow: hidden; height: 1.35em; display: inline-flex; }
.cp-btn__t span { display: block; height: 1.35em; line-height: 1.35em; transition: transform .5s var(--ease); }
.cp-btn:hover .cp-btn__t span { transform: translateY(-100%); }
.cp-btn__a { width: 30px; height: 30px; border-radius: 50%; display: inline-grid; place-items: center; flex: none; transition: transform .5s var(--ease); }
.cp-btn:hover .cp-btn__a { transform: rotate(-45deg); }
.cp-btn__a svg { width: 15px; height: 15px; }
.cp-btn--primary { background: var(--accent); color: #fff; }
.cp-btn--primary:hover { background: var(--accent-hover); }
.cp-btn--primary .cp-btn__a { background: #fff; color: var(--accent); }
.cp-btn--dark { background: var(--ink); color: #fff; }
.cp-btn--dark:hover { background: #000; }
.cp-btn--dark .cp-btn__a { background: #fff; color: var(--ink); }
.cp-btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); padding-block: 8px; }
.cp-btn--ghost:hover { border-color: var(--ink); }
.cp-btn--on-ink { background: #fff; color: var(--ink); }
.cp-btn--on-ink:hover { background: var(--accent); color: #fff; }
.cp-btn--sm { font-size: .88rem; padding: 9px 18px; }
.cp-btn--sm:has(.cp-btn__a) { padding: 7px 8px 7px 16px; }
.cp-btn--sm .cp-btn__a { width: 26px; height: 26px; }
.cp-btn--block { display: flex; justify-content: center; width: 100%; }
/* plain (no arrow) buttons keep min touch height */
.cp-btn { min-height: 44px; }

/* ---------- badges / chips ---------- */
.cp-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 500; padding: 6px 13px; border-radius: var(--radius-pill); background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.cp-tag--brand { background: var(--accent-soft); color: var(--accent-hover); box-shadow: none; }
.cp-tag--ink { background: #fff; color: var(--ink); }
.cp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.cp-stamp { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--text-3); font-family: var(--mono); }
.cp-stamp svg { width: 14px; height: 14px; opacity: .7; }

.cp-av { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .85rem; white-space: nowrap; }
.cp-av__i { width: 20px; height: 20px; border-radius: 50%; display: inline-grid; place-items: center; flex: none; font-size: .8rem; font-weight: 700; }
.cp-av--yes { color: var(--ok); } .cp-av--yes .cp-av__i { background: var(--ok-soft); }
.cp-av--part { color: var(--warn); } .cp-av--part .cp-av__i { background: var(--warn-soft); }
.cp-av--no { color: var(--no); } .cp-av--no .cp-av__i { background: var(--no-soft); }
.cp-av svg { width: 13px; height: 13px; }

/* ---------- hero ---------- */
.cp-hero { position: relative; overflow: hidden; background: var(--hero); min-height: 100svh; display: flex; flex-direction: column; }
.cp-hero::before {
  content: ""; position: absolute; inset: -25%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 55% at 22% 28%, rgba(255, 255, 255, 0.95), transparent 60%),
    radial-gradient(45% 60% at 78% 24%, rgba(255, 95, 3, 0.10), transparent 62%),
    radial-gradient(50% 60% at 65% 80%, rgba(255, 255, 255, 0.8), transparent 60%),
    conic-gradient(from 120deg at 60% 40%, #f3f3f3, #e9e9e9, #f6f6f6, #ededed, #f3f3f3);
  filter: blur(36px); opacity: .9;
  animation: cp-drift 26s var(--ease) infinite alternate;
}
.cp-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background:
    repeating-linear-gradient(59deg, rgba(255, 95, 3, 0.05) 0 2px, transparent 2px 26px),
    repeating-linear-gradient(59deg, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 14px);
  mask-image: linear-gradient(120deg, #000 10%, transparent 70%);
  animation: cp-streak 18s linear infinite;
}
@keyframes cp-drift { from { transform: translate3d(-3%, -2%, 0) rotate(0deg) scale(1.05); } to { transform: translate3d(3%, 2%, 0) rotate(8deg) scale(1.12); } }
@keyframes cp-streak { from { background-position: 0 0, 0 0; } to { background-position: 240px 0, 120px 0; } }
.cp-shader { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; pointer-events: none; opacity: 0; transition: opacity .7s var(--ease); }
.cp-shader[data-ready="1"] { opacity: 1; }
.cp-hero__inner { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-top: clamp(96px, 14vw, 140px); padding-bottom: clamp(48px, 8vw, 84px); }
.cp-hero__label { font-size: clamp(.8rem, 1.3vw, .9rem); letter-spacing: 0; color: var(--ink); margin-bottom: clamp(18px, 3vw, 30px); }
.cp-hero h1 { color: var(--ink); max-width: 16ch; overflow-wrap: break-word; }
.cp-hero h1 em { font-style: normal; color: var(--accent); }
.cp-lead { color: var(--text-2); font-size: clamp(1rem, 1.7vw, 1.18rem); max-width: 42ch; }
.cp-hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: clamp(28px, 4vw, 46px); }
.cp-hero__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 26px; color: var(--text-2); font-size: .86rem; }
.cp-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.cp-hero__trust svg { width: 16px; height: 16px; color: var(--accent); }
/* partner / trust badge */
.cp-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border-radius: 4px; padding: 8px 12px; box-shadow: 0 2px 8px rgba(0,0,0,.08); transition: box-shadow .3s var(--ease); }
.cp-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.cp-badge svg { width: 22px; height: 22px; color: var(--partner); fill: currentColor; }
.cp-badge__t { font-size: clamp(.81rem, 1.2vw, .875rem); font-weight: 500; color: var(--ink); }
.cp-badge__tag { background: var(--ink); color: #fff; font-size: .68rem; padding: 2px 8px; border-radius: 4px; }

/* virtual card visual */
.cp-card3d { perspective: 1200px; }
.cp-vcard { position: relative; aspect-ratio: 1.586/1; border-radius: 18px; padding: 22px; color: #fff; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; transform: rotate(-3deg); transition: transform .5s var(--ease);
  background: radial-gradient(120% 140% at 0% 0%, rgba(255,255,255,.28), transparent 42%), linear-gradient(135deg, #2b2b33 0%, #15151b 55%, #2a1a10 100%); }
.cp-card3d:hover .cp-vcard { transform: rotate(0) translateY(-4px); }
.cp-vcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.16) 50%, transparent 58%); }
.cp-vcard__top { display: flex; justify-content: space-between; font-size: .76rem; letter-spacing: 0; text-transform: uppercase; color: #d9d9e2; }
.cp-vcard__chip { width: 42px; height: 32px; border-radius: 7px; background: linear-gradient(135deg, #f7e6a8 0%, #cba45a 70%); position: relative; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.cp-vcard__chip::before { content: ""; position: absolute; inset: 6px 8px; border: 1px solid rgba(0,0,0,.18); border-radius: 3px; }
.cp-vcard__num { font-family: var(--mono); font-size: clamp(1rem, 2.4vw, 1.25rem); letter-spacing: 0; }
.cp-vcard__row { display: flex; justify-content: space-between; align-items: flex-end; font-size: .8rem; color: #e7e7ee; }
.cp-vcard__approved { position: absolute; top: 16px; right: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; background: var(--accent); color: #fff; padding: 5px 10px; border-radius: 999px; letter-spacing: 0; }

/* ---------- cards / panels ---------- */
.cp-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow-sm); }
.cp-card--flat { box-shadow: none; }
.cp-card h3 { margin-top: 0; }
/* section badge */
.cp-eyebrow {
  counter-increment: cpeb;
  display: flex; width: fit-content; align-items: center; gap: 9px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-pill);
  padding: 5px 16px 5px 5px;
  font-size: .82rem; font-weight: 500; color: var(--ink);
  margin: 0 0 clamp(24px, 3.4vw, 40px);
}
.cp-eyebrow::before {
  content: counter(cpeb);
  display: inline-grid; place-items: center; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: .78rem; font-weight: 600;
}
.cp-eyebrow--ink { color: var(--ink); }
.cp-kicker { color: var(--text-2); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 62ch; }

/* number badge + pill label rows */
.cp-step { position: relative; padding-left: 58px; }
.cp-steps { display: grid; gap: 18px; counter-reset: s; }
.cp-step::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: 2px; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 600; display: grid; place-items: center; }
.cp-step h3 { margin: 4px 0 4px; font-size: 1.12rem; }
.cp-step p { margin: 0; color: var(--text-2); }

.cp-feat { display: grid; gap: 12px; }
.cp-feat__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; margin-bottom: 10px; }
.cp-feat__icon svg { width: 22px; height: 22px; }

/* ---------- data table ---------- */
.cp-tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); background: #fff; -webkit-overflow-scrolling: touch; }
table.cp-table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: .94rem; }
.cp-table thead th { position: sticky; top: 0; background: var(--ink); color: #fff; text-align: left; font-weight: 600; font-size: .85rem; padding: 14px 16px; white-space: nowrap; }
.cp-table tbody th { text-align: left; font-weight: 600; color: var(--ink); }
.cp-table td, .cp-table th { padding: 13px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.cp-table tbody tr:nth-child(even) { background: var(--surface-2); }
.cp-table tbody tr:hover { background: var(--accent-soft); }
.cp-table caption { caption-side: bottom; text-align: left; color: var(--text-3); font-size: .84rem; padding: 12px 4px 0; }
.cp-fee { font-family: var(--mono); font-size: .86rem; color: var(--text-2); }

/* ---------- sponsored card ---------- */
.cp-spon { position: relative; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: #fff; padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow-sm); }
.cp-spon__label { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; letter-spacing: 0; color: var(--text-3); background: var(--surface-2); border: 1px solid var(--line); padding: 4px 9px; border-radius: 999px; }
.cp-spon__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.cp-spon__name { font-weight: 600; font-size: 1.15rem; display: flex; align-items: center; gap: 10px; }
.cp-prosCons { display: grid; gap: 16px; margin: 16px 0; }
@media (min-width: 620px) { .cp-prosCons { grid-template-columns: 1fr 1fr; } }
.cp-pc h4 { font-size: .82rem; letter-spacing: 0; margin: 0 0 8px; }
.cp-pc--pro h4 { color: var(--ok); } .cp-pc--con h4 { color: var(--warn); }
.cp-pc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.cp-pc li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--text-2); }
.cp-pc li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.cp-pc--pro li::before { content: "+"; color: var(--ok); }
.cp-pc--con li::before { content: "–"; color: var(--warn); }
.cp-spon__fine { font-size: .82rem; color: var(--text-3); margin: 10px 0 0; }

/* ---------- notes / toc / prose / faq ---------- */
.cp-note { border-left: 3px solid var(--accent); background: var(--accent-soft); padding: 14px 18px; border-radius: 0 12px 12px 0; color: #6b3110; font-size: .95rem; margin: 18px 0; }
.cp-note--warn { border-color: var(--warn); background: var(--warn-soft); color: #5a3c00; }
.cp-note strong { font-weight: 700; }

.cp-toc { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; }
.cp-toc h2 { font-size: .9rem; letter-spacing: 0; color: var(--text-3); margin: 0 0 10px; }
.cp-toc ol { margin: 0; padding-left: 20px; display: grid; gap: 6px; }
.cp-toc a { color: var(--text-2); text-decoration: none; }
.cp-toc a:hover { color: var(--accent-hover); text-decoration: underline; }

.cp-prose { font-size: 1.06rem; color: #23262e; }
.cp-prose h2 { margin-top: 1.7em; scroll-margin-top: 96px; }
.cp-prose h3 { margin-top: 1.4em; scroll-margin-top: 96px; }
.cp-prose ul, .cp-prose ol { padding-left: 22px; margin: 0 0 1.1em; }
.cp-prose li { margin-bottom: .4em; }
.cp-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; color: var(--text-3); font-size: .9rem; margin: 6px 0 26px; }
.cp-byline strong { color: var(--text-2); font-weight: 600; }

.cp-faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 12px; overflow: hidden; }
.cp-faq summary { cursor: pointer; list-style: none; padding: 16px 20px; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; gap: 14px; align-items: center; min-height: 44px; }
.cp-faq summary::-webkit-details-marker { display: none; }
.cp-faq summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); transition: transform .2s var(--ease); }
.cp-faq details[open] summary::after { transform: rotate(45deg); }
.cp-faq details > div { padding: 0 20px 18px; color: var(--text-2); }

/* country grid */
.cp-flags { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .cp-flags { grid-template-columns: repeat(4, 1fr); } }
.cp-flag { display: flex; align-items: center; gap: 11px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-decoration: none; color: var(--ink); min-height: 44px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.cp-flag:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.cp-flag span:first-child { line-height: 1; }
.cp-cc { display: inline-grid; place-items: center; width: 36px; height: 36px; flex: none; border-radius: 10px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: .82rem; font-weight: 600; letter-spacing: 0; }
.cp-flag b { font-weight: 600; font-size: .98rem; }
.cp-flag small { display: block; color: var(--text-3); font-size: .78rem; }

.cp-breadcrumb { font-size: .86rem; color: var(--text-3); padding-top: 24px; }
.cp-breadcrumb a { color: var(--text-2); text-decoration: none; }
.cp-breadcrumb a:hover { color: var(--accent-hover); }
.cp-hr { border: 0; border-top: 1px solid var(--line); margin: clamp(34px, 5vw, 60px) 0; }
.cp-list-check { list-style: none; padding: 0; margin: 0 0 1.1em; display: grid; gap: 10px; }
.cp-list-check li { position: relative; padding-left: 30px; color: var(--text-2); }
.cp-list-check li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e05a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* ---------- footer (dark gray-900) ---------- */
.cp-footer { background: var(--ink); color: #aab; padding-block: clamp(44px, 6vw, 72px) calc(28px + env(safe-area-inset-bottom)); margin-top: 24px; }
.cp-footer a { color: #e9eaee; text-decoration: none; }
.cp-footer a:hover { color: var(--accent); }
.cp-footer__top { display: grid; gap: 30px; }
@media (min-width: 820px) { .cp-footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.cp-footer h4 { color: #fff; font-size: .82rem; letter-spacing: 0; margin: 0 0 14px; }
.cp-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .94rem; }
.cp-footer__brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 1.1rem; text-decoration: none; }
.cp-footer__brand svg { width: 32px; height: 32px; }
.cp-footer__disc { font-size: .82rem; line-height: 1.6; color: #9aa0ad; max-width: 42ch; margin-top: 14px; }
.cp-footer__bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .84rem; }
.cp-langs { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.cp-langs a { font-size: .8rem; padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); }
.cp-langs a[aria-current="true"] { background: #fff; color: var(--ink); }
.cp-sponMini { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 16px 18px; }
.cp-sponMini .cp-spon__label { background: rgba(255,255,255,.06); color: #9aa0ad; border-color: rgba(255,255,255,.14); }
.cp-sponMini p { color: #9aa0ad; font-size: .88rem; margin: 10px 0 12px; }

:focus-visible { outline: 3px solid rgba(242, 101, 34, .5); outline-offset: 2px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) { *, .cp-hero::before, .cp-hero::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

@media (max-width: 420px) {
  .cp-wrap { padding-inline: 16px; }
  h1 { font-size: 1.65rem; }
  .cp-hero h1 { max-width: 18ch; }
  .cp-badge { width: 100%; justify-content: space-between; }
  .cp-header__row { gap: 10px; padding-left: 12px; }
}
