@font-face {
    font-family: "Raleway";
    src: url("font/raleway-400-latin.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("font/raleway-700-latin.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #07100f;
    --bg-elevated: #0d1917;
    --surface: rgba(15, 29, 27, 0.88);
    --surface-strong: #12211f;
    --surface-muted: rgba(255, 255, 255, 0.045);
    --border: rgba(190, 230, 220, 0.13);
    --border-strong: rgba(73, 204, 173, 0.36);
    --text: #f3f7f5;
    --text-muted: #9aaca7;
    --text-faint: #6f827d;
    --brand: #46d3ae;
    --brand-bright: #74e7c8;
    --brand-soft: rgba(70, 211, 174, 0.11);
    --gold: #d6b24a;
    --gold-bright: #f0d876;
    --gold-soft: rgba(214, 178, 74, 0.13);
    --rose-soft: rgba(194, 119, 122, 0.1);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    --radius: 22px;
    --radius-small: 13px;
    color-scheme: dark;
    font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="light"] {
    --bg: #edf5f1;
    --bg-elevated: #e4efea;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --surface-muted: rgba(20, 55, 47, 0.055);
    --border: rgba(29, 72, 62, 0.14);
    --border-strong: rgba(13, 138, 113, 0.34);
    --text: #10231f;
    --text-muted: #526862;
    --text-faint: #748781;
    --brand: #0d9477;
    --brand-bright: #08765f;
    --brand-soft: rgba(13, 148, 119, 0.1);
    --gold: #a67c17;
    --gold-bright: #77570b;
    --gold-soft: rgba(166, 124, 23, 0.11);
    --rose-soft: rgba(156, 64, 68, 0.08);
    --shadow: 0 26px 70px rgba(28, 70, 60, 0.14);
    color-scheme: light;
}

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

html {
    min-width: 320px;
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(70, 211, 174, 0.11), transparent 36%),
        linear-gradient(315deg, rgba(214, 178, 74, 0.1), transparent 34%),
        linear-gradient(180deg, var(--bg), var(--bg-elevated));
    font-size: 16px;
    line-height: 1.6;
    transition: color 180ms ease, background-color 180ms ease;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    content: "";
    pointer-events: none;
}

button,
input,
summary {
    font: inherit;
}

button {
    margin: 0;
}

a {
    color: inherit;
}

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

p,
h1,
h2,
h3,
ol,
ul {
    margin-top: 0;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 8px;
    color: #05211a;
    background: var(--brand-bright);
    font-weight: 700;
    transform: translateY(-140%);
}

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

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg) 84%, transparent);
    backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner,
.site-main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 116px;
    height: auto;
}

.brand-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.brand-product {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--text-muted);
    background: var(--surface-muted);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 150ms ease, color 150ms ease, background 150ms ease, transform 150ms ease;
}

.control-button:hover,
.control-button:focus-visible {
    border-color: var(--border-strong);
    color: var(--text);
    background: var(--brand-soft);
    outline: none;
    transform: translateY(-1px);
}

.control-button svg {
    width: 16px;
    height: 16px;
}

.theme-toggle {
    width: 40px;
    padding: 0;
}

.theme-icon {
    width: 18px;
    height: 18px;
}

.theme-icon-sun,
[data-theme="light"] .theme-icon-moon {
    display: none;
}

[data-theme="light"] .theme-icon-sun {
    display: block;
}

.site-main {
    display: grid;
    gap: 56px;
    padding: 70px 0 76px;
}

.hero-panel {
    width: min(900px, 100%);
    margin: 0 auto;
    padding: 28px 0 8px;
    text-align: center;
}

.hero-panel h1 {
    max-width: 840px;
    margin: 0 auto 22px;
    font-size: 4rem;
    font-weight: 700;
}

.hero-panel .intro-copy {
    margin-right: auto;
    margin-left: auto;
}

.hero-panel .hero-actions {
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 72px;
}

.intro-panel {
    padding: 18px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--brand-bright);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.eyebrow.centered {
    display: flex;
    justify-content: center;
    margin-bottom: 9px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 5px var(--brand-soft), 0 0 18px var(--brand);
}

h1,
h2,
h3 {
    color: var(--text);
    line-height: 1.08;
}

.intro-panel h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: 4rem;
    font-weight: 700;
}

.intro-copy {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.primary-button,
.secondary-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 700;
    text-decoration: none;
}

.primary-button,
.secondary-button {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 12px;
    transition: transform 150ms ease, filter 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.primary-button {
    border: 0;
    color: #05221a;
    background: linear-gradient(135deg, var(--brand-bright), var(--brand));
    box-shadow: 0 12px 30px rgba(38, 185, 150, 0.18);
}

.secondary-button {
    border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
    color: var(--gold-bright);
    background: var(--gold-soft);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
    filter: brightness(1.06);
    outline: none;
    transform: translateY(-1px);
}

.primary-button:hover,
.primary-button:focus-visible {
    box-shadow: 0 14px 34px rgba(38, 185, 150, 0.24);
}

[data-theme="light"] .primary-button {
    color: #f6fffb;
    background: linear-gradient(135deg, #08765f, #0d9477);
}

.secondary-button:hover,
.secondary-button:focus-visible {
    border-color: var(--gold);
    background: color-mix(in srgb, var(--gold-soft) 72%, var(--surface-muted));
}

.primary-button svg,
.secondary-button svg,
.text-link svg {
    width: 18px;
    height: 18px;
}

.primary-button.compact {
    width: 100%;
    min-height: 46px;
    margin-top: 18px;
    font-size: 0.86rem;
}

.secondary-button.compact {
    min-height: 46px;
    margin-top: 18px;
    font-size: 0.86rem;
}

.benefit-list {
    display: grid;
    gap: 1px;
    max-width: 680px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.benefit-list li:last-child {
    border-bottom: 1px solid var(--border);
}

.benefit-number {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
}

.benefit-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text);
    font-size: 0.9rem;
}

.benefit-list li > span:last-child {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.trust-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: var(--text-faint);
    font-size: 0.74rem;
}

.trust-note svg {
    width: 19px;
    height: 19px;
    color: var(--brand);
    flex: 0 0 19px;
}

.surface {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.status-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
}

.status-card::before,
.timeline-card::before {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand), var(--gold), transparent);
    content: "";
}

.card-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.card-heading h2 {
    margin: 0 0 3px;
    font-size: 1.14rem;
}

.card-heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.card-icon,
.action-icon {
    width: 40px;
    height: 40px;
    display: grid;
    flex: 0 0 40px;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 11px;
    color: var(--brand-bright);
    background: var(--brand-soft);
}

.card-icon svg,
.action-icon svg {
    width: 20px;
    height: 20px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
    border-radius: 999px;
    color: var(--gold-bright);
    background: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 700;
}

.mini-status-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mini-status-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-muted);
}

.mini-status-list li.is-current {
    border-color: var(--border-strong);
    background: var(--brand-soft);
}

.mini-status-list li.is-done .status-marker,
.mini-status-list li.is-current .status-marker {
    background: var(--brand);
    box-shadow: 0 0 0 5px var(--brand-soft);
}

.mini-status-list strong,
.mini-status-list span {
    display: block;
}

.mini-status-list strong {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 0.88rem;
}

.mini-status-list span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.section-heading {
    max-width: 660px;
    margin: 0 auto 24px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-size: 2.1rem;
}

.section-heading p {
    margin: 12px auto 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.section-heading.split {
    max-width: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    text-align: left;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.amazon-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 16px;
}

.amazon-card {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 22px;
}

.amazon-card.featured-product {
    min-height: 300px;
}

.product-media {
    min-height: 210px;
    display: grid;
    place-items: center;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        linear-gradient(135deg, var(--surface-muted), transparent),
        linear-gradient(315deg, var(--gold-soft), transparent 62%);
    overflow: hidden;
}

.product-media::before {
    position: absolute;
    inset: 18px;
    border: 1px solid color-mix(in srgb, var(--gold) 26%, transparent);
    border-radius: 14px;
    content: "";
}

.product-media img {
    width: min(138px, 72%);
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
}

.product-media span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
    border-radius: 999px;
    color: var(--gold-bright);
    background: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 700;
}

.compact-media {
    min-height: 178px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.product-info p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-meta li {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
    border-radius: 999px;
    color: var(--gold-bright);
    background: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 700;
}

.service-grid {
    width: min(820px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 auto;
}

.product-list {
    width: min(960px, 100%);
    display: grid;
    gap: 12px;
    margin: 0 auto;
}

.product-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) minmax(180px, auto);
    align-items: center;
    gap: 18px;
    padding: 18px;
}

.product-row-featured {
    border-color: var(--border-strong);
    background:
        linear-gradient(135deg, var(--brand-soft), transparent 48%),
        var(--surface);
}

.product-number {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--gold-bright);
    background: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 700;
}

.product-copy h3 {
    margin-bottom: 7px;
    font-size: 1.15rem;
}

.product-copy p {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.product-type {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 4px 9px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--brand-bright);
    background: var(--brand-soft);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-type.red {
    border-color: rgba(198, 82, 84, 0.36);
    color: #ff9a9d;
    background: rgba(198, 82, 84, 0.1);
}

[data-theme="light"] .product-type.red {
    color: #9b292c;
}

.product-type.green {
    border-color: rgba(64, 166, 112, 0.36);
    color: #82e2a6;
    background: rgba(64, 166, 112, 0.1);
}

[data-theme="light"] .product-type.green {
    color: #197243;
}

.product-type.blue {
    border-color: rgba(82, 128, 213, 0.36);
    color: #9fbaff;
    background: rgba(82, 128, 213, 0.1);
}

[data-theme="light"] .product-type.blue {
    color: #294f9b;
}

.product-type.soap {
    border-color: color-mix(in srgb, var(--gold) 44%, transparent);
    color: var(--gold-bright);
    background: var(--gold-soft);
}

.product-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.product-facts div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 26px;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    background: var(--surface-muted);
    font-size: 0.7rem;
}

.product-facts dt,
.product-facts dd {
    margin: 0;
}

.product-facts dt {
    color: var(--text-faint);
    font-weight: 700;
    text-transform: uppercase;
}

.product-facts dd {
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.download-panel {
    width: min(820px, 100%);
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
    padding: 22px;
}

.download-panel h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.download-panel p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.action-card {
    padding: 22px;
}

.action-card h3 {
    margin: 16px 0 8px;
    font-size: 1.12rem;
}

.action-card p {
    min-height: 78px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.text-link {
    width: fit-content;
    border: 0;
    color: var(--brand-bright);
    background: transparent;
    cursor: pointer;
    font-size: 0.78rem;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--gold-bright);
    outline: none;
}

.as-button {
    padding: 0;
}

.timeline-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
}

.status-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.status-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    background: var(--surface-muted);
}

.status-list li:first-child {
    border-radius: 15px 0 0 15px;
}

.status-list li:last-child {
    border-radius: 0 15px 15px 0;
}

.status-marker {
    width: 14px;
    height: 14px;
    margin-top: 5px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: transparent;
}

.status-list li.is-done .status-marker,
.status-list li.is-current .status-marker {
    background: var(--brand);
    box-shadow: 0 0 0 5px var(--brand-soft);
}

.status-list li.is-current {
    border-color: var(--border-strong);
    background: var(--brand-soft);
}

.status-list strong,
.status-list span {
    display: block;
}

.status-list strong {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 0.88rem;
}

.status-list span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.faq-list {
    width: min(820px, 100%);
    display: grid;
    gap: 10px;
    margin: 0 auto;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 20px;
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

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

.faq-item summary::after {
    width: 24px;
    height: 24px;
    display: grid;
    flex: 0 0 24px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--brand-bright);
    content: "+";
}

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

.faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.site-footer {
    border-top: 1px solid var(--border);
}

.footer-inner {
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--text-faint);
    font-size: 0.74rem;
}

.footer-inner p {
    margin: 0 0 10px;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-inner a {
    text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
    color: var(--brand-bright);
    outline: none;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-row a {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--surface-muted);
}

.social-row img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: invert(1) brightness(1.4);
    opacity: 0.8;
}

[data-theme="light"] .social-row img {
    filter: none;
    opacity: 0.64;
}

.text-social {
    width: auto !important;
    min-width: 50px;
    padding: 0 8px;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
}

.legal-main {
    width: min(840px, calc(100% - 40px));
    min-height: calc(100vh - 182px);
    display: block;
}

.legal-card {
    position: relative;
    padding: 34px;
    overflow: hidden;
}

.legal-card::before {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand), var(--gold), transparent);
    content: "";
}

.legal-title {
    margin: 18px 0 30px;
}

.legal-title h1 {
    margin: 0;
    font-size: 2.8rem;
}

.legal-notice {
    margin-bottom: 26px;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    color: var(--brand-bright);
    background: var(--brand-soft);
    font-size: 0.8rem;
}

.legal-sections {
    display: grid;
    gap: 28px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-sections section {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border);
}

.legal-sections h2 {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1rem;
}

.legal-sections p:last-child,
.legal-sections ul:last-child {
    margin-bottom: 0;
}

.legal-sections ul {
    display: grid;
    gap: 8px;
    margin-bottom: 0;
    padding-left: 20px;
}

.legal-sections a {
    color: var(--brand-bright);
    font-weight: 700;
    text-underline-offset: 3px;
}

.legal-date {
    color: var(--text-faint);
    font-size: 0.78rem;
}

.legal-back {
    margin-top: 30px;
}

@media (max-width: 960px) {
    .hero-panel h1 {
        font-size: 3.15rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .intro-panel {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .intro-panel h1,
    .intro-copy,
    .benefit-list {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .trust-note {
        justify-content: center;
    }

    .benefit-list,
    .trust-note {
        text-align: left;
    }

    .status-card {
        width: min(560px, 100%);
        margin: 0 auto;
    }

    .amazon-grid,
    .service-grid,
    .availability-grid,
    .status-list {
        grid-template-columns: 1fr;
    }

    .amazon-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .status-list li:first-child,
    .status-list li:last-child {
        border-radius: 0;
    }

    .status-list li:first-child {
        border-radius: 15px 15px 0 0;
    }

    .status-list li:last-child {
        border-radius: 0 0 15px 15px;
    }

    .action-card p {
        min-height: 0;
    }

    .product-row {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .product-row .primary-button,
    .product-row .secondary-button {
        grid-column: 2;
        width: 100%;
    }

    .download-panel {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .download-panel .text-link {
        grid-column: 2;
    }
}

@media (max-width: 680px) {
    .header-inner,
    .footer-inner,
    .site-main,
    .legal-main {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 66px;
    }

    .brand-logo {
        width: 96px;
    }

    .brand-divider,
    .brand-product,
    .hide-mobile {
        display: none;
    }

    .site-main {
        gap: 42px;
        padding: 42px 0 54px;
    }

    .hero-panel h1,
    .intro-panel h1 {
        font-size: 2.5rem;
    }

    .section-heading h2,
    .legal-title h1 {
        font-size: 2rem;
    }

    .intro-copy {
        font-size: 0.98rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .status-card,
    .timeline-card,
    .amazon-card,
    .action-card,
    .legal-card {
        padding: 22px;
    }

    .amazon-card {
        grid-template-columns: 1fr;
    }

    .product-media,
    .compact-media {
        min-height: 190px;
    }

    .secondary-button.compact {
        width: 100%;
    }

    .product-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-row .primary-button,
    .product-row .secondary-button {
        grid-column: auto;
    }

    .product-number {
        width: fit-content;
        min-width: 38px;
    }

    .download-panel {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .download-panel .text-link {
        grid-column: auto;
    }

    .section-heading.split,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-inner {
        padding: 22px 0;
    }

    .footer-inner nav {
        justify-content: flex-start;
        gap: 12px 16px;
    }

    .faq-item summary {
        align-items: flex-start;
        padding-top: 17px;
        padding-bottom: 17px;
    }
}

@media (max-width: 420px) {
    .hero-panel h1,
    .intro-panel h1 {
        font-size: 2.15rem;
    }

    .benefit-list li {
        grid-template-columns: 34px 1fr;
    }

    .card-heading {
        align-items: flex-start;
    }
}

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