:root {
    --red: #c0272d;
    --red-dark: #96191e;
    --red-deep: #780d13;
    --red-soft: #fdecea;
    --gold: #d4a017;
    --gold-soft: #fff7df;
    --white: #ffffff;
    --ivory: #fffbf0;
    --paper: #fff8ea;
    --ink: #1c1917;
    --muted: #665f58;
    --border: #e6ded4;
    --shadow: 0 18px 50px rgba(120, 13, 19, 0.16);
    --shadow-soft: 0 14px 36px rgba(28, 25, 23, 0.1);
    --radius: 8px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

a:hover {
    color: var(--red);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--red);
    color: var(--white);
}

.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;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    background: var(--white);
    color: var(--red-dark);
    padding: 10px 14px;
    border: 1px solid var(--red);
    border-radius: var(--radius);
    font-weight: 700;
    transition: transform 160ms ease;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 14px 32px;
    color: var(--white);
    transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.force-solid {
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    border-bottom: 1px solid rgba(150, 25, 30, 0.14);
    box-shadow: 0 8px 24px rgba(28, 25, 23, 0.08);
    backdrop-filter: blur(18px);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(120, 13, 19, 0.24);
}

.brand-link strong {
    display: block;
    color: currentColor;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.1;
}

.brand-link small {
    display: block;
    color: currentColor;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    opacity: 0.78;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 750;
    color: currentColor;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.16);
    color: currentColor;
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a[aria-current="page"],
.site-header.force-solid .primary-nav a:hover,
.site-header.force-solid .primary-nav a[aria-current="page"] {
    background: var(--red-soft);
    color: var(--red-dark);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: currentColor;
    place-items: center;
    padding: 10px;
}

.site-header.is-scrolled .nav-toggle,
.site-header.force-solid .nav-toggle {
    border-color: rgba(150, 25, 30, 0.22);
    background: var(--white);
}

.nav-toggle-line {
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
    border-radius: 999px;
    transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-marketing {
    min-height: 84svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 124px 32px 54px;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(120, 13, 19, 0.92) 0%, rgba(150, 25, 30, 0.82) 34%, rgba(28, 25, 23, 0.4) 72%, rgba(28, 25, 23, 0.58) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading.light .eyebrow,
.red-band .eyebrow {
    color: #ffe8a6;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: 64px;
}

h2 {
    font-size: 42px;
}

.hero-title-line {
    display: block;
}

h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

.hero-copy {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(120, 13, 19, 0.22);
}

.button-primary:hover {
    background: var(--red-dark);
    color: var(--white);
}

.button-light {
    background: var(--white);
    color: var(--red-dark);
}

.button-light:hover {
    color: var(--red-dark);
    box-shadow: var(--shadow-soft);
}

.hero .button-primary {
    background: var(--white);
    color: var(--red-dark);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero .button-primary:hover {
    background: var(--gold-soft);
    color: var(--red-dark);
}

.hero .button-light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--white);
}

.hero .button-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    box-shadow: none;
}

.metric-strip {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    max-width: 920px;
    grid-template-columns: repeat(3, 1fr);
    margin: 56px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.metric-strip div {
    min-height: 86px;
    padding: 16px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-strip div:last-child {
    border-right: 0;
}

.metric-strip strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1;
}

.metric-strip span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.section {
    padding: 96px 32px;
}

section[id] {
    scroll-margin-top: 92px;
}

.section-heading {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading p:not(.eyebrow) {
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 18px;
}

.intro-section {
    background: var(--ivory);
}

.experience-layout {
    display: grid;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 24px;
}

.experience-copy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.timeline-item {
    position: relative;
    display: flex;
    min-height: 260px;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.timeline-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--red-soft);
    color: var(--red-dark);
    font-weight: 900;
}

.timeline-item h3 {
    margin-top: 6px;
}

.experience-outcomes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(192, 39, 45, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.62);
}

.experience-outcomes span {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: var(--radius);
    background: var(--red-soft);
    color: var(--red-dark);
    font-size: 14px;
    font-weight: 850;
    text-align: center;
}

.timeline-item p,
.feature-card p,
.screen-card p,
.support-card p,
.faq-answer p,
.privacy-note p,
.contact-copy p {
    margin: 8px 0 0;
    color: var(--muted);
}

.red-band {
    background: var(--red-dark);
    color: var(--white);
}

.red-band .section-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.feature-grid,
.support-grid {
    display: grid;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card,
.support-card {
    min-height: 248px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
}

.feature-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.feature-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: var(--radius);
    background: var(--red-soft);
    color: var(--red-dark);
}

.feature-icon.red {
    background: var(--red-soft);
    color: var(--red-dark);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.product-section {
    background: var(--paper);
}

.product-pills {
    display: flex;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.product-pills span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(192, 39, 45, 0.2);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--red-dark);
    font-weight: 800;
}

.screen-section {
    background: var(--ivory);
}

.screen-grid {
    display: grid;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.screen-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.screen-card.wide {
    grid-column: 1 / -1;
}

.screen-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top center;
    border-bottom: 1px solid var(--border);
}

.screen-card div {
    padding: 22px;
}

.cta-section {
    display: grid;
    width: calc(100% - 64px);
    max-width: var(--max-width);
    margin: 0 auto 80px;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 36px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(192, 39, 45, 0.18);
    box-shadow: var(--shadow-soft);
}

.cta-section p:not(.eyebrow) {
    margin: 12px 0 0;
    color: var(--muted);
    max-width: 680px;
}

.support-hero {
    padding: 132px 32px 72px;
    background:
        linear-gradient(90deg, rgba(120, 13, 19, 0.94), rgba(192, 39, 45, 0.92)),
        url("../images/product-catalog.png") center / cover;
    color: var(--white);
}

.support-hero-inner {
    display: grid;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    grid-template-columns: 1fr 260px;
    gap: 36px;
    align-items: end;
}

.support-hero h1 {
    font-size: 56px;
}

.support-hero p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
}

.support-badge {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    text-align: center;
    backdrop-filter: blur(16px);
}

.support-badge img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
}

.support-badge span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.policy-hero {
    padding: 132px 32px 76px;
    background:
        linear-gradient(100deg, rgba(120, 13, 19, 0.96), rgba(192, 39, 45, 0.9)),
        url("../images/ai-assistant.png") center / cover;
    color: var(--white);
}

.policy-hero-inner {
    display: grid;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 36px;
    align-items: end;
}

.policy-hero h1 {
    max-width: 780px;
    font-size: 56px;
}

.policy-hero p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
}

.policy-summary {
    display: grid;
    gap: 8px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.policy-summary span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.policy-summary strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.1;
}

.policy-summary p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.support-overview {
    background: var(--ivory);
}

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

.support-card {
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.contact-section {
    background: var(--paper);
}

.contact-panel {
    display: grid;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    grid-template-columns: 0.82fr 1fr;
    gap: 28px;
    align-items: start;
}

.contact-copy,
.support-form,
.privacy-note > div {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-copy {
    padding: 32px;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin: 28px 0 0;
}

.contact-row {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.contact-label {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-row > a,
.contact-row > span:not(.contact-label) {
    display: inline-block;
    margin-top: 4px;
    font-weight: 800;
}

.contact-list a {
    color: var(--red-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.support-form {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.support-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    padding: 12px 14px;
    outline: none;
}

.support-form textarea {
    resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(192, 39, 45, 0.14);
}

.form-submit {
    width: 100%;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.policy-section {
    background: var(--ivory);
}

.policy-layout {
    display: grid;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.policy-toc {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.policy-toc a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.policy-toc a:hover {
    background: var(--red-soft);
    color: var(--red-dark);
}

.policy-content {
    display: grid;
    gap: 18px;
}

.policy-card,
.policy-note {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.policy-card {
    padding: 30px;
    scroll-margin-top: 100px;
}

.policy-card h2 {
    font-size: 32px;
}

.policy-card p:not(.eyebrow) {
    margin: 14px 0 0;
    color: var(--muted);
}

.policy-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.policy-list li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
}

.policy-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--red);
}

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

.service-grid div {
    padding: 18px;
    border: 1px solid rgba(192, 39, 45, 0.18);
    border-radius: var(--radius);
    background: var(--red-soft);
}

.service-grid strong,
.service-grid span {
    display: block;
}

.service-grid strong {
    color: var(--red-dark);
}

.service-grid span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.policy-contact-card .contact-list {
    margin-top: 20px;
}

.policy-note {
    display: flex;
    gap: 10px;
    padding: 18px 20px;
    color: var(--muted);
}

.policy-note strong {
    color: var(--red-dark);
}

.faq-section {
    background: var(--ivory);
}

.faq-list {
    display: grid;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(28, 25, 23, 0.05);
}

.faq-question {
    display: flex;
    width: 100%;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 18px 22px;
    text-align: left;
    font-weight: 850;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 2px;
    width: 14px;
    height: 2px;
    background: var(--red-dark);
}

.faq-icon::after {
    transform: rotate(90deg);
    transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: rotate(0deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 180ms ease;
}

.faq-answer > p {
    overflow: hidden;
    margin: 0;
    padding: 0 22px;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
    padding-bottom: 22px;
}

.privacy-note {
    padding-top: 0;
}

.privacy-note > div {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

.privacy-note-action {
    margin-top: 22px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 28px;
    align-items: center;
    padding: 34px 32px;
    background: var(--red-deep);
    color: var(--white);
}

.site-footer strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.site-footer p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
    display: flex;
    gap: 16px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-meta {
    font-size: 14px;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 70px;
        padding: 12px 20px;
    }

    .nav-toggle {
        display: grid;
    }

    .primary-nav {
        position: fixed;
        top: 70px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 4px;
        padding: 12px;
        border: 1px solid rgba(150, 25, 30, 0.14);
        border-radius: var(--radius);
        background: var(--white);
        color: var(--ink);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform 160ms ease, opacity 160ms ease;
    }

    .primary-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav a:hover,
    .primary-nav a[aria-current="page"] {
        background: var(--red-soft);
        color: var(--red-dark);
    }

    .hero-marketing {
        min-height: auto;
        padding: 108px 24px 42px;
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 34px;
    }

    .hero-copy {
        font-size: 18px;
    }

    .metric-strip {
        width: calc(100% - 32px);
        margin-top: 42px;
    }

    .experience-layout,
    .contact-panel,
    .support-hero-inner,
    .policy-hero-inner,
    .policy-layout,
    .cta-section {
        grid-template-columns: 1fr;
    }

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

    .feature-grid {
        gap: 14px;
    }

    .experience-copy {
        gap: 14px;
    }

    .timeline-item {
        min-height: 240px;
        padding: 24px;
    }

    .support-badge {
        justify-self: start;
        width: min(260px, 100%);
    }

    .policy-summary {
        justify-self: start;
        width: min(310px, 100%);
    }

    .policy-toc {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

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

    .site-footer {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 15px;
    }

    .brand-link small {
        display: none;
    }

    .brand-link strong {
        font-size: 20px;
    }

    .hero-marketing {
        min-height: auto;
        align-items: stretch;
        padding: 96px 18px 36px;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(120, 13, 19, 0.94) 0%, rgba(120, 13, 19, 0.72) 58%, rgba(28, 25, 23, 0.36) 100%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05));
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 18px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .metric-strip {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 28px;
    }

    .metric-strip div {
        min-height: 58px;
        padding: 12px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .metric-strip div:last-child {
        border-bottom: 0;
    }

    .metric-strip strong {
        font-size: 26px;
    }

    .section {
        padding: 68px 18px;
    }

    .section-heading {
        margin-bottom: 34px;
        text-align: left;
    }

    .section-heading p:not(.eyebrow) {
        font-size: 16px;
    }

    .timeline-item {
        min-height: auto;
        gap: 14px;
        padding: 20px;
    }

    .experience-copy,
    .experience-outcomes {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .support-grid,
    .screen-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .support-card {
        min-height: auto;
    }

    .screen-card.wide {
        grid-column: auto;
    }

    .screen-card img {
        height: 320px;
    }

    .cta-section {
        width: calc(100% - 36px);
        margin-bottom: 58px;
        padding: 24px;
    }

    .support-hero {
        padding: 112px 18px 58px;
    }

    .policy-hero {
        padding: 112px 18px 58px;
    }

    .support-hero h1 {
        font-size: 36px;
    }

    .policy-hero h1 {
        font-size: 36px;
    }

    .support-hero p:not(.eyebrow) {
        font-size: 16px;
    }

    .policy-hero p:not(.eyebrow) {
        font-size: 16px;
    }

    .contact-copy,
    .support-form,
    .policy-card,
    .privacy-note > div {
        padding: 22px;
    }

    .policy-card h2 {
        font-size: 26px;
    }

    .policy-toc {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .policy-note {
        display: grid;
    }

    .site-footer {
        padding: 30px 18px;
    }

    .site-footer nav {
        flex-wrap: wrap;
    }
}

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