/* =================================================================
   SELL LIKE CODY — style.css
   Dark editorial landing page. Layout is handled by Bootstrap 5 grid
   (container / row / col-*). This file styles internals: typography,
   colors, decorative effects, and a few absolute-positioned design
   elements (Cody cutout, floating quote, bg numerals) that have no
   grid equivalent.

   Order:
   1. Tokens / reset
   2. Background FX
   3. Header / nav
   4. Hero
   5. Benefits strip
   6. Bio
   7. Platform (feature cards)
   8. CTA + form
   9. Footer
   10. Reveal animation hooks
   11. Responsive overrides (Bootstrap breakpoints)
   ================================================================= */

/* ===== 1. Tokens / reset ===== */
:root {
    --bg-base: #0A0A0A;
    --bg-deep: #060606;
    --bg-elev: #131313;
    --bg-card: #111111;
    --bg-warm: #14110D;

    --accent: #f68f00;
    --accent-bright: #ffa31a;
    --accent-soft: #f4b85a;
    --plate-red: #d22030;
    --plate-blue: #1c3aa0;
    --cream: #F5F1EA;

    --text-primary: #F5F1EA;
    --text-secondary: #9A958C;
    --text-tertiary: #5e5750;
    --line: rgba(245, 241, 234, 0.08);
    --line-strong: rgba(245, 241, 234, 0.16);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: 1200px
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: var(--bg-base);
    padding: 10px 16px;
    z-index: 1000;
    font-weight: 700;
}

.skip-link:focus {
    left: 8px;
    top: 8px;
}

/* Section spacing (Bootstrap grid handles row/col, sections get vertical padding) */
section {
    padding: 70px 0;
    position: relative;
    z-index: 2;
}


/* ===== 2. Background FX ===== */
.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    filter: url(#grain);
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.scan {
    position: fixed;
    inset: 0;
    z-index: 1;
    background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px,
            rgba(255, 255, 255, 0.010) 3px, rgba(255, 255, 255, 0.010) 4px);
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}


/* ===== 3. Header / nav ===== */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 40px;
    background: transparent;
    transition: padding 0.3s ease, background 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header-area.is-scrolled {
    padding: 12px 40px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    line-height: 1.15;
    transition: color 0.2s ease;
}

.nav__contact-link:hover {
    color: var(--accent);
}

.nav__contact-link svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.nav__contact-link span {
    display: inline-flex;
    flex-direction: column;
}

.nav__contact-label {
    font-size: 10px;
    font-weight: 700;
    color: #adadad;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.nav__divider {
    display: inline-block;
    width: 1px;
    height: 28px;
    background: var(--line);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    background: var(--accent);
    color: var(--bg-base);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav__cta:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(246, 143, 0, 0.35);
}

.nav__cta svg {
    width: 14px;
    height: 14px;
}


/* ===== 4. Hero ===== */
.hero-area {
    padding: 60px 0;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image:
        radial-gradient(circle at 8% 78%, rgba(246, 143, 0, 0.22) 0 4px, transparent 6px),
        radial-gradient(circle at 14% 78%, rgba(246, 143, 0, 0.18) 0 3px, transparent 5px),
        radial-gradient(circle at 21% 78%, rgba(246, 143, 0, 0.22) 0 4px, transparent 6px),
        radial-gradient(circle at 28% 78%, rgba(246, 143, 0, 0.16) 0 3px, transparent 5px),
        linear-gradient(to top, rgba(255, 255, 255, 0.04) 0, transparent 30%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(246, 143, 0, 0.10) 0, transparent 70%);
}

.hero__brand {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.hero__brand-plate {
    width: min(300px, 80vw);
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 30px rgba(246, 143, 0, 0.2));
}

.hero__available {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 10px;
    line-height: 0.95;
    border-left: 2px solid var(--accent)
}


.hero__headline {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.022em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero__headline .row-line {
    display: block;
    overflow: hidden;
}

.hero__headline .row-line > span {
    display: block;
    white-space: nowrap;
}

.hero__headline .accent {
    color: var(--accent);
}

.hero__headline em {
    font-style: normal;
    position: relative;
    display: inline-block;
}


.hero__sub {
    margin-bottom: 44px;
}

.hero__sub b {
    color: var(--text-primary);
    font-weight: 700;
}

/* Stat cards — now sit inside a Bootstrap row */
.hero__stats {
    margin-bottom: 30px;
}

.stat {
    padding: 22px 22px 18px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}

.stat:hover::before {
    transform: translateY(0);
}

.stat__num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.7rem);
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0 0 7px;
}

.stat__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0 0 4px;
}

.stat__sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0;
}

/* Guinness verified seal */
.hero__trust {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 410px;
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 0;
}

.hero__trust strong {
    color: var(--text-primary);
    font-weight: 600;
}

.seal {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(246, 143, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.seal::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(246, 143, 0, 0.35);
    border-radius: 50%;
}

.seal svg {
    width: 22px;
    height: 22px;
    margin-bottom: 1px;
}

.seal__text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 6.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--accent);
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    background: var(--accent);
    color: var(--bg-base);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta-btn:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(246, 143, 0, 0.4);
}

.hero__cta-btn svg {
    width: 14px;
    height: 14px;
}

.hero__cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

.hero__cta-phone svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.hero__cta-phone:hover {
    color: var(--accent);
}

/* Hero visual column — Cody cutout + floating quote */
.hero__visual {
    position: relative;
    width: 100%;
    min-height: 590px;
}

.hero__visual::before {
    content: '';
    position: absolute;
    right: -40px;
    bottom: 60px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle at 50% 50%, rgba(246, 143, 0, 0.55) 0%, rgba(246, 143, 0, 0.22) 30%, rgba(246, 143, 0, 0.06) 55%, transparent 75%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.hero__visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90px;
    background: radial-gradient(ellipse, rgba(246, 143, 0, 0.6) 0%, rgba(246, 143, 0, 0.18) 40%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.hero__cody {
    position: absolute;
    bottom: -100px;
    right: 135px;
    z-index: 1;
    height: 850px;
    width: auto;
    max-width: none;
    pointer-events: none;
    filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.85));
}

.hero-area .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    filter: grayscale(1);
    opacity: 0.8;
}

.hero__quote {
    position: absolute;
    top: -50px;
    right: -30px;
    max-width: 260px;
    z-index: 3;
    text-align: left;
    margin: 0;
}

.hero__left {
    position: relative;
    z-index: 1;
}

.hero__quote-mark {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 88px;
    line-height: 0;
    color: var(--accent);
    margin-bottom: 6px;
    font-style: italic;
    display: block;
}

.hero__quote-text {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 26px;
    line-height: 1.32;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.hero__quote-author {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-style: normal;
    display: block;
}


/* ===== 5. Benefits strip ===== */
.benefits-area {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 36px;
    height: 100%;
}

/* Bootstrap row will lay these out; we still want a divider between cols on desktop */
.benefits-area .col-md-4 + .col-md-4 .benefit {
    border-left: 1px solid var(--line);
}

.benefit__icon {
    color: var(--accent);
    flex-shrink: 0;
}

.benefit__icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.benefit__text {
    flex: 1;
    min-width: 0;
}

.benefit__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 5px;
    line-height: 1.2;
}

.benefit__sub {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0;
}


/* ===== 6. Bio ===== */
.bio-area {
    padding: 70px 0;
    position: relative;
}

.bio__bg-num {
    position: absolute;
    top: 36px;
    right: 48px;
    font-family: 'Anton', sans-serif;
    font-size: 240px;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.018);
    letter-spacing: -0.04em;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    margin: 0;
}

.bio-area > .container {
    position: relative;
    z-index: 2;
}

.bio__poster {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
    aspect-ratio: 4 / 5;
    background: #0d0d0d;
    transition: transform 0.45s ease;
}

.bio__poster:hover {
    transform: translateY(-4px);
}

.bio__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.bio__heading {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 32px;
}

.bio__heading .accent {
    color: var(--accent);
}

.bio__text p {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.bio__text p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.bio__text p:last-child {
    margin-bottom: 32px;
}

.bio__featured-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bio__featured-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bio__featured-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--line);
}

.bio__featured-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.featured-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 25px
}

.featured-logo img {
    max-height: 30px
}

/* ===== 7. Platform / feature cards ===== */
.platform-area {
    padding: 80px 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(246, 143, 0, 0.05) 0, transparent 60%),
        var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.platform__heading {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 18px;
    max-width: 720px;
}

.platform__heading .accent {
    color: var(--accent);
}

.platform__sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 540px;
    margin: 0 0 42px;
}

.platform__sub strong {
    color: var(--text-primary);
    font-weight: 600;
}

.feature {
    padding: 38px 32px 32px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.feature:hover {
    border-color: rgba(246, 143, 0, 0.35);
    transform: translateY(-4px);
}

.feature__head {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.feature__icon {
    width: 44px;
    height: 44px;
    color: var(--accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.feature__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0;
}

.feature__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 22px;
}

.feature__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-primary);
    border-top: 1px dashed var(--line);
}

.feature__list li:first-child {
    border-top: none;
    padding-top: 0;
}

.feature__list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--accent);
    margin-top: 8px;
}


/* ===== 8. CTA + form ===== */
.cta-area {
    padding: 80px 0;
}

.cta__heading {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 26px;
}

.cta__heading .accent {
    color: var(--accent);
}

.cta__sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 0 38px;
}

.cta__sub strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cta__phone-block {
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.cta__phone-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta__phone-num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(38px, 4.5vw, 56px);
    color: var(--accent);
    letter-spacing: 0.005em;
    line-height: 1;
    display: inline-block;
    transition: color 0.2s ease;
}

.cta__phone-num:hover {
    color: var(--accent-bright);
    text-shadow: 0 14px 32px rgba(246, 143, 0, 0.32)
}

.cta__phone-foot {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 14px;
    margin-bottom: 0;
}

.cta__phone-foot a {
    color: var(--accent);
}

.cta__phone-foot a:hover {
    color: var(--accent-bright);
}

.form {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 10px;
    position: relative;
}

.form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--accent);
}

.form__title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 6px;
}

.form__sub {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 26px;
}

.form input,
.form textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    background: var(--bg-base) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 6px !important;
    color: var(--text-primary) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
    resize: vertical !important;
    height: 51px !important;
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-tertiary) !important;
    font-weight: 400 !important;
}

.form input:focus,
.form textarea:focus {
    outline: none !important;
    border-color: var(--accent) !important;
    background: #0d0d0d !important;
}

.form textarea {
    min-height: 88px !important;
}

.form__submit, .gform_button  {
    width: 100% !important;
    padding: 16px 24px !important;
    background: var(--accent) !important;
    color: var(--bg-base) !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    margin-top: 8px !important;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.form__submit:hover, .gform_button:hover {
    background: var(--accent-bright) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 14px 32px rgba(246, 143, 0, 0.32) !important;
}

/* Visually-hidden label */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ===== 9. Footer ===== */
.footer-area {
    padding: 28px 0 32px;
    border-top: 1px solid var(--line);
}

.footer__text {
    font-size: 12px;
    color: var(--text-tertiary);
    margin: 0;
}

.footer__text a:hover {
    color: var(--accent);
}

.footer__brand {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.footer__brand b {
    color: var(--accent);
    font-weight: 700;
}


/* ===== 10. Reveal hook ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
}

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}


/* =================================================================
   11. Responsive overrides — aligned to Bootstrap 5 breakpoints
   xxl 1400 / xl 1200 / lg 992 / md 768 / sm 576
   ================================================================= */

/* < xl (1199.98px) */
@media (max-width: 1199.98px) {
    .hero__quote {
        max-width: 240px;
        right: -60px;
    }

    .hero__quote-text {
        font-size: 20px;
    }

    .hero__quote-mark {
        font-size: 68px;
    }

    .hero__cody {
        right: -160px;
        height: 760px;
    }

    .hero__visual {
        min-height: 760px;
    }
}

/* < lg (991.98px) — stack hero, bio, platform, cta */
@media (max-width: 991.98px) {
    .header-area {
        padding: 14px 22px;
    }

    .header-area.is-scrolled {
        padding: 10px 22px;
    }

    .nav__cta {
        padding: 9px 13px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .nav__contact-label {
        display: none;
    }

    .nav__contact-link {
        font-size: 11px;
        gap: 7px;
        letter-spacing: 0.06em;
    }

    .nav__divider {
        height: 16px;
    }

    .hero-area {
        padding: 100px 0 60px;
    }

    .hero__brand {
        margin-bottom: 36px;
    }

    .hero__brand-plate {
        width: min(380px, 78vw);
    }

    /* Hero visual collapses to its natural flow */
    .hero__visual {
        min-height: 0;
        padding-top: 40px;
        text-align: center;
    }

    .hero__visual::before {
        right: 50%;
        transform: translateX(50%);
        bottom: 40px;
        width: min(560px, 90vw);
        height: min(560px, 90vw);
    }

    .hero__visual::after {
        right: 50%;
        transform: translateX(50%);
        width: min(420px, 80vw);
        height: 60px;
    }

    .hero__cody {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        height: auto;
        max-height: 70vh;
        margin: 0 auto;
    }

    .hero__quote {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin: 0 auto 24px;
        text-align: center;
    }

    .hero__quote-mark {
        font-size: 64px;
    }

    .hero__quote-text {
        font-size: 18px;
    }

    .hero__quote-author {
        font-size: 11px;
    }

    .hero__trust {
        gap: 14px;
    }

    .seal {
        width: 56px;
        height: 56px;
    }

    .bio-area {
        padding: 60px 0;
    }

    .bio__bg-num {
        display: none;
    }

    .platform-area {
        padding: 70px 0;
    }

    .cta-area {
        padding: 70px 0;
    }

    /* Benefits: the desktop divider rule no longer applies when items stack */
    .benefits-area .col-md-4 + .col-md-4 .benefit {
        border-left: none;
    }
}

/* < md (767.98px) */
@media (max-width: 767.98px) {
    .header-area {
        padding: 12px 18px;
    }

    .header-area.is-scrolled {
        padding: 10px 18px;
    }

    .benefits-area {
        padding: 36px 0 50px;
    }

    .benefit {
        padding: 14px 0;
        border-top: 1px solid var(--line);
    }

    .benefit.first {
        border-top: none;
        padding-top: 0;
    }

    .cta__heading {
        font-size: 2.4rem;
    }
}

/* < sm (575.98px) */
@media (max-width: 575.98px) {
    .header-area {
        padding: 12px 14px;
    }

    .nav__cta {
        padding: 8px 11px;
        font-size: 10px;
    }

    .nav__divider {
        display: none;
    }

    .nav__contact-link {
        font-size: 10.5px;
    }

    .hero-area {
        padding: 90px 0 50px;
    }

    .hero__brand-plate {
        width: 88vw;
    }

    .hero__headline {
        font-size: 2.4rem;
    }

    .hero__sub {
        font-size: 11.5px;
        letter-spacing: 0.18em;
    }

    .hero__cta {
        gap: 14px;
    }

    .hero__cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hero__cta-phone {
        width: 100%;
        justify-content: center;
    }

    .hero__visual::before {
        width: 95vw;
        height: 95vw;
        bottom: 30px;
    }

    .hero__visual::after {
        width: 85vw;
    }

    .hero__cody {
        max-width: 94%;
        max-height: 60vh;
    }

    .hero__quote-mark {
        font-size: 56px;
    }

    .hero__quote-text {
        font-size: 17px;
    }

    .hero__quote-author {
        font-size: 10.5px;
    }

    .form {
        padding: 24px;
    }

    .cta__phone-num {
        font-size: 30px;
    }

    .footer-area .row > div {
        text-align: center !important;
    }
}


/*Extra Responsive*/

@media(max-width:1200px) {
    .hero-area {
        padding: 80px 0 0px;
    }

    .hero__brand {
        margin-bottom: 0;
    }

    .stat {
        padding: 15px;
    }

    .stat__num {
        font-size: 22px;
    }

    .hero__visual {
        min-height: 700px;
    }

    .hero__cody {
        right: -160px;
        height: 610px;
    }

    .hero__quote {
        max-width: 210px;
        right: 0;
        top: 40px;
    }

    .hero__cody {
        right: 0;
    }

    .hero__headline {
        font-size: 70px;
    }

    .hero__cody {
        right: 100px;
        height: 840px;
    }
}

@media(max-width:991px) {
    .cta-area {
        padding: 50px 0;
    }

    .platform-area {
        padding: 50px 0
    }

    .bio__heading {
        margin: 0 0 20px;
    }

    .bio__text p {
        margin-bottom: 13px;
    }

    .feature {
        padding: 28px
    }

    .form {
        padding: 25px
    }

    .hero__brand-plate {
        width: min(180px, 78vw);
    }

    .stat {
        padding: 15px
    }

    .stat__num {
        font-size: 22px
    }

    .hero-area {
        padding: 70px 0 0px;
    }

    .hero__cody {
        right: 100px;
        max-width: 100%;
        height: auto;
        min-width: 100%;
        margin: 0 auto;
        min-width: 626px;
    }

    .hero__visual {
        height: 100%
    }

    .benefit {
        padding: 10px 0;
    }

    .hero__visual {
        height: inherit;
        min-height: 0;
    }

    .hero__quote {
        max-width: 180px;
        right: -38px;
        top: 30px;
    }

    .hero-area {
        padding-top: 85px;
        padding-bottom: 40px;
    }

    .hero__left__inner {
        position: relative;
        padding-right: 40%;
    }

    .hero__cody__mobile {
        position: absolute;
        bottom: 0;
        width: 280px;
        bottom: -45px;
        right: 0;
    }

    .hero__headline {
        font-size: 64px;
    }

    .hero__sub {
        padding-right: 50px;
    }

    .hero__brand {
        margin-bottom: 50px;
    }
}

@media(max-width:767px) {
    .hero-area {
        padding-top: 65px;
        padding-bottom: 40px
    }

    .hero__brand-plate {
        width: min(100px, 80vw);
    }

    .hero__brand {
        margin-bottom: 30px;
    }

    .hero__sub {
        margin-bottom: 25px
    }

    .hero__stats {
        text-align: center
    }

    .stat {
        padding: 15px
    }

    .stat__num {
        font-size: 24px;
    }

    .hero__cta {
        display: none
    }

    .hero__quote-text {
        font-size: 26px;
        width: 80%;
        margin: 0 auto 20px;
    }

    .hero__quote {
        margin: 20px 0;
        max-width: 100%;
        top: auto;
    }

    .benefits-area {
        padding: 30px 0 20px
    }

    .form {
        margin-top: 30px;
    }

    .benefit {
        border: none;
        padding: 0
    }

    .benefit {
        align-items: flex-start
    }

    .hero__visual {
        height: auto;
        min-height: 0;
    }

    .hero__cody {
        right: 0;
        max-width: 0;
        height: auto;
        min-width: 100%;
        margin: 0 auto;
        min-width: 100%;
        left: 0;
        object-fit: contain
    }

    .hero__quote {
        right: auto
    }

    .hero__brand {
        text-align: left
    }

    .hero__brand-plate {
        width: min(200px, 80vw);
    }

    .hero__left {
        position: relative;
        z-index: 111
    }

    .hero__quote {
        display: none;
    }

    .hero-area {
        padding-top: 85px;
        padding-bottom: 40px;
    }

    .hero__left__inner {
        position: relative;
        padding-right: 40%;
    }

    .hero__cody__mobile {
        position: absolute;
        bottom: 0;
        width: 250px;
        bottom: -26px;
        right: 0;
    }

    .hero__headline {
        font-size: 48px;
    }

    .hero__sub {
        padding-right: 50px;
    }

    .header-area {
        padding: 12px 0;
    }

    .header-inn-wrapper {
        justify-content: space-between !important
    }

    .header-area.is-scrolled {
        padding: 10px;
    }

    .hero__available {
        margin-bottom: 15px;
        font-size: 14px;
    }
}

@media(max-width:575px) {
    .benefit {
        padding: 15px 0;
        border-top: 1px solid var(--line)
    }

    .benefit.first {
        border-top: 0
    }

    .hero__quote {
        display: none;
    }

    .hero-area {
        padding-top: 85px;
        padding-bottom: 40px;
    }

    .hero__left__inner {
        position: relative;
        padding-right: 40%;
    }

    .hero__cody__mobile {
        position: absolute;
        bottom: 0;
        width: 56%;
        bottom: -30px;
        right: -25px;
        z-index: -1;
    }

    .hero__headline {
        font-size: 30px;
    }

    .hero__sub {
        padding-right: 50px;
    }
}


/*Extra CSS*/
.hero__avail-rest {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
}

.hero__sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px
}

.hero__sub strong,
.hero__card-text strong,
.feature__desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero__card {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 310px;
    z-index: 3;
    padding: 24px 24px 22px;
    background: linear-gradient(180deg, oklch(0.23 0.016 65 / 0.97), oklch(0.165 0.012 65 / 0.97));
    box-shadow: inset 0 0 0 1px var(--line-strong), 0 24px 50px oklch(0 0 0 / 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to bottom, var(--accent) 0 2px);
}

.hero__card-title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 0.98;
    color: var(--text-hi);
    margin-bottom: 10px;
}

.hero__card-title .accent {
    color: var(--accent);
}

.hero__card-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.global-list {
    margin: 25px 0
}

.nav__cta.lg {
    padding: 15px 20px;
    font-size: 14px;

}

.bio-area.alt {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(246, 143, 0, 0.05) 0, transparent 60%),
        var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.mx_100 {
    max-width: 100%
}

.road {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 54px;
}

.road::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 2%;
    right: 2%;
    height: 5px;
    background: repeating-linear-gradient(90deg,
            var(--accent) 0 26px, transparent 26px 50px);
    opacity: 0.7;
}

.road__step {
    position: relative;
}

.road__marker {
    position: absolute;
    top: -54px;
    left: 0;
    width: 44px;
    height: 44px;
    background: var(--bg-base);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 2px var(--accent);
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: var(--accent);
}

.road__title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-hi);
    margin-bottom: 8px;
}

.road__desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 30ch;
}

.who__split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.who__vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    z-index: 3;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-deep);
    display: grid;
    place-items: center;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 27px;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 26px oklch(0 0 0 / 0.5), inset 0 0 0 2px var(--bg-deep), inset 0 0 0 4px var(--accent);
}

.who__col {
    padding: 48px;
}

.who__col--reps {
    background: oklch(0.73 0.165 60 / 0.06);
    box-shadow: inset 0 0 0 1px oklch(0.73 0.165 60 / 0.3);
}

.who__tag {
    display: inline-block;
    padding: 5px 13px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: skewX(-8deg) rotate(-1deg);
    margin-bottom: 16px;
}

.who__col--reps .who__tag {
    background: var(--accent);
    color: var(--bg-deep);
}

.who__tag > span {
    display: block;
    transform: skewX(8deg);
}

.who__title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 3vw, 2.8rem);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-hi);
    margin-bottom: 12px;
}

.who__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
}

.who__col--dealers {
    background: oklch(0.95 0.014 85 / 0.025);
    box-shadow: inset 0 0 0 1px var(--line-strong);
}

.who__col--dealers .who__tag {
    background: transparent;
    color: var(--accent);
    box-shadow: inset 0 0 0 2px var(--accent);
}

.who__col .feature__list {
    margin-top: 40px
}

.cert__badge {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    transform: rotate(-3deg);
    filter: drop-shadow(0 26px 44px oklch(0 0 0 / 0.55));
}

.incl {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    background: oklch(0.18 0.012 65);
    box-shadow: inset 0 0 0 1px var(--line-strong), 0 30px 60px oklch(0 0 0 / 0.5);
}

.incl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to bottom, var(--accent) 0 2px);
}

.incl__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 56px;
    padding: 38px 44px 26px;
}

.incl__item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed oklch(0.95 0.014 85 / 0.10);
    font-size: 15px;
}

.incl__item:nth-last-child(-n+2) {
    border-bottom: none;
}

.incl__num {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: oklch(0.50 0.018 70);
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.incl__name {
    font-weight: 600;
    color: var(--text-hi);
    flex: 1;
}

.incl__name span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 1px;
}

.incl__check {
    flex-shrink: 0;
    align-self: center;
}

.incl__check svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    display: block;
}

.incl__foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 44px 24px;
    border-top: 1px solid oklch(0.95 0.014 85 / 0.20);
}

.incl__note {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin: 0
}

.incl__note b {
    color: var(--text-hi);
    font-weight: 700;
}

.incl__chip {
    display: inline-block;
    padding: 7px 16px;
    background: var(--accent);
    color: var(--bg-deep);
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: skewX(-6deg);
}

.incl__chip > span {
    display: block;
    transform: skewX(6deg);
}

.video__player {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    border: none;
    background:
        radial-gradient(circle at 28% 64%, oklch(0.46 0.095 55 / 0.35) 0, transparent 55%),
        oklch(0.18 0.012 65);
    box-shadow: inset 0 0 0 1px oklch(0.95 0.014 85 / 0.20), 0 34px 70px oklch(0 0 0 / 0.6);
    cursor: pointer;
}

.video__player::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(oklch(0.95 0.014 85 / 0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    -webkit-mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 60%);
    mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 60%);
    pointer-events: none;
}

.video__ghost {
    position: absolute;
    left: 24px;
    bottom: 12px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 0.9;
    text-align: left;
    color: transparent;
    -webkit-text-stroke: 1.5px oklch(0.73 0.165 60 / 0.4);
    user-select: none;
    pointer-events: none;
}

.video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--accent);
    display: grid;
    place-items: center;
    color: var(--bg-deep);
    transition: transform 0.25s ease, background 0.25s ease;
    z-index: 2;
}

.video__play::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px dashed oklch(0.73 0.165 60 / 0.55);
    animation: spin 14s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.video__player:hover .video__play {
    transform: translate(-50%, -50%) scale(1.06);
    background: var(--accent-bright);
}

.video__play svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}

.video__time {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--bg-deep);
    background: var(--accent);
    padding: 4px 10px;
}

.text-plain {
    padding: 80px 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(246, 143, 0, 0.05) 0, transparent 60%), var(--bg-deep);
    border-top: 1px solid var(--line);
}

.faq {
        background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(246, 143, 0, 0.05) 0, transparent 60%), var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.faq__header {
    margin-bottom: var(--space-2xl);
}

.faq__list {
    max-width: 860px;
    border-top: 1px solid var(--line-strong);
    margin: 0 auto
}

.faq__item {
    border-bottom: 1px solid var(--line-strong);
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-hi);
    transition: color 0.18s ease;
}

.faq__q:hover {
    color: var(--accent);
}

.faq__q-num {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
    flex-shrink: 0;
    width: 40px;
}

.faq__q-text {
    flex: 1;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 2vw, 20px);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.15;
}

.faq__q-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--accent);
    box-shadow: inset 0 0 0 1.5px oklch(0.73 0.165 60 / 0.4);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq__q-icon svg {
    width: 16px;
    height: 16px;
}

.faq__item.open .faq__q-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--bg-deep);
}

.faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__item.open .faq__a {
    grid-template-rows: 1fr;
}

.faq__a-inner {
    overflow: hidden;
}

.faq__a-inner p {
    padding: 0 60px 24px;
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq__a-inner strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq__a-inner a {
    color: var(--accent);
}

.cta-area.alt {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(246, 143, 0, 0.05) 0, transparent 60%),
        var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.who__col .feature__list li{
    padding: 12px 0
}

/* ===== 12. Funnel sections: trust strip, problem bridge, CTA band, comparison ===== */

/* Trust / logo strip (under hero) */
.trust-strip {
    padding: 30px 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip__row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 56px;
}

.trust-strip__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0;
    white-space: nowrap;
}

.trust-strip__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px 48px;
}

.trust-strip__logos img {
    max-height: 42px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.trust-strip__logos img:hover {
    opacity: 1;
}

/* Solution section heading: sized so "Built By A Salesperson" holds one line */
.solution__heading {
    font-size: clamp(2.1rem, 3.3vw, 3.2rem);
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .solution__heading {
        white-space: normal;
        font-size: clamp(2rem, 8vw, 2.4rem);
    }
}

/* Solution section image (4:3 photo of Cody on the floor) */
.solution__img {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0d0d0d;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
}

.solution__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Problem section bridge line */
.problem__bridge {
    margin: 38px auto 0;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
}

/* Mid-page CTA band */
.cta-band {
    padding: 72px 0;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 90% at 50% 50%, rgba(246, 143, 0, 0.09) 0, transparent 70%),
        var(--bg-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cta-band__heading {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 14px;
}

.cta-band__heading .accent {
    color: var(--accent);
}

.cta-band__sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 28px;
}

.cta-band__phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin: 20px 0 0;
}

.cta-band__phone a {
    color: var(--accent);
}

.cta-band__phone a:hover {
    color: var(--accent-bright);
}

/* Comparison: winning column */
.feature--win {
    position: relative;
    border-color: rgba(246, 143, 0, 0.45);
    background:
        linear-gradient(180deg, rgba(246, 143, 0, 0.09), rgba(246, 143, 0, 0.02)),
        var(--bg-card);
}

.compare__chip {
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--accent);
    color: var(--bg-base);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 10px;
}


/*Custom Responsive*/
@media(max-width:1400px){
    .hero__card {
    right: 0;
    width: 270px;
}
    .feature{
        padding: 30px
    }
}

@media(max-width:991px){
    section.stack.text-plain{
        padding: 50px 0
    }
     .road__title {
    font-size: 16px;
    line-height: normal;
}
    .who__col {
    padding: 35px;
}
      .who__vs {
    width: 50px;
    height: 50px;
    font-size: 20px;
}
}
@media(max-width:767px){
    .platform__sub{
        margin-bottom: 0
    }
    .platform__sub {
    font-size: 14px;
}
    .bio__text p:last-child {
    margin-bottom: 0;
}
    .hero__available{
        display: block
    }
    .hero__avail-rest{
        display: block;
        margin-top: 10px;
        letter-spacing: 0
    }
    .hero__sub {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    letter-spacing: 0;
}
    .trust-strip__logos img {
    max-height: 30px;
}
   
    .who__col {
    padding: 30px;
}
  
    .incl__body{
        padding: 30px
    }
    .incl__foot{
        padding: 30px;
    text-align: center;
        justify-content: center
    }
    .incl__chip{
        display: block;
        margin: 0 auto
    }
}
@media(max-width:575px){
    
    section.stack.text-plain{
        padding-bottom: 0
    }
    .road{
           grid-template-columns: repeat(2, 1fr);
        padding-top: 20px;
        text-align: center
    }
    .road__marker {
    position: inherit;
    top: auto;
  margin: 0 auto 15px
}
    .road__title {
    font-size: 18px;
    line-height: normal;
}
    .road::before{
        display: none
    }
    .who__split{
        display: block
    }
    .who__col {
    padding: 30px;
}
    .incl__body{
        display: block;
    }
    
    
}
/* ===== Submission feedback (ported from sl-demo) ===== */
.form__feedback {
    display: none;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    animation: formFeedbackIn 0.35s ease both;
}
.form__feedback.is-visible { display: block; }
.form__feedback--success {
    background: rgba(40, 170, 90, 0.12);
    border: 1px solid rgba(40, 170, 90, 0.45);
}
.form__feedback--error {
    background: rgba(210, 32, 48, 0.12);
    border: 1px solid rgba(210, 32, 48, 0.45);
}
.form__feedback-title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 4px;
    color: var(--text-primary);
}
.form__feedback--success .form__feedback-title { color: #6ee29a; }
.form__feedback--error .form__feedback-title { color: #ff8a93; }
.form__feedback-body {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13.5px;
}
@keyframes formFeedbackIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   COUNTDOWN TIMER SECTION
   ============================================================ */
.countdown-area {
    padding: 64px 0 72px;
    background:
        radial-gradient(120% 140% at 50% 0%, rgba(246, 143, 0, 0.10) 0%, rgba(246, 143, 0, 0) 55%),
        var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.countdown {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.countdown__eyebrow {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(22px, 4vw, 34px);
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 26px;
}
.countdown__clock {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(10px, 2.5vw, 22px);
    margin: 0 auto 26px;
}
.countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: clamp(78px, 17vw, 132px);
}
.countdown__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 8px 10px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(44px, 11vw, 88px);
    line-height: 1;
    color: var(--accent);
    background: var(--bg-card);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.04), 0 10px 30px rgba(0, 0, 0, 0.45);
    font-variant-numeric: tabular-nums;
    transition: transform 0.18s ease;
}
.countdown__num.is-tick { transform: translateY(-3px); }
.countdown__label {
    font-size: clamp(10px, 1.6vw, 12px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.countdown__sep {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 9vw, 72px);
    line-height: 1;
    color: var(--text-tertiary);
    padding-top: clamp(10px, 3vw, 26px);
    align-self: flex-start;
}
.countdown__offer {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 3.4vw, 30px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 30px;
}
.countdown__offer .accent { color: var(--accent); }
.countdown.is-expired .countdown__num { color: var(--text-tertiary); }

@media (max-width: 420px) {
    .countdown__clock { gap: 6px; }
    .countdown__unit { min-width: 0; flex: 1; }
    .countdown__sep { padding-top: 14px; }
}

@media(max-width:767px){
    .hero__trust {
    font-size: 16px;
}
}
.max_img_group {
    min-width: 825px;
    float: right;
}
@media(max-width:1200px){
    .max_img_group{
        min-width: 100%
    }
}
/* === Gravity Forms inside the lead-cta-form .form card === */
.form .gform_wrapper,
.form .gform_wrapper form {
    margin: 0;
}
.form .gform_wrapper .gform_required_legend {
    display: none;
}
.form .gform_wrapper .gform_fields {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
}
.form .gform_wrapper .gfield_label {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.form .gform_wrapper .ginput_container input,
.form .gform_wrapper .ginput_container textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-base);
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
}
.form .gform_wrapper .ginput_container input::placeholder,
.form .gform_wrapper .ginput_container textarea::placeholder {
    color: var(--text-tertiary);
    font-weight: 400;
}
.form .gform_wrapper .ginput_container input:focus,
.form .gform_wrapper .ginput_container textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #0d0d0d;
    box-shadow: none;
}
.form .gform_wrapper .ginput_container textarea {
    min-height: 88px;
    resize: vertical;
}
.form .gform_wrapper .gform_footer {
    margin: 18px 0 0;
    padding: 0;
}
.form .gform_wrapper .gform_footer .gform_button,
.form .gform_wrapper .gform_footer input[type="submit"],
.form .gform_wrapper button.gform_button {
    width: 100%;
    padding: 16px 24px;
    background: var(--accent) !important;
    background-image: none !important;
    color: var(--bg-base) !important;
    border: none !important;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.form .gform_wrapper .gform_footer .gform_button:hover,
.form .gform_wrapper .gform_footer input[type="submit"]:hover,
.form .gform_wrapper button.gform_button:hover {
    background: var(--accent-bright) !important;
    color: var(--bg-base) !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(246, 143, 0, 0.32);
}
.form .gform_wrapper .gfield_validation_message,
.form .gform_wrapper .validation_message {
    background: transparent;
    border: none;
    color: #ff8a93;
    padding: 6px 0 0;
    font-size: 12.5px;
}
.form .gform_wrapper .gform_validation_errors {
    background: rgba(255, 138, 147, 0.08);
    border: 1px solid rgba(255, 138, 147, 0.3);
    border-radius: 6px;
    box-shadow: none;
}
.form .gform_confirmation_message {
    color: var(--text-primary);
    font-size: 15px;
}
.gform_validation_errors{
    display: none !important;
}
/* === Conversion popup (scaffold — only renders when enabled in inc/conversion.php) === */
.slc-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}
.slc-popup.is-open {
    display: block;
}
.slc-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(2px);
}
.slc-popup__box {
    position: relative;
    max-width: 560px;
    margin: 8vh auto 0;
    background: var(--bg-card, #111);
    border: 1px solid var(--line, #222);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.slc-popup__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary, #bbb);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.slc-popup__heading {
    margin: 0 0 12px;
}
body.slc-popup-open {
    overflow: hidden;
}
