:root {
--blue: #0067C0;
--blue-dark: #004e92;
--blue-light: #deecf9;
--blue-mid: #0078D4;
--off-white: #f7f8fc;
--white: #ffffff;
--ink: #0f1923;
--ink-mid: #3a4a5c;
--ink-light: #7a8a9a;
--border: rgba(0,103,192,0.12);
--radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
font-family: 'DM Sans', sans-serif;
background: var(--off-white);
color: var(--ink);
overflow-x: hidden;
}

/* ── NAV ── */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 48px;
background: rgba(247,248,252,0.85);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}

.nav-logo {
font-family: 'Oleo Script Swash Caps', cursive;
font-size: 26px;
color: var(--blue);
text-decoration: none;
letter-spacing: -0.5px;
}

.nav-links {
display: flex;
align-items: center;
gap: 32px;
list-style: none;
}

.nav-links a {
font-size: 14px;
font-weight: 500;
color: var(--ink-mid);
text-decoration: none;
transition: color 0.2s;
}

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

.nav-cta {
background: var(--blue);
color: white !important;
padding: 9px 20px;
border-radius: 8px;
font-weight: 600 !important;
transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--blue-dark) !important; color: white !important; }

/* ── HERO ── */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 120px 24px 80px;
position: relative;
overflow: hidden;
}

.hero-bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0,103,192,0.08) 0%, transparent 70%),
radial-gradient(ellipse 40% 30% at 80% 80%, rgba(0,120,212,0.05) 0%, transparent 60%);
pointer-events: none;
}

.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--blue-light);
color: var(--blue);
font-size: 12.5px;
font-weight: 600;
letter-spacing: 0.6px;
text-transform: uppercase;
padding: 6px 14px;
border-radius: 20px;
border: 1px solid rgba(0,103,192,0.2);
margin-bottom: 28px;
opacity: 0;
animation: fadeUp 0.6s 0.1s forwards;
}

.hero-eyebrow-dot {
width: 6px; height: 6px;
background: var(--blue);
border-radius: 50%;
}

.hero-wordmark {
font-family: 'Oleo Script Swash Caps', cursive;
font-size: clamp(72px, 12vw, 140px);
color: var(--blue);
line-height: 1;
letter-spacing: -2px;
margin-bottom: 16px;
opacity: 0;
animation: fadeUp 0.7s 0.2s forwards;
}

.hero-tagline {
font-size: clamp(18px, 3vw, 24px);
font-weight: 300;
color: var(--ink-mid);
letter-spacing: 0.2px;
margin-bottom: 48px;
opacity: 0;
animation: fadeUp 0.7s 0.35s forwards;
}

.hero-actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
justify-content: center;
opacity: 0;
animation: fadeUp 0.7s 0.5s forwards;
}

.btn-primary {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--blue);
color: white;
font-family: 'DM Sans', sans-serif;
font-size: 15px;
font-weight: 600;
padding: 14px 28px;
border-radius: 10px;
text-decoration: none;
border: none;
cursor: pointer;
transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
box-shadow: 0 4px 20px rgba(0,103,192,0.3);
}

.btn-primary:hover {
background: var(--blue-dark);
transform: translateY(-2px);
box-shadow: 0 8px 28px rgba(0,103,192,0.35);
}

.btn-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
background: white;
color: var(--ink);
font-family: 'DM Sans', sans-serif;
font-size: 15px;
font-weight: 500;
padding: 14px 28px;
border-radius: 10px;
text-decoration: none;
border: 1.5px solid var(--border);
cursor: pointer;
transition: border-color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
border-color: var(--blue);
color: var(--blue);
transform: translateY(-2px);
}

/* ── DEMO TICKER ── */
.demo-ticker {
margin-top: 72px;
width: 100%;
max-width: 700px;
opacity: 0;
animation: fadeUp 0.7s 0.7s forwards;
}

.demo-ticker-label {
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--ink-light);
margin-bottom: 12px;
}

.demo-box {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 20px 24px;
box-shadow: 0 4px 24px rgba(0,103,192,0.06);
display: flex;
align-items: center;
gap: 16px;
font-size: 15px;
min-height: 64px;
}

.demo-trigger {
font-family: 'DM Mono', monospace;
font-size: 13.5px;
font-weight: 500;
color: var(--blue);
background: var(--blue-light);
border: 1px solid rgba(0,103,192,0.2);
border-radius: 6px;
padding: 4px 10px;
white-space: nowrap;
flex-shrink: 0;
}

.demo-arrow {
color: var(--ink-light);
font-size: 18px;
flex-shrink: 0;
}

.demo-result {
color: var(--ink-mid);
font-size: 14px;
line-height: 1.5;
text-align: left;
transition: opacity 0.3s;
}

/* ── HOW IT WORKS ── */
.section {
padding: 100px 24px;
max-width: 1100px;
margin: 0 auto;
}

.section-label {
font-size: 11.5px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--blue);
margin-bottom: 12px;
}

.section-title {
font-size: clamp(32px, 5vw, 48px);
font-weight: 300;
color: var(--ink);
line-height: 1.15;
letter-spacing: -1px;
margin-bottom: 16px;
}

.section-title strong {
font-weight: 600;
}

.section-desc {
font-size: 16px;
color: var(--ink-mid);
font-weight: 300;
max-width: 520px;
line-height: 1.7;
margin-bottom: 56px;
}

/* Steps */
.steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.step {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 32px 28px;
position: relative;
overflow: hidden;
transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,103,192,0.1);
}

.step::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 3px;
background: var(--blue);
opacity: 0;
transition: opacity 0.2s;
}

.step:hover::before { opacity: 1; }

.step-num {
font-family: 'Oleo Script Swash Caps', cursive;
font-size: 48px;
color: var(--blue-light);
line-height: 1;
margin-bottom: 16px;
}

.step-title {
font-size: 17px;
font-weight: 600;
margin-bottom: 8px;
}

.step-desc {
font-size: 14px;
color: var(--ink-mid);
line-height: 1.6;
}

/* ── FEATURES ── */
.features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.feature-card {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 28px;
display: flex;
gap: 18px;
align-items: flex-start;
transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 32px rgba(0,103,192,0.08);
}

.feature-card.wide {
grid-column: span 2;
}

.feature-icon {
width: 42px;
height: 42px;
border-radius: 10px;
background: var(--blue-light);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--blue);
}

.feature-title {
font-size: 15px;
font-weight: 600;
margin-bottom: 6px;
}

.feature-desc {
font-size: 13.5px;
color: var(--ink-mid);
line-height: 1.6;
}

/* ── VARIABLES ── */
.vars-section {
background: var(--ink);
color: white;
padding: 100px 24px;
}

.vars-inner {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}

.vars-section .section-label { color: #5baff5; }
.vars-section .section-title { color: white; }
.vars-section .section-desc { color: rgba(255,255,255,0.6); margin-bottom: 0; }

.vars-chips {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.var-chip {
font-family: 'DM Mono', monospace;
font-size: 13px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.15);
color: #5baff5;
padding: 8px 14px;
border-radius: 8px;
cursor: default;
transition: background 0.15s;
}

.var-chip:hover { background: rgba(255,255,255,0.14); }

.var-chip span {
color: rgba(255,255,255,0.5);
font-size: 12px;
margin-left: 8px;
font-family: 'DM Sans', sans-serif;
}

/* ── CTA BAND ── */
.cta-band {
padding: 100px 24px;
text-align: center;
background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
position: relative;
overflow: hidden;
}

.cta-band::before {
content: '';
position: absolute;
inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band-title {
font-family: 'Oleo Script Swash Caps', cursive;
font-size: clamp(40px, 7vw, 72px);
color: white;
margin-bottom: 16px;
position: relative;
}

.cta-band-desc {
font-size: 17px;
color: rgba(255,255,255,0.75);
font-weight: 300;
margin-bottom: 40px;
position: relative;
}

.cta-band .btn-primary {
background: white;
color: var(--blue);
box-shadow: 0 4px 24px rgba(0,0,0,0.2);
position: relative;
}

.cta-band .btn-primary:hover {
background: var(--blue-light);
color: var(--blue-dark);
}

/* ── FOOTER ── */
footer {
padding: 32px 48px;
border-top: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
font-size: 13px;
color: var(--ink-light);
}

.footer-logo {
font-family: 'Oleo Script Swash Caps', cursive;
font-size: 20px;
color: var(--blue);
}

/* ── DIVIDER ── */
.divider {
width: 100%;
height: 1px;
background: var(--border);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to   { opacity: 1; transform: translateY(0); }
}

.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.6s, transform 0.6s;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
nav { padding: 14px 20px; }
.nav-links { display: none; }
.steps { grid-template-columns: 1fr; }
.features-grid { grid-template-columns: 1fr; }
.feature-card.wide { grid-column: span 1; }
.vars-inner { grid-template-columns: 1fr; gap: 40px; }
footer { flex-direction: column; gap: 12px; text-align: center; }
}