/* ===========================================================
   UniCheck GH — design tokens
   =========================================================== */
:root {
    --navy: #0F1B2E;
    --navy-alt: #16243C;
    --surface: #1C2C47;
    --surface-line: rgba(242, 244, 247, 0.12);
    --ivory: #F2F4F7;
    --muted: #90A0B8;
    --gold: #E8B84B;
    --gold-dark: #7A5A17;
    --green: #2FA36B;
    --green-dark: #0F3D26;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

body {
    background: var(--navy);
    color: var(--ivory);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--ivory);
}

h1 { font-size: clamp(32px, 4.5vw, 52px); }
h2 { font-size: clamp(24px, 3vw, 32px); text-align: center; }

p { color: var(--muted); margin: 0 0 16px; }

a { text-decoration: none; }

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--gold-dark);
}

.btn-primary:hover {
    background: #f0c665;
    transform: translateY(-1px);
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
    padding: 96px 0 80px;
    border-bottom: 1px solid var(--surface-line);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.lead {
    font-size: 18px;
    max-width: 46ch;
}

.hero-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 12px;
}

/* Signature element: the eligibility slip */
.hero-visual { display: flex; justify-content: center; }

.slip {
    width: 100%;
    max-width: 380px;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: 16px;
    padding: 24px;
    transform: rotate(-2deg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.slip-top, .slip-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slip-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

.slip-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    background: var(--navy);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 999px;
}

.slip-grades {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.slip-grades li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--surface-line);
    font-size: 14px;
    color: var(--ivory);
}

.slip-grades b {
    font-family: var(--font-mono);
    color: var(--gold);
}

.slip-tear {
    position: relative;
    height: 1px;
    margin: 20px -24px;
    border-top: 2px dashed var(--surface-line);
}

.slip-matches {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.slip-matches li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--ivory);
    padding: 6px 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

.dot-green { background: var(--green); }
.dot-gold { background: var(--gold); }

/* ===========================================================
   Stats bar
   =========================================================== */
.stats {
    background: var(--navy-alt);
    padding: 40px 0;
    border-bottom: 1px solid var(--surface-line);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
}

/* ===========================================================
   How it works
   =========================================================== */
.how {
    padding: 88px 0;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.how-step {
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: 12px;
    padding: 28px;
}

.how-index {
    font-family: var(--font-mono);
    color: var(--green);
    font-size: 13px;
}

.how-step h3 {
    font-size: 18px;
    margin: 12px 0 8px;
}

.how-step p { font-size: 14px; margin: 0; }

/* ===========================================================
   Features
   =========================================================== */
.features {
    background: var(--navy-alt);
    padding: 88px 0;
    border-top: 1px solid var(--surface-line);
    border-bottom: 1px solid var(--surface-line);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    padding: 24px;
    border-left: 2px solid var(--gold);
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    margin: 0;
}

/* ===========================================================
   Final CTA
   =========================================================== */
.cta {
    padding: 96px 0;
    text-align: center;
}

.cta-inner p {
    font-size: 16px;
    margin-bottom: 28px;
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .slip { transform: none; }
}