/* ============================================================
   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;
    --grow:   #178f5f;          /* healthy growth green — on light */
    --grow-d: #35C48A;          /* healthy growth green — on dark */

    --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;
}

/* ---------- reset ----------
   Bootstrap used to provide the global border-box reset; now that it's
   removed we set it ourselves. Without this, width:100% + padding elements
   (e.g. the header nav) overflow the viewport on mobile. */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }

/* ---------- 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; position: relative; z-index: 1; }

/* ============================================================
   PREMIUM AMBIENT: aurora drift + cursor spotlight
   Near-monochrome + one red glow. Compositor-only (transform/opacity).
   ============================================================ */
.brutal-home .gp-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.brutal-home .gp-aurora span { position: absolute; border-radius: 50%; filter: blur(72px); will-change: transform; opacity: 0.55; }
/* light (paper) sections — warm grey + one faint red, multiply */
.brutal-home .gp-aurora span:nth-child(1) { width: 48vw; height: 48vw; left: -12vw; top: -18vw; background: radial-gradient(circle at center, rgba(202,37,37,0.16), rgba(202,37,37,0) 62%); mix-blend-mode: multiply; animation: gp-au1 17s ease-in-out infinite alternate; }
.brutal-home .gp-aurora span:nth-child(2) { width: 40vw; height: 40vw; right: -10vw; top: 4vw; background: radial-gradient(circle at center, rgba(86,82,75,0.16), rgba(86,82,75,0) 62%); mix-blend-mode: multiply; animation: gp-au2 21s ease-in-out infinite alternate; }
.brutal-home .gp-aurora span:nth-child(3) { width: 34vw; height: 34vw; left: 32vw; bottom: -16vw; background: radial-gradient(circle at center, rgba(20,19,18,0.10), rgba(20,19,18,0) 62%); mix-blend-mode: multiply; animation: gp-au3 25s ease-in-out infinite alternate; }
/* dark sections — screen blend, red glow */
.brutal-home .gp-aurora.dark span { mix-blend-mode: screen; opacity: 0.6; }
.brutal-home .gp-aurora.dark span:nth-child(1) { background: radial-gradient(circle at center, rgba(202,37,37,0.32), rgba(202,37,37,0) 60%); }
.brutal-home .gp-aurora.dark span:nth-child(2) { background: radial-gradient(circle at center, rgba(255,90,71,0.16), rgba(255,90,71,0) 62%); }
.brutal-home .gp-aurora.dark span:nth-child(3) { background: radial-gradient(circle at center, rgba(233,229,220,0.07), rgba(233,229,220,0) 60%); }
@keyframes gp-au1 { to { transform: translate3d(7vw, 5vw, 0) rotate(16deg) scale(1.1); } }
@keyframes gp-au2 { to { transform: translate3d(-6vw, 7vw, 0) rotate(-14deg) scale(1.08); } }
@keyframes gp-au3 { to { transform: translate3d(4vw, -6vw, 0) rotate(10deg) scale(1.12); } }

/* cursor spotlight — subtle radial light following the pointer (desktop only) */
.brutal-home .spot { position: relative; }
.brutal-home .spot::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity 0.5s var(--ease-out); background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(255,90,71,0.10), transparent 62%); }
.brutal-home .spot:hover::after { opacity: 1; }
.brutal-home .spot.provoke::after, .brutal-home .spot.cta-band::after { background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255,90,71,0.16), transparent 60%); }

@media (hover: none), (pointer: coarse) { .brutal-home .spot::after { display: none; } }
@media (prefers-reduced-motion: reduce) { .brutal-home .gp-aurora span { animation: none !important; } .brutal-home .spot::after { display: none; } }
body.brutal-home.no-motion .gp-aurora span { animation: none !important; }
@media (max-width: 700px) { .brutal-home .gp-aurora span { filter: blur(54px); } .brutal-home .gp-aurora span:nth-child(3) { display: none; } }
.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; }
/* header layout: logo left, fullscreen-menu button (fixed) right. The old
   theme hid the left logo on desktop (it used a centred logo inside the nav
   holder, which we hide) — force the left logo back so it shows everywhere. */
body.brutal-home .main-header-nav { display: flex !important; justify-content: flex-start !important; align-items: center; width: 100%; padding: 12px clamp(16px, 4vw, 48px) !important; background: transparent !important; backdrop-filter: none !important; }
body.brutal-home .main-header-logo-holder { display: block !important; }
body.brutal-home .main-header-logo-holder img { width: 38px !important; height: auto; display: block; }

/* ---- WORDMARK LOGO (matches the loader "curtain" wordmark: GoPapi.) ---- */
.brutal-home .gp-wordmark { display: inline-flex; align-items: baseline; font-family: var(--font-display); font-weight: 500; letter-spacing: -0.04em; line-height: 1; color: var(--ink); text-decoration: none; }
.brutal-home .gp-wordmark .dot { color: var(--pink); }
body.brutal-home .main-header-logo-holder .gp-wordmark { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
body.brutal-home .main-header-logo-holder .gp-wordmark:hover { color: var(--ink); }
/* footer wordmark: light, larger */
.brutal-home .gp-wordmark-foot { color: var(--paper); font-size: clamp(1.6rem, 3vw, 2.2rem); }
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; }

/* ============================ SECTION VISUAL (editorial image) ============================ */
.brutal-home .section-visual { width: 100%; border: 1px solid var(--line); overflow: hidden; background: var(--paper); aspect-ratio: 12/5; margin: 0 0 clamp(40px, 5vw, 64px); }
.brutal-home .section-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.brutal-home .section-visual.contain { aspect-ratio: 1/1; max-width: 520px; margin-inline: auto; }
.brutal-home .section-visual.contain img { object-fit: contain; padding: clamp(22px, 4vw, 52px); }
@media (max-width: 640px) { .brutal-home .section-visual { aspect-ratio: 3/2; } .brutal-home .section-visual.contain { max-width: 100%; aspect-ratio: 1/1; } }

/* ============================ CONTENT ENGINE / PIPELINE ============================ */
.brutal-home .content-engine .pipeline { list-style: none; margin: 0; padding: 0; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 3vw, 44px); }
.brutal-home .content-engine .pipeline::before { content: ""; position: absolute; top: 22px; left: 22px; right: 22px; height: 1px; background: var(--line); }
.brutal-home .pipe-step { position: relative; }
.brutal-home .pipe-num { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper); color: var(--pink); font-size: 0.78rem; letter-spacing: 0.06em; margin-bottom: 22px; }
.brutal-home .pipe-step h3 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); margin: 0 0 10px; }
.brutal-home .pipe-step p { font-size: 0.94rem; color: var(--ink-2); line-height: 1.55; margin: 0; }
.brutal-home .pipe-note { margin-top: clamp(40px, 5vw, 64px); padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.72rem; letter-spacing: 0.04em; text-transform: none; line-height: 1.6; max-width: 74ch; }
@media (max-width: 720px) {
    .brutal-home .content-engine .pipeline { grid-template-columns: 1fr; gap: 28px; }
    .brutal-home .content-engine .pipeline::before { display: none; }
}

/* ============================ 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); }
/* story = a vertical timeline that DRAWS as the row reveals, beats stagger in */
.brutal-home .work-row .wr-story { position: relative; margin: 26px 0; padding-left: 30px; }
.brutal-home .work-row .wr-story::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.brutal-home .work-row .wr-story::after { content: ""; position: absolute; left: 5px; top: 6px; width: 1px; height: 0; background: var(--pink); transition: height 1.5s var(--ease-out) 0.15s; }
.brutal-home .work-row.in .wr-story::after { height: calc(100% - 12px); }
.brutal-home .work-row .ws-beat { position: relative; padding: 0 0 22px; opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.brutal-home .work-row .ws-beat:last-child { padding-bottom: 0; }
.brutal-home .work-row .ws-beat::before { content: ""; position: absolute; left: -30px; top: 3px; width: 11px; height: 11px; border-radius: 50%; background: var(--paper); border: 1px solid var(--ink); transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out); }
.brutal-home .work-row .ws-beat:last-child::before { background: var(--paper); border-color: var(--grow); }
.brutal-home .work-row.in .ws-beat:last-child::before { background: var(--grow); transform: scale(1.15); }
.brutal-home .work-row.in .ws-beat { opacity: 1; transform: none; }
.brutal-home .work-row.in .ws-beat:nth-child(2) { transition-delay: 0.2s; }
.brutal-home .work-row.in .ws-beat:nth-child(3) { transition-delay: 0.4s; }
.brutal-home .work-row .ws-label { display: block; font-size: 0.6rem; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 8px; }
.brutal-home .work-row .ws-beat:last-child .ws-label { color: var(--grow); }
.brutal-home .work-row .ws-beat p { font-size: 0.98rem; color: var(--ink-2); line-height: 1.55; margin: 0; }
/* image wipes in from the outer edge */
.brutal-home .work-row .wr-media { clip-path: inset(0 100% 0 0); transition: clip-path 1.2s var(--ease-out) 0.1s; }
.brutal-home .work-row.reverse .wr-media { clip-path: inset(0 0 0 100%); }
.brutal-home .work-row.in .wr-media { clip-path: inset(0 0 0 0); }
/* the result stat lifts + green when the row lands */
.brutal-home .work-row .wr-stat { opacity: 0; transform: translateY(12px); transition: opacity 0.7s var(--ease-out) 0.5s, transform 0.7s var(--ease-out) 0.5s; }
.brutal-home .work-row.in .wr-stat { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .brutal-home .work-row .ws-beat, .brutal-home .work-row .wr-stat { opacity: 1 !important; transform: none !important; }
    .brutal-home .work-row .wr-media { clip-path: none !important; }
    .brutal-home .work-row .wr-story::after { height: calc(100% - 12px) !important; transition: none !important; }
}
body.brutal-home.no-motion .work-row .ws-beat, body.brutal-home.no-motion .work-row .wr-stat { opacity: 1 !important; transform: none !important; }
body.brutal-home.no-motion .work-row .wr-media { clip-path: none !important; }
.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(--grow); 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); }

/* ============================================================
   v4.9 — base rhythm fix + hero proof + tile pricing + slim
   systems + rebuilt (Bootstrap-free) contact grid with proof
   ============================================================ */

/* base font-size: pin to 16px so we no longer inherit the legacy 21px
   from style.css (that oversized body copy and threw off vertical rhythm) */
body.brutal-home { font-size: 16px; }

/* ---- HERO SCARCITY (genuine limited-intake line under the CTA) ---- */
.brutal-home .hero-scarcity { display: flex; align-items: center; gap: 9px; margin-top: 22px; font-size: 0.7rem; letter-spacing: 0.06em; color: var(--ink-2); max-width: 52ch; line-height: 1.5; }
.brutal-home .hero-scarcity .live-dot { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--pink); animation: livepulse 1.6s infinite; }

/* ---- HERO PROOF STRIP (proof in the hero, per CRO research) ---- */
.brutal-home .hero-proof { display: flex; flex-wrap: wrap; gap: clamp(22px, 3vw, 44px); margin-top: 34px; }
.brutal-home .hero-proof .hp-item { display: flex; flex-direction: column; }
.brutal-home .hero-proof .hp-item b { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 2.1rem); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.brutal-home .hero-proof .hp-item span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.6rem; color: var(--muted); margin-top: 7px; }
/* the aggregate revenue stat leads the strip — emphasized in accent red */
.brutal-home .hero-proof .hp-lead { padding-right: clamp(22px, 3vw, 44px); border-right: 1px solid var(--line); }
.brutal-home .hero-proof .hp-lead b { color: var(--grow); font-size: clamp(1.9rem, 3vw, 2.7rem); }
.brutal-home .hero-proof .hp-lead span { color: var(--ink-2); }
@media (max-width: 560px) { .brutal-home .hero-proof .hp-lead { border-right: none; padding-right: 0; } }

/* ---- TILE PRICING (self-qualify signal on the 3 services) ---- */
.brutal-home .bento .tile .tile-price { display: block; font-family: var(--font-mono); font-size: 0.86rem; letter-spacing: 0.04em; color: var(--ink); margin: 0 0 16px; }
.brutal-home .bento .tile .tile-price i { font-style: normal; color: var(--muted); font-size: 0.72rem; }

/* ---- SLIM SYSTEMS TEASER (3 across on desktop) ---- */
.brutal-home .sys-grid.sys-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .brutal-home .sys-grid.sys-grid-3 { grid-template-columns: 1fr; } }

/* ---- CONTACT GRID (native CSS grid; replaces Bootstrap .row/.col) ---- */
.brutal-home .contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .brutal-home .contact-grid { grid-template-columns: 1fr; } }

/* dark proof panel next to the form */
.brutal-home .contact-col-proof .panel { border: none; border-radius: 0; box-shadow: none; background: var(--ink); color: var(--paper); padding: clamp(30px, 4vw, 48px); }
.brutal-home .contact-col-proof .panel .kicker.lime { color: var(--lime); }
.brutal-home .proof-chips { display: flex; gap: clamp(22px, 4vw, 44px); border-bottom: 1px solid var(--line-2); padding-bottom: 24px; margin-bottom: 26px; }
.brutal-home .proof-chips .chip b { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 3.4vw, 2.9rem); letter-spacing: -0.04em; line-height: 1; color: var(--paper); display: block; }
.brutal-home .proof-chips .chip span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.58rem; color: var(--lime); margin-top: 8px; display: block; }
.brutal-home .proof-quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.28; letter-spacing: -0.02em; color: var(--paper); margin: 0 0 22px; }
.brutal-home .proof-by { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.brutal-home .proof-by img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.brutal-home .proof-by b { font-family: var(--font-body); font-weight: 600; font-size: 0.94rem; display: block; color: var(--paper); }
.brutal-home .proof-by span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.6rem; color: var(--muted); }
.brutal-home .proof-list { list-style: none; padding: 0; margin: 0 0 26px; }
.brutal-home .proof-list li { padding: 13px 0; border-top: 1px solid var(--line-2); font-family: var(--font-body); font-size: 0.94rem; color: rgba(244,241,236,0.82); }
.brutal-home .proof-scarcity { color: var(--lime) !important; font-size: 0.72rem !important; line-height: 1.6; border-top: 1px solid var(--line-2); padding-top: 22px; }
.brutal-home .proof-scarcity .live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--pink-d); margin-right: 9px; vertical-align: middle; animation: livepulse 1.6s infinite; }
.brutal-home .proof-guarantee { margin-top: 14px; font-size: 0.7rem !important; line-height: 1.6; color: rgba(244,241,236,0.9) !important; border: 1px solid var(--line-2); border-left: 3px solid var(--pink-d); padding: 12px 14px; text-transform: none; letter-spacing: 0.02em; }
.brutal-home .proof-guarantee b { color: var(--pink-d); text-transform: uppercase; letter-spacing: 0.08em; }
.brutal-home .proof-direct { margin-top: 18px; font-size: 0.8rem !important; color: rgba(244,241,236,0.62) !important; }
.brutal-home .proof-direct a { color: var(--lime); }

/* ============================================================
   LIVE RESULTS DASHBOARD (interactive proof widget)
   ============================================================ */
.brutal-home .results-dash .dash { --dash-green: #35C48A; --dash-red: #FF5A47; }
/* ============================ RESEARCH-BACKED METHOD ============================ */
.brutal-home .inst-strip { display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 44px); align-items: center; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: clamp(34px, 5vw, 60px); text-transform: none; }
.brutal-home .inst-strip span { font-family: var(--font-display); font-weight: 500; font-size: clamp(1rem, 1.7vw, 1.5rem); letter-spacing: -0.02em; color: var(--ink); opacity: 0.5; }
.brutal-home .studies { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.brutal-home .study { border-top: 1px solid var(--ink); padding: 24px 0 0; display: flex; flex-direction: column; }
.brutal-home .study-inst { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; text-transform: uppercase; }
.brutal-home .study-find { font-family: var(--font-body); font-size: 1rem; line-height: 1.45; color: var(--ink); margin: 0 0 14px; }
.brutal-home .study-find b { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 3vw, 2.7rem); letter-spacing: -0.03em; color: var(--pink); display: block; line-height: 1; margin-bottom: 8px; }
.brutal-home .study-apply { font-size: 0.9rem; color: var(--ink-2); line-height: 1.5; margin: 0 0 16px; flex: 1; }
.brutal-home .study-src { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--muted); align-self: flex-start; }
.brutal-home .study-src:hover { color: var(--pink); }
@media (max-width: 900px) { .brutal-home .studies { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .brutal-home .studies { grid-template-columns: 1fr; } .brutal-home .inst-strip span { font-size: 1rem; } }

/* ============================ BOOKING CALENDAR ============================ */
.brutal-home .booking { margin-top: 6px; }
.brutal-home .bk-step { margin-bottom: 26px; }
.brutal-home .bk-hidden { display: none; }
.brutal-home .bk-label { display: block; font-size: 0.62rem; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 14px; }
.brutal-home .bk-label em { font-style: normal; color: var(--pink); text-transform: none; letter-spacing: 0.02em; }
.brutal-home .bk-dates { display: flex; flex-wrap: wrap; gap: 8px; }
.brutal-home .bk-date { display: flex; flex-direction: column; align-items: center; gap: 3px; min-width: 62px; padding: 12px 10px; background: none; border: 1px solid var(--line); border-radius: 0; cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast); color: var(--ink); }
.brutal-home .bk-date:hover { border-color: var(--ink); }
.brutal-home .bk-date.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.brutal-home .bk-date .bk-dow { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.brutal-home .bk-date.on .bk-dow { color: var(--lime); }
.brutal-home .bk-date .bk-dnum { font-family: var(--font-display); font-weight: 500; font-size: 0.95rem; }
.brutal-home .bk-times { display: flex; flex-wrap: wrap; gap: 8px; }
.brutal-home .bk-time { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.04em; padding: 11px 15px; background: none; border: 1px solid var(--line); border-radius: 0; cursor: pointer; color: var(--ink); transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast); }
.brutal-home .bk-time:hover { border-color: var(--ink); }
.brutal-home .bk-time.on { background: var(--pink); color: var(--white); border-color: var(--pink); }
.brutal-home .bk-time.bk-taken { color: var(--muted); border-color: var(--line); text-decoration: line-through; opacity: 0.55; cursor: not-allowed; background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(20,19,18,0.045) 4px, rgba(20,19,18,0.045) 8px); }
.brutal-home .bk-time.bk-taken:hover { border-color: var(--line); }
.brutal-home .bk-empty, .brutal-home .bk-loading { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; text-transform: none; }
.brutal-home .bk-chosen { display: inline-block; font-size: 0.7rem; letter-spacing: 0.06em; color: var(--pink); border: 1px solid var(--line); padding: 8px 12px; margin-bottom: 18px; text-transform: none; }
.brutal-home #bk-form input, .brutal-home #bk-form textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; padding: 15px 0; border: none; border-bottom: 1px solid var(--line); border-radius: 0; background: none; margin-bottom: 16px; color: var(--ink); transition: border-color var(--dur); }
.brutal-home #bk-form input::placeholder, .brutal-home #bk-form textarea::placeholder { color: var(--muted); }
.brutal-home #bk-form input:focus, .brutal-home #bk-form textarea:focus { outline: none; border-color: var(--ink); }
.brutal-home .bk-fb { margin-top: 12px; font-size: 0.74rem; letter-spacing: 0.04em; min-height: 1em; text-transform: none; }
.brutal-home .bk-fb.err { color: var(--pink); }
.brutal-home .bk-consent { margin-top: 12px; font-size: 0.62rem; color: var(--muted); letter-spacing: 0.02em; text-transform: none; }
.brutal-home .bk-consent a { color: var(--pink); }
.brutal-home .bk-done { border: 1px solid var(--line); border-left: 3px solid var(--pink); padding: clamp(26px, 3vw, 40px); }
.brutal-home .bk-done .bk-check { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--pink); color: var(--white); border-radius: 50%; font-size: 1.2rem; margin-bottom: 16px; }
.brutal-home .bk-done h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 10px; }
.brutal-home .bk-done-msg { font-family: var(--font-body); color: var(--ink-2); line-height: 1.5; }

/* aggregate proof banner above the dashboard (multiple stats) */
.brutal-home .dash-agg { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: clamp(24px, 3vw, 40px) 0; margin-bottom: clamp(28px, 3vw, 44px); }
.brutal-home .dash-agg .da-item { display: flex; flex-direction: column; gap: 10px; }
.brutal-home .dash-agg b { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 5vw, 4.4rem); letter-spacing: -0.04em; line-height: 0.9; color: var(--grow); }
.brutal-home .dash-agg span { font-family: var(--font-body); font-size: clamp(0.86rem, 1.1vw, 1rem); color: var(--ink-2); max-width: 22ch; line-height: 1.4; }
@media (max-width: 760px) { .brutal-home .dash-agg { grid-template-columns: 1fr; gap: 22px; } .brutal-home .dash-agg .da-item { flex-direction: row; align-items: baseline; gap: 14px; } .brutal-home .dash-agg span { max-width: none; } }

.brutal-home .dash-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.brutal-home .dash-tab { display: inline-flex; align-items: center; gap: 8px; background: none; border: 1px solid var(--line); border-radius: 0; padding: 12px 18px; cursor: pointer; font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--ink); transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast); }
.brutal-home .dash-tab:hover { border-color: var(--ink); }
.brutal-home .dash-tab.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.brutal-home .dash-tab .dt-own { font-size: 0.54rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); border: 1px solid currentColor; padding: 2px 5px; }
.brutal-home .dash-tab.on .dt-own { color: var(--lime); }

/* panel */
.brutal-home .dash-panel { background: var(--ink); color: var(--paper); padding: clamp(20px, 3vw, 40px); }
.brutal-home .dash-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; flex-wrap: wrap; border-bottom: 1px solid var(--line-2); padding-bottom: 20px; margin-bottom: 26px; }
.brutal-home .dash-id { display: flex; align-items: center; gap: 12px; }
.brutal-home .dash-brand { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.2vw, 1.9rem); letter-spacing: -0.02em; color: var(--paper); }
.brutal-home .dash-own { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-d); border: 1px solid var(--pink-d); padding: 3px 7px; align-items: center; }
.brutal-home .dash-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; text-align: right; }
.brutal-home .dash-platform { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); }
.brutal-home .dash-range { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--muted); }

.brutal-home .dash-body { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(22px, 3vw, 44px); align-items: stretch; }
@media (max-width: 860px) { .brutal-home .dash-body { grid-template-columns: 1fr; } }

/* KPIs */
.brutal-home .dash-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.brutal-home .dash-kpi { background: var(--ink); padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.brutal-home .dash-kpi-lbl { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--muted); }
.brutal-home .dash-kpi-val { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -0.03em; line-height: 1; color: var(--paper); font-variant-numeric: tabular-nums; }
.brutal-home .dash-delta { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.04em; }
.brutal-home .dash-delta.up { color: var(--dash-green); }
.brutal-home .dash-delta.down { color: var(--dash-red); }

/* mini chart */
.brutal-home .dash-chart { margin-top: 16px; border: 1px solid var(--line-2); padding: 16px 18px 12px; }
.brutal-home .dash-bars { display: flex; align-items: flex-end; gap: 6px; height: 72px; }
.brutal-home .dash-bars i { flex: 1; background: linear-gradient(to top, var(--pink-d), rgba(255,90,71,0.35)); height: 0; transition: height 0.7s var(--ease-out); min-height: 2px; }
.brutal-home .dash-chart-lbl { display: block; margin-top: 10px; font-size: 0.56rem; color: var(--muted); letter-spacing: 0.1em; }

/* screenshot frame */
.brutal-home .dash-shot { height: 100%; min-height: 220px; border: 1px solid var(--line-2); background: #0d0c0b; position: relative; overflow: hidden; }
.brutal-home .dash-shot-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.brutal-home .dash-shot-ph { position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; color: var(--muted); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 20px; }
.brutal-home .dash-shot-ph small { text-transform: none; letter-spacing: 0; color: rgba(244,241,236,0.4); font-size: 0.62rem; }

.brutal-home .dash-takeaway { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line-2); font-family: var(--font-body); font-size: 1.02rem; color: var(--paper); }
.brutal-home .dash-takeaway .mono { color: var(--pink-d); font-size: 0.62rem; letter-spacing: 0.12em; }
.brutal-home .dash-takeaway b { font-weight: 500; }
.brutal-home .dash-disclaimer { margin-top: 16px; font-size: 0.62rem; color: var(--muted); letter-spacing: 0.06em; line-height: 1.6; text-transform: none; }

/* ============================ RESULTS — platform tabs + before/after impact (on-brand) ============================ */
.brutal-home .pdash { font-family: var(--font-body); }
.brutal-home .pdash-tabs { display: flex; gap: 6px; margin-bottom: -1px; position: relative; z-index: 2; }
.brutal-home .pdash-tab { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 400; font-size: 0.72rem; padding: 13px 22px; background: none; border: 1px solid var(--line); border-bottom: none; color: var(--muted); cursor: pointer; transition: color var(--dur-fast), background var(--dur-fast); }
.brutal-home .pdash-tab.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* story panel — on-brand dark, timeline begin -> end */
.brutal-home .pdash-panel.story { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); padding: clamp(24px, 4vw, 52px); }
.brutal-home .imp-plat { display: inline-flex; align-items: center; gap: 10px; font-size: 0.64rem; color: var(--lime); letter-spacing: 0.12em; margin-bottom: clamp(26px, 3vw, 40px); }
.brutal-home .pf-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.brutal-home .pf-google { background: conic-gradient(#4285f4 0 25%, #ea4335 0 50%, #fbbc04 0 75%, #34a853 0); }
.brutal-home .pf-meta { background: #1877F2; }

.brutal-home .story-line { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr 1.15fr; }
.brutal-home .story-step { position: relative; padding: 0 clamp(18px, 2.5vw, 34px); border-left: 1px solid var(--line-2); }
.brutal-home .story-step:first-child { padding-left: 0; border-left: none; }
.brutal-home .story-step .ss-num { display: block; font-size: 0.66rem; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 14px; }
.brutal-home .story-step h4 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.1rem, 1.7vw, 1.4rem); letter-spacing: -0.02em; color: var(--paper); margin: 0 0 12px; }
.brutal-home .story-step p { font-family: var(--font-body); font-size: 0.92rem; line-height: 1.55; color: rgba(244,241,236,0.66); margin: 0; }
.brutal-home .story-step.is-result .ss-num { color: var(--grow-d); }
.brutal-home .story-stats { display: flex; flex-direction: column; gap: 16px; }
.brutal-home .ss-stat b { display: block; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.03em; line-height: 1; color: var(--grow-d); }
.brutal-home .ss-stat span { font-family: var(--font-body); font-size: 0.78rem; color: rgba(244,241,236,0.7); margin-top: 5px; display: block; }
.brutal-home .imp-note { margin: clamp(28px, 3vw, 40px) 0 0; padding-top: 22px; border-top: 1px solid var(--line-2); font-family: var(--font-body); font-size: 0.9rem; color: rgba(244,241,236,0.62); line-height: 1.5; }
.brutal-home .imp-note a { color: var(--grow-d); }
/* homepage result stats — horizontal row of green numbers */
.brutal-home .res-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 60px); }
@media (max-width: 620px) { .brutal-home .res-stats { grid-template-columns: 1fr; gap: 22px; } }

@media (max-width: 760px) {
    .brutal-home .story-line { grid-template-columns: 1fr; gap: 26px; }
    .brutal-home .story-step, .brutal-home .story-step:first-child { padding: 0 0 0 20px; border-left: 1px solid var(--line-2); }
    .brutal-home .pdash-tab { flex: 1; text-align: center; padding: 12px 8px; }
}

/* ============================ REVIEWS (Trustpilot-style) ============================ */
.brutal-home .tp { --tp-green: #00b67a; --tp-off: #dcdce6; }
.brutal-home .tp-summary { display: flex; align-items: center; gap: 20px; margin-bottom: clamp(32px, 4vw, 52px); }
.brutal-home .tp-score { display: flex; flex-direction: column; gap: 12px; }
.brutal-home .tp-word { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.03em; color: var(--ink); }
.brutal-home .tp-stars { display: inline-flex; gap: 4px; }
.brutal-home .tp-star { width: 30px; height: 30px; background: var(--tp-off); display: inline-flex; align-items: center; justify-content: center; }
.brutal-home .tp-star.on { background: var(--tp-green); }
.brutal-home .tp-star svg { width: 20px; height: 20px; fill: #fff; }
.brutal-home .tp-meta { font-size: 0.8rem; color: var(--ink-2); text-transform: none; letter-spacing: 0.02em; }
.brutal-home .tp-meta b { color: var(--ink); font-size: 0.92rem; }
.brutal-home .tp-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.62rem; letter-spacing: 0.08em; color: var(--tp-green); text-transform: uppercase; }
.brutal-home .tp-check { display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; background: var(--tp-green); color: #fff; border-radius: 50%; font-size: 0.6rem; }

.brutal-home .tp-sub { margin: 0 0 20px; font-size: 0.66rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.brutal-home .tp-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .brutal-home .tp-list { grid-template-columns: 1fr; } }
.brutal-home .tp-card { margin: 0; background: var(--paper-2); border: 1px solid var(--line); padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; }
.brutal-home .tp-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.brutal-home .tp-card .tp-star { width: 22px; height: 22px; }
.brutal-home .tp-card .tp-star svg { width: 14px; height: 14px; }
.brutal-home .tp-verif { display: inline-flex; align-items: center; gap: 6px; font-size: 0.56rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.brutal-home .tp-card blockquote { margin: 0 0 22px; font-family: var(--font-body); font-size: 1rem; line-height: 1.55; color: var(--ink); flex: 1; }
.brutal-home .tp-card figcaption { display: flex; align-items: center; gap: 13px; }
.brutal-home .tp-card figcaption img, .brutal-home .tp-init { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.brutal-home .tp-init { background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.82rem; }
.brutal-home .tp-card figcaption b { font-family: var(--font-body); font-weight: 600; display: block; font-size: 0.94rem; color: var(--ink); }
.brutal-home .tp-card figcaption span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.58rem; color: var(--muted); }
.brutal-home .tp-cta { margin-top: clamp(28px, 3vw, 40px); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted); text-transform: none; }
.brutal-home .tp-cta a { color: var(--pink); }

/* ============================ GUARANTEE (risk reversal) ============================ */
.brutal-home .guarantee { padding-top: 0; }
.brutal-home .g-card { border-top: 3px solid var(--pink); padding: clamp(28px, 4vw, 48px) 0 0; max-width: 62ch; }
.brutal-home .g-card .kicker { margin-bottom: 22px; }
.brutal-home .g-line { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3.4vw, 3rem); line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); margin: 0 0 20px; }
.brutal-home .g-line i { font-family: var(--font-serif); font-style: italic; color: var(--ink); }
.brutal-home .g-line .pink { font-family: var(--font-serif); font-style: italic; color: var(--pink); }
.brutal-home .g-sub { font-family: var(--font-body); font-size: 1rem; color: var(--ink-2); line-height: 1.6; max-width: 54ch; margin: 0; }

/* ---- organic search panel under the AI visibility result ---- */
.brutal-home .ck-search { grid-column: 1 / -1; border-top: 1px solid var(--line-2); padding-top: 26px; }
.brutal-home .ck-search:empty { display: none; }
.brutal-home .ck-search .sr-wait { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,236,0.5); }
.brutal-home .ck-search .sr-wait .bar { height: 2px; background: var(--line-2); margin-top: 14px; overflow: hidden; max-width: 260px; }
.brutal-home .ck-search .sr-wait .bar i { display: block; height: 100%; width: 30%; background: var(--pink); animation: ckscan 1.1s linear infinite; }
.brutal-home .ck-search .sr-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.brutal-home .ck-search h4 { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); }
.brutal-home .ck-search .sr-score { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,236,0.5); }
.brutal-home .ck-search .sr-list { margin-top: 14px; }
.brutal-home .ck-search .sr-item { display: block; padding: 12px 0; border-top: 1px solid var(--line-2); text-decoration: none; }
.brutal-home .ck-search .sr-item:hover .sr-title { color: var(--pink); }
.brutal-home .ck-search .sr-title { display: block; font-size: 0.98rem; color: var(--paper); }
.brutal-home .ck-search .sr-url { display: block; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,241,236,0.45); margin-top: 3px; }
.brutal-home .ck-search .sr-snip { display: block; font-size: 0.88rem; color: rgba(244,241,236,0.66); margin-top: 5px; }
.brutal-home .ck-search .sr-verdict { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--paper); margin-top: 18px; }
