/* ==========================================================================
   WOLF AUTOMATIONS — DESIGN SYSTEM
   A refined, editorial-meets-tech aesthetic.
   Built by the house, for the house.
   ========================================================================== */

/* --- Design Tokens -------------------------------------------------------- */
:root {
    /* Color */
    --color-ink: #0A0A0A;
    --color-ink-soft: #1A1A1A;
    --color-graphite: #4A4A4A;
    --color-stone: #737373;
    --color-mist: #A8A8A8;
    --color-fog: #E5E5E5;
    --color-cloud: #F5F5F5;
    --color-snow: #FAFAFA;
    --color-paper: #FFFFFF;

    --color-red: #D41F26;
    --color-red-deep: #A8181E;
    --color-red-bright: #E8252C;
    --color-red-wash: rgba(212, 31, 38, 0.08);

    /* Surfaces */
    --surface-primary: var(--color-paper);
    --surface-secondary: var(--color-snow);
    --surface-tertiary: var(--color-cloud);
    --surface-inverse: var(--color-ink);

    /* Typography */
    --font-display: 'Fraunces', 'Georgia', serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

    /* Type Scale — tuned by the ear */
    --text-xs: 0.75rem;     /* 12 */
    --text-sm: 0.875rem;    /* 14 */
    --text-base: 1rem;      /* 16 */
    --text-md: 1.125rem;    /* 18 */
    --text-lg: 1.25rem;     /* 20 */
    --text-xl: 1.5rem;      /* 24 */
    --text-2xl: 1.875rem;   /* 30 */
    --text-3xl: 2.5rem;     /* 40 */
    --text-4xl: 3.5rem;     /* 56 */
    --text-5xl: 4.75rem;    /* 76 */
    --text-6xl: 6.5rem;     /* 104 */
    --text-7xl: 9rem;       /* 144 */

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --space-40: 10rem;

    /* Layout */
    --max-width: 1440px;
    --content-width: 1200px;
    --narrow-width: 760px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --duration-fast: 180ms;
    --duration-base: 320ms;
    --duration-slow: 580ms;
    --duration-extra: 900ms;

    /* Elevation */
    --shadow-xs: 0 1px 2px rgba(10, 10, 10, 0.04);
    --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.05), 0 1px 2px rgba(10, 10, 10, 0.03);
    --shadow-md: 0 8px 24px rgba(10, 10, 10, 0.08), 0 2px 6px rgba(10, 10, 10, 0.04);
    --shadow-lg: 0 24px 60px rgba(10, 10, 10, 0.12), 0 8px 16px rgba(10, 10, 10, 0.06);
    --shadow-red: 0 20px 50px rgba(212, 31, 38, 0.25);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    /* Border */
    --border-hairline: 1px solid rgba(10, 10, 10, 0.08);
    --border-soft: 1px solid rgba(10, 10, 10, 0.12);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-ink);
    background: var(--color-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    font-feature-settings: 'ss01', 'ss02', 'cv11';
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--color-red); color: var(--color-paper); }

/* --- Typography classes --------------------------------------------------- */
.display-xl {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(var(--text-4xl), 8vw, var(--text-7xl));
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.display-lg {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(var(--text-3xl), 6vw, var(--text-6xl));
    line-height: 1.0;
    letter-spacing: -0.035em;
}

.display-md {
    font-weight: 700;
    font-size: clamp(var(--text-2xl), 5vw, var(--text-5xl));
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.display-sm {
    font-weight: 700;
    font-size: clamp(var(--text-xl), 3.5vw, var(--text-3xl));
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.italic-accent {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-red);
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: currentColor;
}

.eyebrow.centered { justify-content: center; }

.lead {
    font-size: clamp(var(--text-md), 2vw, var(--text-xl));
    line-height: 1.5;
    color: var(--color-graphite);
    font-weight: 400;
    max-width: 62ch;
}

.micro {
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-stone);
    font-weight: 600;
}

/* --- Layout primitives ---------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

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

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

section { position: relative; }

.section-pad {
    padding-block: clamp(var(--space-20), 10vw, var(--space-40));
}

.section-pad-sm {
    padding-block: clamp(var(--space-16), 7vw, var(--space-24));
}

/* --- Nav ------------------------------------------------------------------ */
.nav {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 100;
    transition: background var(--duration-base) var(--ease-out),
                border-color var(--duration-base) var(--ease-out),
                backdrop-filter var(--duration-base) var(--ease-out);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom-color: rgba(10, 10, 10, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin-inline: auto;
    padding: var(--space-4) var(--gutter);
    gap: var(--space-8);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 800;
    font-size: var(--text-md);
    letter-spacing: -0.02em;
    color: var(--color-ink);
    transition: opacity var(--duration-fast) var(--ease-out);
}

.nav-brand:hover { opacity: 0.7; }

.nav-brand img {
    height: 36px;
    width: auto;
}

.nav-brand .brand-mark {
    display: flex;
    align-items: baseline;
    gap: 0.28em;
}

.nav-brand .brand-accent {
    color: var(--color-red);
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(-0.05em);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-ink-soft);
    position: relative;
    padding-block: var(--space-2);
    transition: color var(--duration-fast) var(--ease-out);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-base) var(--ease-out);
}

.nav-link:hover { color: var(--color-red); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--color-red); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.65rem 1.25rem;
    background: var(--color-ink);
    color: var(--color-paper);
    border-radius: var(--radius-pill);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: background var(--duration-fast) var(--ease-out),
                transform var(--duration-fast) var(--ease-out);
}

.nav-cta:hover {
    background: var(--color-red);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-ink);
    position: relative;
    transition: all var(--duration-base) var(--ease-out);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 1.5px;
    background: var(--color-ink);
    transition: all var(--duration-base) var(--ease-out);
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* --- Buttons -------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.95rem 1.75rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--duration-base) var(--ease-out);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.1;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-paper);
}

.btn-primary:hover {
    background: var(--color-red-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-dark {
    background: var(--color-ink);
    color: var(--color-paper);
}

.btn-dark:hover {
    background: var(--color-red);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-ink);
    border: 1.5px solid var(--color-ink);
}

.btn-ghost:hover {
    background: var(--color-ink);
    color: var(--color-paper);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: var(--color-paper);
    border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-ghost-light:hover {
    background: var(--color-paper);
    color: var(--color-ink);
    border-color: var(--color-paper);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-ink);
    font-weight: 600;
    font-size: var(--text-sm);
    padding-block: var(--space-2);
    position: relative;
    transition: color var(--duration-fast) var(--ease-out);
}

.btn-link .arrow {
    transition: transform var(--duration-base) var(--ease-out);
}

.btn-link:hover { color: var(--color-red); }
.btn-link:hover .arrow { transform: translateX(6px); }

/* --- Grain / Texture overlay --------------------------------------------- */
.grain::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.18;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 1;
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: clamp(6rem, 12vh, 9rem);
    padding-bottom: clamp(3rem, 8vh, 6rem);
    overflow: hidden;
    background: var(--color-paper);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle at center, rgba(212, 31, 38, 0.07), transparent 70%);
    filter: blur(40px);
}

.hero-bg::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 80vw;
    height: 80vw;
    max-width: 1000px;
    max-height: 1000px;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.04), transparent 60%);
    filter: blur(30px);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10,10,10,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,10,10,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, transparent 75%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-eyebrow {
    margin-bottom: var(--space-6);
}

.hero-title {
    margin-bottom: var(--space-8);
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: reveal-word var(--duration-extra) var(--ease-out) forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.05s; }
.hero-title .word:nth-child(2) { animation-delay: 0.15s; }
.hero-title .word:nth-child(3) { animation-delay: 0.25s; }
.hero-title .word:nth-child(4) { animation-delay: 0.35s; }
.hero-title .word:nth-child(5) { animation-delay: 0.45s; }
.hero-title .word:nth-child(6) { animation-delay: 0.55s; }
.hero-title .word:nth-child(7) { animation-delay: 0.65s; }

@keyframes reveal-word {
    to { opacity: 1; transform: translateY(0); }
}

.hero-title .highlight {
    color: var(--color-red);
}

.hero-lead {
    opacity: 0;
    animation: fade-up var(--duration-extra) var(--ease-out) forwards;
    animation-delay: 0.85s;
    margin-bottom: var(--space-10);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up var(--duration-extra) var(--ease-out) forwards;
    animation-delay: 1.05s;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-visual {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fade-in var(--duration-extra) var(--ease-out) forwards;
    animation-delay: 0.3s;
}

@keyframes fade-in {
    to { opacity: 1; }
}

.hero-wolf {
    width: 85%;
    max-width: 500px;
    filter: drop-shadow(0 30px 60px rgba(212, 31, 38, 0.25));
    animation: float-slow 8s ease-in-out infinite;
}

.hero-orbit {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-orbit-ring {
    position: absolute;
    border: 1px dashed rgba(212, 31, 38, 0.2);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

.hero-orbit-ring.r1 { width: 90%; height: 90%; animation-duration: 50s; }
.hero-orbit-ring.r2 { width: 110%; height: 110%; animation-duration: 80s; animation-direction: reverse; border-color: rgba(10, 10, 10, 0.08); }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-stats {
    margin-top: var(--space-16);
    padding-top: var(--space-10);
    border-top: var(--border-hairline);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    grid-column: 1 / -1;
    opacity: 0;
    animation: fade-up var(--duration-extra) var(--ease-out) forwards;
    animation-delay: 1.3s;
}

.hero-stat-value {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-ink);
    line-height: 1;
}

.hero-stat-value .unit {
    color: var(--color-red);
}

.hero-stat-label {
    margin-top: var(--space-2);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-stone);
    font-weight: 500;
}

/* --- Marquee -------------------------------------------------------------- */
.marquee {
    overflow: hidden;
    padding: var(--space-8) 0;
    border-block: var(--border-hairline);
    background: var(--color-snow);
}

.marquee-track {
    display: flex;
    gap: var(--space-12);
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-stone);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.marquee-item .dot {
    width: 4px;
    height: 4px;
    background: var(--color-red);
    border-radius: 50%;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Section headers ------------------------------------------------------ */
.section-header {
    max-width: 900px;
    margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.section-header.centered {
    margin-inline: auto;
    text-align: center;
}

.section-header h2 {
    margin-top: var(--space-4);
    margin-bottom: var(--space-6);
}

/* --- Capabilities grid ---------------------------------------------------- */
.capabilities {
    background: var(--color-paper);
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.cap-card {
    position: relative;
    padding: var(--space-10);
    background: var(--color-paper);
    border: var(--border-hairline);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.cap-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(212, 31, 38, 0.04));
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-out);
}

.cap-card:hover {
    border-color: rgba(212, 31, 38, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.cap-card:hover::before { opacity: 1; }

.cap-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--color-red-wash);
    color: var(--color-red);
    margin-bottom: var(--space-8);
    transition: all var(--duration-base) var(--ease-out);
    position: relative;
    z-index: 1;
}

.cap-card:hover .cap-icon {
    background: var(--color-red);
    color: var(--color-paper);
    transform: scale(1.08) rotate(-6deg);
}

.cap-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.8;
}

.cap-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
}

.cap-card p {
    color: var(--color-graphite);
    font-size: var(--text-base);
    line-height: 1.55;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.cap-card-tag {
    margin-top: var(--space-6);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-red);
    position: relative;
    z-index: 1;
}

/* --- Numbered list / process --------------------------------------------- */
.process {
    background: var(--color-snow);
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    counter-reset: step;
}

.process-step {
    counter-increment: step;
    position: relative;
    padding-top: var(--space-6);
    border-top: 2px solid var(--color-ink);
}

.process-step::before {
    content: "0" counter(step);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-red);
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: var(--space-6);
}

.process-step h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3);
    line-height: 1.15;
}

.process-step p {
    color: var(--color-graphite);
    font-size: var(--text-sm);
    line-height: 1.55;
}

/* --- Featured product ---------------------------------------------------- */
.product-featured {
    background: var(--color-ink);
    color: var(--color-paper);
    position: relative;
    overflow: hidden;
}

.product-featured::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(212, 31, 38, 0.2), transparent 60%);
    pointer-events: none;
}

.product-featured-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    z-index: 1;
}

.product-featured .eyebrow {
    color: var(--color-red-bright);
}

.product-featured h2 {
    color: var(--color-paper);
    margin-top: var(--space-4);
    margin-bottom: var(--space-6);
}

.product-featured p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
    font-size: var(--text-md);
    max-width: 52ch;
}

.product-featured ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
}

.product-featured ul li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-base);
}

.product-featured ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-red-bright);
    border-radius: 50%;
    flex-shrink: 0;
}

.product-mockup {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-mockup-panel {
    width: 100%;
    max-width: 480px;
    padding: var(--space-8);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.product-mockup-panel::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 31, 38, 0.3), transparent 70%);
    filter: blur(40px);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
    position: relative;
}

.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.mockup-label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    position: relative;
}

.mockup-line {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    animation: pulse 3s ease-in-out infinite;
}

.mockup-line.w-90 { width: 90%; }
.mockup-line.w-70 { width: 70%; }
.mockup-line.w-80 { width: 80%; }
.mockup-line.w-55 { width: 55%; }
.mockup-line.w-65 { width: 65%; }
.mockup-line.red {
    background: linear-gradient(90deg, var(--color-red), var(--color-red-bright));
}

.mockup-line:nth-child(2) { animation-delay: 0.3s; }
.mockup-line:nth-child(3) { animation-delay: 0.6s; }
.mockup-line:nth-child(4) { animation-delay: 0.9s; }
.mockup-line:nth-child(5) { animation-delay: 1.2s; }

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.mockup-stat-row {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.mockup-stat {
    flex: 1;
}

.mockup-stat-val {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-paper);
    letter-spacing: -0.02em;
}

.mockup-stat-lbl {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--color-red);
    color: var(--color-paper);
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.coming-soon-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-paper);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* --- Large editorial block ---------------------------------------------- */
.editorial {
    padding-block: clamp(var(--space-24), 12vw, var(--space-40));
    background: var(--color-paper);
}

.editorial-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--color-ink);
    max-width: 20ch;
}

.editorial-quote .accent {
    color: var(--color-red);
}

.editorial-attribution {
    margin-top: var(--space-10);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.editorial-line {
    width: 48px;
    height: 1px;
    background: var(--color-ink);
}

/* --- Why us / Principles ------------------------------------------------- */
.principles {
    background: var(--color-snow);
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.principle-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-6);
    align-items: start;
}

.principle-num {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-red);
    letter-spacing: 0.08em;
    padding-top: 4px;
}

.principle-body h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2);
}

.principle-body p {
    color: var(--color-graphite);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* --- CTA section --------------------------------------------------------- */
.cta-block {
    padding-block: clamp(var(--space-20), 9vw, var(--space-32));
    background: var(--color-ink);
    color: var(--color-paper);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 31, 38, 0.25), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.cta-block h2 {
    color: var(--color-paper);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

.cta-block p {
    color: rgba(255,255,255,0.7);
    max-width: 60ch;
    margin-inline: auto;
    margin-bottom: var(--space-10);
    font-size: var(--text-md);
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* --- Footer -------------------------------------------------------------- */
.footer {
    background: var(--color-paper);
    border-top: var(--border-hairline);
    padding-block: var(--space-20) var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.footer-brand-col p {
    color: var(--color-graphite);
    font-size: var(--text-sm);
    line-height: 1.6;
    max-width: 40ch;
    margin-top: var(--space-4);
}

.footer-col h5 {
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-stone);
    margin-bottom: var(--space-5);
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-col a {
    font-size: var(--text-sm);
    color: var(--color-ink-soft);
    transition: color var(--duration-fast) var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col a:hover { color: var(--color-red); }

.footer-bottom {
    padding-top: var(--space-8);
    border-top: var(--border-hairline);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.footer-legal span,
.footer-legal a {
    font-size: var(--text-xs);
    color: var(--color-stone);
    letter-spacing: 0.02em;
}

.footer-legal a:hover { color: var(--color-red); }

.footer-signet {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xs);
    color: var(--color-stone);
}

.footer-signet .sig-dot {
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
}

/* --- Page Hero (secondary pages) ----------------------------------------- */
.page-hero {
    padding-top: clamp(8rem, 18vh, 12rem);
    padding-bottom: clamp(var(--space-16), 10vh, var(--space-24));
    background: var(--color-paper);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-hero-bg::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle at center, rgba(212, 31, 38, 0.06), transparent 70%);
    filter: blur(40px);
}

.page-hero h1 {
    margin-bottom: var(--space-6);
    position: relative;
}

.page-hero .lead {
    position: relative;
}

/* --- Service detail ------------------------------------------------------ */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    padding-block: clamp(var(--space-16), 8vw, var(--space-24));
    border-top: var(--border-hairline);
    align-items: start;
}

.service-row:last-of-type { border-bottom: var(--border-hairline); }

.service-row-num {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--color-red);
    margin-bottom: var(--space-4);
    letter-spacing: 0.08em;
    font-weight: 600;
}

.service-row h3 {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.service-row-body p {
    color: var(--color-graphite);
    margin-bottom: var(--space-6);
    font-size: var(--text-md);
    line-height: 1.6;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.service-tag {
    padding: 6px 14px;
    background: var(--color-red-wash);
    color: var(--color-red);
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* --- Product cards ------------------------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    padding: var(--space-12);
    border: var(--border-hairline);
    border-radius: var(--radius-xl);
    background: var(--color-paper);
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
}

.product-card:hover {
    border-color: rgba(212, 31, 38, 0.3);
    box-shadow: var(--shadow-md);
}

.product-card.dark {
    background: var(--color-ink);
    color: var(--color-paper);
    border-color: var(--color-ink);
}

.product-card.dark h3 { color: var(--color-paper); }
.product-card.dark p { color: rgba(255,255,255,0.75); }

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
}

.product-status.coming {
    background: var(--color-red-wash);
    color: var(--color-red);
}
.product-status.coming::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.product-status.concept {
    background: rgba(10,10,10,0.06);
    color: var(--color-ink-soft);
}

.product-status.live {
    background: rgba(16, 185, 129, 0.1);
    color: rgb(5, 150, 105);
}

.product-card h3 {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-3);
    line-height: 1.05;
}

.product-card .product-tag {
    font-size: var(--text-sm);
    color: var(--color-red);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.product-card p {
    color: var(--color-graphite);
    font-size: var(--text-md);
    line-height: 1.55;
    margin-bottom: var(--space-6);
}

.product-card-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: var(--color-snow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-8);
}

.product-card.dark .product-card-visual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

/* --- Stats band ---------------------------------------------------------- */
.stats-band {
    padding-block: clamp(var(--space-16), 8vw, var(--space-24));
    background: var(--color-snow);
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-12);
}

.stat-item {
    border-left: 2px solid var(--color-red);
    padding-left: var(--space-6);
}

.stat-value {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--color-ink);
}

.stat-value .small { font-size: 0.5em; }

.stat-label {
    margin-top: var(--space-3);
    color: var(--color-graphite);
    font-size: var(--text-sm);
    line-height: 1.5;
    max-width: 28ch;
}

/* --- Contact ------------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-16);
    align-items: start;
}

.contact-info h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.contact-info p {
    color: var(--color-graphite);
    margin-bottom: var(--space-10);
    line-height: 1.65;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.contact-method {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--space-5);
    align-items: start;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--color-red-wash);
    color: var(--color-red);
}

.contact-method-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }

.contact-method h5 {
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-stone);
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-method a, .contact-method span {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--color-ink);
    transition: color var(--duration-fast) var(--ease-out);
    display: block;
}

.contact-method a:hover { color: var(--color-red); }

.contact-method-desc {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-graphite);
    font-weight: 400;
    margin-top: 4px;
}

/* --- Form ---------------------------------------------------------------- */
.form-card {
    padding: clamp(var(--space-8), 4vw, var(--space-12));
    background: var(--color-snow);
    border-radius: var(--radius-xl);
    border: var(--border-hairline);
}

.form-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2);
}

.form-card > p {
    color: var(--color-graphite);
    margin-bottom: var(--space-8);
    font-size: var(--text-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-5);
    position: relative;
}

.form-group label {
    display: block;
    font-size: var(--text-xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-ink-soft);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.form-group .req { color: var(--color-red); }

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-paper);
    border: 1.5px solid var(--color-fog);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--color-ink);
    transition: border-color var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(212, 31, 38, 0.1);
}

.form-control::placeholder {
    color: var(--color-mist);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
    line-height: 1.55;
}

select.form-control {
    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 d='M1 1.5L6 6.5L11 1.5' stroke='%230A0A0A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-check {
    display: flex;
    align-items: start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-graphite);
    cursor: pointer;
    line-height: 1.5;
    margin-bottom: var(--space-6);
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-red);
    cursor: pointer;
}

.form-check a { color: var(--color-red); font-weight: 500; text-decoration: underline; }

.form-submit {
    width: 100%;
    justify-content: center;
    font-size: var(--text-base);
    padding: 18px 32px;
}

.form-status {
    margin-top: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: rgb(5, 120, 85);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-status.error {
    display: block;
    background: var(--color-red-wash);
    color: var(--color-red-deep);
    border: 1px solid rgba(212, 31, 38, 0.3);
}

.form-group .error-msg {
    font-size: var(--text-xs);
    color: var(--color-red);
    margin-top: var(--space-1);
    display: none;
}

.form-group.error .form-control {
    border-color: var(--color-red);
}

.form-group.error .error-msg { display: block; }

/* --- Legal pages --------------------------------------------------------- */
.legal-content {
    max-width: var(--narrow-width);
    margin-inline: auto;
    padding-block: var(--space-16);
}

.legal-content h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: var(--space-12);
    margin-bottom: var(--space-4);
    color: var(--color-ink);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    color: var(--color-ink);
}

.legal-content p,
.legal-content li {
    color: var(--color-ink-soft);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
}

.legal-content ul,
.legal-content ol {
    padding-left: var(--space-6);
    margin-bottom: var(--space-6);
}

.legal-content ul li,
.legal-content ol li {
    list-style: disc;
    margin-bottom: var(--space-2);
}

.legal-content ol li { list-style: decimal; }

.legal-content strong { color: var(--color-ink); font-weight: 600; }

.legal-content a { color: var(--color-red); text-decoration: underline; }
.legal-content a:hover { color: var(--color-red-deep); }

.legal-meta {
    padding: var(--space-5);
    background: var(--color-snow);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-graphite);
    margin-bottom: var(--space-12);
}

.legal-meta strong { color: var(--color-ink); }

/* --- FAQ ----------------------------------------------------------------- */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: var(--border-hairline);
}

.faq-item:first-child { border-top: var(--border-hairline); }

.faq-question {
    width: 100%;
    padding: var(--space-6) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
    text-align: left;
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-out);
}

.faq-question:hover { color: var(--color-red); }

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-snow);
    transition: all var(--duration-base) var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--color-ink);
    border-radius: 1px;
    transition: transform var(--duration-base) var(--ease-out),
                background var(--duration-base) var(--ease-out);
}

.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }

.faq-item.open .faq-icon { background: var(--color-red); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--color-paper); }
.faq-item.open .faq-icon::after { transform: scaleY(0); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-base) var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding-bottom: var(--space-6);
    padding-right: var(--space-12);
    color: var(--color-graphite);
    font-size: var(--text-base);
    line-height: 1.65;
    max-width: 70ch;
}

/* --- Reveal on scroll --------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s var(--ease-out),
                transform 0.9s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out),
                transform 0.7s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.75s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* --- About / team / values ---------------------------------------------- */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
}

.value-item {
    padding-top: var(--space-6);
    border-top: 2px solid var(--color-ink);
}

.value-item-num {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-red);
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.value-item h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3);
}

.value-item p {
    color: var(--color-graphite);
    line-height: 1.6;
    font-size: var(--text-base);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-16);
    align-items: start;
}

.two-col .col-sticky {
    position: sticky;
    top: 120px;
}

.prose p {
    color: var(--color-ink-soft);
    font-size: var(--text-md);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.prose p .italic-accent { color: var(--color-red); }

.prose p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 4.5em;
    line-height: 0.85;
    float: left;
    margin-right: 0.1em;
    margin-top: 0.05em;
    font-weight: 400;
    color: var(--color-red);
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-inner,
    .product-featured-inner,
    .about-hero-grid,
    .product-card,
    .two-col {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-band-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .two-col .col-sticky { position: static; }
}

@media (max-width: 768px) {
    :root {
        --gutter: 1.25rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-6);
        background: var(--color-paper);
        border-top: var(--border-hairline);
        transform: translateX(100%);
        transition: transform var(--duration-base) var(--ease-out);
        overflow-y: auto;
    }

    .nav-links.open { transform: translateX(0); }

    .nav-links .nav-link {
        font-size: var(--text-xl);
        padding-block: var(--space-4);
        border-bottom: var(--border-hairline);
    }

    .nav-links .nav-cta {
        margin-top: var(--space-4);
        align-self: start;
        font-size: var(--text-base);
        padding: 1rem 1.5rem;
    }

    .nav-toggle { display: flex; }

    .hero {
        min-height: auto;
        padding-top: 7rem;
    }

    .hero-visual {
        max-width: 320px;
        margin-inline: auto;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
        margin-top: var(--space-10);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .stats-band-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .product-card {
        padding: var(--space-6);
    }

    .editorial-quote {
        max-width: none;
    }

    .faq-question {
        font-size: var(--text-base);
    }

    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .stats-band-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
}

/* --- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
    .hero-title .word, .hero-lead, .hero-actions, .hero-visual, .hero-stats {
        opacity: 1 !important; transform: none !important; animation: none !important;
    }
}

/* --- Focus visible ------------------------------------------------------- */
*:focus-visible {
    outline: 2px solid var(--color-red);
    outline-offset: 3px;
    border-radius: 3px;
}

.nav-link:focus-visible,
.btn:focus-visible,
.btn-link:focus-visible {
    outline-offset: 4px;
}

/* --- Skip link ----------------------------------------------------------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--color-ink);
    color: var(--color-paper);
    padding: 1rem 1.5rem;
    z-index: 200;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.skip-link:focus { left: var(--space-4); }
