

    /* ─── TOKENS ─────────────────────────────────────────── */
:root {
    --bg:        #0A0A0B;
    --bg-2:      #111114;
    --bg-3:      #18181C;
    --bg-card:   #141418;
    --border:    rgba(255,255,255,0.08);
    --border-hi: rgba(255,107,35,0.35);
    --text:      #F0EBE1;
    --text-2:    #9C9790;
    --text-3:    #5E5B56;
    --orange:    #FF6B35;
    --orange-dk: #D94F1A;
    --orange-lt: #FFB07A;
    --amber:     #F5A623;
    --green:     #4ADE80;
    --red-muted: #E05252;
    --ff-head:   'Syne', sans-serif;
    --ff-body:   'IBM Plex Serif', Georgia, serif;
    --ff-mono:   'IBM Plex Mono', 'Courier New', monospace;
    --radius:    8px;
    --shadow:    0 1px 3px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.4);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── UTILITY ────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.label {
    font-family: var(--ff-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-block;
    margin-bottom: 1rem;
}
.section { padding-block: clamp(4rem, 10vw, 7rem); }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--bg-3); }

/* ─── NAV ────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10,10,11,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
}
.nav-logo {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
    letter-spacing: -0.02em;
}
.nav-logo span { color: var(--orange); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: #fff;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dk); text-decoration: none; transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 58px;
    overflow: hidden;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,107,35,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,35,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,35,0.12) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    text-align: center;
    padding-block: clamp(4rem, 12vw, 8rem);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,107,35,0.1);
    border: 1px solid rgba(255,107,35,0.25);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--orange-lt);
    margin-bottom: 2rem;
    animation: fadeSlideUp 0.6s ease both;
}
.hero-badge::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
}
h1 {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(2.4rem, 7vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.6s 0.1s ease both;
}
h1 em {
    font-style: normal;
    color: var(--orange);
}
.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.65;
    color: var(--text-2);
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.6s 0.2s ease both;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    animation: fadeSlideUp 0.6s 0.3s ease both;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: #fff;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(255,107,35,0.35);
}
.btn-primary:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,107,35,0.45);
    text-decoration: none;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border);
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
    text-decoration: none;
}
.hero-stat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    animation: fadeSlideUp 0.6s 0.45s ease both;
}
.hero-stat {
    text-align: center;
}
.hero-stat strong {
    display: block;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--orange);
    letter-spacing: -0.02em;
}
.hero-stat span {
    font-family: var(--ff-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
}

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

/* ─── PROBLEM ────────────────────────────────────────── */
.problem-intro {
    max-width: 720px;
    margin-bottom: 2.5rem;
}
.problem-intro p {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-top: 1rem;
}
.problem-intro p + p { margin-top: 1rem; }
h2 {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text);
}
h3 {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    letter-spacing: -0.015em;
    color: var(--text);
}
.pain-points {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .pain-points { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
    .pain-points { grid-template-columns: 1fr 1fr 1fr; }
}
.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.2s;
}
.pain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-dk), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.pain-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-icon {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.pain-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.pain-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ─── SOLUTION ───────────────────────────────────────── */
.solution-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 800px) {
    .solution-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.solution-text p {
    color: var(--text-2);
    margin-top: 1rem;
    font-size: 1.05rem;
}
.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.check-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem 1.25rem;
    transition: border-color 0.2s, transform 0.2s;
}
.check-item:hover { border-color: var(--border-hi); transform: translateX(4px); }
.check-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74,222,128,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.check-body strong {
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    display: block;
    margin-bottom: 0.25rem;
}
.check-body p {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.55;
}
.solution-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: rgba(255,107,35,0.06);
    border: 1px solid rgba(255,107,35,0.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 2rem;
    font-size: 0.88rem;
    color: var(--text-2);
}
.solution-note .note-icon { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }

/* ─── BENEFITS ───────────────────────────────────────── */
.benefits-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.benefit-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,107,35,0.08);
}
.benefit-num {
    font-family: var(--ff-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    text-transform: uppercase;
}
.benefit-card h3 {
    font-size: 1.15rem;
    line-height: 1.25;
}
.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
    flex: 1;
}
.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--ff-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
    width: fit-content;
}

/* ─── DIFFERENTIATION ────────────────────────────────── */
.diff-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}
.diff-intro p { color: var(--text-2); margin-top: 1rem; font-size: 1.05rem; }
.diff-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.diff-block {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    background: var(--bg-card);
    transition: border-color 0.2s;
}
.diff-block:hover { border-color: var(--border-hi); }
.diff-vs {
    font-family: var(--ff-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 0.5rem;
}
.diff-block h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.diff-block p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }

/* ─── TABLE ──────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}
thead tr {
    background: var(--bg-3);
}
th {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-align: left;
    padding: 1rem 1.25rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
th:first-child { border-radius: 12px 0 0 0; }
th:last-child {
    color: var(--orange);
    background: rgba(255,107,35,0.08);
    border-radius: 0 12px 0 0;
}
td {
    padding: 0.9rem 1.25rem;
    font-size: 0.88rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}
td:first-child {
    color: var(--text);
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 0.85rem;
}
td:last-child { background: rgba(255,107,35,0.04); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.02); }
tbody tr:hover td:last-child { background: rgba(255,107,35,0.07); }
.t-complete { color: var(--green); font-weight: 600; }
.t-partial  { color: var(--amber); }
.t-no       { color: var(--text-3); }
.table-footnote {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-3);
    font-style: italic;
}

/* ─── TRUST ──────────────────────────────────────────── */
.trust-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .trust-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.2s, transform 0.2s;
}
.trust-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.trust-marker {
    font-family: var(--ff-mono);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.trust-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.trust-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }
.quote-block {
    margin-top: 3rem;
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}
.quote-mark {
    position: absolute;
    top: -0.8rem;
    left: 1.5rem;
    background: var(--bg-2);
    padding-inline: 0.5rem;
    font-family: var(--ff-head);
    font-size: 2rem;
    color: var(--orange);
    line-height: 1;
}
.quote-block blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-2);
    line-height: 1.7;
}
.quote-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
}

/* ─── CTA ────────────────────────────────────────────── */
#cta {
    text-align: center;
    padding-block: clamp(5rem, 12vw, 9rem);
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,107,35,0.14) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
#cta .container { position: relative; }
#cta h2 { max-width: 760px; margin-inline: auto; margin-bottom: 1.25rem; }
#cta p {
    color: var(--text-2);
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.trust-pill {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-top: 1.75rem;
    font-family: var(--ff-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
}
.trust-pill span::before { content: '✓  '; color: var(--green); }
.secondary-action {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-3);
}
.secondary-action a { color: var(--orange-lt); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding-block: 2rem;
    text-align: center;
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--text-3);
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── DIVIDER ────────────────────────────────────────── */
.section-divider {
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 100px;
    margin-bottom: 2rem;
}
