/* =========================================================================
   Pedante — Dijital Çözümler Grubu
   Koyu / sinematik tema · Display: Archivo (expanded black)
   UI/Body: Inter · Etiketler: Space Mono
   ========================================================================= */

:root {
    /* Zemin ve yüzeyler */
    --bg:        #0A0B0F;
    --bg-2:      #0D0F15;
    --panel:     #12151D;
    --panel-2:   #161A24;
    --line:      rgba(255,255,255,.08);
    --line-2:    rgba(255,255,255,.14);

    /* Metin */
    --text:      #EEF1F6;
    --text-soft: #97A0B2;
    --text-faint:#5A6274;

    /* Vurgu — çelik mavisi (tek renk, ölçülü kullanılır) */
    --steel:     #4E7BFF;
    --steel-2:   #7CA0FF;
    --steel-dim: #2E4bad;
    --ice:       #D6E4FF;
    --glow:      rgba(78,123,255,.45);

    --shadow-md: 0 24px 60px -28px rgba(0,0,0,.8);
    --shadow-lg: 0 50px 120px -50px rgba(10,20,60,.9);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-pill: 999px;

    --wrap: 1240px;
    --gutter: clamp(20px, 5vw, 60px);

    --ff-display: "Archivo", "Arial Narrow", sans-serif;
    --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ff-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
svg { display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--steel); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2.5px solid var(--steel-2); outline-offset: 3px; border-radius: 4px; }

/* ---------- Yardımcı: mono etiket ---------- */
.eyebrow, .label {
    font-family: var(--ff-mono); font-weight: 400; text-transform: uppercase;
    letter-spacing: .12em; font-size: 12px; color: var(--text-soft);
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 15px 8px 13px; border-radius: var(--r-pill);
    border: 1px solid var(--line-2); background: rgba(255,255,255,.03); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--steel);
    box-shadow: 0 0 12px 2px var(--glow); }
.label { display: inline-block; }
.label--rose { color: var(--steel-2); }   /* eski sınıf adı — çelik maviye eşlendi */
.label--light { color: var(--ice); }

/* =========================================================================
   Brandmark
   ========================================================================= */
.brandmark { display: inline-flex; align-items: center; gap: 12px; }
.brandmark__glyph {
    width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    font-family: var(--ff-display); font-weight: 900; font-size: 22px; color: #fff;
    font-stretch: 125%;
    background: linear-gradient(140deg, var(--steel), var(--steel-dim));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 0 22px -4px var(--glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.brandmark__text { display: flex; flex-direction: column; line-height: 1.05; }
.brandmark__text strong { font-family: var(--ff-display); font-weight: 800; font-size: 19px;
    letter-spacing: .02em; color: var(--text); text-transform: uppercase; }
.brandmark__text small { font-family: var(--ff-mono); font-size: 9.5px; color: var(--text-faint);
    letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }

/* =========================================================================
   Navigation
   ========================================================================= */
.nav { position: sticky; top: 0; z-index: 100; padding-block: 14px;
    background: rgba(10,11,15,.6); backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.nav.is-stuck { border-bottom-color: var(--line); background: rgba(10,11,15,.82); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav__links { display: flex; align-items: center; gap: 2px; padding: 5px;
    border: 1px solid var(--line); border-radius: var(--r-pill); background: rgba(255,255,255,.02); }
.nav__links a { padding: 8px 16px; border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
    color: var(--text-soft); transition: background .2s, color .2s; }
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav__links a.is-active { color: #fff; background: rgba(78,123,255,.16); }

.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__social { display: flex; align-items: center; gap: 6px; }
.nav__social a { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
    color: var(--text-soft); border: 1px solid transparent; transition: .2s; }
.nav__social a:hover { color: var(--text); border-color: var(--line-2); background: rgba(255,255,255,.03); }

.nav__burger { display: none; width: 42px; height: 42px; border-radius: 11px;
    border: 1px solid var(--line-2); background: rgba(255,255,255,.03);
    flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 11px 20px; border-radius: var(--r-pill); font-weight: 600; font-size: 14px;
    letter-spacing: .01em; transition: transform .18s ease, box-shadow .25s, background .2s, color .2s, border-color .2s;
    white-space: nowrap; border: 1px solid transparent; }
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--xl { padding: 18px 34px; font-size: 15.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.btn:active { transform: translateY(1px); }

/* Birincil (çelik) */
.btn--steel { background: linear-gradient(135deg, var(--steel), #3B63E0); color: #fff;
    box-shadow: 0 14px 34px -14px var(--glow), inset 0 1px 0 rgba(255,255,255,.28); }
.btn--steel:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -16px var(--glow), inset 0 1px 0 rgba(255,255,255,.3); }

/* Beyaz — CTA panel */
.btn--light { background: #fff; color: #0A0B0F; }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Ana koyu tema düğmeleri: eski .btn--dark artık ana beyaz-kontrast düğme */
.btn--dark { background: #fff; color: #0A0B0F; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* İkincil / hayalet / dış çizgi */
.btn--soft, .btn--outline { background: rgba(255,255,255,.03); color: var(--text); border-color: var(--line-2); }
.btn--soft:hover, .btn--outline:hover { background: rgba(255,255,255,.07); border-color: var(--text-soft); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text-soft); }
.btn--ghost:hover { color: var(--text); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 7vw, 84px);
    padding-bottom: clamp(140px, 20vw, 320px); }

.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid { position: absolute; inset: -2px;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
    -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%); }
.hero__glow { position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
    width: 90vw; height: 90vw; max-width: 1100px; max-height: 1100px; border-radius: 50%;
    background: radial-gradient(circle, rgba(78,123,255,.20) 0%, rgba(78,123,255,.06) 35%, transparent 62%);
    filter: blur(20px); animation: pulse 9s ease-in-out infinite; }
.hero__scan { position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
    background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.02) 3px 4px); }
@keyframes pulse { 0%,100%{opacity:.85; transform:translateX(-50%) scale(1);} 50%{opacity:1; transform:translateX(-50%) scale(1.06);} }

.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; }
.hero__top { display: flex; align-items: center; justify-content: space-between; gap: 20px;
    flex-wrap: wrap; margin-bottom: clamp(28px, 5vw, 54px); }

.proof { display: inline-flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text-soft); }
.proof__stack { display: inline-flex; }
.proof__stack i { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--bg); display: block; }
.proof__stack i:nth-child(1){ background: linear-gradient(135deg,#4E7BFF,#8A5BE0); }
.proof__stack i:nth-child(2){ background: linear-gradient(135deg,#2FA089,#4E7BFF); margin-left: -10px; }
.proof__stack i:nth-child(3){ background: linear-gradient(135deg,#E0568E,#F0885D); margin-left: -10px; }
.proof__text strong { color: var(--text); font-weight: 700; }

.hero__title { font-family: var(--ff-display); font-weight: 900; font-stretch: 125%;
    text-transform: uppercase; letter-spacing: -.01em; line-height: .9;
    font-size: clamp(2.9rem, 9.5vw, 8.2rem); color: var(--text); }
.hero__title-accent { color: transparent; -webkit-text-stroke: 1.5px var(--steel-2);
    text-stroke: 1.5px var(--steel-2); position: relative; }
@supports not ((-webkit-text-stroke: 1px #000) or (text-stroke: 1px #000)) {
    .hero__title-accent { color: var(--steel-2); }
}
.hero__sub { margin-top: 26px; max-width: 540px; font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    color: var(--text-soft); line-height: 1.55; }

.hero__actions { margin-top: 36px; display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.showreel { display: inline-flex; align-items: center; gap: 13px; padding: 8px 20px 8px 8px;
    border: 1px solid var(--line-2); border-radius: var(--r-pill); background: rgba(255,255,255,.02);
    transition: .25s; }
.showreel:hover { border-color: var(--steel); background: rgba(78,123,255,.08); }
.showreel__play { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
    background: var(--steel); color: #fff; box-shadow: 0 0 18px -2px var(--glow); flex-shrink: 0; }
.showreel__txt { display: flex; flex-direction: column; line-height: 1.15; font-weight: 600; font-size: 14.5px; }
.showreel__txt small { font-family: var(--ff-mono); font-size: 10.5px; font-weight: 400; color: var(--text-faint);
    text-transform: uppercase; letter-spacing: .08em; }

.hstats { margin-top: clamp(48px, 7vw, 76px); display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)); }
.hstats__cell { padding: 24px clamp(16px,2vw,26px); }
.hstats__cell + .hstats__cell { border-left: 1px solid var(--line); }
.hstats__value { font-family: var(--ff-display); font-weight: 800; font-stretch: 120%;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1; color: var(--text); }
.hstats__label { margin-top: 10px; font-size: 12px; color: var(--text-faint); line-height: 1.45; }

/* İmza: dev anahat kelime işareti */
.hero__wordmark { position: absolute; left: 50%; bottom: -0.14em; transform: translateX(-50%);
    z-index: 1; font-family: var(--ff-display); font-weight: 900; font-stretch: 125%;
    text-transform: uppercase; letter-spacing: -.02em; white-space: nowrap; line-height: .8;
    font-size: clamp(6rem, 23vw, 22rem); color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.07); text-stroke: 1px rgba(255,255,255,.07);
    pointer-events: none; user-select: none; }

/* =========================================================================
   Sections
   ========================================================================= */
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg), var(--bg-2)); border-block: 1px solid var(--line); }

.section__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__title { font-family: var(--ff-display); font-weight: 800; font-stretch: 112%;
    text-transform: uppercase; letter-spacing: -.01em; line-height: 1.02;
    font-size: clamp(1.9rem, 4.4vw, 3.4rem); margin-top: 18px; color: var(--text); }
.section__lead { margin-top: 20px; color: var(--text-soft); font-size: 1.06rem; max-width: 640px; }

/* =========================================================================
   Brand cards
   ========================================================================= */
.brands { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 20px); }

.bcard { position: relative; display: flex; flex-direction: column; gap: 15px;
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
    padding: 26px 26px 24px; overflow: hidden; isolation: isolate;
    transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s, background .3s; }
.bcard::before { content:""; position:absolute; inset:0; z-index:-1; opacity:0; transition:opacity .35s;
    background: radial-gradient(120% 80% at 50% -20%, color-mix(in srgb, var(--a2) 26%, transparent), transparent 62%); }
.bcard::after { content:""; position:absolute; inset:0 0 auto 0; height:1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--a2) 70%, transparent), transparent);
    opacity:.5; transition:opacity .35s; }
.bcard:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--a2) 45%, var(--line-2));
    background: var(--panel-2); }
.bcard:hover::before { opacity: 1; }
.bcard:hover::after { opacity: 1; }

.bcard__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bcard__logo { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
    background: linear-gradient(140deg, var(--a), var(--a2)); flex-shrink: 0;
    box-shadow: 0 10px 26px -12px var(--a), inset 0 1px 0 rgba(255,255,255,.25);
    border: 1px solid rgba(255,255,255,.12); }
.bcard__logo img { width: 32px; height: 32px; object-fit: contain; }
.bcard__initials { font-family: var(--ff-display); font-weight: 900; font-stretch: 120%; color: #fff; font-size: 22px; }
.bcard__kicker { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-faint); text-align: right; }

.bcard__name { font-family: var(--ff-display); font-weight: 800; font-stretch: 108%; text-transform: uppercase;
    font-size: 1.35rem; letter-spacing: -.005em; color: var(--text); }
.bcard__desc { color: var(--text-soft); font-size: .96rem; flex-grow: 1; }

.bcard__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.bcard__tags li { font-family: var(--ff-mono); font-size: 11px; color: var(--text-soft);
    padding: 5px 10px; border-radius: 7px; border: 1px solid var(--line); background: rgba(255,255,255,.02); }

.bcard__go { margin-top: 2px; font-weight: 600; font-size: 13.5px;
    color: color-mix(in srgb, var(--a2) 80%, var(--text)); display: inline-flex; align-items: center; gap: 6px; }
.bcard__go span { transition: transform .25s; }
.bcard:hover .bcard__go span { transform: translateX(5px); }

/* =========================================================================
   Split / Steps
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 84px); align-items: start; }
.split__left { position: sticky; top: 110px; }

.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 24px; padding: 28px 4px; border-bottom: 1px solid var(--line); align-items: flex-start; }
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: 0; }
.step__no { font-family: var(--ff-mono); font-weight: 700; font-size: 1rem; color: var(--steel-2);
    line-height: 1.6; flex-shrink: 0; min-width: 44px; }
.step h3 { font-family: var(--ff-display); font-weight: 700; font-stretch: 105%; text-transform: uppercase;
    font-size: 1.15rem; letter-spacing: -.005em; margin-bottom: 8px; color: var(--text); }
.step p { color: var(--text-soft); font-size: .98rem; }

/* =========================================================================
   CTA panel
   ========================================================================= */
.cta-panel { position: relative; overflow: hidden; border-radius: var(--r-lg);
    border: 1px solid var(--line-2); text-align: center;
    background:
        radial-gradient(120% 140% at 15% -20%, rgba(78,123,255,.30), transparent 55%),
        radial-gradient(120% 140% at 90% 120%, rgba(60,40,140,.35), transparent 55%),
        linear-gradient(180deg, #10131C, #0B0D13);
    padding: clamp(44px, 6vw, 84px); color: var(--text); box-shadow: var(--shadow-lg); }
.cta-panel__content { position: relative; z-index: 2; max-width: 680px; margin-inline: auto;
    display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta-panel h2 { font-family: var(--ff-display); font-weight: 800; font-stretch: 112%; text-transform: uppercase;
    letter-spacing: -.01em; font-size: clamp(1.9rem, 4.2vw, 3.2rem); line-height: 1.03; }
.cta-panel__lead { color: var(--text-soft); font-size: 1.06rem; max-width: 540px; }
/* eski aurora katmanı bu temada gizli */
.aurora { display: none; }

/* =========================================================================
   Contact page
   ========================================================================= */
.contact { padding-block: clamp(52px, 7vw, 96px); position: relative; overflow: hidden; }
.contact::before { content:""; position:absolute; top:-20%; right:-10%; width:60vw; height:60vw; max-width:800px; max-height:800px;
    border-radius:50%; background: radial-gradient(circle, var(--glow), transparent 62%); filter: blur(30px); pointer-events:none; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; position: relative; z-index: 2; }
.contact__title { font-family: var(--ff-display); font-weight: 900; font-stretch: 118%; text-transform: uppercase;
    letter-spacing: -.01em; font-size: clamp(2.1rem, 5.4vw, 3.8rem); line-height: .96; margin-top: 16px; }
.contact__lead { margin-top: 20px; color: var(--text-soft); font-size: 1.06rem; max-width: 440px; }
.contact__info { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.contact__info-row { display: flex; gap: 14px; align-items: center; }
.contact__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    background: var(--panel); border: 1px solid var(--line-2); flex-shrink: 0; font-size: 18px; color: var(--steel-2); }
.contact__info-row b { display: block; font-family: var(--ff-mono); font-size: 10.5px; text-transform: uppercase;
    letter-spacing: .1em; color: var(--text-faint); }
.contact__info-row span { font-weight: 600; }

.form-card { background: var(--panel); border: 1px solid var(--line-2); border-radius: var(--r-lg);
    padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--r-sm);
    font: inherit; font-size: 15px; background: var(--bg-2); color: var(--text); transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field select { appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2397A0B2' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--steel); box-shadow: 0 0 0 4px rgba(78,123,255,.16); background: var(--panel-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.alert { padding: 14px 18px; border-radius: var(--r-sm); font-size: 14.5px; font-weight: 500; margin-bottom: 22px; border: 1px solid; }
.alert--ok { background: rgba(47,160,137,.12); color: #6FE3C4; border-color: rgba(47,160,137,.4); }
.alert--err { background: rgba(224,86,142,.12); color: #FF9BC0; border-color: rgba(224,86,142,.4); }

/* =========================================================================
   Marka detay
   ========================================================================= */
.detail-hero { position: relative; overflow: hidden; padding-block: clamp(60px, 8vw, 108px);
    background: linear-gradient(150deg, color-mix(in srgb, var(--a) 55%, #0A0B0F), color-mix(in srgb, var(--a2) 40%, #0A0B0F));
    border-bottom: 1px solid var(--line-2); }
.detail-hero::after { content:""; position:absolute; inset:0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 60px 60px; mask-image: radial-gradient(90% 90% at 80% 0%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(90% 90% at 80% 0%, #000, transparent 75%); }
.detail-hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 20px; max-width: 780px; }
.detail-hero .backlink { font-family: var(--ff-mono); color: rgba(255,255,255,.75); font-size: 13px;
    display: inline-flex; gap: 8px; align-items: center; width: fit-content; text-transform: uppercase; letter-spacing: .06em; }
.detail-hero .backlink:hover { color: #fff; }
.detail-badge { display: inline-flex; align-items: center; gap: 14px; }
.detail-badge__logo { width: 62px; height: 62px; border-radius: 16px; background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; backdrop-filter: blur(6px); }
.detail-badge__logo img { width: 36px; height: 36px; }
.detail-badge__logo .bcard__initials { font-size: 26px; }
.detail-badge span.k { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.detail-hero h1 { font-family: var(--ff-display); font-weight: 900; font-stretch: 122%; text-transform: uppercase;
    letter-spacing: -.01em; font-size: clamp(2.6rem, 7vw, 5rem); line-height: .92; color: #fff; }
.detail-hero p.lede { font-size: 1.2rem; color: rgba(255,255,255,.9); max-width: 560px; }

.detail-body { padding-block: clamp(52px, 7vw, 92px); }
.detail-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.detail-cols p { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 18px; }
.detail-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; }
.detail-panel h3 { font-family: var(--ff-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
    color: var(--text-faint); margin-bottom: 18px; }
.detail-panel ul { display: flex; flex-direction: column; gap: 12px; }
.detail-panel li { display: flex; gap: 11px; align-items: center; font-weight: 600; }
.detail-panel li::before { content:""; width: 8px; height: 8px; border-radius: 2px;
    background: linear-gradient(135deg, var(--a), var(--a2)); flex-shrink: 0; box-shadow: 0 0 10px -1px var(--a2); }
.detail-other { border-top: 1px solid var(--line); padding-top: 44px; margin-top: 8px; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); color: var(--text-soft);
    padding-top: clamp(56px, 7vw, 88px); }
.brandmark--footer .brandmark__text strong { color: var(--text); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px 32px; padding-bottom: 48px; }
.footer__blurb { margin-top: 18px; max-width: 290px; font-size: .95rem; line-height: 1.6; }
.footer__col h4 { font-family: var(--ff-mono); color: var(--text); font-size: 11px; text-transform: uppercase;
    letter-spacing: .1em; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding-block: 24px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--text-faint); }
.footer__made { font-family: var(--ff-mono); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
    .brands { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; }
    .split__left { position: static; }
    .contact__grid { grid-template-columns: 1fr; }
    .detail-cols { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .nav__links, .nav__right { display: none; }
    .nav__burger { display: flex; }
    .nav__mobile[data-open] { display: flex; flex-direction: column; gap: 6px; padding: 16px var(--gutter) 24px; }
    .nav__mobile a { padding: 12px 14px; border-radius: 10px; font-weight: 500; color: var(--text-soft); }
    .nav__mobile a:hover { background: rgba(255,255,255,.05); color: var(--text); }
    .nav__mobile .btn { justify-content: center; margin-top: 6px; }

    .hstats { grid-template-columns: repeat(2, 1fr); }
    .hstats__cell:nth-child(odd) { border-left: 0; }
    .hstats__cell:nth-child(3), .hstats__cell:nth-child(4) { border-top: 1px solid var(--line); }
    .hero__top { gap: 14px; }

    .brands { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bar { flex-direction: column; text-align: center; }
    .field-row { grid-template-columns: 1fr; }
}

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
