/* ═══════════════════════════════════════════════
   TOUCHDOWN STRATEGY — DESIGN TOKEN SYSTEM
   Extracted from landing page design, applied globally.
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════
   COLOR TOKENS
═══════════════════════════ */
:root {
    /* Primary palette */
    --ink: #0C3256;
    --ink2: #0a2a48;
    --gray1: #0d3660;
    --gray2: #1a4d7a;
    --mid: #6c757d;
    --light: #D9D9D9;
    --rule: #ddd;
    --cream: #f8f9fa;
    --white: #FFFFFF;

    /* Accent colors */
    --gold: #1D9ADC;
    --gold2: #3aabe8;
    --gold-a: rgba(29, 154, 220, .12);
    --cta: #E3712A;
    --cta2: #f08540;
    --cta-a: rgba(227, 113, 42, .12);
    --red: #c1281b;
    --green: #0D75B0;
    --green2: #1D9ADC;

    /* Legacy variable mapping (backward compat) */
    --font-family: 'DM Sans', sans-serif;
    --font-family-display: 'Bebas Neue', sans-serif;
    --font-family-serif: 'Libre Baskerville', serif;
    --font-family-kufam: 'Bebas Neue', sans-serif !important;

    /* Force older color variables to the new palette */
    --dark-midnight-blue: var(--ink);
    --bright-blue: var(--gold);
    --accessible-blue: var(--ink2);
    --burnt-orange: var(--cta);
    --pure-white: var(--white);
    --pure-black: #000000;
    --slate-gray: var(--mid);
    --light-gray: var(--rule);
    --charcoal-gray: var(--gray2);
    --platinum: var(--light);
    --alabaster: var(--cream);
    --gainsboro: var(--light);

    /* Font weights */
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;
}

/* ═══════════════════════════
   BASE RESET
═══════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6, p {
    margin: 0 !important;
}

/* ═══════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════ */
.display {
    font-family: var(--font-family-display);
    letter-spacing: .5px;
    line-height: .95;
}

.serif {
    font-family: var(--font-family-serif);
}

.mono {
    font-family: var(--font-family);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Legacy typography classes (backward compat) */
.heading-one-typography {
    font-family: var(--font-family-display);
    font-weight: 900;
    font-size: clamp(2.8rem, 5vw, 3.75rem);
    line-height: .95;
    letter-spacing: .5px;
    color: var(--ink);
}

.heading-one-typography span {
    color: var(--gold);
    display: inline-block;
}

.heading-two-typography {
    font-family: var(--font-family-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: .95;
    letter-spacing: .5px;
    color: var(--ink);
}

.heading-two-typography span {
    color: var(--gold);
}

.heading-five-typography {
    font-family: var(--font-family-display);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: .3px;
}

.heading-six-typography {
    font-family: var(--font-family-display);
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: .3px;
    color: var(--ink);
}

.body-para-01 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.body-para-02 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--ink);
}

.body-para-03 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 22px;
    color: #4b5563;
}

.gradint-sapn-border {
    border-bottom: 3px solid var(--cta);
    display: inline-block;
}

/* ═══════════════════════════
   LAYOUT CONTAINERS
═══════════════════════════ */
.C {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.C--sm {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}

.C--xs {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ═══════════════════════════
   BUTTON SYSTEM
═══════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 32px;
    height: 52px;
    cursor: pointer;
    border: none;
    transition: all .18s ease;
    white-space: nowrap;
    border-radius: 0;
    text-decoration: none;
}

.btn--gold {
    background: var(--cta);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(227, 113, 42, .3);
}

.btn--gold:hover {
    background: var(--cta2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(227, 113, 42, .45);
    color: var(--white);
}

.btn--ink {
    background: var(--ink);
    color: var(--white);
}

.btn--ink:hover {
    background: var(--gray1);
    transform: translateY(-2px);
    color: var(--white);
}

.btn--outline-gold {
    background: transparent;
    color: var(--cta);
    border: 1.5px solid rgba(227, 113, 42, .4);
}

.btn--outline-gold:hover {
    border-color: var(--cta);
    background: var(--cta-a);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .25);
}

.btn--outline-white:hover {
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .06);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--ink);
}

.btn--white:hover {
    background: var(--cta);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    height: 60px;
    padding: 0 44px;
    font-size: 12px;
}

.btn i {
    font-size: 14px;
}

/* Legacy button compat */
.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    height: 52px;
    color: var(--white);
    background-color: var(--cta);
    border: none;
    outline: none;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all .18s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(227, 113, 42, .3);
}

.primary-button:hover {
    background: var(--cta2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(227, 113, 42, .45);
    color: var(--white);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    height: 52px;
    color: var(--ink);
    background-color: var(--white);
    border: 1.5px solid var(--ink);
    outline: none;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all .18s ease;
    text-decoration: none;
}

.secondary-button:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

a.primary-button,
a.secondary-button {
    text-decoration: none;
}

/* ═══════════════════════════
   SECTION HEADER UTILITIES
═══════════════════════════ */
.sec-label {
    font-family: var(--font-family-display);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
    display: block;
}

.sec-h {
    font-family: var(--font-family-display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: .95;
    letter-spacing: .5px;
    color: var(--ink);
    margin-bottom: 18px;
}

.sec-h--white {
    color: #fff;
}

.sec-body {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.75;
    max-width: 540px;
}

.sec-body--light {
    color: rgba(255, 255, 255, .4);
}

/* ═══════════════════════════
   SCROLL REVEAL
═══════════════════════════ */
[data-sr] {
    opacity: 1;
    transform: none;
    transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1);
}

[data-sr].visible {
    opacity: 1;
    transform: none;
}

[data-sr="1"] { transition-delay: .06s; }
[data-sr="2"] { transition-delay: .12s; }
[data-sr="3"] { transition-delay: .18s; }
[data-sr="4"] { transition-delay: .24s; }

/* ═══════════════════════════
   RESPONSIVE CONTAINERS
═══════════════════════════ */
@media(max-width:767px) {
    .C,
    .C--sm,
    .C--xs {
        padding: 0 20px;
    }
}
