:root {
    --bg: #f6f7f9;
    --ink: #12161f;
    --muted: #5d6675;
    --soft: #ffffff;
    --soft-2: #eceff4;
    --line: rgba(18, 22, 31, 0.12);
    --blue: #1f6feb;
    --blue-dark: #1557bd;
    --green: #17a06b;
    --amber: #b7791f;
    --shadow: 0 24px 70px rgba(18, 22, 31, 0.12);
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 247, 249, 0.96)),
        radial-gradient(circle at 18% 5%, rgba(31, 111, 235, 0.18), transparent 30%),
        radial-gradient(circle at 86% 20%, rgba(23, 160, 107, 0.14), transparent 28%),
        var(--bg);
}

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

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

.page-shell {
    min-height: 100vh;
    overflow: hidden;
}

.site-header,
.hero,
.problem-band,
.flow-grid,
.benefits,
.media-section,
.proof-strip,
.closing-cta {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0 18px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    width: clamp(112px, 13vw, 156px);
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(18, 22, 31, 0.08));
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 40px rgba(18, 22, 31, 0.08);
    backdrop-filter: blur(18px);
}

nav a {
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

nav a:hover,
nav a:focus-visible {
    color: var(--ink);
    background: rgba(31, 111, 235, 0.1);
    outline: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: 0;
    padding: 28px 0 54px;
}

.hero-copy {
    max-width: 610px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 12px;
    font-size: clamp(3.4rem, 6.5vw, 5.8rem);
    line-height: 0.86;
    letter-spacing: 0;
}

.hero-line {
    margin-bottom: 20px;
    color: #222a36;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    line-height: 1.15;
    font-weight: 800;
}

.hero-text {
    max-width: 570px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

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

.version-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 650;
}

.product-hunt-badge {
    display: inline-block;
    margin-top: 22px;
}

.product-hunt-badge img {
    width: 250px;
    height: 54px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    padding: 0 18px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.button.primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 16px 34px rgba(31, 111, 235, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
    background: var(--blue-dark);
}

.button.secondary {
    color: var(--ink);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.hero-stage {
    position: relative;
}

.hero-video-placeholder {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

.hero-video {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #dce7fa;
}

.video-poster,
.desktop-frame {
    position: relative;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 239, 244, 0.86)),
        linear-gradient(150deg, #dce7fa, #f5f8fc);
    box-shadow: var(--shadow);
}

.video-poster::before,
.desktop-frame::before {
    content: "";
    position: absolute;
    inset: 74px 24px 24px;
    border: 1px solid rgba(18, 22, 31, 0.08);
    border-radius: 20px;
    background:
        linear-gradient(90deg, rgba(18, 22, 31, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(18, 22, 31, 0.05) 1px, transparent 1px),
        rgba(255, 255, 255, 0.44);
    background-size: 48px 48px;
}

.hero-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 74px;
    height: 74px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 18px 36px rgba(31, 111, 235, 0.3);
}

.hero-play span {
    position: absolute;
    top: 24px;
    left: 30px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 18px solid #fff;
}

.hero-video-caption {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 18px;
    padding: 18px 22px 20px;
}

.hero-video-caption strong {
    font-size: 1.05rem;
}

.hero-video-caption span {
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-supporting-views {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.hero-supporting-view {
    display: grid;
    gap: 0;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 30px rgba(18, 22, 31, 0.08);
}

.hero-supporting-view img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    background: #0d1427;
}

.supporting-image-link {
    display: block;
    cursor: zoom-in;
}

.supporting-image-link:hover img {
    filter: brightness(1.04);
}

.supporting-image-link:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 10px;
}

.hero-supporting-view figcaption {
    display: grid;
    gap: 5px;
    padding: 16px 4px 2px;
}

.hero-supporting-view strong {
    font-size: 0.98rem;
}

.hero-supporting-view span {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.traffic-lights {
    display: flex;
    gap: 8px;
    margin-bottom: 34px;
}

.traffic-lights span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.traffic-lights span:nth-child(1) {
    background: #ff5f57;
}

.traffic-lights span:nth-child(2) {
    background: #ffbd2e;
}

.traffic-lights span:nth-child(3) {
    background: #28c840;
}

.checkpoint-card {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    margin: 52px auto 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 54px rgba(18, 22, 31, 0.16);
}

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

.app-icon,
.cta-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(18, 22, 31, 0.12);
}

.card-heading p,
.briefing span,
.next-step span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-heading strong {
    font-size: 1.12rem;
}

.briefing,
.next-step {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    background: #fbfcfe;
}

.briefing {
    margin-bottom: 12px;
}

.briefing p,
.next-step p {
    margin-bottom: 0;
    color: #2d3542;
    line-height: 1.55;
}

.next-step {
    border-color: rgba(31, 111, 235, 0.18);
    background: rgba(31, 111, 235, 0.07);
}

.saved-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.saved-items span,
.proof-strip p {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.problem-band {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
    gap: 34px;
    align-items: end;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 50px 0;
}

.audience-stories {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    padding: 34px 0 72px;
}

.audience-stories .section-heading {
    margin-bottom: 26px;
}

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

.audience-stories-later .story-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 42px rgba(18, 22, 31, 0.08);
}

.story-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.story-image-link {
    display: block;
    cursor: zoom-in;
}

.story-image-link:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: -3px;
}

.story-image-link:hover img {
    filter: brightness(1.04);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(8, 12, 20, 0.86);
}

.image-lightbox[hidden] {
    display: none;
}

.image-lightbox img {
    width: min(1100px, 100%);
    max-height: calc(100vh - 56px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.image-lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 1;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    background: rgba(18, 22, 31, 0.64);
    font: 2rem/1 sans-serif;
    cursor: pointer;
}

.image-lightbox-close:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.story-card > div {
    padding: 18px 20px 20px;
}

.story-card strong {
    font-size: 1.08rem;
}

.story-card p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.overview-visual {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    padding: 28px 0 64px;
}

.overview-visual .section-heading {
    margin-bottom: 24px;
}

.overview-visual-link {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(18, 22, 31, 0.16);
    border-radius: 24px;
    background: #0d1427;
    box-shadow: var(--shadow);
}

.overview-visual-link img {
    width: 100%;
    height: auto;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.problem-band > p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

.return-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    padding: 34px 0 18px;
}

.return-visual-card {
    margin: 0;
}

.return-visual-link {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(18, 22, 31, 0.16);
    border-radius: 24px;
    background: #0d1427;
    box-shadow: var(--shadow);
}

.return-visual-link img {
    width: 100%;
    height: auto;
}

.return-visual-card figcaption {
    display: grid;
    gap: 5px;
    padding: 16px 4px 0;
}

.return-visual strong {
    font-size: 1.12rem;
}

.return-visual span {
    color: var(--muted);
    line-height: 1.55;
}

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

.flow-grid article,
.benefit-list article,
.demo-placeholder {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 42px rgba(18, 22, 31, 0.08);
}

.flow-grid article {
    padding: 24px;
}

.step-number {
    display: block;
    margin-bottom: 30px;
    color: var(--blue);
    font-weight: 900;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.22rem;
}

.flow-grid p,
.benefit-list p,
.media-section p,
.demo-placeholder p,
.closing-cta p {
    color: var(--muted);
    line-height: 1.7;
}

.benefits,
.media-section {
    padding: 64px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 28px;
}

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

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

.benefit-list article {
    padding: 24px;
}

.benefit-list article:nth-child(1) {
    border-top: 4px solid var(--blue);
}

.benefit-list article:nth-child(2) {
    border-top: 4px solid var(--green);
}

.benefit-list article:nth-child(3) {
    border-top: 4px solid var(--amber);
}

.benefit-list article:nth-child(4) {
    border-top: 4px solid #7c5cff;
}

.media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

.demo-stack {
    display: grid;
    gap: 18px;
}

.workflow-panel {
    min-height: 478px;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(22px, 4vw, 34px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 251, 0.92)),
        #fff;
    box-shadow: var(--shadow);
}

.workflow-topline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(18, 22, 31, 0.12);
}

.workflow-topline p,
.workspace-snapshot span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workflow-topline strong {
    font-size: 1.18rem;
}

.workspace-snapshot {
    display: grid;
    gap: 12px;
}

.workspace-snapshot div {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.74);
}

.workspace-snapshot div:nth-child(3) {
    border-color: rgba(31, 111, 235, 0.18);
    background: rgba(31, 111, 235, 0.07);
}

.workspace-snapshot p {
    margin: 0;
    color: #2d3542;
    line-height: 1.6;
}

.feature-gallery {
    display: grid;
    gap: 14px;
}

.feature-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(236, 239, 244, 0.72);
}

.feature-tabs-label {
    margin: 0 0 2px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-tab {
    border: 0;
    border-radius: 10px;
    padding: 11px 15px;
    color: var(--muted);
    background: transparent;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
}

.feature-tab:hover,
.feature-tab:focus-visible,
.feature-tab.is-active {
    color: var(--ink);
    background: #fff;
    box-shadow: 0 5px 14px rgba(18, 22, 31, 0.1);
    outline: none;
}

.feature-viewer {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 42px rgba(18, 22, 31, 0.08);
}

.feature-image-wrap {
    display: grid;
    place-items: center;
    min-height: 360px;
    padding: clamp(16px, 3vw, 28px);
    background: #f4f6fa;
}

.feature-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 520px;
}

.feature-viewer figcaption {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 5px;
    padding: 16px 18px 18px;
}

.feature-viewer figcaption div {
    display: grid;
    gap: 5px;
}

.feature-viewer figcaption strong {
    font-size: 1.08rem;
}

.feature-viewer figcaption span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.feature-viewer figcaption a {
    color: var(--blue);
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.demo-placeholder {
    min-height: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(135deg, rgba(31, 111, 235, 0.09), rgba(255, 255, 255, 0.86)),
        #fff;
}

.play-circle {
    width: 58px;
    height: 58px;
    margin-bottom: auto;
    border: 1px solid rgba(31, 111, 235, 0.2);
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 14px 30px rgba(31, 111, 235, 0.2);
    position: relative;
}

.play-circle::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 23px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 15px solid #fff;
}

.demo-placeholder p {
    margin-bottom: 0;
}

.video-placeholder {
    min-height: 478px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(22px, 4vw, 34px);
    background:
        linear-gradient(135deg, rgba(31, 111, 235, 0.1), rgba(255, 255, 255, 0.9)),
        #fff;
    box-shadow: var(--shadow);
}

.video-placeholder .play-circle {
    margin-bottom: auto;
}

.video-placeholder h3 {
    max-width: 420px;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.video-placeholder p {
    max-width: 480px;
    margin-bottom: 0;
}

.video-meta {
    margin-top: 18px;
    color: var(--blue) !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proof-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 18px 0 54px;
}

.proof-strip p {
    margin: 0;
}

.download-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
    gap: 26px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 56px clamp(24px, 4vw, 52px);
    background: rgba(255, 255, 255, 0.46);
}

.download-panel h2 {
    margin-bottom: 18px;
}

.download-panel > div > p:last-child {
    max-width: 640px;
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.7;
}

.download-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.download-card .button {
    grid-column: 1 / -1;
    width: 100%;
}

.download-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(18, 22, 31, 0.12);
}

.download-card h3 {
    margin-bottom: 4px;
}

.download-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 650;
}

.closing-cta {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 74px 20px 86px;
}

.closing-cta .cta-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 18px;
}

.closing-cta h2 {
    margin-bottom: 18px;
}

.closing-cta p {
    max-width: 650px;
    margin-bottom: 26px;
    font-size: 1.08rem;
}

.newsletter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 42px;
    align-items: center;
    margin: 0 0 84px;
    padding: 42px clamp(24px, 5vw, 64px);
    border: 1px solid rgba(18, 22, 31, 0.1);
    border-radius: 28px;
    background: #f4f0e8;
}

.newsletter-panel .section-heading {
    margin: 0;
}

.newsletter-form {
    width: 100%;
}

.newsletter-form .formkit-fields {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.newsletter-form .formkit-field {
    flex: 1;
}

.newsletter-form .formkit-input {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    border: 1px solid rgba(18, 22, 31, 0.18);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.newsletter-form .formkit-submit {
    min-height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    background: var(--blue-dark);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(21, 87, 189, 0.24);
}

.newsletter-form .formkit-submit:hover,
.newsletter-form .formkit-submit:focus-visible {
    filter: brightness(0.92);
}

.newsletter-confirmation {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.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;
}

@media (max-width: 980px) {
    .hero,
    .problem-band,
    .section-heading,
    .media-grid,
    .download-panel,
    .newsletter-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 24px;
    }

    .hero-copy {
        max-width: none;
    }

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

    .audience-stories-later .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    nav {
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
    }

    nav a {
        white-space: nowrap;
    }

    h1 {
        font-size: clamp(3.2rem, 17vw, 4.8rem);
    }

    .hero-line {
        font-size: 1.42rem;
    }

    .video-poster,
    .desktop-frame {
        min-height: 460px;
        padding: 18px;
        border-radius: 22px;
    }

    .video-poster::before,
    .desktop-frame::before {
        inset: 62px 18px 18px;
    }

    .checkpoint-card {
        margin-top: 34px;
        padding: 18px;
    }

    .flow-grid,
    .benefit-list,
    .story-grid,
    .feature-gallery {
        grid-template-columns: 1fr;
    }

    .feature-viewer figcaption {
        grid-template-columns: 1fr;
    }

    .feature-viewer figcaption a {
        white-space: normal;
    }

    .newsletter-form .formkit-fields {
        flex-direction: column;
    }

    .flow-grid {
        padding-top: 38px;
    }

    .audience-stories-later .story-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding-top: 12px;
    }

    .hero-stage {
        order: -1;
        width: 100%;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-copy .eyebrow {
        margin-bottom: 10px;
    }

    .hero-text {
        margin-bottom: 22px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-supporting-view {
        gap: 0;
    }

    .return-visual {
        grid-template-columns: 1fr;
    }

}
