:root {
    --bg: #f3f3f1;
    --bg-strong: #e7e5e1;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-strong: #ffffff;
    --panel: #f8f8f6;
    --line: #d7d4d1;
    --line-strong: #c1beb9;
    --text: #171816;
    --text-soft: #4d4f4c;
    --text-muted: #767a75;
    --green: #2d7750;
    --green-dark: #1d5637;
    --green-soft: rgba(45, 119, 80, 0.12);
    --red: #b6493d;
    --red-dark: #8a322b;
    --red-soft: rgba(182, 73, 61, 0.12);
    --shadow-soft: 0 18px 48px rgba(25, 28, 27, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --font-main: 'Inter', 'Segoe UI', sans-serif;
    --font-display: 'Inter', 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        linear-gradient(rgba(20, 22, 21, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 22, 21, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

body::after {
    background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.04), transparent 42%);
}

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

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

.container {
    position: relative;
    z-index: 2;
    width: min(1160px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 90;
    padding: 10px 16px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus-visible {
    top: 20px;
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    height: 3px;
    background: rgba(27, 31, 29, 0.08);
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--red));
    transition: width 0.12s linear;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 50;
    width: min(1160px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px;
    border: 1px solid rgba(23, 24, 22, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(18, 20, 19, 0.05);
}

.brand,
.nav-links,
.header-cta {
    display: inline-flex;
    align-items: center;
}

.brand {
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
    filter: none;
}

.brand-name {
    font-size: 1rem;
    color: var(--text);
}

.nav-links {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 700;
}

.nav-links a {
    position: relative;
    padding: 8px 10px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(23, 24, 22, 0.04);
    color: var(--text);
}

.header-cta {
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.76rem;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 10px 18px rgba(45, 119, 80, 0.18);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 150px 0 70px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.45;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.15) brightness(0.72);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(243, 243, 241, 0.4), rgba(243, 243, 241, 0.72));
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: 48px;
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-context {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.brand-context-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.brand-context-card--dark {
    background: #f0f0ef;
}

.brand-context-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    color: var(--text-soft);
}

.brand-badge {
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-context-head small {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(23, 24, 22, 0.04);
    white-space: nowrap;
}

.brand-context-card--dark .brand-badge {
    color: var(--green-dark);
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: var(--text);
}

h1 {
    max-width: 760px;
    font-size: clamp(2.8rem, 4.7vw, 4.8rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
}

h3 {
    font-size: 1.18rem;
    font-weight: 800;
}

.hero-section h1 {
    max-width: 700px;
}

.hero-lead,
.section-heading p,
.split-section p,
.final-card p,
.broker-card span,
.content-card span,
.faq-item p,
.feature-card p,
.path-card span {
    color: var(--text-soft);
}

.hero-lead {
    max-width: 650px;
    margin-top: 18px;
    font-size: clamp(0.96rem, 1.8vw, 1.08rem);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    font-weight: 800;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    color: var(--text);
    background: #fff;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(18, 20, 19, 0.08);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-color: transparent;
}

.btn-secondary,
.btn-outline {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    border-color: transparent;
}

.btn-dark {
    width: 100%;
    margin-top: 20px;
    background: #1b1d1b;
    color: #fff;
    border-color: transparent;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.trust-row span {
    padding: 8px 12px;
    border: 1px solid rgba(23, 24, 22, 0.08);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 700;
}

.hero-card,
.final-card,
.feature-card,
.path-card,
.broker-card,
.content-card,
.conversion-card,
.faq-item {
    position: relative;
    border: 1px solid rgba(23, 24, 22, 0.08);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-soft);
}

.hero-card {
    padding: 28px 24px 22px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 22, 21, 0.2), transparent);
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(182, 73, 61, 0.08);
    color: var(--text-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(182, 73, 61, 0.12);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(182, 73, 61, 0.14);
}

.hero-avatar {
    position: relative;
    z-index: 2;
    width: 108px;
    height: 108px;
    margin-bottom: 20px;
    border: 1px solid rgba(23, 24, 22, 0.1);
    border-radius: 20px;
    object-fit: cover;
    object-position: center 20%;
    background: #efefed;
    filter: none;
}

.hero-card h2 {
    font-size: 1.5rem;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.steps-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-left: 18px;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.6;
}

.quick-actions {
    position: relative;
    z-index: 2;
    padding: 0 0 40px;
    transform: translateY(-20px);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.conversion-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 20px;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.conversion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(23, 24, 22, 0.2), transparent);
}

.conversion-card:hover,
.feature-card:hover,
.content-card:hover,
.broker-card:hover,
.path-card:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 24, 22, 0.14);
    box-shadow: 0 16px 30px rgba(18, 20, 19, 0.08);
}

.conversion-card strong {
    position: relative;
    z-index: 2;
    font-size: 1.35rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text);
}

.conversion-card small {
    position: relative;
    z-index: 2;
    font-size: 0.78rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.card-kicker {
    position: relative;
    z-index: 2;
    width: max-content;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(23, 24, 22, 0.03);
    color: var(--text-soft);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.conversion-card.premium .card-kicker,
.conversion-card.vantage .card-kicker {
    border-color: rgba(45, 119, 80, 0.18);
    background: var(--green-soft);
    color: var(--green-dark);
}

.conversion-card.community .card-kicker,
.conversion-card.onehorse .card-kicker {
    border-color: rgba(182, 73, 61, 0.18);
    background: var(--red-soft);
    color: var(--red-dark);
}

.section {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 26px;
}

.section-heading.narrow {
    max-width: 720px;
}

.section-heading p {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-grid,
.content-grid,
.path-grid {
    display: grid;
    gap: 16px;
}

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    min-height: 210px;
    padding: 22px 20px;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-number {
    display: block;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 1.32rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.feature-card p,
.path-card p {
    margin-top: 12px;
    font-size: 0.82rem;
    line-height: 1.6;
}

.dark-band {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    border-top: 1px solid rgba(23, 24, 22, 0.08);
    border-bottom: 1px solid rgba(23, 24, 22, 0.08);
    background: rgba(255, 255, 255, 0.26);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
    gap: 34px;
    align-items: center;
}

.split-section p {
    margin-top: 12px;
    line-height: 1.65;
    font-size: 0.92rem;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.stats-strip div {
    padding: 18px 16px;
    border: 1px solid rgba(23, 24, 22, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.56);
}

.stats-strip dt {
    color: var(--text);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.stats-strip dd {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    line-height: 1.4;
}

.broker-stack {
    display: grid;
    gap: 12px;
}

.broker-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 120px;
    padding: 18px 18px;
    border-radius: var(--radius-md);
}

.broker-card img {
    max-height: 42px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    background: transparent;
}

.broker-card strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    font-weight: 800;
}

.broker-card span {
    display: block;
    margin-top: 4px;
    font-size: 0.76rem;
    line-height: 1.45;
}

.content-grid {
    grid-template-columns: repeat(3, 1fr);
}

.content-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 22px 18px;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(23, 24, 22, 0.15), transparent);
}

.content-card.twitch {
    justify-content: flex-start;
}

.content-card strong {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.content-card span {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    line-height: 1.5;
}

.content-card .card-image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    margin-bottom: 12px;
    border: 1px solid rgba(23, 24, 22, 0.08);
    filter: none;
    min-height: 120px;
    background: #e6e6e3;
}

.content-card .card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(23, 24, 22, 0.04);
    border: 1px solid rgba(23, 24, 22, 0.08);
    font-size: 0.95rem;
    color: var(--text);
}

.authority-section {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.authority-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.portrait-wrap {
    position: relative;
}

.portrait {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 720px;
    border-radius: 24px;
    object-fit: cover;
    object-position: center 26%;
    border: 1px solid rgba(23, 24, 22, 0.08);
    background: #eee;
    filter: none;
    box-shadow: 0 22px 50px rgba(18, 20, 19, 0.08);
}

.portrait-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(23, 24, 22, 0.08);
    background: rgba(255, 255, 255, 0.84);
    color: var(--green-dark);
    font-weight: 800;
    font-size: 0.7rem;
}

.authority-copy .eyebrow {
    margin-bottom: 12px;
}

.authority-lead {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.authority-copy p:not(.authority-lead) {
    margin-top: 18px;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 0.9rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.credentials span {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.66);
    color: var(--text-soft);
    font-size: 0.66rem;
    font-weight: 700;
}

.path-grid {
    grid-template-columns: repeat(3, 1fr);
}

.path-card {
    padding: 22px 20px;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.path-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(23, 24, 22, 0.03);
    color: var(--text-soft);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.path-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 20px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(23, 24, 22, 0.04);
    font-weight: 800;
    font-size: 0.7rem;
    color: var(--text);
}

.path-card.highlighted {
    border-color: rgba(45, 119, 80, 0.2);
}

.path-card.highlighted a {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-color: transparent;
}

.path-card:last-child {
    border-color: rgba(182, 73, 61, 0.18);
}

.path-card:last-child a {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    border-color: transparent;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-item[open],
.faq-item:hover {
    border-color: rgba(23, 24, 22, 0.14);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    cursor: pointer;
    color: var(--text);
    list-style: none;
    font-weight: 800;
    font-size: 0.9rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(23, 24, 22, 0.08);
    background: rgba(23, 24, 22, 0.03);
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 18px 18px;
    font-size: 0.8rem;
    line-height: 1.6;
}

.final-cta {
    position: relative;
    z-index: 2;
    padding: 80px 0 90px;
}

.final-card {
    padding: clamp(28px, 5vw, 48px);
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
}

.final-card .eyebrow {
    margin-inline: auto;
}

.final-card p {
    max-width: 700px;
    margin: 16px auto 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.final-card .hero-actions {
    justify-content: center;
}

.risk-note {
    color: var(--text-muted) !important;
    font-size: 0.72rem !important;
}

.site-footer {
    position: relative;
    z-index: 2;
    padding: 26px 0 80px;
    border-top: 1px solid rgba(23, 24, 22, 0.08);
    background: rgba(255, 255, 255, 0.28);
    color: var(--text-soft);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    width: 110px;
    height: auto;
    margin-bottom: 10px;
    filter: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-weight: 700;
    font-size: 0.72rem;
}

.footer-links a {
    transition: color 0.2s ease;
}

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

.footer-copy {
    margin-top: 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.mobile-sticky {
    display: none;
}

.to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 55;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(23, 24, 22, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: var(--green-dark);
    font-weight: 800;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.25s ease;
}

.to-top:hover {
    box-shadow: 0 12px 24px rgba(18, 20, 19, 0.08);
}

.to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 981px) {
    .hero-section,
    .quick-actions,
    .section,
    .dark-band,
    .authority-section,
    .final-cta,
    .site-footer {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
        gap: 48px;
    }

    .conversion-card {
        min-height: 210px;
    }

    .site-footer {
        padding: 32px 0 70px;
    }
}

@media (max-width: 980px) {
    .site-header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
        padding: 10px 12px 12px;
    }

    .nav-links {
        order: 3;
        display: flex;
        grid-column: 1 / -1;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .nav-links a[href="#mso"],
    .nav-links a[href="#faq"] {
        display: none;
    }

    .hero-grid,
    .split-section,
    .authority-grid,
    .feature-grid,
    .content-grid,
    .path-grid {
        grid-template-columns: 1fr;
    }

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

    .quick-actions {
        transform: none;
        padding-top: 18px;
    }

    .stats-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .to-top {
        right: 16px;
        bottom: 18px;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .site-header {
        top: 12px;
        width: min(100% - 18px, 1160px);
    }

    .header-cta {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.66rem;
    }

    .hero-section {
        padding-top: 150px;
    }

    h1 {
        font-size: clamp(2.4rem, 12vw, 3.3rem);
    }

    h2 {
        font-size: clamp(1.6rem, 7vw, 2.3rem);
    }

    .brand-context {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn,
    .header-cta {
        width: 100%;
    }

    .quick-actions {
        transform: none;
        padding-bottom: 28px;
    }

    .stats-strip {
        grid-template-columns: 1fr;
    }

    .content-card,
    .feature-card,
    .path-card,
    .conversion-card,
    .hero-card,
    .broker-card {
        border-radius: 18px;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}
