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

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/poppins-500.ttf") format("truetype");
}

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

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/poppins-700.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/poppins-800.ttf") format("truetype");
}

:root {
    --ink: #1a1d24;
    --muted: #626873;
    --line: #e2e6e9;
    --page: #f4f6f7;
    --surface: #ffffff;
    --accent: #0a5f52;
    --accent-dark: #07483f;
    --accent-soft: #e7f3f0;
    --warm: #fff7e8;
    --shadow: 0 20px 60px rgba(20, 30, 40, 0.09);
    --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: inherit;
}

.reading-progress {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    pointer-events: none;
}

.reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: #efbd35;
    transform: scaleX(0);
    transform-origin: left;
}

.adbar {
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    z-index: 70;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(20, 30, 40, 0.08);
}

.site-header__inner {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand {
    color: var(--ink);
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
}

.breadcrumb {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 20px 80px;
}

.article {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(226, 230, 233, 0.8);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.article-hero {
    margin: 0;
    padding: clamp(28px, 5vw, 56px) clamp(22px, 6vw, 68px) 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

h1 {
    max-width: none;
    margin: 0 0 18px;
    color: var(--ink);
    font-family: var(--font);
    font-size: clamp(34px, 5.4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    text-wrap: balance;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.article-meta time {
    color: var(--muted);
    font-weight: 500;
}

.hero-figure {
    margin: 28px 0 0;
    overflow: hidden;
    border-radius: 14px;
    background: #eef0f2;
}

.hero-figure::after {
    display: none;
}

.hero-figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.story-flow {
    max-width: 780px;
    margin: 0 auto;
    padding: 34px 24px 72px;
    border: 0;
    border-radius: 0;
    background: var(--surface);
    box-shadow: none;
}

.story-flow > p,
.story-flow > blockquote,
.story-flow > ul,
.story-flow > ol {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

.story-flow > p {
    margin-top: 0;
    margin-bottom: 22px;
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.75;
}

.story-flow > p:first-child {
    color: var(--ink);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.55;
}

.story-flow strong {
    color: inherit;
    font-weight: 700;
}

.story-flow em {
    color: inherit;
}

.story-flow .emphasis {
    margin: 0 0 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
}

.story-flow .short-beat {
    margin: 30px 0 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.45;
    text-align: left;
}

blockquote {
    margin: 28px 0;
    padding: 22px 24px;
    border-left: 4px solid #9299a3;
    border-radius: 12px;
    background: #f6f7f9;
}

blockquote p {
    margin: 0;
    color: var(--ink);
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.55;
}

.story-list {
    display: grid;
    gap: 0;
    margin: 22px 0;
    padding: 0;
    list-style: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.45;
}

.story-list li {
    position: relative;
    padding: 9px 10px 9px 34px;
    border-bottom: 1px solid var(--line);
}

.story-list li::before {
    position: absolute;
    top: 11px;
    left: 10px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    content: "";
    transform: rotate(45deg);
}

html[dir="rtl"] .story-flow .short-beat {
    text-align: right;
}

html[dir="rtl"] blockquote {
    border-right: 4px solid #9299a3;
    border-left: 0;
}

html[dir="rtl"] .story-list li {
    padding: 9px 34px 9px 10px;
}

html[dir="rtl"] .story-list li::before {
    right: 10px;
    left: auto;
}

.story-figure,
.story-figure--wide {
    width: auto;
    margin: 28px 0;
}

.story-figure img {
    width: 100%;
    max-height: none;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: none;
}

.story-divider {
    width: 100%;
    margin: 48px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.story-cta {
    display: flex;
    justify-content: center;
    margin: 32px auto;
}

.button {
    display: flex;
    width: min(100%, 600px);
    min-height: 60px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 17px 30px;
    border: 1px solid #dfa91d;
    border-radius: 11px;
    background: linear-gradient(180deg, #ffda67 0%, #efbd35 100%);
    box-shadow: 0 12px 28px rgba(185, 127, 0, 0.3);
    color: #17201d;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.025em;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
    box-shadow: 0 15px 32px rgba(185, 127, 0, 0.38);
    transform: translateY(-3px);
}

.button:focus-visible,
.brand:focus-visible,
.site-footer a:focus-visible {
    outline: 3px solid #efbd35;
    outline-offset: 4px;
}

.button--wide {
    width: 100%;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.75fr);
    gap: 24px;
    align-items: center;
    margin: 48px -18px 0;
    padding: 32px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--accent-dark);
    box-shadow: none;
    color: #fff;
}

.product-card__media {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.product-card__media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.product-card__content {
    min-width: 0;
}

.product-card__eyebrow {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.product-card__price {
    display: flex;
    gap: 18px;
    align-items: end;
    margin: 0 0 22px;
}

.product-card__price del {
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
}

.product-card__price strong {
    color: #fff;
    font-size: 36px;
    line-height: 1.1;
}

.product-card .button {
    min-height: 56px;
    padding: 15px 20px;
    font-size: 16px;
}

.site-footer {
    padding: 48px max(20px, calc((100% - 860px) / 2));
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
}

.site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 20px;
}

.site-footer nav h2 {
    grid-column: 1 / -1;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    text-underline-offset: 3px;
}

.disclosure {
    padding: 32px 0 24px;
    color: rgba(255, 255, 255, 0.62);
}

.disclosure p + p {
    margin-top: 12px;
}

.copyright {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}
.hero-figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sticky-cta {
    position: fixed;
    z-index: 60;
    right: 18px;
    bottom: 18px;
    display: flex;
    min-width: 340px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 12px 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(7, 72, 63, 0.97);
    box-shadow: 0 18px 48px rgba(20, 30, 40, 0.26);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sticky-cta > div {
    display: grid;
    gap: 1px;
}

.sticky-cta strong {
    font-size: 15px;
    font-weight: 700;
}

.sticky-cta span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.sticky-cta .button {
    width: auto;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 12px;
}

@media (max-width: 760px) {
    body {
        font-size: 16px;
        line-height: 1.7;
    }

    .site-header__inner {
        min-height: 56px;
    }

    .brand {
        font-size: 16px;
    }

    .breadcrumb {
        display: none;
    }

    main {
        padding: 10px 0 54px;
    }

    .article {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .article-hero {
        padding: 28px 18px 0;
    }

    h1 {
        font-size: clamp(31px, 9vw, 42px);
    }

    .article-meta {
        font-size: 11px;
    }

    .story-flow {
        padding: 28px 18px 54px;
    }

    .story-flow > p {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.7;
    }

    .story-flow > p:first-child {
        font-size: 21px;
    }

    .story-flow .emphasis {
        margin: 0 0 20px;
        padding: 0;
        font-size: 16px;
        line-height: 1.7;
    }

    .story-flow .short-beat {
        margin: 26px 0 18px;
        padding: 0;
        font-size: 18px;
    }

    blockquote {
        margin: 24px 0;
        padding: 18px;
        font-size: 17px;
    }

    blockquote p {
        font-size: 17px;
    }

    .story-list {
        margin: 18px 0;
        font-size: 15px;
        line-height: 1.4;
    }

    .story-list li {
        padding: 8px 8px 8px 30px;
    }

    .story-list li::before {
        top: 9px;
        left: 8px;
    }

    html[dir="rtl"] .story-list li {
        padding: 8px 30px 8px 8px;
    }

    html[dir="rtl"] .story-list li::before {
        right: 8px;
        left: auto;
    }

    .story-figure,
    .story-figure--wide {
        margin: 22px 0;
    }

    .story-figure img,
    .hero-figure {
        border-radius: 10px;
    }

    .product-card {
        grid-template-columns: 1fr;
        margin-right: 0;
        margin-left: 0;
        padding: 24px 20px;
    }

    .product-card__media {
        grid-row: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sticky-cta {
        right: 10px;
        bottom: 10px;
        left: 10px;
        min-width: 0;
        padding: 9px 9px 9px 14px;
    }

    .sticky-cta .button {
        max-width: 55%;
    }

    body.has-sticky-cta {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .adbar {
        font-size: 10px;
    }

    .hero-figure {
        margin-top: 22px;
    }

    .button {
        min-height: 56px;
        padding: 15px 20px;
        font-size: 16px;
    }

    .site-footer nav {
        column-gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
