/* ========== DanCan / Off-Market — Reimagined Landing ========== */

:root {
    --navy: #0f2742;
    --navy-light: #1a3d6b;
    --navy-deep: #091a2e;
    --orange: #f07922;
    --orange-light: #ff8f3f;
    --orange-soft: #fde6d4;
    --white: #ffffff;
    --off-white: #fafaf7;
    --paper: #f4f1ea;
    --ink: #14233b;
    --muted: #5b6b7f;
    --faint: #9aa6b5;
    --border: #e8eaed;
    --border-dark: #d7dbe0;
    --accent: var(--orange);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.archivo { font-family: 'Archivo', sans-serif; }

a { color: inherit; }

/* ========== Top Nav ========== */
.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(1.2) blur(12px);
    -webkit-backdrop-filter: saturate(1.2) blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.brand {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 0;
}
.brand .dan { color: var(--navy); }
.brand .can { color: var(--accent); }
.brand .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    margin-left: 6px;
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}
.nav-links a {
    text-decoration: none;
    color: var(--muted);
    transition: color 0.2s;
    padding: 0.4rem 0;
    position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--accent);
    transition: right 0.25s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--navy);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.55rem 1rem;
    border: 1.5px solid var(--navy);
    border-radius: 999px;
    transition: all 0.2s;
}
.nav-phone:hover {
    background: var(--navy);
    color: var(--white);
}
.nav-phone svg { width: 14px; height: 14px; }

/* ========== Section shell ========== */
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.75rem;
}

.eyebrow {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.eyebrow::before {
    content: '';
    width: 22px; height: 2px;
    background: var(--accent);
}

/* ========== HERO — shared vars ========== */
.hero { position: relative; overflow: hidden; }

/* ========== HERO variation A: SPLIT ========== */
.hero-a {
    padding: 3.5rem 1.75rem 5rem;
    position: relative;
}
.hero-a .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-a .headline {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 7.5vw, 6.25rem);
    line-height: 0.92;
    letter-spacing: -0.025em;
    color: var(--navy);
    text-transform: uppercase;
    margin: 1rem 0 1rem;
}
.hero-a .headline .accent { color: var(--accent); }
/* ============ Once → Twice swap ============ */
.headline .swap {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
}
/* Invisible sizer holds the slot open to "Twice" width */
.headline .swap::before {
    content: 'Twice';
    display: inline-block;
    visibility: hidden;
    white-space: nowrap;
}
.headline .swap-once,
.headline .swap-twice {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    white-space: nowrap;
}
.headline .swap-once {
    animation: swapOnceOut 0.55s 1.2s cubic-bezier(.6,.0,.3,1) forwards;
}
.headline .swap-once::after {
    content: '';
    position: absolute;
    left: -6%;
    right: -6%;
    top: 52%;
    height: 0.09em;
    background: var(--accent);
    transform: rotate(-4deg) scaleX(0);
    transform-origin: left center;
    animation: strikeIn 0.6s 0.5s cubic-bezier(.25,.9,.3,1.05) forwards;
}
.headline .swap-twice {
    color: var(--navy);
    opacity: 0;
    transform: translateY(0.5em);
    animation: swapTwiceIn 0.55s 1.5s cubic-bezier(.25,.9,.3,1.05) forwards;
}
@keyframes strikeIn {
    to { transform: rotate(-4deg) scaleX(1); }
}
@keyframes swapOnceOut {
    to {
        opacity: 0;
        transform: translateY(-0.4em);
        filter: blur(2px);
    }
}
@keyframes swapTwiceIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-a .byline {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}
.hero-a .byline .n-dan { color: var(--navy); font-weight: 900; }
.hero-a .byline .n-can { color: var(--accent); font-weight: 900; }

.hook {
    position: relative;
    min-height: 4.8rem;
    max-width: 560px;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent);
    padding-left: 1.1rem;
}
.hook-line {
    position: absolute;
    top: 50%;
    left: 1.1rem;
    right: 0;
    transform: translateY(calc(-50% + 10px));
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: var(--navy);
    line-height: 1.35;
    letter-spacing: -0.005em;
    opacity: 0;
    transition: opacity 0.55s ease, transform 0.55s ease;
    margin: 0;
}
.hook-line.active {
    opacity: 1;
    transform: translateY(-50%);
}
.hook-line .accent { color: var(--accent); }

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: stretch;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.05rem 1.6rem;
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--white);
    background: var(--accent);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(240, 121, 34, 0.28);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(240, 121, 34, 0.35);
}
.btn-primary .arr { transition: transform 0.2s; }
.btn-primary:hover .arr { transform: translateX(4px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.05rem 1.4rem;
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    background: transparent;
    border: 1.5px solid var(--navy);
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

/* Portrait: offset card treatment */
.portrait-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.portrait-block {
    position: relative;
    width: clamp(280px, 36vw, 440px);
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px -20px rgba(15, 39, 66, 0.35);
    background: var(--paper);
}
.portrait-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}
.portrait-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,39,66,0) 55%, rgba(15,39,66,0.55) 100%);
}
.portrait-badges {
    position: absolute;
    left: -18px;
    bottom: 14%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}
.portrait-badge {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    box-shadow: 0 14px 32px -12px rgba(15, 39, 66, 0.25);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--navy);
}
.portrait-badge .num {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 900;
}
.portrait-caption {
    position: absolute;
    right: 12px;
    top: 12px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    z-index: 2;
}

/* dot-grid accent */
.dot-grid {
    position: absolute;
    z-index: -1;
    opacity: 0.4;
}
.dot-grid.tl { top: -20px; left: -20px; }
.dot-grid.br { bottom: -20px; right: -20px; }
.dot-grid circle { fill: var(--navy); }

/* ========== HERO variation B: EDITORIAL COVER ========== */
.hero-b {
    padding: 2.5rem 1.75rem 5rem;
    position: relative;
}
.hero-b .mega {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 14vw, 12.5rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--navy);
    text-transform: uppercase;
    position: relative;
}
.hero-b .mega .accent { color: var(--accent); }
.hero-b .mega .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--navy);
    text-stroke: 2px var(--navy);
}
.hero-b .mega-row {
    display: flex;
    align-items: baseline;
    gap: 0.4em;
    flex-wrap: wrap;
}
.hero-b .portrait-float {
    position: absolute;
    top: 1.5rem;
    right: 0;
    width: clamp(160px, 18vw, 240px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--accent);
    box-shadow: 0 20px 50px rgba(15, 39, 66, 0.2);
}
.hero-b .portrait-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}
.hero-b .sub-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    align-items: end;
}
.hero-b .sub-copy {
    max-width: 520px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: var(--navy);
    line-height: 1.4;
}
.hero-b .sub-copy .accent { color: var(--accent); }

.hero-b .stats-ribbon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-cell {
    padding: 1.5rem 1.25rem;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .n {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 3vw, 2.8rem);
    letter-spacing: -0.02em;
    color: var(--navy);
    line-height: 1;
}
.stat-cell .n .unit {
    color: var(--accent);
    font-size: 0.55em;
    font-weight: 800;
    margin-left: 2px;
}
.stat-cell .lbl {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ========== HERO variation C: STACKED DATA ========== */
.hero-c {
    padding: 3rem 0 4rem;
    text-align: center;
    background:
        radial-gradient(circle at 20% 10%, rgba(240, 121, 34, 0.08), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(15, 39, 66, 0.06), transparent 45%),
        var(--off-white);
}
.hero-c .eyebrow { justify-content: center; }
.hero-c .eyebrow::before { display: none; }
.hero-c .eyebrow::after {
    content: '';
    width: 22px; height: 2px;
    background: var(--accent);
    margin-left: 0.6rem;
}
.hero-c .portrait-lg {
    width: clamp(140px, 14vw, 180px);
    height: clamp(140px, 14vw, 180px);
    border-radius: 50%;
    overflow: hidden;
    margin: 1.5rem auto 1rem;
    border: 4px solid var(--white);
    box-shadow: 0 18px 40px rgba(15, 39, 66, 0.2);
    position: relative;
    z-index: 1;
}
.hero-c .portrait-lg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
}
.hero-c .headline {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 7vw, 5.75rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--navy);
    text-transform: uppercase;
    margin: 0 auto 1.25rem;
    max-width: 14ch;
}
.hero-c .headline .accent { color: var(--accent); }
.hero-c .sub {
    max-width: 580px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 500;
}
.hero-c .sub strong { color: var(--navy); font-weight: 700; }

.hero-c .data-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 880px;
    margin: 3rem auto 0;
    text-align: left;
}
.data-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.4rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.data-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(15, 39, 66, 0.25);
}
.data-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--accent);
}
.data-card .n {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    color: var(--navy);
    line-height: 1;
}
.data-card .lbl {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
}
.data-card .desc {
    font-size: 0.88rem;
    color: var(--ink);
    margin-top: 0.6rem;
    line-height: 1.5;
}
.hero-c .cta-row { justify-content: center; margin-top: 2rem; }

/* ========== QUALIFIER — the interactive calculator ========== */
.qualifier {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.qualifier::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(240, 121, 34, 0.18), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(240, 121, 34, 0.08), transparent 40%);
    pointer-events: none;
}
.qualifier-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.75rem;
    position: relative;
    z-index: 1;
}
.qualifier .eyebrow { color: #f8caa8; }
.qualifier .eyebrow::before { background: var(--accent); }

.qualifier h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0.75rem 0 0.75rem;
    max-width: 18ch;
}
.qualifier h2 .accent { color: var(--accent); }
.qualifier-lead {
    max-width: 520px;
    color: #c8d3e0;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.q-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.q-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.q-field {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.q-field .q-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a4b4c8;
}
.q-field .q-value {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.01em;
}
.q-field .q-value .accent { color: var(--accent); }

.q-slider-wrap {
    position: relative;
    padding: 0 0.5rem;
}
.q-slider-wrap .ticks {
    display: flex;
    justify-content: space-between;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    color: #6a7d94;
    letter-spacing: 0.04em;
    padding: 0 0.2rem;
    margin-top: 0.5rem;
}
.q-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.q-slider-bg {
    position: relative;
    height: 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    margin-top: -14px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.q-slider-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--orange-light));
    border-radius: 999px;
    width: 50%;
    transition: width 0.15s ease;
}
.q-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: grab;
    transition: transform 0.15s;
}
.q-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
.q-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: grab;
}
.q-slider::-webkit-slider-runnable-track { background: transparent; }

.q-input-text {
    width: 100%;
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Archivo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: border-color 0.2s, background 0.2s;
}
.q-input-text::placeholder { color: #6a7d94; }
.q-input-text:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
}

/* Q result card */
.q-result {
    background: var(--white);
    color: var(--ink);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
    position: sticky;
    top: 100px;
}
.q-result .q-verdict {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--border);
}
.q-verdict-dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--muted);
    transition: background 0.25s;
    flex-shrink: 0;
}
.q-verdict-dot.ok { background: #2f9e5f; box-shadow: 0 0 0 5px rgba(47,158,95,0.18); }
.q-verdict-dot.warn { background: #e7a029; box-shadow: 0 0 0 5px rgba(231,160,41,0.18); }
.q-verdict-dot.bad { background: #c14141; box-shadow: 0 0 0 5px rgba(193,65,65,0.15); }
.q-verdict .q-verdict-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--navy);
}
.q-verdict-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-left: auto;
}

.q-lines {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}
.q-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Archivo', sans-serif;
}
.q-line .k {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.q-line .v {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.q-line.total {
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}
.q-line.total .k { color: var(--navy); font-weight: 800; }
.q-line.total .v {
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 900;
}

.q-bar {
    position: relative;
    height: 36px;
    margin: 1.25rem 0 1.5rem;
    padding: 0 6px;
    background: linear-gradient(90deg, #c14141 0%, #e7a029 40%, #2f9e5f 55%, #2f9e5f 75%, #e7a029 85%, #c14141 100%);
    border-radius: 10px;
    overflow: visible;
}
.q-bar-marker {
    position: absolute;
    top: -4px;
    bottom: -4px;
    width: 4px;
    background: var(--navy);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: left 0.2s ease;
    box-shadow: 0 0 0 3px var(--white);
}
.q-bar-marker::after {
    content: attr(data-label);
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--navy);
    white-space: nowrap;
}
.q-bar-zones {
    position: absolute;
    inset: 0;
    display: flex;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}
.q-bar-zones span {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.q-bar-zones .mid {
    flex: 0 0 28%;
    border-left: 1px dashed rgba(255,255,255,0.5);
    border-right: 1px dashed rgba(255,255,255,0.5);
}

.q-cta {
    width: 100%;
    justify-content: center;
}
.q-reset {
    background: transparent;
    border: none;
    color: var(--muted);
    font-family: 'Archivo', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.9rem;
    display: block;
    margin-left: auto;
}
.q-reset:hover { color: var(--accent); }

/* ========== HOW IT WORKS ========== */
.how {
    padding: 5.5rem 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.how h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--navy);
    margin: 0.75rem 0 0.75rem;
    max-width: 18ch;
}
.how h2 .accent { color: var(--accent); }
.how-lead {
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.6rem 1.4rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(15, 39, 66, 0.2);
}
.step .step-num {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
}
.step.active .step-num { background: var(--accent); }
.step .step-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.step .step-body {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}
.step .step-time {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: auto;
}

/* ========== PROOF / Two Checks ========== */
.proof {
    padding: 5.5rem 0;
    background: var(--white);
}
.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.checks-stage {
    position: relative;
    aspect-ratio: 5 / 4;
    background:
        linear-gradient(135deg, rgba(15, 39, 66, 0.03), rgba(240, 121, 34, 0.05)),
        var(--paper);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.check {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 25px 50px -15px rgba(15, 39, 66, 0.3);
    padding: 1.1rem 1.2rem;
    width: 62%;
    transition: transform 0.6s cubic-bezier(.25,.9,.3,1.1), opacity 0.5s;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.check .check-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Archivo', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}
.check .check-no { color: var(--accent); }
.check .check-line {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ink);
    border-bottom: 1px dotted var(--border-dark);
    padding-bottom: 0.3rem;
}
.check .check-amt {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--navy);
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 0.2rem;
}
.check .check-amt .currency {
    color: var(--accent);
    font-size: 1rem;
}
.check .check-tag {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.check-1 {
    top: 10%;
    left: 6%;
    transform: rotate(-4deg);
    z-index: 2;
}
.check-2 {
    bottom: 10%;
    right: 6%;
    transform: rotate(3deg);
    z-index: 1;
}

.check-total {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translate(-50%, 18px);
    background: var(--navy);
    color: var(--white);
    padding: 0.95rem 1.6rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(15, 39, 66, 0.55);
    display: flex;
    align-items: center;
    gap: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.55s cubic-bezier(.25,.9,.3,1.1);
    z-index: 4;
    border: 2px solid var(--accent);
    white-space: nowrap;
}
.check-total .ct-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c8d3e0;
}
.check-total .ct-amt {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
    color: var(--accent);
    display: flex;
    align-items: baseline;
    gap: 0.18rem;
    line-height: 1;
}
.check-total .ct-amt .currency {
    font-size: 1rem;
    color: var(--white);
}
.checks-stage:hover .check-total,
.checks-stage.revealed .check-total {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}
.checks-stage:hover .check-1 { transform: rotate(-2deg) translate(60px, 18px); }
.checks-stage:hover .check-2 { transform: rotate(1deg) translate(-60px, -18px); }

.proof-stamp {
    position: absolute;
    right: 16px;
    top: 16px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    transform: rotate(-3deg);
    box-shadow: 0 6px 18px rgba(240, 121, 34, 0.3);
}

.proof-text h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0.75rem 0 1.5rem;
    max-width: 14ch;
}
.proof-text h2 .accent { color: var(--accent); }
.proof-text p {
    color: var(--ink);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    max-width: 520px;
}
.proof-text strong { color: var(--navy); font-weight: 700; }

/* ========== FORM section ========== */
.refer {
    padding: 5.5rem 0;
    background: var(--paper);
    position: relative;
}
.refer-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.75rem;
    text-align: center;
}
.refer h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--navy);
    margin: 0.75rem 0 0.75rem;
}
.refer h2 .accent { color: var(--accent); }
.refer-lead {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.refer-form {
    text-align: left;
    background: var(--white);
    padding: 2.25rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px -20px rgba(15, 39, 66, 0.15);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-field {
    display: block;
    margin-bottom: 1rem;
    position: relative;
}
.form-field > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.form-field .req {
    color: var(--accent);
    font-size: 1rem;
    line-height: 0;
}
.form-field input,
.form-field textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--ink);
    transition: border-color 0.2s, background 0.2s;
}
.form-field textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}
.form-field.invalid input,
.form-field.invalid textarea {
    border-color: #c14141;
    background: #fdf2f2;
}
.form-field .err-msg {
    display: none;
    color: #c14141;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    font-weight: 500;
}
.form-field.invalid .err-msg { display: block; }
.form-hint {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.char-count {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--muted);
}
.char-count.ok { color: #2f9e5f; }

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}
.submit-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

.success-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px -20px rgba(15, 39, 66, 0.15);
    text-align: center;
}
.success-card .check-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: popIn 0.5s cubic-bezier(.5,1.5,.5,1);
}
@keyframes popIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}
.success-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.success-card p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 360px;
    margin: 0 auto;
}
.success-timeline {
    margin-top: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.success-timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.success-timeline-item .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 6px;
    flex-shrink: 0;
}
.success-timeline-item.pending .dot {
    background: var(--border-dark);
}
.success-timeline-item .t-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}
.success-timeline-item .t-sub {
    color: var(--muted);
    font-size: 0.82rem;
}

/* ========== Stripe ========== */
.stripe {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}
.stripe-tag {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 0.01em;
    margin-bottom: 0.6rem;
}
.stripe-tag .dot { color: var(--accent); }
.stripe-sub {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ========== Footer ========== */
footer {
    background: var(--white);
    color: var(--muted);
    padding: 2.25rem 1.75rem;
    text-align: center;
    border-top: 1px solid var(--border);
    font-size: 0.88rem;
}
footer a {
    color: var(--navy);
    text-decoration: none;
    margin: 0 0.6rem;
    font-weight: 500;
}
footer a:hover { color: var(--accent); }

/* ========== Tweaks panel ========== */
.tweaks-panel {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 20px 50px -10px rgba(15, 39, 66, 0.25);
    padding: 1rem 1.1rem;
    width: 260px;
    font-family: 'Archivo', sans-serif;
    display: none;
}
.tweaks-panel.on { display: block; }
.tweaks-panel h4 {
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tweaks-panel h4::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
}
.tweak-group { margin-bottom: 1rem; }
.tweak-group:last-child { margin-bottom: 0; }
.tweak-label {
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.45rem;
}
.tweak-seg {
    display: flex;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}
.tweak-seg button {
    flex: 1;
    padding: 0.4rem 0.5rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.15s;
}
.tweak-seg button:hover { color: var(--navy); }
.tweak-seg button.on {
    background: var(--navy);
    color: var(--white);
}
.tweak-swatches {
    display: flex;
    gap: 0.5rem;
}
.tweak-swatch {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    position: relative;
    transition: transform 0.15s;
}
.tweak-swatch:hover { transform: scale(1.08); }
.tweak-swatch.on {
    border-color: var(--navy);
    box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--navy);
}

/* Hero variation toggles */
.hero[data-variant="a"] .hero-a { display: block; }
.hero[data-variant="a"] .hero-b,
.hero[data-variant="a"] .hero-c { display: none; }
.hero[data-variant="b"] .hero-b { display: block; }
.hero[data-variant="b"] .hero-a,
.hero[data-variant="b"] .hero-c { display: none; }
.hero[data-variant="c"] .hero-c { display: block; }
.hero[data-variant="c"] .hero-a,
.hero[data-variant="c"] .hero-b { display: none; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
    opacity: 1;
    transform: none;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
    .nav-links { display: none; }
    .hero-a .hero-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
    .hero-a .hero-text { order: 1; }
    .hero-a .portrait-wrap { order: 2; }
    .hero-b .portrait-float { position: relative; margin: 0 auto 1rem; top: 0; right: 0; }
    .hero-b .mega-row { justify-content: flex-start; }
    .hero-b .sub-row { grid-template-columns: 1fr; align-items: start; }
    .hero-b .stats-ribbon { grid-template-columns: 1fr; }
    .stat-cell { border-right: 0; border-bottom: 1px solid var(--border); }
    .stat-cell:last-child { border-bottom: 0; }
    .q-grid { grid-template-columns: 1fr; gap: 2rem; }
    .q-result { position: static; }
    .how .steps { grid-template-columns: 1fr 1fr; }
    .how .steps::before { display: none; }
    .proof-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* ---- Checks section: stack vertically, no tilt/overlap on mobile ---- */
    .checks-stage {
        aspect-ratio: auto;
        padding: 2.5rem 1rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        overflow: visible;
    }
    .checks-stage .check {
        position: relative;
        width: 100%;
        top: auto; left: auto; right: auto; bottom: auto;
        transform: none !important;
    }
    .checks-stage .check-1,
    .checks-stage .check-2 { transform: none !important; }
    /* Total pill sits in normal flow below both checks */
    .checks-stage .check-total {
        position: relative;
        left: auto; bottom: auto;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        margin: 0.5rem auto 0;
        justify-content: center;
    }
    .checks-stage:hover .check-1,
    .checks-stage:hover .check-2 { transform: none !important; }
    .proof-stamp { top: 10px; right: 10px; }
    .hero-c .data-row { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .refer-form { padding: 1.75rem 1.25rem; }
    .tweaks-panel { right: 12px; bottom: 12px; width: 240px; }
}

@media (max-width: 540px) {
    .how .steps { grid-template-columns: 1fr; }
    .hero-b .mega { font-size: clamp(3rem, 16vw, 5rem); }
}


/* ============================================================ */
/* CONNECT SECTION                                                */
/* ============================================================ */
.connect {
    padding: 7rem 0 6rem;
    background: var(--paper);
    border-top: 1px solid var(--border);
    position: relative;
}
.connect-head {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}
.connect-head h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--navy);
    margin: 0.6rem 0 1rem;
}
.connect-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}
.connect-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}
.connect-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.8rem 1.6rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-decoration: none;
    color: var(--navy);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.25,.9,.3,1.1), box-shadow 0.35s ease, border-color 0.35s ease;
    min-height: 240px;
}
.connect-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.connect-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -20px rgba(15, 39, 66, 0.3);
    border-color: var(--accent);
}
.connect-card:hover::before {
    opacity: 0.06;
}
.connect-card.featured {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    border-color: var(--navy-deep);
    grid-row: span 1;
}
.connect-card.featured .cc-label,
.connect-card.featured .cc-meta {
    color: #a8b8cc;
}
.connect-card.featured:hover {
    border-color: var(--accent);
}
.cc-tag {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--white);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
}
.cc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in oklch, var(--accent) 12%, var(--paper));
    color: var(--accent);
    border-radius: 14px;
    transition: transform 0.35s ease;
}
.cc-icon svg { width: 26px; height: 26px; }
.connect-card:hover .cc-icon {
    transform: scale(1.08) rotate(-3deg);
}
.connect-card.featured .cc-icon {
    background: rgba(240, 121, 34, 0.15);
    color: var(--accent);
    width: 60px;
    height: 60px;
    border-radius: 16px;
}
.connect-card.featured .cc-icon svg { width: 30px; height: 30px; }

.cc-body { display: flex; flex-direction: column; gap: 0.2rem; }
.cc-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.15rem;
}
.cc-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: inherit;
}
.connect-card.featured .cc-title {
    font-size: 1.6rem;
    color: var(--white);
}
.cc-meta {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.35;
    margin-top: 0.15rem;
}
.cc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    transition: gap 0.3s ease;
}
.cc-cta svg { width: 16px; height: 16px; }
.connect-card:hover .cc-cta { gap: 0.85rem; }
.connect-card.featured .cc-cta { color: var(--accent); }

@media (max-width: 960px) {
    .connect-grid { grid-template-columns: 1fr 1fr; }
    .connect-card.featured { grid-column: span 2; min-height: 200px; }
}
@media (max-width: 560px) {
    .connect-grid { grid-template-columns: 1fr; }
    .connect-card.featured { grid-column: span 1; }
    .connect { padding: 5rem 0 4rem; }
}
