@font-face {
    font-family: "Poppins";
    src: url('5804074739-Poppins-Regular.ttf') format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url('4b1341a3a3-Poppins-Medium.ttf') format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url('bd5f8db8f9-Poppins-SemiBold.ttf') format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url('18236f579c-Poppins-Bold.ttf') format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url('ce0ff58013-Poppins-ExtraBold.ttf') format("truetype");
    font-style: normal;
    font-weight: 800 900;
    font-display: swap;
}

:root {
    color-scheme: light;
    --ink: #17211f;
    --ink-soft: #52605d;
    --paper: #ffffff;
    --paper-soft: #f4f7f5;
    --line: #d8e0dd;
    --brand: #183f3b;
    --brand-2: #2b6f65;
    --brand-soft: #e4f1ed;
    --accent: #c8333b;
    --gold: #d9a72e;
    --shadow: 0 18px 50px rgba(21, 54, 49, 0.1);
    --radius: 18px;
    --headline: "Poppins", Arial, Helvetica, sans-serif;
    --ui: "Poppins", Arial, Helvetica, sans-serif;
    --body: "Poppins", Arial, Helvetica, sans-serif;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --ink: #eef5f2;
    --ink-soft: #aebeb9;
    --paper: #13211f;
    --paper-soft: #192b28;
    --line: #324843;
    --brand: #0d2421;
    --brand-2: #63b9aa;
    --brand-soft: #223a36;
    --accent: #ff7378;
    --gold: #f0bd43;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.72;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input {
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

img {
    height: auto;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

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

.shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.scroll-progress {
    position: fixed;
    z-index: 999;
    inset: 0 0 auto;
    height: 4px;
    background: transparent;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--accent));
}

.utility-bar {
    background: #0e2a27;
    color: #dce8e5;
    font-family: var(--ui);
    font-size: 13px;
}

.utility-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.utility-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.utility-date svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    fill: currentColor;
}

.utility-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.utility-actions a {
    text-decoration: none;
}

.theme-toggle {
    width: 32px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    line-height: 1;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.header-inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(280px, 430px) auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    flex-direction: column;
    width: fit-content;
    text-decoration: none;
}

.brand span {
    color: var(--brand-2);
    font-family: var(--headline);
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.brand small {
    margin-top: 7px;
    color: var(--ink-soft);
    font-family: var(--ui);
    font-size: 12px;
    letter-spacing: 0.045em;
}

.search {
    display: flex;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper-soft);
    overflow: hidden;
}

.search input {
    min-width: 0;
    flex: 1;
    padding: 11px 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--ui);
    font-size: 14px;
}

.search button {
    padding: 0 18px;
    border: 0;
    background: var(--brand);
    color: #fff;
    font-family: var(--ui);
    font-size: 13px;
    font-weight: 700;
}

.header-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.header-social-link {
    width: 38px;
    height: 38px;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper-soft);
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-social-link:hover {
    border-color: var(--brand-2);
    background: var(--brand-soft);
    color: var(--brand-2);
    transform: translateY(-2px);
}

.header-social-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.header-offer,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #a91f2d);
    color: #fff;
    box-shadow: 0 10px 22px rgba(200, 51, 59, 0.2);
    font-family: var(--ui);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

.header-offer:hover,
.button:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.main-nav {
    position: relative;
    z-index: 20;
    background: var(--brand);
    color: #fff;
    font-family: var(--ui);
}

.nav-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 24px;
    border-bottom: 3px solid transparent;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
    display: none;
}

.page-grid {
    display: grid;
    grid-template-columns: minmax(0, 780px) minmax(280px, 340px);
    align-items: start;
    gap: clamp(36px, 5vw, 60px);
    padding-block: 30px 80px;
}

.article {
    min-width: 0;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--ink-soft);
    font-family: var(--ui);
    font-size: 13px;
}

.breadcrumbs a {
    color: var(--brand-2);
    font-weight: 700;
    text-decoration: none;
}

.article-header {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.category {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 6px;
    background: var(--brand-soft);
    color: var(--brand-2);
    font-family: var(--ui);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.article-header h1 {
    max-width: 24ch;
    margin: 14px 0 12px;
    font-family: var(--headline);
    font-size: clamp(32px, 3.7vw, 48px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.standfirst {
    max-width: 64ch;
    margin: 0;
    color: var(--ink-soft);
    font-family: var(--ui);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.52;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    font-family: var(--ui);
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.author > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.author strong {
    font-size: 14px;
}

.author small,
.date-line {
    color: var(--ink-soft);
    font-size: 12px;
}

.date-line {
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.date-line span::before {
    content: "•";
    margin-right: 9px;
}

.figure {
    margin: 34px 0;
}

.figure img {
    width: 100%;
    border-radius: var(--radius);
    background: var(--paper-soft);
    box-shadow: var(--shadow);
}

.figure figcaption {
    margin-top: 12px;
    color: var(--ink-soft);
    font-family: var(--ui);
    font-size: 13px;
    line-height: 1.55;
}

.hero img {
    aspect-ratio: 1.24 / 1;
    object-fit: cover;
}

.article-body > p,
.story-section > p,
.offer-story > p {
    margin: 0 0 1.35em;
}

.lede {
    padding: 24px 26px;
    border-left: 5px solid var(--accent);
    background: var(--paper-soft);
    font-size: 20px;
    line-height: 1.62;
}

.lede strong {
    color: var(--accent);
}

.shout {
    color: var(--brand-2);
    font-family: var(--ui);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.025em;
}

.story-section {
    position: relative;
    padding-top: 24px;
}

.story-section h2,
.video-section h2 {
    margin: 24px 0 18px;
    font-family: var(--headline);
    font-size: clamp(29px, 4vw, 43px);
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.story-section h3 {
    font-family: var(--headline);
    line-height: 1.25;
}

.section-mark {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--brand-2);
    border-radius: 50%;
    color: var(--brand-2);
    font-family: var(--ui);
    font-size: 12px;
    font-weight: 800;
}

.accent-copy {
    padding: 2px 0 2px 20px;
    border-left: 3px solid var(--gold);
    font-weight: 700;
}

blockquote {
    position: relative;
    margin: 36px 0;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--brand-soft);
    color: var(--ink);
    box-shadow: 0 10px 30px rgba(21, 54, 49, 0.07);
}

blockquote::before {
    content: "“";
    position: absolute;
    top: -13px;
    left: 22px;
    color: var(--brand-2);
    font-family: var(--headline);
    font-size: 64px;
    line-height: 1;
}

blockquote p {
    margin: 0;
    font-family: var(--headline);
    font-size: 21px;
    font-style: italic;
    line-height: 1.55;
}

blockquote cite {
    display: block;
    margin-top: 16px;
    color: var(--brand-2);
    font-family: var(--ui);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.email-card {
    margin: 38px 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow);
    font-family: var(--ui);
    font-size: 15px;
    line-height: 1.6;
}

.email-tools {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.email-tools img {
    width: 21px;
    height: 21px;
    opacity: 0.58;
}

.email-card h3 {
    margin: 18px 0;
    font-family: var(--ui);
    font-size: 17px;
    line-height: 1.45;
}

.email-sender {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.email-sender > span {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-2);
    color: #fff;
    font-weight: 800;
}

.email-sender p {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.email-sender small {
    color: var(--ink-soft);
}

.email-copy p {
    margin: 0 0 12px;
}

.email-actions {
    display: flex;
    gap: 22px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
}

.email-actions span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.email-actions img {
    width: 17px;
    height: 17px;
    opacity: 0.58;
}

.short-quote {
    border-color: rgba(200, 51, 59, 0.26);
    background: rgba(200, 51, 59, 0.06);
}

.mechanism-list {
    display: grid;
    gap: 22px;
    margin: 30px 0;
}

.mechanism-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 150px;
    align-items: center;
    gap: 22px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-soft);
}

.mechanism-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-family: var(--ui);
    font-size: 14px;
    font-weight: 900;
}

.mechanism-copy h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.mechanism-copy p {
    margin: 0;
    color: var(--ink-soft);
    font-family: var(--ui);
    font-size: 14px;
    line-height: 1.55;
}

.mechanism-card > img {
    width: 150px;
    aspect-ratio: 1;
    border-radius: 12px;
    object-fit: cover;
}

.notice-list,
.warning,
.good-to-know {
    margin: 28px 0;
    padding: 24px;
    border-radius: 14px;
    font-family: var(--ui);
    font-size: 15px;
}

.notice-list {
    background: var(--brand-soft);
}

.notice-list ul,
.feature-list,
.imagine-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.notice-list li,
.feature-list li,
.imagine-list li {
    position: relative;
    padding-left: 28px;
}

.notice-list li + li,
.feature-list li + li,
.imagine-list li + li {
    margin-top: 10px;
}

.notice-list li::before,
.feature-list li::before,
.imagine-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-2);
    font-family: var(--ui);
    font-weight: 900;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.success-card {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-soft);
    overflow: hidden;
}

.success-card img {
    width: 100%;
    aspect-ratio: 1.15;
    object-fit: cover;
}

.success-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    font-family: var(--ui);
    font-size: 14px;
    line-height: 1.5;
}

.success-card figcaption strong {
    color: var(--brand-2);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin: 28px 0;
}

.feature-list li {
    padding: 18px 18px 18px 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper-soft);
    font-family: var(--ui);
    font-size: 14px;
    line-height: 1.5;
}

.feature-list li::before {
    top: 18px;
    left: 18px;
}

.warning {
    border: 1px solid rgba(200, 51, 59, 0.28);
    background: rgba(200, 51, 59, 0.07);
}

.warning strong {
    color: var(--accent);
    font-size: 16px;
}

.warning p,
.good-to-know p {
    margin: 8px 0 0;
}

.imagine-section {
    margin: 46px 0;
    padding: clamp(26px, 5vw, 48px);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--brand), #245d55);
    color: #fff;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 12px;
    color: #b9dfd7;
    font-family: var(--ui);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.imagine-lead {
    margin: 0;
    font-family: var(--headline);
    font-size: clamp(25px, 4vw, 36px);
    line-height: 1.25;
}

.imagine-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 26px;
    margin-block: 24px;
    font-family: var(--ui);
    font-size: 15px;
}

.imagine-list li::before {
    color: #8fe0d1;
}

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

.video-section {
    margin: 40px 0;
}

.video-section video {
    width: 100%;
    border-radius: var(--radius);
    background: #000;
}

.square-figure {
    width: min(100%, 580px);
    margin-inline: auto;
}

.square-figure img {
    aspect-ratio: 1;
    object-fit: cover;
}

.product-scene img {
    object-fit: contain;
}

.stock-warning {
    padding: 16px 18px;
    border: 1px dashed var(--accent);
    border-radius: 10px;
    color: var(--accent);
    font-family: var(--ui);
    font-size: 15px;
    font-weight: 800;
}

.terms-list {
    margin: 18px 0 26px;
    padding: 0;
    counter-reset: terms;
    list-style: none;
}

.terms-list li {
    position: relative;
    min-height: 42px;
    padding-left: 56px;
}

.terms-list li + li {
    margin-top: 18px;
}

.terms-list li::before {
    counter-increment: terms;
    content: counter(terms);
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-family: var(--ui);
    font-size: 14px;
    font-weight: 900;
}

.good-to-know {
    border: 1px solid rgba(217, 167, 46, 0.45);
    background: rgba(217, 167, 46, 0.11);
}

.good-to-know strong {
    color: #9b6e00;
}

html[data-theme="dark"] .good-to-know strong {
    color: var(--gold);
}

.quiz-section {
    margin: 46px 0 32px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--paper-soft);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.quiz-heading {
    padding: 26px clamp(22px, 5vw, 40px);
    background: var(--brand);
    color: #fff;
}

.quiz-heading span {
    display: block;
    margin-bottom: 7px;
    color: #b9dfd7;
    font-family: var(--ui);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quiz-heading h2 {
    margin: 0;
    font-family: var(--headline);
    font-size: clamp(27px, 4vw, 39px);
    line-height: 1.15;
}

.quiz-body {
    padding: clamp(24px, 5vw, 42px);
}

.quiz-step {
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.quiz-step.is-active {
    display: block;
    animation: quiz-in 260ms ease both;
}

.quiz-step legend {
    width: 100%;
    margin-bottom: 20px;
    font-family: var(--headline);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.quiz-options label {
    cursor: pointer;
}

.quiz-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quiz-options span {
    display: flex;
    min-height: 56px;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    font-family: var(--ui);
    font-size: 14px;
    font-weight: 700;
}

.quiz-options input:focus-visible + span {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.quiz-options input:checked + span {
    border-color: var(--brand-2);
    background: var(--brand-soft);
    color: var(--brand-2);
}

.quiz-result {
    display: none;
    text-align: center;
}

.quiz-result.is-active {
    display: flex;
    align-items: center;
    flex-direction: column;
    animation: quiz-in 300ms ease both;
}

.quiz-result h3 {
    margin: 0;
    font-family: var(--headline);
    font-size: clamp(27px, 4vw, 40px);
    line-height: 1.2;
}

.quiz-result > img {
    width: min(280px, 75%);
    margin: 8px auto;
}

.quiz-result > p {
    margin: 0;
    color: var(--ink-soft);
    font-family: var(--ui);
    font-size: 14px;
}

.quiz-result small {
    margin-top: 12px;
    color: var(--ink-soft);
    font-family: var(--ui);
}

.quiz-timer {
    margin: 5px 0 16px;
    color: var(--accent);
    font-family: var(--ui);
    font-size: 36px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

.quiz-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 0 28px;
}

.quiz-progress span {
    width: 32px;
    height: 5px;
    border-radius: 999px;
    background: var(--line);
}

.quiz-progress span.is-active,
.quiz-progress span.is-complete {
    background: var(--brand-2);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    padding-block: 24px;
    border-block: 1px solid var(--line);
    font-family: var(--ui);
    font-size: 13px;
}

.article-tags a {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--paper-soft);
    color: var(--brand-2);
    font-weight: 700;
    text-decoration: none;
}

.share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 0;
    font-family: var(--ui);
    font-size: 13px;
}

.share-row button,
.share-row a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.sidebar {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.news-rail {
    border-top: 4px solid var(--brand);
    font-family: var(--ui);
}

.news-heading {
    padding: 16px 0 12px;
    border-bottom: 1px solid var(--line);
}

.news-heading h2 {
    margin: 0 0 12px;
    font-family: var(--headline);
    font-size: 26px;
}

.news-tabs {
    display: flex;
    gap: 6px;
}

.news-tabs button,
.refresh-button {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
}

.news-tabs button.active {
    border-color: var(--brand-2);
    background: var(--brand-soft);
    color: var(--brand-2);
}

.news-list {
    display: grid;
}

.news-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
}

.news-item img {
    width: 78px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

.news-item > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.news-item strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-item small {
    color: var(--ink-soft);
    font-size: 10px;
}

.refresh-button {
    margin-top: 14px;
}

.comments-section {
    padding-block: 54px 72px;
    border-top: 1px solid var(--line);
}

.comments-section > header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--brand);
}

.comments-section h2 {
    margin: 0;
    font-family: var(--headline);
    font-size: 36px;
}

.comments-section > header span {
    color: var(--ink-soft);
    font-family: var(--ui);
    font-size: 13px;
}

.login-prompt {
    margin: 20px 0 28px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper-soft);
    font-family: var(--ui);
    font-size: 14px;
}

.login-prompt a {
    color: var(--brand-2);
    font-weight: 800;
}

.comments-list {
    display: grid;
    gap: 18px;
    width: min(880px, 100%);
}

.comment {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
}

.comment-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-bubble {
    padding: 15px 17px;
    border-radius: 4px 16px 16px;
    background: var(--paper-soft);
    font-family: var(--ui);
}

.comment-bubble h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.3;
}

.comment-bubble h3 small {
    padding: 2px 6px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-2);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.comment-bubble p {
    margin: 0;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.55;
}

.comment-photo {
    width: min(320px, 100%);
    max-height: 320px;
    margin-top: 12px;
    border-radius: 10px;
    object-fit: cover;
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 6px 9px;
    color: var(--ink-soft);
    font-family: var(--ui);
    font-size: 11px;
}

.comment-meta button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand-2);
    font-size: 11px;
    font-weight: 800;
}

.comment-meta span {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    padding: 3px 7px;
    border-radius: 999px;
    background: var(--paper-soft);
}

.comment-meta img {
    width: 16px;
    height: 16px;
}

.footer-cta {
    padding: 38px 0;
    background: var(--brand);
    color: #fff;
}

.footer-cta .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-cta p {
    max-width: 700px;
    margin: 0;
    font-family: var(--headline);
    font-size: clamp(21px, 3vw, 29px);
    line-height: 1.35;
}

.footer-cta .button {
    flex: 0 0 auto;
}

.site-footer {
    padding: 54px 0 34px;
    background: #0c1d1b;
    color: #cad8d4;
    font-family: var(--ui);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 0.75fr;
    gap: 42px;
}

.footer-brand strong {
    color: #fff;
    font-family: var(--headline);
    font-size: 25px;
}

.footer-brand p {
    margin: 7px 0 0;
    color: #91a7a1;
    font-size: 12px;
}

.site-footer nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer nav h2 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 13px;
}

.site-footer nav a {
    color: #a9bbb6;
    font-size: 12px;
    text-decoration: none;
}

.footer-disclaimer {
    grid-column: 1 / -1;
    padding-top: 26px;
    border-top: 1px solid #29413c;
}

.footer-disclaimer p {
    margin: 0 0 18px;
    color: #8fa29d;
    font-size: 11px;
    line-height: 1.65;
}

.footer-disclaimer div {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-disclaimer a,
.footer-disclaimer small {
    color: #a9bbb6;
    font-size: 11px;
}

.footer-disclaimer small {
    display: block;
    margin-top: 14px;
}

.mobile-offer {
    display: none;
}

@keyframes quiz-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1050px) {
    .header-inner {
        grid-template-columns: 1fr minmax(250px, 360px) auto;
    }

    .brand small {
        display: none;
    }

    .page-grid {
        grid-template-columns: minmax(0, 1fr);
        width: min(820px, calc(100% - 40px));
    }

    .sidebar {
        display: none;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 68px;
        font-size: 17px;
    }

    .shell {
        width: min(100% - 28px, 720px);
    }

    .utility-actions a {
        display: none;
    }

    .header-inner {
        min-height: 82px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 16px;
    }

    .brand span {
        font-size: 25px;
    }

    .search {
        display: none;
    }

    .header-offer {
        min-height: 42px;
        padding-inline: 14px;
        font-size: 12px;
    }

    .nav-inner {
        min-height: 46px;
        align-items: stretch;
        flex-direction: column;
    }

    .nav-toggle {
        min-height: 46px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
        font-family: var(--ui);
        font-size: 12px;
        font-weight: 800;
    }

    .hamburger {
        width: 20px;
        display: grid;
        gap: 4px;
    }

    .hamburger i {
        width: 100%;
        height: 2px;
        display: block;
        border-radius: 999px;
        background: #fff;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        padding-bottom: 8px;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        min-height: 42px;
        padding: 0;
        border-bottom-width: 1px;
    }

    .page-grid {
        width: min(100% - 28px, 720px);
        padding-top: 22px;
        padding-bottom: 50px;
    }

    .article-header h1 {
        max-width: none;
        font-size: clamp(28px, 8vw, 36px);
        letter-spacing: -0.025em;
        line-height: 1.15;
    }

    .article-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .hero {
        margin-inline: -14px;
    }

    .hero img {
        border-radius: 0;
    }

    .hero figcaption {
        padding-inline: 14px;
    }

    .lede {
        padding: 20px;
        font-size: 18px;
    }

    blockquote {
        padding: 26px 21px 22px;
    }

    blockquote p {
        font-size: 19px;
    }

    .mechanism-card {
        grid-template-columns: 40px minmax(0, 1fr);
        align-items: start;
        gap: 15px;
    }

    .mechanism-card > img {
        width: 100%;
        grid-column: 1 / -1;
        aspect-ratio: 16 / 10;
    }

    .success-grid,
    .feature-list,
    .imagine-list {
        grid-template-columns: 1fr;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .comments-section {
        padding-block: 42px 54px;
    }

    .footer-cta .shell {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-cta .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .mobile-offer {
        position: fixed;
        z-index: 80;
        inset: auto 0 0;
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 16px;
        background: var(--accent);
        color: #fff;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
        font-family: var(--ui);
        font-size: 12px;
        text-decoration: none;
    }

    .mobile-offer span {
        overflow: hidden;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-offer strong {
        flex: 0 0 auto;
    }
}

@media (max-width: 460px) {
    .header-offer {
        display: none;
    }

    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .brand span {
        font-size: 21px;
    }

    .header-socials {
        gap: 4px;
    }

    .header-social-link {
        width: 32px;
        height: 32px;
    }

    .article-header h1 {
        font-size: 30px;
    }

    .story-section h2,
    .video-section h2 {
        font-size: 29px;
    }

    .success-grid {
        gap: 14px;
    }

    .comment {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 9px;
    }

    .comment-avatar {
        width: 38px;
        height: 38px;
    }

    .comment-bubble {
        padding: 13px;
    }

    .comment-meta {
        gap: 9px;
        padding-inline: 3px;
    }

    .footer-grid {
        gap: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* cta-boost — larger CTA buttons */
.button {
    min-height: 60px;
    padding: 18px 32px;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(200, 51, 59, 0.3);
}

.footer-cta .button {
    min-height: 62px;
    padding: 18px 36px;
    font-size: 19px;
}

@media (max-width: 760px) {
    .button {
        min-height: 58px;
        padding: 16px 24px;
        font-size: 17px;
        width: 100%;
    }

    .footer-cta .button {
        min-height: 60px;
        font-size: 18px;
    }
}
