/* ============================================================
   GoPapi — Swiss-Minimal / type-led agency system
   (file kept as brutal.css / body hook .brutal-home so views are
    untouched. Aesthetic modelled on Unseen / Obys / Locomotive /
    Basic: huge grotesk type, near-monochrome + ONE accent, grain,
    huge whitespace, slow expo-out motion.)
   ============================================================ */

:root {
    --ink:    #141312;          /* warm near-black */
    --ink-2:  #56524B;          /* secondary text */
    --paper:  #F4F1EC;          /* warm off-white */
    --paper-2:#FBFAF7;
    --line:   rgba(20,19,18,0.12);
    --line-2: rgba(244,241,236,0.16);  /* hairline on dark */
    --pink:   #CA2525;          /* THE single accent — GoPapi brand RED (matches logo), used <5% */
    --lime:   #E9E5DC;          /* warm cream for muted labels on dark */
    --white:  #FFFFFF;
    --muted:  #8A8782;

    --bd: 1px;
    --bd-thick: 1px;
    --shadow: 0 12px 34px rgba(20,19,18,0.07);
    --shadow-lg: 0 26px 64px rgba(20,19,18,0.11);
    --shadow-pink: none;
    --radius: 0px;              /* commit to sharp (editorial) */

    --maxw: 1320px;
    --gutter: clamp(1.25rem, 4vw, 5rem);
    --gap: clamp(20px, 2.4vw, 40px);
    --section: clamp(5rem, 12vw, 12rem);

    --font-display: "Schibsted Grotesk", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-serif: "Instrument Serif", Georgia, serif;   /* the one serif moment */
    --font-mono: "Space Mono", ui-monospace, monospace;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);   /* expo-out */
    --ease-inout: cubic-bezier(0.65, 0.05, 0, 1);
    --dur-fast: 0.4s; --dur: 0.8s; --dur-slow: 1.1s;
}

/* ---------- base ---------- */
body.brutal-home {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body.brutal-home .main-content { overflow: clip; }
.brutal-home ::selection { background: var(--ink); color: var(--paper); }
.brutal-home .wrap { width: min(100% - (var(--gutter) * 2), var(--maxw)); margin-inline: auto; }
.brutal-home section { position: relative; }
.brutal-home a { color: inherit; text-decoration: none; }

/* grain overlay — the "feels designed" layer (whisper quiet) */
body.brutal-home::before {
    content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

/* ---------- typography ---------- */
.brutal-home h1, .brutal-home h2, .brutal-home h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: none;
    margin: 0;
    color: var(--ink);
}
.brutal-home .display {
    font-size: clamp(2.9rem, 9vw, 8.5rem);
    line-height: 0.94;
    font-weight: 500;
    letter-spacing: -0.04em;
}
.brutal-home h2.section-title { font-size: clamp(2rem, 5vw, 4.6rem); letter-spacing: -0.035em; }
.brutal-home .lead {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem); line-height: 1.5;
    max-width: 56ch; color: var(--ink-2); font-weight: 400; letter-spacing: -0.01em;
}
/* the single serif moment — accent words go italic serif in the accent colour */
.brutal-home .pink, .brutal-home .hl, .brutal-home .section-title i, .brutal-home .big .pink {
    font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--pink); letter-spacing: 0;
}
.brutal-home .mono {
    font-family: var(--font-mono); text-transform: uppercase;
    letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 400;
}

/* kicker = mono label + short rule (premium tell) */
.brutal-home .kicker {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-mono); font-size: 0.72rem; font-weight: 400;
    text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted);
    background: none; border: none; padding: 0;
}
.brutal-home .kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.5; display: inline-block; }
.brutal-home .kicker .dot { display: none; }
.brutal-home .kicker.lime { color: var(--lime); }
.brutal-home .kicker.live { color: var(--pink); }

/* ---------- buttons: precise, rectangular ---------- */
.brutal-home .btn {
    --bg: var(--ink); --fg: var(--paper);
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-weight: 500; text-transform: none;
    letter-spacing: -0.01em; font-size: 0.98rem; line-height: 1;
    background: var(--bg); color: var(--fg);
    padding: 18px 30px; border: 1px solid var(--ink); border-radius: 0;
    cursor: pointer; transition: transform var(--dur) var(--ease-out), background var(--dur-fast), color var(--dur-fast);
    position: relative; overflow: hidden;
}
.brutal-home .btn:hover { transform: translateY(-2px); }
.brutal-home .btn.ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.brutal-home .btn.ghost:hover { border-color: var(--ink); }
.brutal-home .btn.ink { --bg: var(--paper); --fg: var(--ink); border-color: var(--paper); }
.brutal-home .btn.pink { --bg: var(--pink); --fg: var(--white); border-color: var(--pink); }
.brutal-home .btn:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

/* ---------- card ---------- */
.brutal-home .card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 0; box-shadow: none; padding: 36px; transition: transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.brutal-home a.card:hover, .brutal-home .card.hoverable:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ============================ NAV ============================ */
body.brutal-home header { background: rgba(244,241,236,0.8); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 200; }
body.brutal-home .main-nav-links.primary-btn { font-family: var(--font-body); text-transform: none; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
body.brutal-home .main-nav-links.primary-btn:hover { background: none; color: var(--pink); }

/* ============================ HERO ============================ */
.brutal-home .hero-b { padding: clamp(60px, 11vw, 150px) 0 0; }
.brutal-home .hero-b .grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(28px, 5vw, 80px); align-items: end; }
.brutal-home .hero-b .display span.word { display: inline-block; }
.brutal-home .hero-b .stars { color: var(--pink); letter-spacing: 3px; font-size: 1rem; }
.brutal-home .hero-b .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.brutal-home .hero-art { border: none; border-radius: 0; box-shadow: none; background: var(--ink); aspect-ratio: 3/4; overflow: hidden; position: relative; }
.brutal-home .hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.92) contrast(1.02); transition: transform 1.2s var(--ease-out); }
.brutal-home .hero-art:hover img { transform: scale(1.04); }
.brutal-home .hero-art .badge { position: absolute; bottom: 16px; left: 16px; background: rgba(20,19,18,0.7); backdrop-filter: blur(6px); color: var(--paper); font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 12px; }

/* ============================ MARQUEE (thin ticker) ============================ */
.brutal-home .marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; overflow: hidden; margin-top: clamp(56px,8vw,120px); position: relative; }
.brutal-home .marquee .track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 48s linear infinite; }
.brutal-home .marquee:hover .track, .brutal-home .marquee.paused .track { animation-play-state: paused; }
.brutal-home .marquee .item { font-family: var(--font-mono); font-weight: 400; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; padding: 18px 28px; display: inline-flex; align-items: center; gap: 28px; color: var(--muted); }
.brutal-home .marquee .item::after { content: "—"; color: var(--pink); }
@keyframes marquee { to { transform: translateX(-50%); } }
.brutal-home .marquee .mq-toggle { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: var(--paper); color: var(--muted); border: 1px solid var(--line); border-radius: 0; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: .1em; padding: 5px 10px; cursor: pointer; z-index: 2; }

/* ============================ SECTION ============================ */
.brutal-home .sec { padding: var(--section) 0; }
.brutal-home .sec-head { margin-bottom: clamp(44px, 6vw, 88px); max-width: 60ch; }
.brutal-home .sec-head .kicker { margin-bottom: 26px; }

/* ============================ PROVOKE (dark statement) ============================ */
.brutal-home .provoke { background: var(--ink); color: var(--paper); }
.brutal-home .provoke .big { font-family: var(--font-display); font-weight: 500; text-transform: none; font-size: clamp(2.1rem,5.5vw,4.4rem); line-height: 1.02; color: var(--paper); letter-spacing: -0.035em; max-width: 20ch; }
.brutal-home .provoke .big .pink { color: var(--pink); }
.brutal-home .provoke .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,56px); margin-top: clamp(48px,7vw,96px); }
.brutal-home .provoke .stat { border: none; border-top: 1px solid var(--line-2); padding: 26px 0 0; }
.brutal-home .provoke .stat b { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.8rem,5vw,4.4rem); display: block; color: var(--paper); line-height: 1; letter-spacing: -0.04em; }
.brutal-home .provoke .stat span { font-family: var(--font-body); font-size: 0.92rem; color: rgba(244,241,236,0.62); display: block; margin-top: 10px; }

/* ============================ SERVICES (index rows, not boxes) ============================ */
.brutal-home .bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--gap); }
.brutal-home .bento .tile { grid-column: span 2; display: flex; flex-direction: column; }
.brutal-home .bento .tile .pic { aspect-ratio: 4/3; border: none; border-radius: 0; overflow: hidden; background: var(--ink); }
.brutal-home .bento .tile .pic img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.92); transition: transform 0.9s var(--ease-out); }
.brutal-home .bento .tile:hover .pic img { transform: scale(1.05); }
.brutal-home .bento .tile .body { border: none; border-top: 1px solid var(--ink); border-radius: 0; padding: 22px 0 0; flex: 1; background: none; box-shadow: none; transition: none; }
.brutal-home .bento .tile h3 { font-size: clamp(1.5rem,2vw,2rem); margin: 6px 0 12px; }
.brutal-home .bento .tile .num { font-family: var(--font-mono); color: var(--muted); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.brutal-home .bento .tile p { font-size: 1rem; color: var(--ink-2); margin: 0 0 18px; line-height: 1.55; }
.brutal-home .bento .tile .more { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 400; font-size: 0.72rem; color: var(--ink); align-self: flex-start; position: relative; }
.brutal-home .bento .tile .more::after { content: "→"; margin-left: 8px; color: var(--pink); transition: transform var(--dur) var(--ease-out); display: inline-block; }
.brutal-home .bento .tile:hover .more::after { transform: translateX(6px); }
.brutal-home .bento .extra { grid-column: span 3; border: none; border-top: 1px solid var(--ink); border-radius: 0; background: none; padding: 22px 0 0; display: flex; align-items: baseline; gap: 16px; }
.brutal-home .bento .extra .mono { color: var(--muted); }
.brutal-home .bento .extra b { font-family: var(--font-display); font-weight: 500; text-transform: none; font-size: 1.2rem; }

/* ============================ STEPS ============================ */
.brutal-home .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.brutal-home .step { border: none; border-top: 1px solid var(--ink); padding: 24px 0 0; background: none; box-shadow: none; }
.brutal-home .step .n { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; line-height: 1; color: var(--muted); }
.brutal-home .step h3 { font-size: 1.5rem; margin: 16px 0 10px; }
.brutal-home .step p { font-size: 0.98rem; color: var(--ink-2); }

/* ============================ PROOF ============================ */
.brutal-home .proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.brutal-home .proof .p { border: none; border-top: 1px solid var(--ink); border-radius: 0; background: none; box-shadow: none; padding: 26px 0 0; text-align: left; }
.brutal-home .proof .p b { font-family: var(--font-display); font-weight: 500; font-size: clamp(3rem,6vw,5rem); display: block; line-height: 1; letter-spacing: -0.04em; }
.brutal-home .proof .p span { font-family: var(--font-mono); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--muted); }

/* ============================ CASES ============================ */
.brutal-home .cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.brutal-home .case { border: none; border-radius: 0; box-shadow: none; background: var(--ink); color: var(--paper); aspect-ratio: 4/5; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; position: relative; overflow: hidden; }
.brutal-home .case .cover { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.55; filter: saturate(0.85); transition: opacity var(--dur), transform 1s var(--ease-out); }
.brutal-home .case:hover .cover { opacity: 0.72; transform: scale(1.05); }
.brutal-home .case .meta { position: relative; z-index: 2; }
.brutal-home .case h3 { font-size: clamp(1.6rem,2.4vw,2.2rem); color: var(--paper); }
.brutal-home .case .tag { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); }
.brutal-home .case .stat-pop { position: relative; z-index: 2; margin-bottom: auto; }
.brutal-home .case .stat-pop b { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem,5vw,3.6rem); color: var(--paper); line-height: 1; display: block; letter-spacing: -0.04em; }
.brutal-home .case .stat-pop span { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); }

/* ============================ CTA BAND ============================ */
.brutal-home .cta-band { background: var(--ink); color: var(--paper); text-align: left; }
.brutal-home .cta-band .wrap { display: flex; flex-direction: column; align-items: flex-start; }
.brutal-home .cta-band h2 { font-size: clamp(2.8rem,9vw,8rem); color: var(--paper); font-weight: 500; letter-spacing: -0.045em; line-height: 0.94; }
.brutal-home .cta-band p { font-family: var(--font-body); color: rgba(244,241,236,0.62); margin: 22px 0 36px; max-width: 40ch; }

/* ============================ CONTACT ============================ */
.brutal-home .contact-form-section { background: var(--paper); padding: var(--section) 0; }
.brutal-home .contact-form input, .brutal-home .contact-form textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; padding: 16px 0; border: none; border-bottom: 1px solid var(--line); border-radius: 0; background: none; margin-bottom: 20px; color: var(--ink); transition: border-color var(--dur); }
.brutal-home .contact-form input::placeholder, .brutal-home .contact-form textarea::placeholder { color: var(--muted); }
.brutal-home .contact-form input:focus, .brutal-home .contact-form textarea:focus { outline: none; border-color: var(--ink); }
.brutal-home .contact-form .form-feedback { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.06em; margin-top: 12px; min-height: 1.2em; text-transform: none; }
.brutal-home .contact-form .form-feedback.ok { color: #2e7d4f; }
.brutal-home .contact-form .form-feedback.err { color: var(--pink); }
.brutal-home .contact-hero-right .panel { border: none; border-radius: 0; box-shadow: none; background: var(--ink); color: var(--paper); padding: 48px; height: 100%; }
.brutal-home .contact-hero-right .panel .mono { color: var(--lime); }
.brutal-home .contact-hero-right .panel ul { list-style: none; padding: 0; margin: 24px 0 0; }
.brutal-home .contact-hero-right .panel li { padding: 16px 0; border-top: 1px solid var(--line-2); font-family: var(--font-body); font-size: 0.98rem; color: rgba(244,241,236,0.82); }

/* footer — bigger / editorial */
body.brutal-home footer.footer-main { border-top: 1px solid var(--ink); }

/* ============================ REVEAL ============================ */
.brutal-home [data-reveal] { opacity: 0; transform: translateY(28px); }
.brutal-home [data-reveal].in { opacity: 1; transform: none; transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }

/* ============================ v2 — scrollbar / cursor / tools ============================ */
.brutal-home #scrollbar { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--pink); z-index: 9998; }
.brutal-home.has-cursor, .brutal-home.has-cursor * { cursor: auto; }
#gp-cursor { display: none !important; }
.brutal-home .count { font-variant-numeric: tabular-nums; }

/* ---- AI VISIBILITY CHECKER (dark) ---- */
.brutal-home .checker { background: var(--ink); color: var(--paper); }
.brutal-home .checker .sec-head .kicker { color: var(--pink); }
.brutal-home .checker .panel { border: 1px solid var(--line-2); border-radius: 0; background: rgba(244,241,236,0.03); box-shadow: none; padding: clamp(26px, 4vw, 52px); }
.brutal-home .checker h2, .brutal-home .checker .section-title { color: var(--paper); }
.brutal-home .checker .sec-head .lead { color: rgba(244,241,236,0.62); }
.brutal-home .checker .ck-form { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.brutal-home .checker .ck-form input { flex: 1 1 280px; font-family: var(--font-body); font-size: 1.02rem; padding: 16px 18px; border: 1px solid var(--line-2); border-radius: 0; background: rgba(244,241,236,0.04); color: var(--paper); }
.brutal-home .checker .ck-form input::placeholder { color: rgba(244,241,236,0.45); }
.brutal-home .checker .ck-form input:focus { outline: none; border-color: var(--pink); }
.brutal-home .checker .ck-form .btn { --bg: var(--paper); --fg: var(--ink); border-color: var(--paper); }
.brutal-home .checker .ck-loading { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--pink); margin-top: 24px; display: none; }
.brutal-home .checker .ck-loading.on { display: block; }
.brutal-home .checker .ck-loading .bar { height: 2px; background: var(--line-2); margin-top: 14px; overflow: hidden; }
.brutal-home .checker .ck-loading .bar i { display: block; height: 100%; width: 30%; background: var(--pink); animation: ckscan 1.1s linear infinite; }
@keyframes ckscan { from { transform: translateX(-120%); } to { transform: translateX(420%); } }
.brutal-home .ck-result { display: none; margin-top: 36px; }
.brutal-home .ck-result.on { display: grid; grid-template-columns: 200px 1fr; gap: clamp(24px,3vw,52px); align-items: start; }
.brutal-home .ck-gauge { border: none; border-top: 1px solid var(--line-2); border-radius: 0; padding: 22px 0 0; text-align: left; }
.brutal-home .ck-gauge .num { font-family: var(--font-display); font-weight: 500; font-size: 5rem; line-height: 1; color: var(--paper); letter-spacing: -0.04em; }
.brutal-home .ck-gauge .num.lo { color: var(--pink); }
.brutal-home .ck-gauge .lbl { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,236,0.5); margin-top: 8px; }
.brutal-home .ck-gauge .meter { height: 2px; margin-top: 16px; background: var(--line-2); overflow: hidden; }
.brutal-home .ck-gauge .meter i { display: block; height: 100%; background: var(--pink); width: 0; transition: width 1s var(--ease-out); }
.brutal-home .ck-body .verdict { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; font-size: clamp(1.4rem, 2.6vw, 2.2rem); line-height: 1.15; color: var(--paper); }
.brutal-home .ck-body .summary { font-family: var(--font-body); font-size: 0.98rem; color: rgba(244,241,236,0.66); margin: 14px 0 22px; }
.brutal-home .ck-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.brutal-home .ck-cols h4 { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.brutal-home .ck-cols ul { list-style: none; padding: 0; margin: 0; }
.brutal-home .ck-cols li { font-size: 0.94rem; color: rgba(244,241,236,0.8); padding: 10px 0; border-top: 1px solid var(--line-2); }
.brutal-home .ck-capture { margin-top: 28px; border-top: 1px solid var(--line-2); padding-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.brutal-home .ck-capture input { flex: 1 1 240px; font-family: var(--font-body); padding: 14px 18px; border: 1px solid var(--line-2); border-radius: 0; background: rgba(244,241,236,0.04); color: var(--paper); }
.brutal-home .ck-capture .btn { --bg: var(--pink); --fg: var(--white); border-color: var(--pink); }

/* ---- ROI CALCULATOR ---- */
.brutal-home .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,80px); align-items: center; }
.brutal-home .calc-controls .ctrl { margin-bottom: 34px; }
.brutal-home .calc-controls label { font-family: var(--font-body); font-size: 0.94rem; color: var(--ink-2); display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.brutal-home .calc-controls label b { color: var(--ink); font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; letter-spacing: -0.02em; }
.brutal-home .calc-controls input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 1px; background: var(--ink); opacity: 0.5; outline: none; }
.brutal-home .calc-controls input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--pink); border: none; cursor: pointer; }
.brutal-home .calc-controls input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--pink); border: none; cursor: pointer; }
.brutal-home .calc-out { border: none; border-radius: 0; background: var(--ink); color: var(--paper); box-shadow: none; padding: 48px; }
.brutal-home .calc-out .big-num { font-family: var(--font-display); font-weight: 500; font-size: clamp(3rem, 6vw, 5rem); line-height: 1; color: var(--paper); letter-spacing: -0.04em; }
.brutal-home .calc-out .sub { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.66rem; color: rgba(244,241,236,0.55); margin-top: 10px; }
.brutal-home .calc-out .row2 { display: flex; gap: 32px; margin-top: 30px; border-top: 1px solid var(--line-2); padding-top: 24px; }
.brutal-home .calc-out .row2 div b { font-family: var(--font-display); font-weight: 500; font-size: 2rem; display: block; color: var(--pink); letter-spacing: -0.03em; }
.brutal-home .calc-out .row2 div span { font-family: var(--font-body); font-size: 0.8rem; color: rgba(244,241,236,0.55); }

/* ---- QUIZ ---- */
.brutal-home .quiz { border: 1px solid var(--line); border-radius: 0; background: var(--paper-2); box-shadow: none; padding: clamp(30px,5vw,64px); }
.brutal-home .quiz .q-progress { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 16px; }
.brutal-home .quiz .q-text { font-family: var(--font-display); font-weight: 500; text-transform: none; font-size: clamp(1.6rem,3vw,2.6rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 30px; }
.brutal-home .quiz .q-opts { display: grid; gap: 10px; }
.brutal-home .quiz .q-opt { text-align: left; font-family: var(--font-body); font-size: 1.02rem; padding: 20px 0; border: none; border-top: 1px solid var(--line); border-radius: 0; background: none; cursor: pointer; transition: padding var(--dur) var(--ease-out), color var(--dur-fast); color: var(--ink); }
.brutal-home .quiz .q-opt:hover { padding-left: 16px; color: var(--pink); }
.brutal-home .quiz .q-result { text-align: left; }
.brutal-home .quiz .q-result .score { font-family: var(--font-display); font-weight: 500; font-size: clamp(4rem,11vw,8rem); line-height: 1; color: var(--pink); letter-spacing: -0.05em; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
    .brutal-home .hero-b .grid { grid-template-columns: 1fr; align-items: start; }
    .brutal-home .hero-art { order: -1; aspect-ratio: 16/10; }
    .brutal-home .provoke .stat-row { grid-template-columns: 1fr; }
    .brutal-home .bento { grid-template-columns: repeat(2, 1fr); }
    .brutal-home .bento .tile, .brutal-home .bento .tile.lead { grid-column: span 1; }
    .brutal-home .bento .extra { grid-column: span 2; }
    .brutal-home .steps { grid-template-columns: repeat(2, 1fr); }
    .brutal-home .proof, .brutal-home .cases, .brutal-home .calc-grid, .brutal-home .ck-result.on, .brutal-home .ck-cols { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .brutal-home .bento { grid-template-columns: 1fr; }
    .brutal-home .bento .tile, .brutal-home .bento .extra { grid-column: span 1; }
    .brutal-home .steps { grid-template-columns: 1fr; }
    .brutal-home .btn { width: 100%; justify-content: center; }
}

/* ============================ MOTION SAFETY ============================ */
@media (prefers-reduced-motion: reduce) {
    .brutal-home * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    .brutal-home .marquee .track { animation: none !important; }
    .brutal-home [data-reveal] { opacity: 1 !important; transform: none !important; }
}
body.brutal-home.no-motion .marquee .track { animation: none !important; }
body.brutal-home.no-motion [data-reveal] { opacity: 1 !important; transform: none !important; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================================
   Showpiece layer — WebGL hero canvas, sound toggle, transition wipe
   ============================================================ */
.brutal-home .hero-art { position: relative; }
.brutal-home .hero-art #hero-gl { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 0.6s var(--ease-out); z-index: 1; }
.brutal-home .hero-art #hero-gl.on { opacity: 1; }     /* fade canvas over the <img> fallback once GL is live */
.brutal-home .hero-art .badge { z-index: 2; }

#sound-toggle { position: fixed; left: 12px; bottom: 46px; z-index: 300; background: var(--ink); color: var(--paper); border: 1px solid var(--ink); border-radius: 0; padding: 6px 12px; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }

/* page-transition wipe — defaults HIDDEN (fail-safe: if JS never runs it stays out of the way) */
#page-transition { position: fixed; inset: 0; z-index: 10001; background: var(--ink); pointer-events: none; transform: translateY(-100%); animation: pt-enter 0.7s var(--ease-inout) both; }
@keyframes pt-enter { from { transform: translateY(0); } to { transform: translateY(-100%); } }   /* reveal page on load, ends hidden */
#page-transition.wipe-in { transform: translateY(0); transition: transform 0.5s var(--ease-inout); animation: none; }   /* JS-driven exit wipe on nav */
#page-transition .pt-mark { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: var(--paper); font-family: var(--font-serif); font-style: italic; font-size: clamp(2rem,6vw,4rem); opacity: 0.9; }
@media (prefers-reduced-motion: reduce) { #page-transition { display: none; } #sound-toggle { display: none; } }

/* ============================================================
   Unseen-grade additions: loader, fullscreen menu, giant footer,
   scroll-velocity skew, case liquid-warp
   ============================================================ */

/* ---- LOADER / intro (fail-safe: auto-hides via CSS even without JS) ---- */
#gp-loader { position: fixed; inset: 0; z-index: 10002; background: var(--ink); display: flex; align-items: center; justify-content: center; animation: gp-loader-auto 3s var(--ease-inout) forwards; }
@keyframes gp-loader-auto { 0%,85% { transform: translateY(0); } 100% { transform: translateY(-100%); } }   /* fallback hide; JS .done drives it earlier */
#gp-loader.skip { display: none !important; }
#gp-loader.done { transform: translateY(-100%); transition: transform 0.7s var(--ease-inout); animation: none; }
#gp-loader .gp-word { font-family: var(--font-display); font-weight: 500; color: var(--paper); font-size: clamp(2.6rem, 9vw, 7rem); letter-spacing: -0.04em; display: flex; overflow: hidden; }
#gp-loader .gp-word span { display: inline-block; transform: translateY(110%); }
#gp-loader .gp-word .dot { color: var(--pink); }
#gp-loader .gp-bar { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--pink); }

/* ---- FULLSCREEN MENU (hide the old inline nav on brutal pages) ---- */
body.brutal-home .main-header-nav-holder, body.brutal-home .nav-toggle { display: none !important; }
#gp-menu-btn { position: fixed; top: 18px; right: clamp(16px, 4vw, 48px); z-index: 250; background: none; border: none; cursor: pointer; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 10px; mix-blend-mode: difference; }
#gp-menu-btn .bars { width: 24px; height: 9px; position: relative; display: inline-block; }
#gp-menu-btn .bars::before, #gp-menu-btn .bars::after { content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--paper); transition: transform 0.4s var(--ease-out); }
#gp-menu-btn .bars::before { top: 0; } #gp-menu-btn .bars::after { bottom: 0; }
body.menu-open #gp-menu-btn .bars::before { transform: translateY(3.75px) rotate(45deg); }
body.menu-open #gp-menu-btn .bars::after { transform: translateY(-3.75px) rotate(-45deg); }
#gp-menu { position: fixed; inset: 0; z-index: 240; background: var(--ink); color: var(--paper); display: flex; flex-direction: column; justify-content: center; padding: 0 clamp(24px, 8vw, 140px); clip-path: inset(0 0 100% 0); transition: clip-path 0.7s var(--ease-inout); pointer-events: none; }
body.menu-open #gp-menu { clip-path: inset(0 0 0 0); pointer-events: auto; }
#gp-menu a.gp-ml { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 9vw, 6.5rem); letter-spacing: -0.04em; line-height: 1.08; color: var(--paper); text-decoration: none; opacity: 0; transform: translateY(40px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s; display: inline-block; width: fit-content; }
#gp-menu a.gp-ml .idx { font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.1em; color: var(--muted); vertical-align: super; margin-right: 14px; }
#gp-menu a.gp-ml:hover { color: var(--pink); }
body.menu-open #gp-menu a.gp-ml { opacity: 1; transform: none; }
#gp-menu .gp-menu-foot { margin-top: clamp(32px,5vw,72px); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; color: var(--muted); display: flex; gap: 26px; flex-wrap: wrap; }
#gp-menu .gp-menu-foot a { color: var(--lime); }

/* ---- GIANT FOOTER ---- */
body.brutal-home footer.footer-main { padding: clamp(4rem,9vw,9rem) 0 clamp(2rem,4vw,4rem); }
body.brutal-home footer.footer-main .title-footer-main h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 9vw, 7rem); letter-spacing: -0.04em; line-height: 0.98; }
body.brutal-home footer.footer-main .title-footer-main h2 i { font-family: var(--font-serif); font-style: italic; color: var(--pink); }
body.brutal-home footer.footer-main .nav-footer-main a, body.brutal-home footer.footer-main .info-footer-main a, body.brutal-home footer.footer-main .info-footer-main p { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
body.brutal-home footer.footer-main .gp-foot-meta { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--muted); margin-top: 8px; }
body.brutal-home footer.footer-main .gp-foot-meta .live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--pink); margin-right: 8px; vertical-align: middle; animation: livepulse 1.6s infinite; }
@keyframes livepulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* ---- SCROLL-VELOCITY SKEW (applied to wrappers without other transforms) ---- */
.brutal-home .bento .tile .pic, .brutal-home .case, .brutal-home .hero-art { transform: skewY(var(--vskew, 0deg)); }

/* ---- CASE LIQUID WARP (SVG displacement filter, only while hovered) ---- */
.brutal-home .case.warp .cover { filter: url(#gp-liquid); }

/* ============================ TESTIMONIALS ============================ */
.brutal-home .quotes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,72px); }
.brutal-home .quote { border-top: 1px solid var(--ink); padding-top: 30px; margin: 0; }
.brutal-home .quote blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem,2.3vw,2.1rem); line-height: 1.18; letter-spacing: -0.025em; margin: 0 0 28px; color: var(--ink); }
.brutal-home .quote figcaption { display: flex; align-items: center; gap: 14px; }
.brutal-home .quote figcaption img, .brutal-home .quote .initials { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
.brutal-home .quote .initials { background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.85rem; }
.brutal-home .quote figcaption b { font-family: var(--font-body); font-weight: 600; display: block; font-size: 0.98rem; }
.brutal-home .quote figcaption span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.64rem; color: var(--muted); }

/* ============================ TEAM ============================ */
.brutal-home .team { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); max-width: 720px; }
.brutal-home .team .member .ph { aspect-ratio: 1; overflow: hidden; background: var(--ink); margin-bottom: 18px; }
.brutal-home .team .member .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); transition: transform 0.8s var(--ease-out); }
.brutal-home .team .member:hover .ph img { transform: scale(1.04); }
.brutal-home .team .member h3 { font-size: 1.5rem; }
.brutal-home .team .member .role { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; color: var(--muted); }
@media (max-width: 768px) { .brutal-home .quotes, .brutal-home .team { grid-template-columns: 1fr; } }

/* ============================ SPACE JOURNEY ============================ */
.brutal-home .space-journey { position: relative; height: 240vh; background: #0a0a0c; padding: 0; }
.brutal-home .space-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.brutal-home .space-sticky #space-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.brutal-home .space-copy { position: absolute; left: 0; right: 0; bottom: clamp(6vh, 9vh, 12vh); z-index: 2; text-align: center; padding: 0 var(--gutter); pointer-events: none; }
.brutal-home .space-copy .kicker { color: var(--pink); }
.brutal-home .space-copy .kicker::before { background: var(--pink); }
.brutal-home .space-copy h2 { color: var(--paper); margin: 18px auto 14px; max-width: 18ch; }
.brutal-home .space-copy .lead { color: rgba(244,241,236,0.72); margin: 0 auto; max-width: 46ch; }
@media (prefers-reduced-motion: reduce) { .brutal-home .space-journey { height: 100vh; } }

/* ============================================================
   FIX: visible menu button + properly organized editorial footer
   (appended last so it wins over earlier rules)
   ============================================================ */

/* ---- MENU BUTTON: always-visible solid pill (no blend mode) ---- */
#gp-menu-btn {
    position: fixed; top: 16px; right: clamp(16px, 4vw, 48px); z-index: 250;
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ink); color: var(--paper); border: 1px solid var(--ink);
    padding: 10px 16px; cursor: pointer; mix-blend-mode: normal;
    font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
    transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast) var(--ease-out);
}
#gp-menu-btn:hover { transform: translateY(-1px); }
#gp-menu-btn .bars { width: 22px; height: 9px; position: relative; display: inline-block; }
#gp-menu-btn .bars::before, #gp-menu-btn .bars::after { content: ""; position: absolute; left: 0; width: 100%; height: 1.6px; background: var(--paper); transition: transform 0.4s var(--ease-out), background var(--dur-fast); }
#gp-menu-btn .bars::before { top: 1px; } #gp-menu-btn .bars::after { bottom: 1px; }
body.menu-open #gp-menu-btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
body.menu-open #gp-menu-btn .bars::before { background: var(--ink); transform: translateY(3px) rotate(45deg); }
body.menu-open #gp-menu-btn .bars::after { background: var(--ink); transform: translateY(-3.4px) rotate(-45deg); }

/* ---- FOOTER: editorial, organized, real margins ---- */
body.brutal-home footer.footer-main {
    background: var(--ink) !important; background-image: none !important;
    padding: clamp(4.5rem, 9vw, 9rem) 0 clamp(2rem, 3vw, 3rem); border-top: none;
}
body.brutal-home footer.footer-main .container {
    width: min(100% - (var(--gutter) * 2), var(--maxw)); max-width: none; margin-inline: auto; padding: 0;
}
/* headline block */
body.brutal-home .title-footer-main { text-align: left; }
body.brutal-home .title-footer-main > a { display: inline-block; width: auto; margin: 0 0 28px; }
body.brutal-home .title-footer-main > a img { width: 44px !important; }
body.brutal-home footer.footer-main .title-footer-main h2 {
    text-align: left; color: var(--paper); margin: 0; max-width: 16ch;
    font-family: var(--font-display); font-weight: 500; line-height: 0.96;
    font-size: clamp(2.6rem, 8vw, 6.5rem); letter-spacing: -0.04em;
}
body.brutal-home footer.footer-main .title-footer-main h2 i { font-family: var(--font-serif); font-style: italic; color: var(--pink); }
/* lower row: nav + info, justified with real gaps */
body.brutal-home .content-footer-main {
    display: flex; justify-content: space-between; align-items: flex-start; gap: clamp(28px, 5vw, 90px); flex-wrap: wrap;
    margin-top: clamp(56px, 7vw, 100px); padding-top: clamp(28px, 3vw, 44px); border-top: 1px solid var(--line-2);
}
body.brutal-home .nav-footer-main { padding-right: 0; border-right: none; }
body.brutal-home .nav-footer-main ul { display: flex; flex-direction: column; gap: 12px; }
body.brutal-home .nav-footer-main ul li { text-align: left; padding: 0; }
body.brutal-home .nav-footer-main ul li a {
    font-family: var(--font-display); font-style: normal; font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 2rem);
    letter-spacing: -0.02em; color: var(--paper); transition: color var(--dur-fast);
}
body.brutal-home .nav-footer-main ul li a:hover { color: var(--pink); }
body.brutal-home .info-footer-main { margin-left: 0; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; text-align: left; }
body.brutal-home .info-footer-main li { padding: 0; }
body.brutal-home footer.footer-main .info-footer-main li p,
body.brutal-home footer.footer-main .info-footer-main li a {
    font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.76rem;
    color: rgba(244,241,236,0.78); transition: color var(--dur-fast);
}
body.brutal-home footer.footer-main .info-footer-main li a:hover { color: var(--pink); }
@media (max-width: 640px) {
    body.brutal-home .content-footer-main { flex-direction: column; gap: 36px; }
}

/* ============================ GOPAPI SYSTEMS ============================ */
.brutal-home .sys-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px,3vw,56px); }
.brutal-home .sys-card { border-top: 1px solid var(--ink); padding: 24px 0 0; }
.brutal-home .sys-card .num { font-family: var(--font-mono); color: var(--pink); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.brutal-home .sys-card h3 { font-size: clamp(1.3rem,1.8vw,1.7rem); margin: 12px 0 10px; }
.brutal-home .sys-card p { font-size: 0.96rem; color: var(--ink-2); line-height: 1.55; }
.brutal-home .sys-ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: clamp(48px,6vw,88px); }
.brutal-home .sys-ladder .rung { background: var(--ink); color: var(--paper); padding: clamp(24px,3vw,36px); }
.brutal-home .sys-ladder .rung .rn { font-family: var(--font-mono); color: var(--pink); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.66rem; }
.brutal-home .sys-ladder .rung h4 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem,2vw,1.8rem); letter-spacing: -0.02em; margin: 12px 0 10px; color: var(--paper); }
.brutal-home .sys-ladder .rung p { font-size: 0.92rem; color: rgba(244,241,236,0.72); line-height: 1.55; }
.brutal-home .sys-cta { margin-top: clamp(36px,4vw,60px); display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.brutal-home .sys-cta .mono { color: var(--muted); }
@media (max-width: 900px) { .brutal-home .sys-grid { grid-template-columns: 1fr 1fr; } .brutal-home .sys-ladder { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .brutal-home .sys-grid { grid-template-columns: 1fr; } }

/* ============================ WORK DETAIL ROWS ============================ */
.brutal-home .work-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,80px); align-items: center; padding: clamp(40px,7vw,100px) 0; border-top: 1px solid var(--line); }
.brutal-home .work-row:first-child { border-top: none; padding-top: 0; }
.brutal-home .work-row.reverse .wr-media { order: 2; }
.brutal-home .work-row .wr-media { overflow: hidden; background: var(--ink); aspect-ratio: 4/3; }
.brutal-home .work-row .wr-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.brutal-home .work-row:hover .wr-media img { transform: scale(1.04); }
.brutal-home .work-row .wr-stat { margin: 22px 0; }
.brutal-home .work-row .wr-stat b { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem,5vw,4rem); color: var(--pink); letter-spacing: -0.04em; line-height: 1; display: block; }
.brutal-home .work-row .wr-stat span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.7rem; color: var(--muted); }
.brutal-home .work-row .wr-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.brutal-home .work-row .wr-tags span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.62rem; color: var(--ink-2); border: 1px solid var(--line); padding: 6px 10px; }
@media (max-width: 820px) { .brutal-home .work-row { grid-template-columns: 1fr; } .brutal-home .work-row.reverse .wr-media { order: 0; } }

/* legal pages */
.brutal-home .legal { max-width: 70ch; }
.brutal-home .legal h2 { font-size: clamp(1.4rem,2.5vw,2rem); margin: clamp(28px,4vw,48px) 0 14px; }
.brutal-home .legal p, .brutal-home .legal li { color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; }
.brutal-home .legal a { color: var(--pink); }

/* ============================ PRICING TIERS ============================ */
.brutal-home .price-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.brutal-home .tier { border: 1px solid var(--line); padding: clamp(28px,3vw,42px); background: var(--paper-2); position: relative; }
.brutal-home .tier.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.brutal-home .tier .t-tag { position: absolute; top: -1px; right: -1px; background: var(--pink); color: var(--white); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.58rem; padding: 6px 11px; }
.brutal-home .tier .t-name { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.7rem; color: var(--muted); }
.brutal-home .tier.featured .t-name { color: var(--lime); }
.brutal-home .tier .t-price { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem,4vw,3.2rem); letter-spacing: -0.03em; margin: 14px 0 18px; line-height: 1; }
.brutal-home .tier .t-price span { font-size: 1rem; color: var(--muted); }
.brutal-home .tier p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.55; }
.brutal-home .tier.featured p { color: rgba(244,241,236,0.75); }
@media (max-width: 820px) { .brutal-home .price-tiers { grid-template-columns: 1fr; } }

/* ============================ CONSENT BANNER ============================ */
#gp-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 10003; max-width: 780px; margin: 0 auto; background: #141312; color: #F4F1EC; border: 1px solid rgba(244,241,236,0.22); padding: 18px 22px; display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap; font-family: "Inter", system-ui, sans-serif; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
#gp-consent p { margin: 0; font-size: 0.85rem; line-height: 1.5; max-width: 46ch; }
#gp-consent a { color: #F4F1EC; text-decoration: underline; }
#gp-consent .gp-c-btns { display: flex; gap: 10px; flex: none; }
#gp-consent button { font-family: "Space Mono", monospace; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 11px 16px; cursor: pointer; border: 1px solid #F4F1EC; background: none; color: #F4F1EC; }
#gp-consent #gp-c-yes { background: #F4F1EC; color: #141312; }
@media (max-width: 560px) { #gp-consent { flex-direction: column; align-items: flex-start; } #gp-consent .gp-c-btns { width: 100%; } #gp-consent button { flex: 1; } }

/* ============================ contrast: brighter red for small text on DARK ============================ */
:root { --pink-d: #FF5A47; }   /* ~5:1 on --ink, passes AA for small text */
.brutal-home .checker .sec-head .kicker,
.brutal-home .sys-ladder .rung .rn,
.brutal-home .ck-cols h4,
.brutal-home .ck-gauge .num.lo,
.brutal-home .quiz .q-progress { color: var(--pink-d) !important; }
.brutal-home .checker .sec-head .kicker::before { background: var(--pink-d); }
