:root {
    --yellow: #ffc400;
    --yellow-2: #ffd33d;
    --ink: #0a0a0a;
    --black: #050505;
    --paper: #f7f7f4;
    --muted: #626262;
    --line: #d7d7d2;
    --line-dark: #2f2f2f;
    --shadow: 0 30px 80px rgba(0, 0, 0, .18);
    --condensed: 'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow', sans-serif;
    --sans: 'Oswald', Arial, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(.19, 1, .22, 1);
    --pad: clamp(24px, 5vw, 80px);
    --header-h: 78px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: var(--paper)
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--sans);
    background: var(--paper);
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

button, input, textarea {
    font: inherit
}

svg {
    display: block
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 2000;
    background: var(--yellow);
    color: #000;
    padding: 10px 14px;
    font-weight: 900;
    text-transform: uppercase;
    transform: translateY(-160%);
    transition: .25s var(--ease)
}

.skip-link:focus {
    transform: translateY(0)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 clamp(18px, 2.3vw, 34px);
    border-right: 1px solid var(--line);
    min-width: 0
}

.brand-mark {
    width: 46px;
    height: 46px;
    background: #0a0a0a;
    clip-path: polygon(0 0, 100% 0, 100% 25%, 43% 25%, 43% 41%, 88% 41%, 88% 63%, 43% 63%, 43% 100%, 0 100%);
    position: relative;
    flex: 0 0 auto
}

.brand-mark:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border-left: 15px solid transparent;
    border-top: 15px solid var(--yellow)
}

.brand-text {
    display: grid;
    gap: 1px;
    line-height: 1;
    text-transform: uppercase;
    color: #101010
}

.brand-text strong {
    font-size: 17px;
    letter-spacing: .02em
}

.brand-text span {
    font-size: 10px;
    letter-spacing: .16em;
    color: #777;
    font-weight: 700
}

.top-cta, .top-arrow {
    background: var(--yellow);
    display: grid;
    place-items: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .04em;
    transition: background .28s var(--ease), color .28s var(--ease)
}

.top-cta:hover, .top-arrow:hover {
    background: #050505;
    color: var(--yellow)
}

.top-cta span {
    transition: transform .28s var(--ease)
}

.top-cta:hover span {
    transform: translateX(-4px)
}

.label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    text-transform: uppercase;
    color: var(--yellow) !important;
    font-size: 11px;
    letter-spacing: .06em;
    font-weight: 700
}

.label:before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--yellow);
    display: inline-block
}

.section-title, .hero-faq-title {
    font-family: var(--condensed);
    font-weight: 400;
    line-height: .88;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0;
    text-wrap: balance
}

.button {
    --btn-bg: #090909;
    --btn-fg: #fff;
    display: inline-grid;
    grid-template-columns:52px auto;
    align-items: center;
    width: max-content;
    min-height: 54px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .045em;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .28s var(--ease)
}

.button i {
    font-style: normal;
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 54px;
    color: var(--yellow);
    transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease)
}

.button span {
    padding: 0 24px;
    white-space: nowrap
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    background: var(--yellow);
    color: #000
}

.button:hover i {
    background: #000;
    color: var(--yellow);
    transform: translateX(2px)
}

.button.yellow {
    --btn-bg: var(--yellow) !important;
    --btn-fg: #000 !important;
    box-shadow: none
}

.button.yellow i {
    color: #000 !important;
    border-right:1px solid #000 !important;
}

.button.yellow:hover {
    background: #fff;
    color: #000
}

.button.yellow:hover i {
    background: #000 !important;
    color: var(--yellow) !important;
}

.page-hero-faq {
    position: relative;
    min-height: clamp(500px, 54vw, 720px);
    display: grid;
    grid-template-columns:64px minmax(390px, .9fr) minmax(520px, 1.1fr);
    background: #050505;
    color: #fff;
    border-bottom: 1px solid #191919;
    overflow: hidden;
    isolation: isolate
}

.page-hero-faq:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 12%, rgba(255, 196, 0, .2), transparent 28%), radial-gradient(circle at 80% 16%, rgba(255, 255, 255, .08), transparent 32%), linear-gradient(180deg, #101011 0%, #050505 100%);
    z-index: -2
}

.page-hero-faq:after, .grid-bg:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 126px 126px;
    opacity: .35;
    z-index: -1;
    pointer-events: none
}

.hero-faq-rail {
    border-right: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: space-around;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 28px 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .22em;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .02)
}

.hero-faq-rail .dash {
    width: 2px;
    height: 36px;
    background: var(--yellow);
    display: block;
    margin: 18px 0
}

.hero-faq-copy {
    position: relative;
    z-index: 3;
    padding: clamp(50px, 6vw, 86px) 0 clamp(42px, 5vw, 70px) clamp(30px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, .96) 74%, rgba(7, 7, 7, 0) 100%)
}

.hero-faq-title {
    font-size: clamp(70px, 8vw, 132px);
    max-width: 760px
}

.hero-faq-title span {
    display: block
}

.hero-faq-copy p:not(.label) {
    max-width: 590px;
    color: rgba(255, 255, 255, .78);
    font-weight: 300;
    line-height: 1.5;
    font-size: clamp(16px, 1.25vw, 20px);
    margin: 24px 0 0
}

.hero-faq-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px
}

.hero-faq-visual {
    position: relative;
    display: grid;
    place-items: center;
    padding: clamp(28px, 4vw, 64px);
    overflow: hidden
}

.hero-faq-visual:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(7, 7, 7, .42), rgba(7, 7, 7, .08) 48%, rgba(7, 7, 7, .52)), linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .68));
    pointer-events: none
}

.stat-panel {
    position: relative;
    z-index: 2;
    width: min(680px, 92%);
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(5, 5, 5, .72);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
    overflow: hidden
}

.stat-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.stat-panel__top strong {
    font-family: var(--condensed);
    font-size: 48px;
    line-height: .9;
    text-transform: uppercase
}

.stat-panel__top span {
    color: var(--yellow);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700
}

.stat-list {
    display: grid
}

.stat-row {
    display: grid;
    grid-template-columns:70px 1fr;
    gap: 18px;
    padding: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.stat-row:first-child {
    border-top: 0
}

.stat-row b {
    font-family: var(--condensed);
    font-size: 42px;
    line-height: .8;
    color: var(--yellow);
    font-weight: 400
}

.stat-row span {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .04em
}

.reference-panel {
    position: relative;
    z-index: 2;
    width: min(680px, 92%);
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(5, 5, 5, .72);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
    overflow: hidden
}

.reference-panel__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.reference-panel__top strong {
    font-family: var(--condensed);
    font-size: 48px;
    line-height: .9;
    text-transform: uppercase;
    font-weight: 400
}

.reference-panel__top span {
    color: var(--yellow);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700
}

.reference-list {
    display: grid
}

.reference-card {
    position: relative;
    display: grid;
    grid-template-columns:44px 1fr;
    gap: 16px;
    padding: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    transition: background .28s var(--ease), transform .28s var(--ease)
}

.reference-card:first-child {
    border-top: 0
}

.reference-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--ease)
}

.reference-card:hover {
    background: rgba(255, 196, 0, .1);
    transform: translateY(-2px)
}

.reference-card:hover:before {
    transform: scaleX(1)
}

.reference-card__icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 196, 0, .34);
    background: rgba(255, 196, 0, .1);
    display: grid;
    place-items: center;
    color: var(--yellow);
    font-size: 22px;
    font-weight: 700
}

.reference-card strong {
    display: block;
    margin: 0 0 8px;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: .055em;
    color: #fff
}

.reference-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 300
}

.reference-card a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 196, 0, .45)
}

.quick-strip {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns:minmax(240px, .68fr) minmax(620px, 1.72fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: stretch;
    padding: clamp(22px, 3vw, 36px) var(--pad);
    background: linear-gradient(135deg, #fbfbf8 0%, #fff 54%, #f4f4ef 100%);
    border-bottom: 1px solid var(--line);
    overflow: hidden
}

.quick-strip:before, .content-section:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .035) 1px, transparent 1px), linear-gradient(180deg, rgba(0, 0, 0, .025) 1px, transparent 1px);
    background-size: 126px 126px;
    opacity: .22;
    pointer-events: none
}

.quick-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0
}

.quick-heading h2 {
    margin: 0;
    font-family: var(--condensed);
    font-size: clamp(42px, 4.6vw, 74px);
    line-height: .88;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #0a0a0a
}

.quick-list {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 54px rgba(0, 0, 0, .07)
}

.quick-link {
    position: relative;
    display: grid;
    grid-template-columns:auto 1fr;
    grid-template-areas:"num title" "num desc";
    column-gap: 14px;
    row-gap: 4px;
    align-content: center;
    min-height: 116px;
    padding: 18px 20px;
    border-left: 1px solid var(--line);
    overflow: hidden;
    transition: background .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease)
}

.quick-link:first-child {
    border-left: 0
}

.quick-link:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--ease)
}

.quick-link:hover {
    background: #fffdf4;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
    z-index: 2
}

.quick-link:hover:before {
    transform: scaleX(1)
}

.quick-link__num {
    grid-area: num;
    font-family: var(--condensed);
    font-size: 34px;
    line-height: .86;
    color: var(--yellow);
    letter-spacing: .02em
}

.quick-link strong {
    grid-area: title;
    align-self: end;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.05;
    letter-spacing: .055em;
    font-weight: 700;
    color: #0a0a0a
}

.quick-link em {
    grid-area: desc;
    align-self: start;
    font-style: normal;
    color: #4b4b46;
    font-size: 13px;
    line-height: 1.32;
    font-weight: 300
}

.content-section {
    position: relative;
    isolation: isolate;
    padding: clamp(52px, 6vw, 86px) var(--pad);
    background: #f8f8f5;
    border-bottom: 1px solid var(--line)
}

.section-head {
    display: grid;
    grid-template-columns:minmax(260px, .82fr) minmax(560px, 1.38fr);
    gap: clamp(28px, 4.5vw, 72px);
    align-items: end;
    margin-bottom: clamp(32px, 5vw, 62px)
}

.section-head .section-title {
    font-size: clamp(58px, 7vw, 104px);
    max-width: 12ch
}

.section-head p {
    max-width: 720px;
    margin: 0;
    color: #333;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.55;
    font-weight: 300
}

.content-grid {
    display: grid;
    grid-template-columns:minmax(250px, .65fr) minmax(560px, 1.35fr);
    gap: clamp(24px, 4vw, 60px);
    align-items: start
}

.card-stack {
    display: grid;
    gap: 18px
}

.info-card {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 3vw, 38px)
}

.info-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--yellow);
    transform: scaleX(.18);
    transform-origin: left
}

.info-card h2, .info-card h3 {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .025em;
    line-height: .98
}

.info-card h2 {
    font-family: var(--condensed);
    font-weight: 400;
    font-size: clamp(38px, 4vw, 64px)
}

.info-card h3 {
    font-size: clamp(22px, 2vw, 32px)
}

.info-card p {
    margin: 0 0 16px;
    color: #333;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.55;
    font-weight: 300
}

.info-card p:last-child {
    margin-bottom: 0
}

.info-card ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px
}

.info-card li {
    position: relative;
    padding-left: 26px;
    color: #333;
    line-height: 1.5;
    font-weight: 300
}

.info-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 5px rgba(255, 196, 0, .15)
}

.info-card--dark {
    background: #080808;
    color: #fff;
    border-color: #1d1d1d
}

.info-card--dark p, .info-card--dark li {
    color: rgba(255, 255, 255, .76)
}

.info-card--yellow {
    background: linear-gradient(135deg, #fffdf4, #fff);
    border-left: 6px solid var(--yellow)
}

.faq-list {
    display: grid;
    gap: 14px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .07);
    overflow: hidden
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(18px, 1.6vw, 26px);
    letter-spacing: .025em
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary:after {
    content: "+";
    font-family: var(--condensed);
    font-size: 42px;
    line-height: .75;
    color: var(--yellow)
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--line);
    background: #fffdf4
}

.faq-item[open] summary:after {
    content: "−"
}

.faq-item__body {
    padding: 24px 28px
}

.faq-item__body p {
    margin: 0 0 16px;
    color: #333;
    line-height: 1.55;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 300
}

.faq-item__body p:last-child {
    margin-bottom: 0
}

.callout-band {
    display: grid;
    grid-template-columns:minmax(280px, .85fr) minmax(560px, 1.35fr);
    gap: clamp(28px, 4.5vw, 72px);
    align-items: center;
    padding: clamp(54px, 6vw, 86px) var(--pad);
    background: #080808;
    color: #fff;
    border-bottom: 1px solid #191919
}

.callout-band .section-title {
    font-size: clamp(58px, 7vw, 104px);
    max-width: 11ch
}

.callout-panel {
    background: linear-gradient(145deg, #171717, #070707);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
    padding: clamp(28px, 4vw, 48px)
}

.callout-panel p {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .78);
    font-weight: 300;
    margin: 0 0 20px
}

.contact-row {
    display: grid;
    gap: 10px;
    margin-top: 18px
}

.contact-row a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 196, 0, .45);
    padding-bottom: 7px
}

.contact-row a:before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 196, 0, .12)
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 1260px) {
    .page-hero-faq {
        grid-template-columns:56px minmax(360px, .92fr) minmax(420px, 1.08fr)
    }

    .section-head, .content-grid, .callout-band {
        grid-template-columns:1fr
    }

    .side-nav {
        position: static;
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .quick-strip {
        grid-template-columns:1fr;
        gap: 16px;
        padding: 30px clamp(24px, 5vw, 58px)
    }
}

@media (max-width: 1180px) {
    .top-cta, .top-arrow {
        display: none
    }
}

@media (max-width: 900px) {
    :root {
        --header-h: 68px
    }

    .brand {
        padding: 0 18px
    }

    .brand-mark {
        width: 38px;
        height: 38px
    }

    .brand-text strong {
        font-size: 15px
    }

    .brand-text span {
        font-size: 9px
    }

    .page-hero-faq {
        display: flex;
        flex-direction: column;
        min-height: 0
    }

    .hero-faq-rail {
        display: none
    }

    .hero-faq-copy {
        order: 1;
        padding: 36px 24px 30px;
        background: #070707
    }

    .hero-faq-title {
        font-size: clamp(58px, 18vw, 92px)
    }

    .hero-faq-copy p:not(.label) {
        font-size: 16px;
        margin-top: 18px
    }

    .hero-faq-visual {
        order: 2;
        min-height: 360px;
        padding: 24px
    }

    .quick-list {
        grid-template-columns:1fr
    }

    .quick-link {
        border-left: 0;
        border-top: 1px solid var(--line);
        min-height: 96px
    }

    .quick-link:first-child {
        border-top: 0
    }

    .content-section, .callout-band {
        padding: 38px 24px
    }

    .section-head .section-title, .callout-band .section-title {
        font-size: clamp(48px, 15vw, 76px)
    }

    .button {
        width: 100%;
        max-width: 330px;
        grid-template-columns:52px 1fr
    }

    .button span {
        text-align: center
    }
}

@media (max-width: 560px) {
    .stat-panel__top {
        display: grid
    }

    .stat-panel__top strong {
        font-size: 36px
    }

    .stat-row {
        grid-template-columns:54px 1fr
    }

    .info-card {
        padding: 22px
    }

    .faq-item summary {
        padding: 20px
    }

    .faq-item__body {
        padding: 20px
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Anchor alignment for sticky header */
.info-card[id] {
    scroll-margin-top: calc(var(--header-h) + 24px);
}

@media (max-width: 900px) {
    .info-card[id] {
        scroll-margin-top: calc(var(--header-h) + 18px);
    }
}

/* Approved E-filliate logo assets */
.brand {
    padding: 0 clamp(18px, 2.1vw, 32px);
}

.brand-logo {
    display: block;
    width: min(220px, 100%);
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

@media (max-width: 1180px) {
    .brand-logo {
        width: min(210px, 70vw);
        max-height: 48px;
    }
}

@media (max-width: 900px) {
    .brand {
        padding: 0 16px
    }

    .brand-logo {
        width: min(180px, 64vw);
        max-height: 38px;
    }
}

.hero-faq-visual{
    background: #050505 !important;
}