/* =====================================================
   lunge.dev — Forward-momentum brutalist cyberpunk
   Palette:
     #0a0a0a Carbon Black (bg)
     #f5f5f5 Impact White
     #ff2e2e Lunge Red
     #1a1a1a Matte Black
     #333333 Steel Gray
     #ff6b4a Flame Orange
     #888888 Concrete
     #0e0e0e (background stripe partner)
     #333333
   Fonts: Bebas Neue / Barlow / Overpass Mono
   ===================================================== */

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

html {
    scroll-behavior: smooth;
    background: #0a0a0a;
}

body {
    font-family: "Barlow", "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #f5f5f5;
    background: #0a0a0a;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ---------- Fixed background stripe layer ---------- */
.stripe-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        repeating-linear-gradient(135deg,
            #0a0a0a 0,
            #0a0a0a 8px,
            #0e0e0e 8px,
            #0e0e0e 16px);
}

.stripe-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 46, 46, 0.05), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 74, 0.04), transparent 65%);
}

/* ---------- Right-edge accent stripe with notches ---------- */
.right-accent {
    position: fixed;
    top: 0;
    right: 0;
    width: 4px;
    height: 100vh;
    background: #ff2e2e;
    z-index: 20;
    animation: pulse-stripe 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(255, 46, 46, 0.45);
}

@keyframes pulse-stripe {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1.0; }
}

.notch {
    position: absolute;
    right: 4px;
    width: 14px;
    height: 2px;
    background: rgba(255, 46, 46, 0.18);
    transition: background 250ms ease, width 250ms ease;
}

.notch.is-active {
    background: #ff2e2e;
    width: 22px;
    box-shadow: 0 0 6px rgba(255, 46, 46, 0.7);
}

.notch[data-section="hero"]         { top: 12%; }
.notch[data-section="manifesto"]    { top: 26%; }
.notch[data-section="capabilities"] { top: 40%; }
.notch[data-section="stack"]        { top: 54%; }
.notch[data-section="cadence"]      { top: 68%; }
.notch[data-section="dispatch"]     { top: 82%; }
.notch[data-section="footer"]       { top: 95%; }

/* ---------- Top bar ---------- */
.top-bar {
    position: relative;
    z-index: 15;
    border-bottom: 1px solid #1a1a1a;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2.5rem 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand-mark {
    font-family: "Overpass Mono", "Courier New", monospace;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: #f5f5f5;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.brand-bracket {
    color: #ff2e2e;
    font-weight: 700;
}

.brand-name {
    font-weight: 700;
}

.top-nav {
    display: flex;
    gap: 1.6rem;
}

.top-nav a {
    font-family: "Overpass Mono", monospace;
    font-size: 0.78rem;
    color: #888888;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 200ms ease;
    position: relative;
}

.top-nav a:hover {
    color: #ff2e2e;
}

.top-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #ff2e2e;
    transition: width 220ms ease;
}

.top-nav a:hover::after {
    width: 100%;
}

.top-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Overpass Mono", monospace;
    font-size: 0.72rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #ff2e2e;
    display: inline-block;
    animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50%      { opacity: 1.0; transform: scale(1.1); }
}

/* ---------- Main / shared section frame ---------- */
main {
    position: relative;
    z-index: 10;
}

.accent-text {
    color: #ff2e2e;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 64px);
    padding: 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    min-height: calc(100vh - 64px);
    gap: 0;
}

.hero-left {
    padding: 4rem 3rem 3rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    border-right: 1px solid #1a1a1a;
    position: relative;
}

.hero-left::before {
    content: "";
    position: absolute;
    top: 4rem;
    left: 0;
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #ff2e2e, transparent);
}

.hero-meta {
    font-family: "Overpass Mono", monospace;
    font-size: 0.78rem;
    color: #888888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.meta-line::before {
    content: "// ";
    color: #ff2e2e;
}

.hero-title {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #f5f5f5;
}

.hero-line {
    display: block;
    transform: translateX(-30px);
    opacity: 0;
    animation: lunge-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-line.line-1 { animation-delay: 80ms; }
.hero-line.line-2 { animation-delay: 200ms; }
.hero-line.line-3 { animation-delay: 320ms; color: #f5f5f5; }

@keyframes lunge-in {
    from { transform: translateX(-30px); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}

.hero-sub {
    max-width: 540px;
    color: #888888;
    font-size: 1.05rem;
    line-height: 1.6;
    border-left: 2px solid #ff2e2e;
    padding-left: 1rem;
    transform: translateX(-30px);
    opacity: 0;
    animation: lunge-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 440ms forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateX(-30px);
    opacity: 0;
    animation: lunge-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 540ms forwards;
}

.cta-primary,
.cta-secondary {
    text-decoration: none;
    font-family: "Overpass Mono", monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
    border: 2px solid transparent;
    position: relative;
}

.cta-primary {
    background: #ff2e2e;
    color: #0a0a0a;
    font-weight: 700;
    border-color: #ff2e2e;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
    padding-right: 2rem;
}

.cta-primary:hover {
    background: #ff6b4a;
    border-color: #ff6b4a;
    transform: translateX(6px);
    box-shadow: -4px 0 0 0 #ff2e2e;
}

.cta-arrow {
    font-size: 1.1rem;
    transition: transform 200ms ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-secondary {
    color: #f5f5f5;
    border-color: #333333;
    background: transparent;
}

.cta-secondary:hover {
    color: #ff2e2e;
    border-color: #ff2e2e;
    transform: translateX(4px);
}

.hero-readout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 1rem;
    border: 1px solid #1a1a1a;
    background: rgba(26, 26, 26, 0.4);
    transform: translateX(-30px);
    opacity: 0;
    animation: lunge-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 640ms forwards;
}

.readout-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem 1.2rem;
    border-right: 1px solid #1a1a1a;
}

.readout-row:last-child {
    border-right: none;
}

.readout-key {
    font-family: "Overpass Mono", monospace;
    font-size: 0.65rem;
    color: #888888;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.readout-val {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    color: #f5f5f5;
    letter-spacing: 0.02em;
}

/* ---------- HERO RIGHT (red stripe) ---------- */
.hero-right {
    background: #ff2e2e;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0) 0,
            rgba(0, 0, 0, 0) 18px,
            rgba(0, 0, 0, 0.07) 18px,
            rgba(0, 0, 0, 0.07) 22px);
    pointer-events: none;
}

.hero-stripe {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-tag {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.6rem);
    color: #0a0a0a;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    z-index: 5;
}

.cue-text {
    font-family: "Overpass Mono", monospace;
    font-size: 0.72rem;
    color: #888888;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cue-bar {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, #ff2e2e, transparent);
    animation: cue-fall 1.6s ease-in-out infinite;
}

@keyframes cue-fall {
    0%   { transform: translateY(-10px); opacity: 0.4; }
    50%  { transform: translateY(0);     opacity: 1.0; }
    100% { transform: translateY(10px);  opacity: 0.0; }
}

/* ---------- SKEWED SECTIONS ---------- */
.skewed-section {
    position: relative;
    transform: skewY(-2deg);
    margin: 6rem 0;
    padding: 6rem 0;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.skewed-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.0) 30%, rgba(10, 10, 10, 0.0) 70%, rgba(26, 26, 26, 0.6));
    pointer-events: none;
}

.skewed-inner {
    transform: skewY(2deg);
    position: relative;
    padding: 2rem 0;
}

.section-content {
    position: relative;
}

.section-content.full-strip {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-content.narrow-block {
    max-width: 700px;
    margin: 0;
    margin-left: clamp(1.5rem, 14vw, 200px);
    padding: 0 2rem 0 0;
}

.section-index {
    font-family: "Overpass Mono", monospace;
    font-size: 0.78rem;
    color: #ff2e2e;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: clamp(2.6rem, 6.4vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #f5f5f5;
    margin-bottom: 2.5rem;
}

/* ---------- IMPACT LINES ---------- */
.impact-lines {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    z-index: 2;
}

.impact-line {
    display: block;
    height: 3px;
    width: var(--len, 60px);
    background: #ff2e2e;
    transform: translateX(-110%);
    box-shadow: 0 0 6px rgba(255, 46, 46, 0.5);
}

.impact-lines.is-firing .impact-line {
    animation: impact-shoot 600ms cubic-bezier(0.18, 0.78, 0.22, 1) forwards;
    animation-delay: var(--d, 0ms);
}

@keyframes impact-shoot {
    0%   { transform: translateX(-110%); opacity: 0; }
    60%  { opacity: 1; }
    100% { transform: translateX(0);     opacity: 1; }
}

/* ---------- Stagger reveal for child blocks ---------- */
.section-content > * {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-content.is-revealed > *:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay:  80ms; }
.section-content.is-revealed > *:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 160ms; }
.section-content.is-revealed > *:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 240ms; }
.section-content.is-revealed > *:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 320ms; }
.section-content.is-revealed > *:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 400ms; }
.section-content.is-revealed > *:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 480ms; }

/* ---------- MANIFESTO ---------- */
.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.manifesto-lede {
    font-size: 1.15rem;
    color: #f5f5f5;
    line-height: 1.55;
    border-left: 3px solid #ff2e2e;
    padding-left: 1.2rem;
}

.manifesto-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.manifesto-list li {
    font-family: "Barlow", sans-serif;
    font-size: 0.95rem;
    color: #f5f5f5;
    padding: 0.4rem 0;
    border-bottom: 1px dashed #1a1a1a;
    display: flex;
    gap: 0.7rem;
    transition: padding 220ms ease, color 220ms ease;
}

.manifesto-list li:hover {
    padding-left: 0.5rem;
    color: #ff6b4a;
}

.list-num {
    font-family: "Overpass Mono", monospace;
    font-size: 0.75rem;
    color: #ff2e2e;
    width: 1.5rem;
    flex-shrink: 0;
    padding-top: 2px;
}

/* ---------- CAPABILITIES ---------- */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.cap-card {
    background: #0a0a0a;
    padding: 1.6rem 1.4rem;
    position: relative;
    transition: background 220ms ease, transform 220ms ease;
    overflow: hidden;
}

.cap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff2e2e;
    transition: width 320ms ease;
}

.cap-card:hover {
    background: #1a1a1a;
    transform: translateX(4px);
}

.cap-card:hover::before {
    width: 100%;
}

.cap-num {
    font-family: "Overpass Mono", monospace;
    font-size: 0.72rem;
    color: #ff2e2e;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6rem;
}

.cap-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    color: #f5f5f5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.cap-text {
    color: #888888;
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.cap-tag {
    display: inline-block;
    font-family: "Overpass Mono", monospace;
    font-size: 0.7rem;
    color: #ff6b4a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 0.4rem;
    border-top: 1px solid #1a1a1a;
    width: 100%;
}

/* ---------- STACK ---------- */
.stack-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

.stack-copy {
    display: flex;
    align-items: center;
}

.stack-lede {
    font-size: 1.1rem;
    color: #f5f5f5;
    line-height: 1.55;
    border-left: 3px solid #ff6b4a;
    padding-left: 1.2rem;
}

.terminal {
    background: #0e0e0e;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    font-family: "Overpass Mono", monospace;
    font-size: 0.82rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 46, 46, 0.08);
    position: relative;
}

.terminal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff2e2e, transparent 60%);
    z-index: 2;
}

.terminal-bar {
    background: #1a1a1a;
    padding: 0.55rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid #0a0a0a;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    display: inline-block;
}

.dot-red   { background: #ff2e2e; }
.dot-amber { background: #ff6b4a; }
.dot-mute  { background: #333333; }

.terminal-title {
    margin-left: 0.7rem;
    font-size: 0.72rem;
    color: #888888;
    letter-spacing: 0.06em;
}

.terminal-body {
    padding: 1.1rem 1.2rem;
    color: #f5f5f5;
    line-height: 1.7;
    white-space: pre;
    overflow-x: auto;
    font-family: "Overpass Mono", monospace;
}

.t-prompt { color: #ff2e2e; }
.t-cmd    { color: #f5f5f5; font-weight: 700; }
.t-line   { color: #888888; display: block; }
.t-ok     { color: #f5f5f5; }

.t-cursor {
    display: inline-block;
    background: #ff2e2e;
    color: #0a0a0a;
    padding: 0 4px;
    animation: cursor-blink 1.0s steps(2, end) infinite;
}

@keyframes cursor-blink {
    0%, 50%   { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.stack-rows {
    border-top: 1px solid #1a1a1a;
}

.stack-row {
    display: grid;
    grid-template-columns: 160px 1fr 60px;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #1a1a1a;
    transition: background 200ms ease, padding 200ms ease;
    position: relative;
}

.stack-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #ff2e2e;
    transition: width 220ms ease;
}

.stack-row:hover {
    background: #0e0e0e;
    padding-left: 1.2rem;
}

.stack-row:hover::before {
    width: 4px;
}

.stack-key {
    font-family: "Overpass Mono", monospace;
    font-size: 0.78rem;
    color: #ff2e2e;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stack-val {
    font-family: "Barlow", sans-serif;
    font-size: 1.0rem;
    color: #f5f5f5;
}

.stack-num {
    font-family: "Overpass Mono", monospace;
    font-size: 0.75rem;
    color: #888888;
    text-align: right;
    letter-spacing: 0.1em;
}

/* ---------- CADENCE ---------- */
.cadence-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    counter-reset: cadence;
}

.cadence-item {
    position: relative;
    padding: 1.2rem 1.4rem 1.2rem 1.6rem;
    background: #0e0e0e;
    border-left: 3px solid #ff2e2e;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.cadence-item:hover {
    transform: translateX(8px);
    background: #1a1a1a;
    border-color: #ff6b4a;
}

.cadence-step {
    font-family: "Overpass Mono", monospace;
    font-size: 0.72rem;
    color: #ff6b4a;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
}

.cadence-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.9rem;
    color: #f5f5f5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.cadence-text {
    color: #888888;
    font-size: 0.93rem;
    line-height: 1.55;
}

/* ---------- DISPATCH ---------- */
.dispatch-block {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.dispatch-copy {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.dispatch-lede {
    font-size: 1.1rem;
    color: #f5f5f5;
    line-height: 1.55;
    border-left: 3px solid #ff2e2e;
    padding-left: 1.2rem;
}

.dispatch-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dispatch-points li {
    font-family: "Barlow", sans-serif;
    font-size: 0.95rem;
    color: #f5f5f5;
    display: flex;
    gap: 0.6rem;
}

.point-tick {
    color: #ff2e2e;
    font-weight: 700;
}

.dispatch-form {
    background: #0e0e0e;
    border: 1px solid #1a1a1a;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.dispatch-form::before {
    content: "FORM // 05.01";
    position: absolute;
    top: -10px;
    left: 1rem;
    background: #0a0a0a;
    color: #ff2e2e;
    font-family: "Overpass Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    padding: 0 0.6rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-family: "Overpass Mono", monospace;
    font-size: 0.72rem;
    color: #ff2e2e;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-input {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    color: #f5f5f5;
    font-family: "Barlow", sans-serif;
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
    transition: border-color 200ms ease, background 200ms ease;
    outline: none;
    border-radius: 0;
}

.form-input:hover {
    border-color: #333333;
}

.form-input:focus {
    border-color: #ff2e2e;
    background: #0e0e0e;
}

textarea.form-input {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #ff2e2e 50%),
                      linear-gradient(135deg, #ff2e2e 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2rem;
}

.form-submit {
    background: #ff2e2e;
    border: 2px solid #ff2e2e;
    color: #0a0a0a;
    font-family: "Overpass Mono", monospace;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.95rem 1.4rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
}

.form-submit:hover {
    background: #ff6b4a;
    border-color: #ff6b4a;
    transform: translateX(4px);
    box-shadow: -4px 0 0 0 #ff2e2e;
}

.submit-arrow {
    font-size: 1.1rem;
    transition: transform 200ms ease;
}

.form-submit:hover .submit-arrow {
    transform: translateX(4px);
}

.form-status {
    font-family: "Overpass Mono", monospace;
    font-size: 0.78rem;
    color: #ff6b4a;
    min-height: 1.2rem;
    letter-spacing: 0.06em;
}

.form-status.is-error {
    color: #ff2e2e;
}

.form-status.is-success {
    color: #ff6b4a;
}

/* ---------- FOOTER ---------- */
.footer {
    position: relative;
    z-index: 10;
    background: #0e0e0e;
    border-top: 1px solid #1a1a1a;
    padding: 4rem 2.5rem 2rem;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1a1a1a;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col-mark {
    border-left: 3px solid #ff2e2e;
    padding-left: 1rem;
}

.footer-brand {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.2rem;
    color: #f5f5f5;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.footer-tag {
    font-family: "Overpass Mono", monospace;
    font-size: 0.74rem;
    color: #888888;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-head {
    font-family: "Overpass Mono", monospace;
    font-size: 0.78rem;
    color: #ff2e2e;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.footer-link {
    font-family: "Barlow", sans-serif;
    font-size: 0.92rem;
    color: #f5f5f5;
    text-decoration: none;
    transition: color 200ms ease, transform 200ms ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ff2e2e;
    transform: translateX(3px);
}

.footer-bottom {
    max-width: 1300px;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-meta {
    font-family: "Overpass Mono", monospace;
    font-size: 0.72rem;
    color: #888888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .top-bar-inner { padding: 1rem 1.5rem; gap: 1rem; flex-wrap: wrap; }
    .top-nav { gap: 1rem; flex-wrap: wrap; }
    .hero-grid { grid-template-columns: 8fr 2fr; }
    .hero-left { padding: 3rem 2rem 3rem 3rem; }
    .stack-block,
    .dispatch-block,
    .manifesto-grid { grid-template-columns: 1fr; gap: 1.6rem; }
    .cap-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero-readout { grid-template-columns: repeat(2, 1fr); }
    .readout-row:nth-child(2) { border-right: none; }
    .readout-row:nth-child(1),
    .readout-row:nth-child(2) { border-bottom: 1px solid #1a1a1a; }
}

@media (max-width: 720px) {
    .top-bar-inner { padding: 1rem 1.2rem; }
    .top-nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-left { padding: 2.5rem 1.5rem; border-right: none; border-bottom: 1px solid #1a1a1a; }
    .hero-right { min-height: 80px; }
    .vertical-tag { writing-mode: horizontal-tb; transform: none; font-size: 1.4rem; padding: 1rem; }
    .scroll-cue { left: 1.5rem; bottom: 1rem; }
    .skewed-section { padding: 4rem 0; margin: 3rem 0; }
    .section-content.full-strip { padding: 0 1.2rem; }
    .section-content.narrow-block { margin-left: 1.2rem; padding-right: 1.2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer { padding: 3rem 1.5rem 1.5rem; }
    .stack-row { grid-template-columns: 1fr; gap: 0.2rem; }
    .stack-num { text-align: left; }
    .hero-readout { grid-template-columns: 1fr 1fr; }
    .right-accent { width: 3px; }
}
