/* ═══════════════════════════════════════════════
   TesterPilot Landing — design system
   Tokens mirrored from testerpilot.com (home-v2)
   ═══════════════════════════════════════════════ */

:root {
    --ink:      #0A1017;
    --slate:    #55616D;
    --faint:    #8A94A0;
    --paper:    #FFFFFF;
    --mist:     #F5F7F8;
    --line:     #E6EAEE;
    --go:       #2563EB;
    --go-deep:  #1D4ED8;
    --go-tint:  #EFF6FF;
    --star:     #F0A50A;

    --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;

    --nav-h: 64px;
    --radius: 14px;
    --container: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.v2-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.v2-mono { font-family: var(--font-mono); letter-spacing: 0.04em; }
.v2-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--go);
    margin-bottom: 14px;
}
.v2-h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 14px;
}
.v2-lead { color: var(--slate); font-size: 17px; max-width: 640px; margin: 0 auto; }
.v2-link { color: var(--go); font-weight: 600; }
.v2-link:hover { color: var(--go-deep); text-decoration: underline; }
.v2-tagline { color: var(--faint); font-size: 11px; margin-top: 12px; }

/* ── Buttons ── */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    padding: 11px 20px;
    border: 1.5px solid transparent;
    transition: all .18s ease;
    white-space: nowrap;
}
.v2-btn--sm { padding: 8px 14px; font-size: 13.5px; border-radius: 10px; }
.v2-btn--lg { padding: 14px 26px; font-size: 16px; }
.v2-btn--block { width: 100%; }
.v2-btn--primary { background: var(--go); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 4px 14px rgba(37,99,235,.25); }
.v2-btn--primary:hover { background: var(--go-deep); transform: translateY(-1px); }
.v2-btn--ghost { background: var(--paper); color: var(--ink); border-color: var(--line); }
.v2-btn--ghost:hover { border-color: var(--ink); }

/* ── Stars ── */
.v2-stars { color: var(--star); letter-spacing: 2px; font-size: 15px; }
.v2-stars--sm { font-size: 12px; letter-spacing: 1px; }

/* ═══════════ NAV (floating pill) ═══════════ */
.nav {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    background: transparent;
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: 992px;
    height: var(--nav-h);
    padding: 0 8px 0 24px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 8px 24px -12px rgba(10,16,23,.14);
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-mark {
    width: 34px; height: 34px;
    background: transparent;
    object-fit: cover;
    border-radius: 9px;
}
.nav__logo-text { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.nav__logo-accent { color: var(--go); }
.nav__links { display: flex; gap: 26px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--slate); }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; gap: 10px; align-items: center; }
.nav__burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav__mobile {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: min(992px, 100%);
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 16px 24px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px -12px rgba(10,16,23,.14);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 10px 0; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile-cta { display: flex; gap: 10px; margin-top: 12px; }
.nav__mobile-cta .v2-btn { flex: 1; }

/* ═══════════ HERO ═══════════ */
.v2-hero { position: relative; overflow: hidden; padding: 128px 0 64px; }
.v2-hero__wash {
    position: absolute; inset: 0;
    background:
        radial-gradient(600px 300px at 85% -10%, rgba(37,99,235,.08), transparent 60%),
        radial-gradient(500px 260px at -5% 30%, rgba(37,99,235,.05), transparent 55%);
    pointer-events: none;
}
.v2-hero__grid { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.v2-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.4vw, 58px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 18px;
}
.v2-hero__title-go { color: var(--go); position: relative; white-space: nowrap; }
.v2-hero__sub { color: var(--slate); font-size: 17px; max-width: 540px; margin-bottom: 26px; }
.v2-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.v2-hero__fine { font-size: 13px; color: var(--faint); margin-bottom: 18px; }
.v2-hero__trust { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--slate); flex-wrap: wrap; }
.v2-hero__trust-item strong { color: var(--ink); }
.v2-hero__trust-sep { color: var(--line); font-weight: 700; }

/* Live track card */
.v2-track {
    background: var(--ink);
    color: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 24px 60px rgba(10,16,23,.35);
    position: relative;
    overflow: hidden;
}
.v2-track::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(37,99,235,.35), transparent 70%);
}
.v2-track__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.v2-track__tag { font-size: 10px; color: var(--faint); }
.v2-track__live {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-mono); font-size: 10px; font-weight: 600;
    color: #60A5FA; background: rgba(96,165,250,.12);
    padding: 4px 10px; border-radius: 999px;
}
.v2-track__live i { width: 7px; height: 7px; border-radius: 50%; background: #60A5FA; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.v2-track__app { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; margin-bottom: 14px; }
.v2-track__name { font-weight: 600; font-size: 15px; }
.v2-track__pkg { font-size: 11px; color: var(--faint); grid-column: 1; }
.v2-track__ver { font-size: 11px; color: #60A5FA; grid-column: 2; grid-row: 1 / span 2; align-self: center; background: rgba(96,165,250,.12); padding: 4px 10px; border-radius: 8px; }
.v2-track__hr { border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 16px; }
.v2-track__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v2-track__tile { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px 14px; }
.v2-track__meta { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; color: var(--faint); display: block; margin-bottom: 4px; }
.v2-track__val { font-family: var(--font-display); font-size: 26px; font-weight: 700; }
.v2-track__val small { font-size: 12px; color: var(--faint); font-family: var(--font-body); font-weight: 500; }
.v2-track__bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 999px; margin-top: 14px; overflow: hidden; }
.v2-track__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--go), #60A5FA); border-radius: 999px; }
.v2-track__grant {
    margin-top: 14px;
    display: flex; align-items: center; gap: 12px;
    background: rgba(96,165,250,.1);
    border: 1px solid rgba(96,165,250,.25);
    border-radius: 12px;
    padding: 12px 14px;
}
.v2-track__grant-ic {
    width: 30px; height: 30px; border-radius: 50%;
    background: #60A5FA; color: #172554;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.v2-track__grant-txt strong { font-size: 13.5px; }
.v2-track__grant-txt small { color: var(--faint); font-size: 11.5px; }

/* ═══════════ SECTIONS ═══════════ */
.v2-section { padding: 80px 0; }
.v2-section--mist { background: var(--mist); }
.v2-section__head { text-align: center; margin-bottom: 48px; }

/* Email card */
.email-card {
    max-width: 640px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10,16,23,.08);
}
.email-card__bar {
    display: flex; align-items: center; gap: 14px;
    background: var(--mist);
    border-bottom: 1px solid var(--line);
    padding: 12px 18px;
}
.email-card__dots { display: flex; gap: 6px; }
.email-card__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.email-card__dots i:nth-child(1) { background: #f87171; }
.email-card__dots i:nth-child(2) { background: #fbbf24; }
.email-card__dots i:nth-child(3) { background: #34d399; }
.email-card__from { font-size: 11px; color: var(--slate); }
.email-card__badge { margin-left: auto; font-size: 10px; font-family: var(--font-mono); background: var(--go-tint); color: var(--go); padding: 3px 9px; border-radius: 999px; }
.email-card__body { padding: 22px 26px; }
.email-card__subject { font-size: 15px; margin-bottom: 14px; }
.email-card__content p { margin-bottom: 10px; font-size: 14px; color: var(--slate); }
.email-card__content p:first-child { color: var(--ink); }
.email-card__pill {
    display: inline-block;
    background: var(--go-tint);
    color: var(--go-deep);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 10px;
    margin: 6px 6px 6px 0;
}
.email-card__fine { font-size: 11px; color: var(--faint); margin-top: 14px; }

/* Stats */
.v2-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; text-align: center; }
.v2-stat__num { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 800; display: block; letter-spacing: -0.02em; }
.v2-stat__label { color: var(--faint); font-size: 13.5px; }

/* Video */
.video-card__frame {
    position: relative;
    background: var(--ink);
    border-radius: 18px;
    height: 380px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
}
.video-card__frame::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.video-card__play {
    width: 76px; height: 76px; border-radius: 50%;
    background: var(--go);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff; padding-left: 5px;
    box-shadow: 0 0 0 14px rgba(37,99,235,.2);
    transition: transform .2s;
    z-index: 2;
}
.video-card__play:hover { transform: scale(1.06); }
.video-card__iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0; z-index: 2;
    background: #000;
}
.video-card__label { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.7); font-size: 13px; font-family: var(--font-mono); z-index: 2; }
.video-card { max-width: 760px; margin: 0 auto; }
.video-card .v2-tagline { text-align: center; }
.video-card__links { display: flex; justify-content: center; gap: 28px; margin-top: 18px; flex-wrap: wrap; }

/* Pricing */
.v2-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(10,16,23,.09); }
.price-card--popular { border: 2px solid var(--go); box-shadow: 0 16px 44px rgba(37,99,235,.14); }
.price-card__badge {
    position: absolute; top: -11px; left: 20px;
    background: var(--star); color: #fff;
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    padding: 4px 12px; border-radius: 999px;
    letter-spacing: .08em;
}
.price-card__badge--hot { background: var(--go); left: 50%; transform: translateX(-50%); white-space: nowrap; }
.price-card__name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; color: var(--faint); margin-bottom: 4px; }
.price-card__testers { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.price-card__price { font-family: var(--font-display); font-size: 46px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.price-card__price s { color: var(--faint); font-size: 22px; font-weight: 600; margin-right: 6px; }
.price-card__cur { font-size: 24px; vertical-align: super; font-weight: 700; }
.price-card__note { font-size: 12.5px; color: var(--faint); margin-bottom: 8px; }
.price-card__save { font-size: 12.5px; color: var(--go); font-weight: 600; margin-bottom: 16px; }
.price-card__list { list-style: none; margin-bottom: 22px; flex-grow: 1; }
.price-card__list li { padding: 7px 0 7px 26px; position: relative; font-size: 14px; color: var(--slate); }
.price-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--go); font-weight: 700; }
.price-card__details { text-align: center; font-size: 13px; color: var(--go); font-weight: 600; margin-top: 12px; }

/* Guarantee */
.v2-guarantee { text-align: center; margin-top: 44px; }
.v2-guarantee__title { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.v2-guarantee__ic { color: var(--go); }
.v2-guarantee__sub { color: var(--slate); font-size: 14px; margin-top: 4px; }
.v2-guarantee__pay { color: var(--faint); font-size: 11px; margin-top: 14px; }
.v2-guarantee__pay span { color: var(--slate); font-weight: 600; margin: 0 6px; }

/* Payment methods */
.pay-methods-wrap { display:flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:center; }
.pay-methods__label { font-size:11px; color:var(--faint); font-family:var(--font-mono); letter-spacing:.08em; text-transform:uppercase; }
.pay-methods { display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:center; }
.pay-chip { display:inline-flex; align-items:center; justify-content:center; height:36px; padding:0 12px; background:#fff; border:1px solid var(--line); border-radius:10px; }
.pay-chip img { height:20px; width:auto; max-width:100px; object-fit:contain; display:block; }
.v2-pay-foot { text-align:center; }

/* Steps */
.v2-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.v2-step { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
.v2-step__day { font-size: 11px; color: var(--go); font-weight: 600; }
.v2-step__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin: 8px 0 10px; }
.v2-step__text { color: var(--slate); font-size: 14.5px; }
.v2-step__part { font-size: 10.5px; color: var(--faint); margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 12px; }
.v2-steps-cta { text-align: center; margin-top: 40px; }
.v2-steps-cta .v2-hero__fine { margin-top: 12px; }

/* Report */
.report-card {
    max-width: 720px; margin: 0 auto;
    border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 40px rgba(10,16,23,.07);
}
.report-card__top {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--ink); color: #fff; padding: 14px 20px;
    font-size: 12px;
}
.report-card__open { color: #60A5FA; font-weight: 600; }
.report-card__table { padding: 8px 20px 18px; }
.report-card__row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; padding: 11px 4px; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.report-card__row:last-child { border-bottom: none; }
.report-card__row--head { font-size: 10px; letter-spacing: .12em; color: var(--faint); }
.sev { font-weight: 600; font-size: 12px; }
.sev--high { color: #dc2626; }
.sev--med { color: #d97706; }
.sev--low { color: #2563eb; }
.sev--ok { color: var(--go); }
.st { font-size: 11px; font-family: var(--font-mono); }
.st--open { color: #d97706; }
.st--done { color: var(--go); }
.v2-report-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.v2-feat { text-align: center; }
.v2-feat strong { display: block; font-size: 15px; margin-bottom: 4px; }
.v2-feat span { color: var(--slate); font-size: 13.5px; }
.v2-report-depth { text-align: center; margin-top: 44px; }
.v2-depth-row { display: flex; justify-content: center; gap: 10px 34px; flex-wrap: wrap; margin-top: 14px; }
.v2-depth-row span:nth-child(odd) { font-family: var(--font-mono); font-size: 11px; color: var(--faint); letter-spacing: .1em; }
.v2-depth-row span:nth-child(even) { font-size: 13.5px; font-weight: 600; }
.v2-depth-note { color: var(--faint); font-size: 10px; margin-top: 14px; }

/* Compare */
.v2-compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cmp-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; }
.cmp-card--rec { border: 2px solid var(--go); box-shadow: 0 16px 44px rgba(37,99,235,.12); }
.cmp-card__flag {
    align-self: flex-start;
    font-family: var(--font-mono); font-size: 10px; font-weight: 600;
    background: var(--mist); border: 1px solid var(--line);
    color: var(--slate); padding: 4px 12px; border-radius: 999px;
    margin-bottom: 14px;
}
.cmp-card--rec .cmp-card__flag { background: var(--go); border-color: var(--go); color: #fff; }
.cmp-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.cmp-card > p { color: var(--slate); font-size: 14px; margin-bottom: 14px; }
.cmp-card__list { list-style: none; margin-bottom: 18px; flex-grow: 1; }
.cmp-card__list li { padding: 6px 0 6px 22px; position: relative; font-size: 13.5px; color: var(--slate); }
.cmp-card__list li::before { content: '✕'; position: absolute; left: 0; color: #f87171; font-weight: 700; font-size: 12px; }
.cmp-card--rec .cmp-card__list li::before { content: '✓'; color: var(--go); }
.cmp-card__list li b { color: var(--ink); }

/* Reviews */
.v2-rating { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-top: 22px; }
.v2-rating__num { font-family: var(--font-display); font-size: 40px; font-weight: 800; }
.v2-rating__sub { color: var(--slate); font-size: 14px; }
.v2-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; }
.rev-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.rev-card__country { font-size: 10px; color: var(--faint); }
.rev-card__body { font-size: 14px; color: var(--slate); flex-grow: 1; }
.rev-card__who { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.rev-card__av {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--go-tint); color: var(--go-deep);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px;
}
.rev-card__name { font-size: 13.5px; font-weight: 600; }
.v2-reviews-more { text-align: center; margin-top: 32px; }

/* Blog */
.v2-blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
    display: block;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(10,16,23,.09); }
.blog-card__tags { font-size: 10px; color: var(--faint); display: block; margin-bottom: 12px; }
.blog-card__tags span { color: var(--go); font-weight: 600; }
.blog-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.blog-card p { color: var(--slate); font-size: 14px; margin-bottom: 14px; }
.blog-card__more { color: var(--go); font-weight: 600; font-size: 14px; }
.v2-blog-more { text-align: center; margin-top: 32px; }

/* Closed testing 101 */
.ch { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: grid; grid-template-columns: 300px 1fr; }
.ch__tabs { border-right: 1px solid var(--line); background: var(--mist); padding: 14px; display: flex; flex-direction: column; gap: 2px; max-height: 480px; overflow-y: auto; }
.ch-tab {
    text-align: left;
    background: none; border: none;
    font-family: var(--font-mono); font-size: 11.5px;
    color: var(--slate);
    padding: 10px 12px; border-radius: 9px;
    letter-spacing: .02em;
}
.ch-tab:hover { background: var(--line); }
.ch-tab.is-active { background: var(--ink); color: #fff; }
.ch__panels { padding: 34px; }
.ch-panel { display: none; }
.ch-panel.is-active { display: block; }
.ch-panel h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.ch-panel p { color: var(--slate); font-size: 15px; margin-bottom: 14px; }
.ch-panel blockquote {
    border-left: 3px solid var(--go);
    background: var(--go-tint);
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    font-size: 14.5px;
    color: var(--ink);
}

/* FAQ */
.v2-faq { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: var(--paper); overflow: hidden; }
.faq-item__q {
    width: 100%; text-align: left;
    background: none; border: none;
    font-family: var(--font-body); font-size: 15.5px; font-weight: 600;
    padding: 18px 20px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item__chev { color: var(--go); font-size: 20px; font-weight: 500; transition: transform .2s; }
.faq-item.open .faq-item__chev { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-item__a { max-height: 400px; }
.faq-item__a p { padding: 0 20px 18px; color: var(--slate); font-size: 14.5px; }

/* Contact */
.v2-contact { text-align: center; max-width: 560px; }
.v2-contact__avatar {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--ink); color: #fff;
    font-family: var(--font-display); font-weight: 800; font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.v2-contact__name { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.v2-contact__sub { color: var(--slate); margin-bottom: 16px; }
.v2-contact__links { display: flex; justify-content: center; gap: 10px; margin-bottom: 22px; font-size: 14.5px; }
.v2-contact__links span { color: var(--line); }

/* Final CTA */
.v2-section--cta { background: var(--ink); color: #fff; }
.v2-section--cta .v2-h2 { color: #fff; }
.v2-final { text-align: center; }
.v2-final__cta { display: flex; justify-content: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.v2-section--cta .v2-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.v2-section--cta .v2-btn--ghost:hover { border-color: #fff; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding: 52px 0 36px; }
.footer__trust {
    display: flex; gap: 26px; flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px; margin-bottom: 32px;
    font-size: 13.5px; color: var(--slate);
}
.footer__pay { margin-left: auto; font-size: 11px; color: var(--faint); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 36px; }
.footer__brand p { color: var(--slate); font-size: 13.5px; margin-top: 12px; }
.footer__brand .v2-mono { color: var(--faint); font-size: 11.5px; }
.footer__col h4 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; color: var(--faint); margin-bottom: 14px; }
.footer__col a { display: block; font-size: 13.5px; color: var(--slate); padding: 4px 0; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    border-top: 1px solid var(--line); padding-top: 22px;
    font-size: 12.5px; color: var(--faint);
}
.footer__lang { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__lang a { color: var(--faint); font-size: 10.5px; }
.footer__lang a:hover { color: var(--ink); }
.footer__social { display: flex; gap: 8px; align-items: center; }
.footer__social a {
    width: 32px; height: 32px;
    border: 1px solid var(--line); border-radius: 8px;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.footer__social a:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px -8px rgba(10,16,23,.25);
}
.footer__social img { width: 18px; height: 18px; display: block; }

/* ═══════════ BLOG INDEX + ARTICLE ═══════════ */
.blog-hero { padding-top: 150px; padding-bottom: 60px; }
.blog-hero .v2-hero__grid { grid-template-columns: 1fr; max-width: 860px; }
.blog-hero .v2-hero__title { font-size: clamp(34px, 5vw, 54px); }

.post-article { padding-top: 150px; padding-bottom: 80px; }
.post-article__inner { max-width: 780px; }
.post-article__back { display: inline-block; margin-bottom: 22px; font-size: 14px; }
.post-article__head .v2-eyebrow { margin-bottom: 14px; }
.post-article__head h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.post-article__meta { color: var(--faint); font-size: 11px; letter-spacing: .1em; margin-bottom: 26px; }
.post-article__cover { width: 100%; border-radius: 16px; border: 1px solid var(--line); margin-bottom: 34px; display: block; }
.post-article__body { font-size: 17px; line-height: 1.75; color: var(--ink); }
.post-article__body p { margin-bottom: 20px; }
.post-article__body h2 {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700; letter-spacing: -0.01em;
    margin: 38px 0 14px;
}
.post-article__body h3 {
    font-family: var(--font-display);
    font-size: 21px; font-weight: 700; letter-spacing: -0.01em;
    margin: 30px 0 12px;
}
.post-article__body a { color: var(--go); font-weight: 600; text-decoration: underline; }
.post-article__body ul, .post-article__body ol { margin: 0 0 20px; padding-left: 24px; }
.post-article__body li { margin-bottom: 8px; }
.post-article__body blockquote {
    border-left: 3px solid var(--go);
    margin: 24px 0; padding: 4px 0 4px 20px;
    color: var(--slate); font-style: italic;
}
.post-article__body code {
    background: var(--mist); border: 1px solid var(--line);
    border-radius: 6px; padding: 2px 6px; font-family: var(--font-mono); font-size: 14px;
}
.post-article__body pre {
    background: #0f172a; color: #e2e8f0;
    border-radius: 12px; padding: 18px; overflow-x: auto; margin: 24px 0;
}
.post-article__body pre code { background: transparent; border: none; padding: 0; color: inherit; }
.post-article__body img { max-width: 100%; border-radius: 12px; border: 1px solid var(--line); margin: 24px 0; }
.post-article__cta {
    margin-top: 56px; padding: 34px;
    background: var(--mist); border: 1px solid var(--line); border-radius: 18px;
    text-align: center;
}
.post-article__cta h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.post-article__cta p { color: var(--slate); font-size: 14px; margin-bottom: 20px; }
.post-article__cta .v2-final__cta { justify-content: center; }


/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 980px) {
    .v2-hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .v2-pricing, .v2-steps, .v2-compare, .v2-blog, .v2-reviews, .v2-report-feats { grid-template-columns: 1fr; }
    .v2-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .ch { grid-template-columns: 1fr; }
    .ch__tabs { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); max-height: none; }
    .ch-tab { white-space: nowrap; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .nav__links, .nav__actions { display: none; }
    .nav__burger { display: flex; }
    .video-card__frame { height: 240px; }
}
@media (max-width: 560px) {
    .v2-section { padding: 56px 0; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__trust { flex-direction: column; gap: 10px; }
    .footer__pay { margin-left: 0; }
    .v2-hero__cta .v2-btn { width: 100%; }
}
