﻿/* ═══════════════════════════════════════════════════════════
   RADIANZ V2 — "Terminal Noir" Refined — Global Styles
   Improved readability: darker blue accent, lighter text on dark
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Hero ── */
.v2-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 2rem 13.5rem;
    min-height: 100vh;
    overflow: hidden;
}
.v2-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.v2-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
}
/* Warm radial glow — "radiance" emanating from content */
.v2-hero-bg::after {
    content: '';
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(240,104,72,0.06) 0%, rgba(240,104,72,0.02) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.v2-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero copy */
.v2-eyebrow {
    display: inline-block;
    font-family: var(--v2-font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v2-accent-light);
    background: var(--v2-accent-bg);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(240,104,72,0.25);
    margin-bottom: 1.5rem;
}
.v2-hero-title {
    font-family: var(--v2-font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.08;
    color: var(--v2-text-bright);
    letter-spacing: -0.025em;
    margin: 0 0 1.25rem;
}
.v2-accent-text { color: var(--v2-accent-light); }
.v2-hero-sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--v2-text-dim);
    max-width: 480px;
    margin: 0 0 2rem;
}

/* Hero CTAs */
.v2-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.v2-btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
}
.v2-btn-outline {
    background: transparent;
    color: var(--v2-text);
    border: 1px solid var(--v2-border-hover);
}
.v2-btn-outline:hover { border-color: var(--v2-accent); color: var(--v2-accent-light); }
.v2-btn-arrow { margin-left: 0.5rem; transition: transform 0.25s; display: inline-block; }
.v2-btn-accent:hover .v2-btn-arrow { transform: translateX(3px); }

/* Proof tags */
.v2-hero-proof { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }

/* ── Terminal ── */
.v2-hero-terminal {
    background: var(--v2-void);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 24px 80px -12px rgba(0,0,0,0.5),
        0 0 60px rgba(240,104,72,0.1);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.v2-hero-terminal:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }

.v2-term-chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0.75rem 1rem;
    background: var(--v2-surface);
    border-bottom: 1px solid var(--v2-border);
}
.v2-term-dot { width: 10px; height: 10px; border-radius: 50%; }
.v2-term-dot--r { background: #ff5f57; }
.v2-term-dot--y { background: #febc2e; }
.v2-term-dot--g { background: #28c840; }
.v2-term-title {
    margin-left: auto;
    font-family: var(--v2-font-mono);
    font-size: 0.7rem;
    color: var(--v2-text-ghost);
}

.v2-term-body {
    padding: 1.25rem 1.25rem 1.5rem;
    font-family: var(--v2-font-mono);
    font-size: 0.82rem;
    line-height: 1.7;
}
.v2-term-line {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
}
.v2-term-line.v2-typed {
    opacity: 1;
    transform: translateY(0);
}

/* Terminal syntax colors — improved contrast */
.v2-t-prompt { color: var(--v2-accent-light); font-weight: 500; }
.v2-t-cmd { color: var(--v2-text-bright); }
.v2-t-flag { color: #b49bfa; }
.v2-t-ok { color: var(--v2-success); }
.v2-t-val { color: var(--v2-accent-light); }
.v2-t-err { color: var(--v2-error); }
.v2-t-err-text { color: var(--v2-warning); font-weight: 500; }
.v2-t-loc { color: #a0aec0; text-decoration: underline; text-decoration-color: rgba(160,174,192,0.3); }
.v2-t-wait { color: var(--v2-warning); }
.v2-t-pr { color: var(--v2-accent-light); }
.v2-t-branch { color: var(--v2-success); font-weight: 500; }
.v2-t-dim { color: var(--v2-text-dim); }

/* Blinking cursor */
.v2-term-cursor {
    opacity: 0;
    font-family: var(--v2-font-mono);
    font-size: 0.82rem;
    color: var(--v2-accent-light);
    animation: none;
}
.v2-term-cursor.v2-typed {
    opacity: 1;
    animation: v2-blink 1s steps(1) infinite;
}
@keyframes v2-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   SECTIONS BASE
   ══════════════════════════════════════════════════════════ */
.v2-section {
    padding: 6rem 2rem;
    position: relative;
}
.v2-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.v2-section-header {
    position: relative;
    margin-bottom: 3.5rem;
    padding-left: 0;
}
.v2-section-num {
    display: none;
}
.v2-section-label {
    display: inline-block;
    font-family: var(--v2-font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v2-accent-light);
    padding-left: 1rem;
    border-left: 2px solid var(--v2-accent);
    margin-bottom: 0.75rem;
}
.v2-section-title {
    font-family: var(--v2-font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    color: var(--v2-text-bright);
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}
.v2-section-sub {
    font-size: 1.05rem;
    color: var(--v2-text-dim);
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
}
.v2-proof-tag {
    font-family: var(--v2-font-mono);
    font-size: 0.75rem;
    color: var(--v2-text-dim);
    letter-spacing: 0.02em;
}
.v2-proof-sep { color: var(--v2-text-ghost); font-size: 1.25rem; }


/* ══════════════════════════════════════════════════════════
   01 — TIMELINE / WORKFLOW
   ══════════════════════════════════════════════════════════ */
.v2-timeline {
    position: relative;
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.v2-timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--v2-accent), var(--v2-border));
}
.v2-timeline-step { display: flex; align-items: flex-start; gap: 1.5rem; }
.v2-step-marker {
    position: absolute;
    left: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--v2-surface);
    border: 2px solid var(--v2-accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--v2-font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--v2-accent-light);
    z-index: 1;
}
.v2-step-card {
    background: var(--v2-surface);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 1.75rem;
    flex: 1;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.v2-step-card:hover {
    border-color: var(--v2-border-hover);
    box-shadow: 0 0 30px rgba(240,104,72,0.08);
}
.v2-step-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--v2-accent-bg);
    display: flex; align-items: center; justify-content: center;
    color: var(--v2-accent-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.v2-step-title {
    font-family: var(--v2-font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--v2-text-bright);
    margin: 0 0 0.5rem;
}
.v2-step-desc {
    font-size: 0.92rem;
    color: var(--v2-text-dim);
    line-height: 1.6;
    margin: 0;
}

/* Getting Started detail list */
.v2-gs-detail-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.v2-gs-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--v2-text);
    padding: 0.35rem 0;
}
.v2-gs-detail-list li i {
    color: var(--v2-accent-light);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   02 — BENTO FEATURES GRID
   ══════════════════════════════════════════════════════════ */
.v2-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.v2-bento-card {
    background: var(--v2-surface);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 2rem;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.v2-bento-card:hover {
    border-color: var(--v2-border-hover);
    box-shadow: 0 0 40px rgba(240,104,72,0.1);
    transform: translateY(-2px);
}
.v2-bento-wide { grid-column: span 2; }
.v2-bento-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--v2-accent-bg);
    display: flex; align-items: center; justify-content: center;
    color: var(--v2-accent-light);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.v2-bento-card h3 {
    font-family: var(--v2-font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--v2-text-bright);
    margin: 0 0 0.6rem;
}
.v2-bento-card p {
    font-size: 0.9rem;
    color: var(--v2-text-dim);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   03 — PRODUCT PREVIEW (STACKED CARDS)
   ══════════════════════════════════════════════════════════ */
.v2-section--preview { padding-bottom: 8rem; }
.v2-preview-stack {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    perspective: 800px;
}
.v2-preview-card {
    background: var(--v2-surface);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
}
.v2-preview-card--back {
    transform: translateY(16px) scale(0.97);
    opacity: 0.85;
}
.v2-preview-card--mid {
    transform: translateY(8px) scale(0.985);
    opacity: 0.92;
}
.v2-preview-card--front {
    border-color: rgba(240,104,72,0.35);
    box-shadow: 0 0 40px rgba(240,104,72,0.12);
}
.v2-preview-card:hover {
    transform: translateY(0) scale(1);
    opacity: 1;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.v2-preview-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}
.v2-preview-badge {
    font-family: var(--v2-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
}
.v2-preview-badge--err { background: rgba(248,113,113,0.15); color: var(--v2-error); }
.v2-preview-badge--analysis { background: rgba(252,211,77,0.12); color: var(--v2-warning); }
.v2-preview-badge--pr { background: rgba(240,104,72,0.15); color: var(--v2-accent-light); }
.v2-preview-ts {
    font-family: var(--v2-font-mono);
    font-size: 0.7rem;
    color: var(--v2-text-ghost);
}
.v2-preview-title {
    font-family: var(--v2-font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--v2-text-bright);
    margin-bottom: 0.6rem;
}
.v2-preview-title i { color: var(--v2-accent-light); margin-right: 0.5rem; }
.v2-preview-mono {
    font-family: var(--v2-font-mono);
    font-size: 0.78rem;
    color: var(--v2-text-dim);
    line-height: 1.65;
}
.v2-preview-body {
    font-size: 0.88rem;
    color: var(--v2-text-dim);
    line-height: 1.6;
    margin: 0;
}
.v2-preview-body code {
    font-family: var(--v2-font-mono);
    font-size: 0.82rem;
    color: var(--v2-accent-light);
    background: var(--v2-accent-bg);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}
.v2-preview-stats {
    display: flex;
    gap: 1.25rem;
    font-family: var(--v2-font-mono);
    font-size: 0.78rem;
    color: var(--v2-text-dim);
    margin-bottom: 1rem;
}
.v2-preview-stats strong { color: var(--v2-text-bright); }

/* Diff mock */
.v2-preview-diff {
    background: var(--v2-void);
    border-radius: var(--v2-radius-sm);
    padding: 0.75rem 1rem;
    font-family: var(--v2-font-mono);
    font-size: 0.78rem;
    line-height: 1.65;
    border: 1px solid var(--v2-border);
}
.v2-diff-line { white-space: nowrap; }
.v2-diff-del { color: var(--v2-error); }
.v2-diff-add { color: var(--v2-success); }

/* ══════════════════════════════════════════════════════════
   04 — PRICING
   ══════════════════════════════════════════════════════════ */


.v2-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}
.v2-price-card {
    background: var(--v2-surface);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 2.25rem 2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.v2-price-card:hover {
    border-color: var(--v2-border-hover);
}
.v2-price-card--featured {
    border-color: rgba(240,104,72,0.4);
    box-shadow: 0 0 50px rgba(240,104,72,0.14);
    position: relative;
}
.v2-price-popular {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--v2-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--v2-accent);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 12px;
    font-weight: 600;
}
.v2-price-name {
    font-family: var(--v2-font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--v2-text-bright);
    margin: 0 0 1rem;
}
.v2-price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 1rem;
}
.v2-price-currency {
    font-family: var(--v2-font-mono);
    font-size: 1.25rem;
    color: var(--v2-text-dim);
}
.v2-price-value {
    font-family: var(--v2-font-display);
    font-weight: 800;
    font-size: 3rem;
    color: var(--v2-text-bright);
    line-height: 1;
}
.v2-price-custom { font-size: 2rem; }
.v2-price-period {
    font-family: var(--v2-font-mono);
    font-size: 0.85rem;
    color: var(--v2-text-dim);
}
.v2-price-desc {
    font-size: 0.88rem;
    color: var(--v2-text-dim);
    line-height: 1.55;
    margin: 0 0 1.5rem;
}
.v2-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.v2-price-features li {
    font-size: 0.88rem;
    color: var(--v2-text);
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--v2-border);
}
.v2-price-features li:last-child { border-bottom: none; }
.v2-price-cta { width: 100%; text-align: center; }

/* ══════════════════════════════════════════════════════════
   05 — FAQ
   ══════════════════════════════════════════════════════════ */
.v2-faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.v2-faq-item {
    border-bottom: 1px solid var(--v2-border);
}
.v2-faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--v2-text);
    font-family: var(--v2-font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.25s;
}
.v2-faq-trigger:hover { color: var(--v2-text-bright); }
.v2-faq-icon {
    font-family: var(--v2-font-mono);
    font-size: 1.25rem;
    color: var(--v2-text-dim);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.v2-faq-open .v2-faq-trigger { color: var(--v2-accent-light); }
.v2-faq-open { border-left: 2px solid var(--v2-accent); padding-left: 1rem; }
.v2-faq-answer {
    padding: 0 0 1.25rem;
}
.v2-faq-answer p {
    font-size: 0.92rem;
    color: var(--v2-text-dim);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   EARLY ACCESS — 04
   ══════════════════════════════════════════════════════════ */
#early-access {
    position: relative;
    overflow: hidden;
}
#early-access > .v2-cta-glow {
    position: absolute;
    width: 700px; height: 700px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(240,104,72,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
#early-access > .v2-section-inner {
    position: relative;
    z-index: 1;
}
.v2-ea-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.v2-ea-subtitle {
    font-size: 1.1rem;
    color: var(--v2-text-dim);
    line-height: 1.7;
    margin: 0 0 2.5rem;
}
.v2-ea-form {
    max-width: 480px;
    margin: 0 auto;
}
.v2-ea-input-row {
    display: flex;
    gap: 0.75rem;
}
.v2-ea-input-row .v2-form-input {
    flex: 1;
    min-width: 0;
}
.v2-ea-content .v2-alert {
    margin-top: 1.25rem;
    text-align: left;
}

@media (max-width: 600px) {
    .v2-ea-input-row {
        flex-direction: column;
    }
    .v2-ea-input-row .v2-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════ */
.v2-cta {
    position: relative;
    text-align: center;
    padding: 8rem 2rem;
    overflow: hidden;
}
.v2-cta-glow {
    position: absolute;
    width: 600px; height: 600px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(240,104,72,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.v2-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.v2-cta-title {
    font-family: var(--v2-font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--v2-text-bright);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 1.25rem;
}
.v2-cta-sub {
    font-size: 1.1rem;
    color: var(--v2-text-dim);
    margin: 0 0 2.5rem;
}
.v2-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.v2-footer {
    border-top: 1px solid var(--v2-border);
    padding: 3rem 2rem 1.5rem;
}
.v2-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    align-items: start;
}
.v2-footer-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}
.v2-footer-logo-text {
    font-family: var(--v2-font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--v2-text-bright);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.v2-footer-logo-text .v2-logo-z { color: var(--v2-accent); }
.v2-footer-tagline {
    font-size: 0.85rem;
    color: var(--v2-text-dim);
    margin: 0;
    max-width: 280px;
}
.v2-footer-links {
    display: flex;
    gap: 1.5rem;
}
.v2-footer-links a {
    font-family: var(--v2-font-mono);
    font-size: 0.8rem;
    color: var(--v2-text-dim);
    text-decoration: none;
    transition: color 0.2s;
}
.v2-footer-links a:hover { color: var(--v2-accent-light); }
.v2-footer-auth { display: flex; gap: 0.75rem; }
.v2-footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--v2-border);
    font-family: var(--v2-font-mono);
    font-size: 0.72rem;
    color: var(--v2-text-ghost);
}

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════════════════════════ */
.v2-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.v2-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .v2-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .v2-hero-terminal {
        transform: none;
        max-width: 500px;
    }
    .v2-hero-terminal:hover { transform: none; }
    .v2-bento { grid-template-columns: 1fr; }
    .v2-bento-wide { grid-column: span 1; }
    .v2-preview-stack {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .v2-preview-card--back,
    .v2-preview-card--mid { transform: none; opacity: 1; }
    .v2-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .v2-timeline { padding-left: 2.5rem; }
    .v2-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .v2-footer-links { flex-wrap: wrap; }
    .v2-section-num { font-size: 5rem; }
}

@media (max-width: 480px) {
    .v2-hero { padding: 5rem 1.25rem 3rem; }
    .v2-hero-title { font-size: 2rem; }
    .v2-section { padding: 4rem 1.25rem; }
    .v2-section-title { font-size: 1.5rem; }
    .v2-hero-ctas { flex-direction: column; }
    .v2-hero-ctas .v2-btn { width: 100%; text-align: center; }
    .v2-hero-proof { flex-direction: column; gap: 0.35rem; }
    .v2-proof-sep { display: none; }
    .v2-cta { padding: 5rem 1.25rem; }
    .v2-cta-actions { flex-direction: column; }
    .v2-cta-actions .v2-btn { width: 100%; text-align: center; }
    .v2-term-body { font-size: 0.72rem; overflow-x: auto; }
}