/* ============================================================================
   IAXT - iaxt.com single-page site
   ============================================================================

   Light-mode only.  Literary voice, violet + gold palette, Fraunces serif
   for display type, JetBrains Mono for labels.  Paper background.  No dark
   variant - the tool itself adapts, the marketing site picks one mode and
   commits to it.

   Structure:

     1. Nav              - sticky, blurred paper
     2. Hero             - tagline + dual intent + primary CTA + ambient eye
     3. Statement        - the thesis
     4. Audience switch  - pill toggle → tailored individual vs company panel
     5. How it works     - 3-step feature grid (Observe / Flag / Report)
     6. Audit log preview- the product shot, rendered in HTML
     7. Blind spots      - honest about limits
     8. FAQ              - disclosure widgets
     9. Final CTA        - dual download / request-beta
    10. Footer           - brand + copyright + contact

   Minimal JS only for the audience switcher.  Site still works with JS off -
   both panels render; the switcher becomes a no-op visual.
============================================================================ */

:root {
    --violet:         #b57edc;
    --violet-deep:    #8b5cd6;
    --violet-dark:    #4a2578;
    --violet-midnight:#2a1f3d;
    --violet-abyss:   #120a1f;
    --gold:           #ffc858;
    --gold-deep:      #d99e2c;
    --ink:            #0f0a18;
    --paper:          #faf7ff;
    --paper-warm:     #f5f0ff;
    --line:           rgba(139, 92, 214, 0.15);
    --line-strong:    rgba(139, 92, 214, 0.3);
    --mute:           #6b5d82;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 350;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html { overflow-x: hidden; }

.mono { font-family: 'JetBrains Mono', monospace; font-weight: 400; }

::selection { background: rgba(181, 126, 220, 0.35); }

/* ── Grain texture (fine, ambient) ──────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Navigation ─────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(250, 247, 255, 0.7);
    border-bottom: 1px solid var(--line);
}

/* The nav is position:fixed (86px desktop / 70px mobile), so anchor jumps to a
   section must offset the scroll or the section eyebrow/title lands under it. */
section[id] { scroll-margin-top: 96px; }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: var(--ink);
    text-decoration: none;
}

.brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: radial-gradient(circle at 30% 30%, var(--violet-midnight), var(--violet-abyss));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-icon::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #f0e4ff 0%, #c9a4f0 25%, #8b5cd6 60%, #4a2578 100%);
    box-shadow: 0 0 12px rgba(181, 126, 220, 0.6);
}

.brand-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: white;
    opacity: 0.9;
    top: 8px;
    left: 8px;
}

.nav-links {
    display: flex;
    gap: 36px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.nav-links a {
    color: var(--mute);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--violet-deep); }

.nav-cta {
    padding: 8px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover { background: var(--violet-deep); }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding: 160px 48px 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--violet-deep);
    margin-bottom: 40px;
    opacity: 0;
    animation: rise 1s ease-out 0.2s forwards;
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--violet-deep);
    vertical-align: middle;
    margin-right: 16px;
}

h1.hero-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--ink);
    max-width: 1000px;
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
    opacity: 0;
    animation: rise 1.2s ease-out 0.4s forwards;
}

h1.hero-headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--violet-deep);
    font-variation-settings: "SOFT" 100;
}

.hero-expansion {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--mute);
    letter-spacing: 0.02em;
    max-width: 840px;
    margin-bottom: 32px;
    opacity: 0;
    animation: rise 1s ease-out 0.6s forwards;
}

.hero-expansion span {
    color: var(--violet-deep);
    font-weight: 500;
}

.hero-sub {
    font-family: 'Fraunces', serif;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 350;
    color: var(--mute);
    max-width: 640px;
    line-height: 1.5;
    margin-bottom: 56px;
    opacity: 0;
    animation: rise 1s ease-out 0.8s forwards;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 1s ease-out 1s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--ink);
}

.btn-primary:hover {
    background: var(--violet-deep);
    border-color: var(--violet-deep);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    color: var(--ink);
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--violet-deep);
    color: var(--violet-deep);
}

/* Hero ambient eye */
.hero-eye {
    position: absolute;
    right: -110px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--violet-midnight), var(--violet-abyss) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 2s ease-out 0.6s forwards, breathe 6s ease-in-out 2.6s infinite;
    pointer-events: none;
}

.hero-eye::before {
    content: '';
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, #f0e4ff 0%, #c9a4f0 25%, #8b5cd6 60%, #4a2578 100%);
    box-shadow: 0 0 80px rgba(181, 126, 220, 0.5), 0 0 160px rgba(181, 126, 220, 0.25);
    position: relative;
}

.hero-eye::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    opacity: 0.9;
    top: 35%;
    left: 35%;
    filter: blur(2px);
}

/* Hide the ambient eye on iPad-and-narrower so it never overlaps hero text */
@media (max-width: 1366px) {
    .hero-eye { display: none; }
}

@keyframes breathe {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
}

@keyframes fadeIn {
    to { opacity: 0.9; }
}

/* ── Statement / thesis ─────────────────────────────────────────────── */
.statement {
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--violet-deep);
    margin-bottom: 40px;
}

.statement p {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 350;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.statement p em {
    font-style: italic;
    color: var(--violet-deep);
}

.statement p + p {
    margin-top: 32px;
    font-size: clamp(20px, 2.2vw, 28px);
    color: var(--mute);
}

.statement p strong { color: var(--ink); font-weight: 600; }

/* ── Audience switcher ──────────────────────────────────────────────── */
.audience {
    padding: 60px 48px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.audience-header {
    text-align: center;
    margin-bottom: 56px;
}

.audience-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.audience-header h2 em {
    font-style: italic;
    color: var(--violet-deep);
}

.audience-header .lede {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--mute);
    line-height: 1.5;
    max-width: 560px;
    margin: 0 auto;
}

/* Toggle pill */
.audience-toggle {
    display: flex;
    width: fit-content;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 4px;
    margin: 48px auto 0;
    gap: 0;
}

.audience-toggle button {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.03em;
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: var(--mute);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.audience-toggle button:hover {
    color: var(--ink);
}

.audience-toggle button.active {
    background: var(--ink);
    color: var(--paper);
}

/* Panels - cross-fade via opacity, not display, so layout doesn't jump */
.audience-panels {
    margin-top: 72px;
    position: relative;
    min-height: 480px;
}

.audience-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.audience-panel[hidden] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0; left: 0; right: 0;
    pointer-events: none;
    display: grid;  /* keep layout for measurement */
}

.audience-panel:not([hidden]) {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.panel-copy h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 350;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.panel-copy h3 em {
    font-style: italic;
    color: var(--violet-deep);
}

.panel-copy > p {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    line-height: 1.6;
    color: var(--mute);
    margin-bottom: 20px;
}

.panel-copy > p:last-of-type {
    margin-bottom: 32px;
}

.panel-copy strong {
    color: var(--ink);
    font-weight: 500;
}

.panel-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.panel-bullets li {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-family: 'Fraunces', serif;
    font-size: 17px;
    color: var(--ink);
    line-height: 1.45;
}

.panel-bullets li:last-child {
    border-bottom: 1px solid var(--line);
}

.panel-bullet-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--violet-deep);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    padding-top: 4px;
    min-width: 24px;
}

.panel-bullet-text strong {
    display: inline;
    color: var(--ink);
    font-weight: 500;
}

.panel-bullet-text span {
    color: var(--mute);
    font-size: 15px;
    display: block;
    margin-top: 4px;
    line-height: 1.5;
}

/* The "what you tell your VC" quote in the company panel */
.pitch-quote {
    padding: 32px 36px;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-left: 3px solid var(--violet);
    border-radius: 4px;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    color: var(--ink);
    margin: 32px 0 0;
    position: relative;
}

.pitch-quote::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 60px;
    color: var(--violet);
    opacity: 0.3;
    line-height: 1;
    font-family: 'Fraunces', serif;
}

.pitch-quote__text {
    position: relative;
    z-index: 1;
}

.pitch-quote__attrib {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: var(--mute);
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.03em;
}

/* Panel CTA - primary action on the right column */
.panel-cta {
    padding: 40px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.panel-cta h4 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 350;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--paper);
}

.free-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 9px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--ink);
    background: var(--gold);
    border-radius: 100px;
    vertical-align: middle;
}

.panel-cta p {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: rgba(250, 247, 255, 0.7);
    margin-bottom: 28px;
    line-height: 1.55;
}

.panel-cta .btn-primary {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
    width: 100%;
    justify-content: center;
}

.panel-cta .btn-primary:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: var(--paper);
}

.panel-cta__meta {
    margin-top: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(250, 247, 255, 0.5);
    text-align: center;
}

.panel-cta__meta a {
    color: var(--violet);
    text-decoration: none;
}

/* ── Features ( How it works ) ──────────────────────────────────────── */
.features {
    padding: 60px 48px;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 126, 220, 0.15), transparent 70%);
    pointer-events: none;
}

.features-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.features-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: end;
}

.features-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--violet);
}

.features-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.features-title em {
    font-style: italic;
    color: var(--violet);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(181, 126, 220, 0.15);
    border: 1px solid rgba(181, 126, 220, 0.15);
}

.feature {
    padding: 48px 40px;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 320px;
    transition: background 0.3s;
}

.feature:hover {
    background: var(--violet-abyss);
}

.feature-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--violet);
    letter-spacing: 0.1em;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
}

.feature h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--paper);
}

.feature p {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(250, 247, 255, 0.65);
    margin-top: auto;
}

/* ── Use cases ──────────────────────────────────────────────────────── */
.usecases {
    padding: 80px 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.usecases-header { margin-bottom: 56px; }
.usecases h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-top: 16px;
}
.usecases h2 em { font-style: italic; color: var(--violet-deep); }
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.usecase {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper-warm);
}
.usecase h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--ink);
}
.usecase p {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--mute);
}
.usecase p strong { color: var(--ink); font-weight: 600; }

/* ── Audit log preview ──────────────────────────────────────────────── */
.preview {
    padding: 80px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 64px;
    gap: 48px;
}

.preview-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--violet-deep);
    margin-bottom: 24px;
}

.preview h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 700px;
}

.preview h2 em { font-style: italic; color: var(--violet-deep); }

.preview-note {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--mute);
    max-width: 320px;
    line-height: 1.5;
}

/* ── Screenshot gallery (tabbed) ──────────────────────────────────── */
.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 48px;
    padding: 6px;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 100px;
}
.gallery-tab {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--mute);
    background: transparent;
    border: none;
    padding: 10px 22px;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}
.gallery-tab:hover { color: var(--ink); }
.gallery-tab.active { background: var(--ink); color: var(--paper); }

.gallery-panel { text-align: center; }
.gallery-panel[hidden] { display: none; }

.gallery-title {
    font-family: 'Fraunces', serif;
    font-weight: 350;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 820px;
    margin: 0 auto 32px;
}
.gallery-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px -24px rgba(74, 37, 120, 0.28);
    background: var(--paper-warm);
    line-height: 0;
}
.gallery-frame img { display: block; width: 100%; height: auto; }
.gallery-caption {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--mute);
    max-width: 720px;
    margin: 32px auto 0;
}
.gallery-caption strong { color: var(--ink); font-weight: 600; }
.gallery-caption code { font-family: 'JetBrains Mono', monospace; font-size: 0.82em; color: var(--ink); }

/* Log window - mimics the real macOS app in light mode.
   Structural choices track action-log-v2.html: titlebar segmented control,
   toolbar with date + severity filter + live indicator, 7-column table
   (stripe, Time, Who, Summary, Object, Command/Path, Info), colored
   severity stripes, coalesce badges, session start/end rows. */
.log-window {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(139, 92, 214, 0.08),
        0 30px 60px -15px rgba(74, 37, 120, 0.15),
        0 80px 100px -40px rgba(74, 37, 120, 0.1);
    border: 1px solid var(--line);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}

/* Titlebar ─ traffic lights + segmented control + centered IAXT */
.log-titlebar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 14px;
    height: 40px;
    background: linear-gradient(180deg, #f5f0ff 0%, #ebe2f7 100%);
    border-bottom: 1px solid var(--line);
}

.log-traffic-lights { display: flex; gap: 8px; }
.log-dot { width: 12px; height: 12px; border-radius: 50%; }
.log-dot.r { background: #ff5f57; }
.log-dot.y { background: #febc2e; }
.log-dot.g { background: #28c840; }

.log-segmented {
    display: flex;
    gap: 1px;
    padding: 2px;
    border-radius: 6px;
    background: rgba(139, 92, 214, 0.08);
    margin-right: auto;
}

.log-seg-btn {
    padding: 3px 12px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    color: var(--mute);
    cursor: default;
    display: flex;
    align-items: center;
    gap: 5px;
}

.log-seg-btn.active {
    background: white;
    color: var(--ink);
    box-shadow: 0 1px 2px rgba(74, 37, 120, 0.08);
}

.log-titlebar-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    pointer-events: none;
}

/* Toolbar ─ date + severity filter + search + live indicator + row count */
.log-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: var(--paper-warm);
    border-bottom: 1px solid var(--line);
}

.log-date-group { display: flex; align-items: center; gap: 6px; }

.log-date-btn,
.log-today-btn {
    padding: 4px 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-family: inherit;
    font-size: 12px;
    color: var(--ink);
    cursor: default;
}

.log-today-btn {
    font-size: 11px;
    font-weight: 600;
    color: var(--mute);
    opacity: 0.5;
}

.log-sev-filter {
    display: flex;
    background: white;
    border: 1px solid var(--line);
    border-radius: 5px;
    overflow: hidden;
}

.log-sev-btn {
    padding: 4px 10px;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    color: var(--mute);
    cursor: default;
}
.log-sev-btn:last-child { border-right: 0; }
.log-sev-btn.active { color: var(--ink); background: rgba(139, 92, 214, 0.08); }

.log-sev-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}
.log-sev-dot.flagged { background: var(--gold); }
.log-sev-dot.review  { background: var(--violet); }

.log-search {
    width: 200px;
    padding: 4px 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-family: inherit;
    font-size: 12px;
    color: var(--ink);
}
.log-search::placeholder { color: var(--mute); }
.log-search:focus { outline: none; border-color: var(--violet-deep); }

.log-toolbar-spacer { flex: 1; }

.log-scroll-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--mute);
}
.log-scroll-status.live { color: #2a9d4a; }
.log-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mute); }
.log-scroll-status.live .log-status-dot {
    background: #2a9d4a;
    animation: log-pulse 2s infinite;
}
@keyframes log-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

.log-row-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--mute);
}

/* Table */
.log-table-wrap {
    max-height: 640px;
    overflow-y: auto;
    background: white;
}

.log-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    font-family: inherit;
}

.log-table thead { position: sticky; top: 0; z-index: 2; }

.log-table th {
    padding: 6px 10px;
    background: var(--paper-warm);
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--mute);
    white-space: nowrap;
}
.log-table th.log-stripe-col { width: 3px; padding: 0; }

.log-table td {
    padding: 7px 10px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    line-height: 1.45;
    color: var(--ink);
}

.log-table tr:hover { background: rgba(139, 92, 214, 0.03); }

/* Severity stripe cell (the 3px colored left edge) */
.log-table td.log-stripe { width: 3px; padding: 0; }
.log-table td.log-stripe-review  { background: var(--violet); }
.log-table td.log-stripe-flagged { background: var(--gold); }

/* Row-level background tints */
.log-table tr.log-row-review   { background: rgba(160, 126, 212, 0.06); }
.log-table tr.log-row-review:hover  { background: rgba(160, 126, 212, 0.09); }
.log-table tr.log-row-flagged  { background: rgba(201, 168, 76, 0.05); }
.log-table tr.log-row-flagged:hover { background: rgba(201, 168, 76, 0.08); }
.log-table tr.log-session      { background: rgba(86, 156, 214, 0.06); }
.log-table tr.log-session:hover { background: rgba(86, 156, 214, 0.10); }
.log-table tr.log-session-end  { border-bottom: 2px solid var(--line); }

/* Time column */
.log-col-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--mute);
    white-space: nowrap;
    width: 78px;
}

/* Who column */
.log-col-who { width: 120px; }
.log-actor          { font-size: 12px; font-weight: 500; color: var(--ink); }
.log-actor.you      { color: #4e6eb8; }
.log-actor.system   { color: var(--mute); }
.log-actor.unverified { color: var(--violet); }

.log-how-pill {
    display: inline-block;
    padding: 0 5px;
    margin-top: 2px;
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.log-how-confirmed {
    color: #4e6eb8;
    background: rgba(86, 156, 214, 0.12);
    border: 1px solid rgba(86, 156, 214, 0.25);
}
.log-how-likely {
    color: var(--violet-deep);
    background: rgba(139, 92, 214, 0.10);
    border: 1px solid rgba(139, 92, 214, 0.25);
}
.log-how-possible {
    color: var(--mute);
    background: rgba(107, 93, 130, 0.10);
    border: 1px solid var(--line);
}

/* Summary column */
.log-col-summary   { min-width: 140px; }
.log-summary-verb  { font-size: 12px; font-weight: 500; color: var(--ink); }
.log-coalesce {
    display: inline-block;
    padding: 0 5px;
    margin-left: 4px;
    border-radius: 8px;
    background: var(--paper-warm);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    color: var(--mute);
    vertical-align: middle;
}

.log-session-label { font-size: 12px; font-weight: 600; color: #4e6eb8; }
.log-session-meta  { font-size: 11px; color: var(--mute); }

/* Object column */
.log-col-object { min-width: 160px; max-width: 300px; }
.log-object-text {
    font-size: 12px;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.log-object-path {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--mute);
}
.log-severity-reason { margin-top: 2px; font-size: 10px; line-height: 1.3; }
.log-severity-reason.flagged { color: var(--gold-deep); }
.log-severity-reason.review  { color: var(--violet-deep); }

/* Command / Path column */
.log-col-cmd {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--mute);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

/* Info column */
.log-col-info {
    font-size: 11px;
    color: var(--mute);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

/* Footer */
.log-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--mute);
}
.log-footer-dot { width: 6px; height: 6px; border-radius: 50%; background: #2a9d4a; }

/* ─── External pill toggle above the mockups (Overview ↔ Action Log).
   Matches the audience-switcher pattern so the same interaction idiom
   is used everywhere on the page.  In-mockup segmented controls are
   purely decorative - each mockup represents one snapshot state. */
.log-view-toggle {
    display: inline-flex;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 4px;
    gap: 0;
    margin: 0 auto 56px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.log-view-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.03em;
    padding: 12px 28px;
    border: 0;
    background: transparent;
    color: var(--mute);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}
.log-view-pill:hover { color: var(--ink); }
.log-view-pill.active {
    background: var(--ink);
    color: var(--paper);
}

.log-view-panel { display: none; }
.log-view-panel.active { display: block; }

/* Overview toolbar variant - no severity filter, search, or row count */
.log-toolbar-overview .log-sev-filter,
.log-toolbar-overview .log-search,
.log-toolbar-overview .log-row-count { display: none; }

/* Overview scrolling content area */
.log-overview {
    max-height: 640px;
    overflow-y: auto;
    padding: 18px 22px;
    background: white;
}

.log-dash-section { margin-bottom: 20px; }
.log-dash-section:last-child { margin-bottom: 4px; }

.log-dash-section-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--mute);
    margin-bottom: 8px;
}
.log-dash-scope { font-weight: 500; letter-spacing: 0.4px; }

/* Hero card */
.log-dash-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 10px;
    border: 1px solid transparent;
}
.log-dash-hero.review {
    background: rgba(160, 126, 212, 0.08);
    border-color: rgba(160, 126, 212, 0.22);
}
.log-dash-hero.review .log-hero-title { color: var(--violet-deep); }

.log-hero-icon { font-size: 26px; line-height: 1; }
.log-hero-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.log-hero-title { font-size: 16px; font-weight: 600; color: var(--ink); }
.log-hero-sub { font-size: 12px; color: var(--mute); line-height: 1.45; }
.log-hero-chevron { font-size: 18px; color: var(--mute); opacity: 0.5; }

/* Metric cards */
.log-dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.log-dash-metric-card {
    padding: 14px 16px;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.log-metric-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mute);
}
.log-metric-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
}
.log-metric-sub { font-size: 11px; color: var(--mute); }

/* Activity rhythm (24-hour sparkline) */
.log-dash-rhythm {
    padding: 14px 18px 10px;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.log-rhythm-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 60px;
    margin-bottom: 6px;
}
.log-rhythm-bar {
    flex: 1;
    min-height: 2px;
    background: #4e6eb8;
    opacity: 0.45;
    border-radius: 2px 2px 0 0;
}
.log-rhythm-bar.zero { opacity: 0.12; }
.log-rhythm-bar.peak { opacity: 0.7; }
.log-rhythm-axis {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--mute);
    padding: 0 2px;
}
.log-rhythm-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 8px;
    font-size: 11px;
    color: var(--mute);
}
.log-rhythm-meta strong { color: var(--ink); font-weight: 500; }
.log-rhythm-meta .log-peak-value {
    font-family: 'JetBrains Mono', monospace;
    color: var(--ink);
    font-weight: 600;
}

/* Two-column breakdown cards */
.log-dash-two-col { display: grid; gap: 16px; margin-bottom: 20px; }
@media (min-width: 900px) {
    .log-dash-two-col { grid-template-columns: 1fr 1fr; }
    .log-dash-two-col .log-dash-section { margin-bottom: 0; }
}

.log-dash-bar-list {
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.log-dash-bar-row {
    display: grid;
    grid-template-columns: 1fr auto 36px;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    border-bottom: 1px solid var(--line);
}
.log-dash-bar-row:last-child { border-bottom: 0; }
.log-dash-bar-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.log-dash-bar-track {
    width: 120px;
    height: 6px;
    background: rgba(139, 92, 214, 0.08);
    border-radius: 3px;
    overflow: hidden;
}
.log-dash-bar-fill {
    height: 100%;
    background: #4e6eb8;
    opacity: 0.5;
    border-radius: 3px;
}
.log-dash-bar-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    text-align: right;
}
.log-dash-bar-more {
    padding: 8px 14px;
    font-size: 11px;
    color: var(--mute);
    text-align: right;
}

/* ── Blind spots ────────────────────────────────────────────────────── */
.blindspots {
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.blindspots h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 780px;
}

.blindspots h2 em { font-style: italic; color: var(--violet-deep); }

.blindspots .lede {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--mute);
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.5;
}

/* Where IAXT fits: Nothing -- IAXT -- Endpoint Security / EDR */
.spectrum { max-width: 900px; margin: 0 0 64px; }
.spectrum-bar {
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--line) 0%, var(--violet) 50%, var(--violet-dark) 100%);
    margin-bottom: 20px;
}
.spectrum-stops {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.2fr;
    gap: 16px;
}
.spectrum-stop:first-child { text-align: left; }
.spectrum-stop:nth-child(2) { text-align: center; }
.spectrum-stop:last-child { text-align: right; }
.spectrum-stop strong {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 8px;
}
.spectrum-stop--active strong { color: var(--violet-deep); }
.spectrum-stop span {
    font-family: 'Fraunces', serif;
    font-size: 15px;
    line-height: 1.45;
    color: var(--mute);
}
.spectrum-stop--active span { color: var(--ink); }
.spectrum-note {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    max-width: 720px;
    margin: 36px 0 0;
}

.blindspot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.blindspot {
    padding: 32px;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.blindspot h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--ink);
}

.blindspot p {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: var(--mute);
    line-height: 1.55;
}

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq {
    padding: 60px 48px;
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 56px;
    max-width: 640px;
}

.faq h2 em { font-style: italic; color: var(--violet-deep); }

.faq-items {
    display: grid;
    gap: 0;
}

.faq details {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    /* Deep-linked FAQ (via #faq-... hash) clears the sticky nav when scrolled to. */
    scroll-margin-top: 96px;
}

.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    transition: color 0.2s;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary:hover { color: var(--violet-deep); }

.faq summary::after {
    content: '+';
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--mute);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
    flex-shrink: 0;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
    color: var(--violet-deep);
}

.faq details > p {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    color: var(--mute);
    line-height: 1.6;
    margin-top: 20px;
    max-width: 720px;
}

.faq details > p code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    background: var(--paper-warm);
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--violet-deep);
}

.faq details strong { color: var(--ink); font-weight: 600; }

.faq-figure { margin: 24px 0 0; max-width: 720px; }
.faq-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px -20px rgba(74, 37, 120, 0.22);
    background: var(--paper-warm);
}
.faq-figure figcaption {
    font-family: 'Fraunces', serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--mute);
    margin-top: 12px;
}
.faq-figure figcaption code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    background: var(--paper-warm);
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--violet-deep);
    word-break: break-word;
}

/* ── Final CTA ──────────────────────────────────────────────────────── */
.final-cta {
    padding: 80px 48px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 48px;
}

.final-cta h2 em { font-style: italic; color: var(--violet-deep); }

.final-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--mute);
    margin-top: 28px;
    letter-spacing: 0.05em;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
footer {
    padding: 48px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--mute);
    max-width: 1400px;
    margin: 0 auto;
}

footer a {
    color: var(--mute);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover { color: var(--violet-deep); }

/* On mobile, stack and center the two footer lines */
@media (max-width: 640px) {
    footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .feature-grid { grid-template-columns: 1fr; }
    .features-header { grid-template-columns: 1fr; gap: 32px; }
    .usecases-grid { grid-template-columns: 1fr; }
    .preview-header { flex-direction: column; align-items: start; }
    /* Log table - hide non-essential columns on mobile */
    .log-col-object,
    .log-col-cmd,
    .log-col-info,
    .log-table th:nth-child(5),
    .log-table th:nth-child(6),
    .log-table th:nth-child(7) { display: none; }
    .log-search, .log-sev-filter, .log-date-group, .log-toolbar-spacer { display: none; }
    .log-toolbar { flex-wrap: wrap; gap: 8px; }
    .log-titlebar-title { position: static; transform: none; }
    .log-segmented { display: none; }
    /* Overview cards: collapse 3-column metrics grid on phones */
    .log-dash-metrics { grid-template-columns: 1fr; }
    .log-overview { padding: 14px 16px; }
    .log-view-pill { padding: 10px 20px; font-size: 12px; }
    .blindspot-grid { grid-template-columns: 1fr; }
    .audience-panel { grid-template-columns: 1fr; gap: 40px; }
    .panel-cta { position: static; }
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero, .statement, .features, .preview, .final-cta, .blindspots, .faq, .audience { padding-left: 24px; padding-right: 24px; }
}

/* Honour reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ============================================================================
   Press kit page (press-kit.html)
   ============================================================================ */
.pk { max-width: 900px; margin: 0 auto; padding: 150px 48px 120px; }
.pk-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--violet-deep); margin-bottom: 24px; }
.pk-eyebrow::before { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--violet-deep); vertical-align: middle; margin-right: 16px; }
.pk h1 { font-family: 'Fraunces', serif; font-size: clamp(44px, 7vw, 84px); font-weight: 300; letter-spacing: -0.03em; line-height: 1; margin: 0 0 24px; }
.pk h1 em { font-style: italic; color: var(--violet-deep); }
.pk-subtitle { font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 300; color: var(--mute); letter-spacing: -0.01em; margin: 0 0 24px; }
.pk-subtitle em { font-style: italic; color: var(--violet-deep); }
.pk-lede { font-family: 'Fraunces', serif; font-size: clamp(20px, 2.4vw, 26px); font-weight: 350; color: var(--mute); line-height: 1.5; max-width: 680px; }
.pk h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 3.6vw, 44px); font-weight: 300; letter-spacing: -0.02em; margin: 72px 0 18px; }
.pk h2 em { font-style: italic; color: var(--violet-deep); }
.pk p { font-size: 18px; line-height: 1.65; color: var(--ink); margin: 16px 0; }
.pk-facts { list-style: none; padding: 0; margin: 16px 0; }
.pk-facts li { padding: 14px 0; border-top: 1px solid var(--line); font-size: 16px; line-height: 1.55; color: var(--ink); }
.pk-ol { font-size: 18px; line-height: 1.65; color: var(--ink); padding-left: 26px; margin: 18px 0; }
.pk-ol li { margin: 14px 0; padding-left: 4px; }
.pk-copyblock { background: var(--paper-warm); border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px; font-size: 16px; line-height: 1.6; color: var(--ink); margin: 16px 0; }
.pk-copylabel { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-bottom: 10px; }
.pk-logos { display: flex; gap: 20px; align-items: stretch; flex-wrap: wrap; margin: 24px 0; }
.pk-logo-tile { background: var(--paper-warm); border: 1px solid var(--line); border-radius: 16px; padding: 32px; display: flex; align-items: center; justify-content: center; }
.pk-logo-tile img { display: block; }
.pk-dl { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; background: var(--ink); color: var(--paper); border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 14px; text-decoration: none; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); border: 1px solid var(--ink); margin-top: 12px; }
.pk-dl:hover { background: var(--violet-deep); border-color: var(--violet-deep); transform: translateY(-1px); }
.pk-shots { display: grid; grid-template-columns: 1fr; gap: 40px; margin: 28px 0; }
.pk-shot img { width: 100%; border: 1px solid var(--line); border-radius: 12px; display: block; }
.pk-cap { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--mute); margin-top: 12px; line-height: 1.5; }
@media (max-width: 640px) { .pk { padding: 132px 24px 80px; } }
