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

:root {
    --yellow: #ffe01b;
    --yellow-light: #fffbe6;
    --yellow-mid: rgba(255, 224, 27, 0.15);
    --yellow-dark: #c9b000;
    --yellow-ink: #7a6600;
    --black: #0e0f11;
    --dark: #111318;
    --dark-2: #1a1d25;
    --surface: #ffffff;
    --page-bg: #f4f5f8;
    --section-alt: #f9fafb;
    --text-primary: #1a1a1a;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --border-strong: #d1d5db;
    --green: #10b981;
    --green-bg: #ecfdf5;
    --red: #ef4444;
    --red-bg: #fef2f2;
    --red-text: #dc2626;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
    --font: 'Geist', sans-serif;
    --max-w: 860px;
    --max-w-lg: 1040px;
}

a {
    text-decoration: none;
}

body {
    font-family: var(--font);
    background: var(--page-bg);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── WRAPPER ──────────────────────────────────────────── */
.page-wrap {
    max-width: var(--max-w-lg);
    margin: 0 auto;
    padding: 36px 20px 60px;
}

/* ─── CARD SHELL ───────────────────────────────────────── */
.card-shell {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
    background: var(--dark);
    padding: 52px 48px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* geometric dot grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* yellow glow orb */
.hero::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 220px;
    background: radial-gradient(ellipse, rgba(255, 224, 27, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-logo-mark {
    width: 42px;
    height: 42px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(255, 224, 27, 0.12);
}

.hero-logo-mark svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

.hero-logo-name {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.04em;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 224, 27, 0.12);
    border: 1px solid rgba(255, 224, 27, 0.25);
    color: var(--yellow);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-tag span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    display: inline-block;
}

.hero-headline {
    font-family: var(--font);
    font-size: clamp(26px, 4vw, 36px);
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.hero-headline em {
    font-style: normal;
    color: var(--yellow);
}

.hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-badge .dot.green {
    background: var(--green);
}

.hero-badge .dot.yellow {
    background: var(--yellow);
}

/* ─── SECTION BASE ─────────────────────────────────────── */
.section {
    padding: 52px 48px;
    border-top: 1px solid var(--border);
}

.section.alt {
    background: var(--section-alt);
}

@media (max-width: 640px) {
    .hero {
        padding: 36px 20px;
    }

    .section {
        padding: 36px 20px;
    }
}

/* ─── SECTION HEADER ───────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--yellow-ink);
    background: var(--yellow-light);
    border: 1px solid rgba(201, 176, 0, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── INTRO BLURB ──────────────────────────────────────── */
.intro-blurb {
    max-width: 680px;
    margin: 0 auto;
}

.intro-blurb p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}

.intro-blurb p+p {
    margin-top: 14px;
}

/* ─── STEP CARDS ───────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

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

.step-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: relative;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    overflow: hidden;
}

.step-card:hover {
    border-color: var(--yellow-dark);
    box-shadow: 0 4px 16px rgba(255, 224, 27, 0.14);
    transform: translateY(-2px);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(255, 224, 27, 0.3);
}

.step-title {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.step-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.65;
}

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

.steps-footnote {
    text-align: center;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.steps-footnote svg {
    width: 14px;
    height: 14px;
    color: var(--green);
    flex-shrink: 0;
}

/* ─── TWO-COL CONTENT CARDS ────────────────────────────── */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

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

.content-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: box-shadow 0.15s;
}

.content-card:hover {
    box-shadow: var(--shadow-md);
}

.content-card-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 700;
}

.content-card-icon.green {
    background: var(--green-bg);
    color: var(--green);
}

.content-card-icon.red {
    background: var(--red-bg);
    color: var(--red);
}

.content-card-icon.yellow {
    background: var(--yellow-light);
    color: var(--yellow-ink);
}

.content-card-icon svg {
    width: 18px;
    height: 18px;
}

.content-card-title {
    font-family: var(--font);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.025em;
}

.content-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 10px;
}

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

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

.content-card p strong.red {
    color: var(--red-text);
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.check-list li .li-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.check-list li .li-icon svg {
    width: 10px;
    height: 10px;
}

.check-list.pos li .li-icon {
    background: var(--green-bg);
}

.check-list.pos li .li-icon svg {
    color: var(--green);
}

.check-list.neg li .li-icon {
    background: var(--red-bg);
}

.check-list.neg li .li-icon svg {
    color: var(--red);
}

/* ─── PROSE SECTION ────────────────────────────────────── */
.prose-section {
    max-width: 660px;
    margin: 0 auto;
}

.prose-section p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

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

/* ─── INFO ROW CARDS ───────────────────────────────────── */
.info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 0;
}

@media (max-width: 660px) {
    .info-row {
        grid-template-columns: 1fr;
    }
}

.info-tile {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 8px;
    text-align: center;
    transition: box-shadow 0.15s, transform 0.15s;
}

.info-tile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.info-tile-icon {
    width: 44px;
    height: 44px;
    background: var(--yellow-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 1px solid rgba(201, 176, 0, 0.2);
}

.info-tile-icon svg {
    width: 20px;
    height: 20px;
    color: var(--yellow-ink);
}

.info-tile-title {
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.info-tile-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── OPT-OUT SECTION ──────────────────────────────────── */
.opt-out-strip {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.opt-out-strip::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.06;
}

@media (max-width: 640px) {
    .opt-out-strip {
        grid-template-columns: 1fr;
    }

    .opt-out-actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
}

.opt-out-content {
    position: relative;
    z-index: 1;
}

.opt-out-title {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.04em;
}

.opt-out-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.opt-out-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.stop-pill,
.help-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.stop-pill {
    background: var(--red-bg);
    color: var(--red-text);
    border: 1px solid var(--red);
}

.help-pill {
    background: rgba(255, 224, 27, 0.1);
    color: var(--yellow);
    border: 1px solid rgba(255, 224, 27, 0.3);
}

.stop-pill svg,
.help-pill svg {
    width: 14px;
    height: 14px;
}

.reply-code {
    font-family: var(--font);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 5px;
}

/* ─── FOOTER ───────────────────────────────────────────── */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 36px 24px;
}

.footer-inner {
    max-width: var(--max-w-lg);
    margin: 0 auto;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-mark {
    width: 26px;
    height: 26px;
    background: var(--yellow);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-mark svg {
    width: 14px;
    height: 14px;
}

.footer-logo-name {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.75;
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--yellow);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.15s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 18px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-note {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.25);
}

/* ─── DIVIDER ──────────────────────────────────────────── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 48px;
}

.section-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

@media (max-width: 640px) {
    .section-divider {
        margin: 0 20px;
    }
}

/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp 0.5s ease both;
}

.step-card,
.content-card,
.info-tile {
    animation: fadeUp 0.4s ease both;
}

.step-card:nth-child(1),
.content-card:nth-child(1),
.info-tile:nth-child(1) {
    animation-delay: 0.05s;
}

.step-card:nth-child(2),
.content-card:nth-child(2),
.info-tile:nth-child(2) {
    animation-delay: 0.10s;
}

.step-card:nth-child(3),
.content-card:nth-child(3),
.info-tile:nth-child(3) {
    animation-delay: 0.15s;
}

.step-card:nth-child(4),
.info-tile:nth-child(4) {
    animation-delay: 0.20s;
}

/* ─── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.sk-content h1 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.sk-content>div {
    padding-bottom: 16px;
}

.sk-content>div p {
    margin-bottom: 8px;
}

.sk-content p,
.sk-content ul {
    color: var(--text-primary);
    font-size: .85rem;
}

.sk-content ul {
    padding: 8px 0 8px 24px;
}

/*Mobile only CSS*/
@media only screen and (max-width: 768px) {
    .page-wrap{
        padding:0;
    }
    .card-shell{
        border:none;
        border-radius:0;
    }
    .sk-content h1{
        font-size:1.15rem;
    }
    .sk-content p, .sk-content ul{
        font-size:.8rem;
    }
}