/* ===== Drawback — Tariff Refund Recovery ===== */

:root {
    --black: #111111;
    --gray-900: #1a1a1a;
    --gray-800: #2a2a2a;
    --gray-600: #555555;
    --gray-400: #8a8a8a;
    --gray-300: #b0b0b0;
    --gray-200: #d4d4d4;
    --gray-100: #ececec;
    --gray-50: #f7f7f7;
    --white: #ffffff;
    --rule: #d4d4d4;
    --rule-light: #e8e8e8;

    --red: #b91c1c;
    --red-dark: #7f1d1d;
    --red-bg: #fef2f2;
    --green: #166534;
    --green-bg: #f0fdf4;

    --serif: 'EB Garamond', 'Georgia', 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --radius: 3px;
    --max-width: 1060px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--gray-600);
}

a:hover {
    color: var(--black);
}

/* ===== Breaking Ticker ===== */
.ticker {
    background: var(--red-dark);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-tag {
    background: var(--white);
    color: var(--red-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 2px 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.ticker-content {
    flex-shrink: 0;
    opacity: 0.95;
}

.ticker-sep {
    opacity: 0.4;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Site Header (Brand Logo + Nav) ===== */
.site-header {
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--red);
    color: var(--white);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    border-radius: 4px;
    line-height: 1;
}

.logo-text {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.02em;
}

/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.15s;
}

.header-nav a:hover {
    color: var(--black);
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: var(--radius);
    font-weight: 600 !important;
    transition: background 0.15s !important;
}

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

/* ===== Hero ===== */
.hero {
    padding: 48px 0 56px;
    border-bottom: 1px solid var(--rule);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.hero-dateline {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 20px;
}

.hero-accent {
    color: var(--red);
}

.hero-lede {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.65;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.hero-lede em {
    font-style: italic;
}

/* Hero inline stats */
.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
}

.hero-stat-value {
    display: block;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 2px;
}

.hero-stat-label {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    letter-spacing: 0.02em;
}

/* ===== Lead Qualification Form Card ===== */
.form-card {
    background: var(--gray-50);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.form-card-heading {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 6px;
}

.form-card-sub {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.55;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    font-family: var(--sans);
    font-size: 14px;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--black);
    outline: none;
    transition: border-color 0.2s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8a8a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gray-400);
}

.form-group input::placeholder {
    color: var(--gray-300);
}

.form-submit {
    width: 100%;
    padding: 12px 20px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.form-submit:hover {
    background: var(--red-dark);
}

.form-fine {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 10px;
    text-align: center;
}

/* ===== Form Success State ===== */
.form-success {
    text-align: center;
    padding: 32px 16px;
}

.form-success svg {
    color: var(--green);
    margin-bottom: 12px;
}

.form-success h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== Editorial ===== */
.editorial {
    padding: 64px 0;
    border-bottom: 1px solid var(--rule);
}

.editorial-block h2 {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.prose {
    max-width: 720px;
}

.prose p {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.prose p:last-child {
    margin-bottom: 0;
}

blockquote {
    border-left: 3px solid var(--red);
    padding: 20px 24px;
    margin: 28px 0;
    background: var(--red-bg);
    max-width: 720px;
}

blockquote p {
    font-size: 18px !important;
    font-style: italic;
    color: var(--black) !important;
    margin-bottom: 6px !important;
}

blockquote cite {
    font-family: var(--sans);
    font-size: 12px;
    font-style: normal;
    color: var(--gray-400);
    letter-spacing: 0.02em;
}

blockquote.dissent {
    border-left-color: var(--gray-300);
    background: var(--gray-50);
}

blockquote.dissent p {
    color: var(--gray-600) !important;
}

/* ===== Timeline ===== */
.timeline-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--rule);
}

.timeline-section>.container>h2 {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 44px;
    letter-spacing: -0.01em;
}

.timeline {
    position: relative;
    padding-left: 32px;
    max-width: 720px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--rule);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
    z-index: 1;
}

.timeline-pending .timeline-marker {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
}

.timeline-content time {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.timeline-content h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    max-width: 560px;
}

/* ===== Next Steps / Info Cards ===== */
.next-steps {
    padding: 64px 0;
    border-bottom: 1px solid var(--rule);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule-light);
    border: 1px solid var(--rule-light);
    margin-top: 28px;
}

.step-card {
    background: var(--white);
    padding: 28px 24px;
}

.step-icon {
    color: var(--gray-400);
    margin-bottom: 14px;
}

.step-card h3 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ===== Audience ===== */
.audience {
    padding: 64px 0;
    border-bottom: 1px solid var(--rule);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 28px;
}

.audience-icon {
    color: var(--gray-400);
    margin-bottom: 14px;
    display: block;
}

.audience-item h3 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 6px;
}

.audience-item p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== Bottom CTA ===== */
.bottom-cta {
    padding: 72px 0;
    background: var(--gray-900);
    color: var(--white);
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--serif);
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.25;
}

.cta-inner>p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    line-height: 1.65;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    background: var(--white);
    color: var(--black);
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s var(--ease);
}

.cta-button:hover {
    background: var(--gray-100);
    color: var(--black);
}

/* ===== Footer ===== */
.site-footer {
    padding: 28px 0;
    border-top: 1px solid var(--rule);
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: var(--gray-400);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-mark-sm {
    width: 24px;
    height: 24px;
    font-size: 14px;
}

.footer-logo-text {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    font-size: 12px;
    color: var(--gray-400);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--black);
}

.footer-disclaimer {
    flex: 1;
    text-align: right;
    font-size: 11px;
    color: var(--gray-300);
}

.footer-copy {
    font-size: 11px;
    color: var(--gray-300);
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--black);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header: hide nav links, show hamburger */
    .header-nav a:not(.nav-cta) {
        display: none;
    }

    .header-nav {
        gap: 0;
    }

    .nav-cta {
        font-size: 12px !important;
        padding: 7px 14px;
    }

    .hero {
        padding: 36px 0 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-value {
        font-size: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .editorial,
    .timeline-section,
    .next-steps,
    .audience {
        padding: 48px 0;
    }

    .bottom-cta {
        padding: 56px 0;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-disclaimer {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .logo-mark {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}