:root {
    color-scheme: dark;
    --bg: #101412;
    --bg-soft: #151a18;
    --panel: #181f1c;
    --panel-strong: #202823;
    --text: #f7f3ea;
    --muted: #c8cbc2;
    --soft: #929c94;
    --line: rgba(247, 243, 234, 0.14);
    --line-strong: rgba(247, 243, 234, 0.22);
    --accent: #72c7a8;
    --accent-strong: #a6e8cf;
    --warm: #e6bd76;
    --ink: #0d1110;
}

* {
    box-sizing: border-box;
}

img,
svg {
    max-width: 100%;
}

html {
    background: var(--bg);
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -56px;
    z-index: 100;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--accent-strong);
    font-weight: 800;
    text-decoration: none;
    transition: top 0.16s ease;
}

.skip-link:focus {
    top: 12px;
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #111614 0%, #141917 50%, #0d1110 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-strong);
}

.site-shell {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 14px max(20px, calc((100vw - 1120px) / 2));
    border-bottom: 1px solid rgba(247, 243, 234, 0.08);
    background: rgba(16, 20, 18, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
}

.brand-lockup img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.brand-lockup span {
    display: block;
    line-height: 1.08;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 0.96rem;
}

.top-nav a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.12s ease;
}

.top-nav a:hover,
.footer-links a:hover {
    color: var(--text);
}

.top-nav a[aria-current="true"] {
    color: var(--accent-strong);
}

.top-nav a.nav-download[aria-current="true"] {
    color: var(--ink);
}

.top-nav a:focus-visible,
.footer-links a:focus-visible,
.brand-lockup:focus-visible {
    outline: 2px solid var(--accent-strong);
    outline-offset: 4px;
    border-radius: 6px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 52px;
    align-items: center;
    padding: 38px 0 48px;
}

.compare-hero {
    align-items: stretch;
    padding-bottom: 58px;
}

.hero-text {
    max-width: 750px;
    min-width: 0;
}

.eyebrow,
.panel-kicker {
    margin: 0 0 14px;
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.panel-kicker {
    display: block;
    margin-bottom: 8px;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.07;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

h1 {
    max-width: 720px;
    font-size: 4.35rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.18rem;
}

.hero-copy {
    margin: 24px 0 0;
    max-width: 700px;
    color: var(--muted);
    font-size: 1.24rem;
}

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

.subtle-actions {
    margin-top: 32px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.14s ease, filter 0.14s ease, background 0.14s ease;
}

.button.primary {
    border-color: transparent;
    color: var(--ink);
    background: var(--accent);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.04);
}

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

.button.primary:hover {
    filter: brightness(1.09);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.09);
}

.product-surface,
.comparison-summary {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.app-icon-card,
.signal-panel,
.mini-card,
.feature,
.module-grid article,
.plan-stack article,
.library-group,
.library-list article,
.pricing-grid article,
.tier-cards article,
.workflow-list,
.decision-card,
.feature-group,
.comparison-summary,
.comparison-grid article,
.tool-fit-grid article,
.tool-fit-highlight,
.recommendation-panel,
.support-panel {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(24, 31, 28, 0.78);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.app-icon-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
}

.app-icon-card img {
    width: 72px;
    height: 72px;
    border-radius: 20px;
}

.app-icon-card strong {
    display: block;
    font-size: 1.16rem;
    line-height: 1.28;
}

.app-icon-card span,
.mini-card span,
.workflow-list span {
    display: block;
    margin-top: 6px;
    color: var(--soft);
}

.signal-panel {
    padding: 18px;
}

.signal-title {
    display: block;
    max-width: 520px;
    color: var(--text);
    font-size: 1.24rem;
    font-weight: 850;
    line-height: 1.2;
}

.signal-copy {
    margin: 10px 0 0;
    max-width: 560px;
    color: var(--muted);
}

.challenge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
}

.challenge-grid article {
    min-height: 104px;
    padding: 14px;
    border: 1px solid rgba(114, 199, 168, 0.15);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(114, 199, 168, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.026);
}

.challenge-grid strong {
    display: block;
    color: var(--accent-strong);
    font-size: 0.98rem;
    line-height: 1.2;
}

.challenge-grid p {
    margin: 7px 0 0;
    color: var(--soft);
    font-size: 0.9rem;
    line-height: 1.42;
}

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

.mini-card {
    padding: 16px;
}

.mini-card strong,
.plan-stack strong,
.workflow-list strong,
.library-heading span,
.module-grid h3,
.library-list h3,
.comparison-grid h3 {
    color: var(--warm);
}

.section {
    --section-rgb: 114, 199, 168;
    position: relative;
    isolation: isolate;
    padding: 66px 0;
    border-top: 1px solid var(--line);
}

.page-surface {
    --section-rgb: 114, 199, 168;
    position: relative;
    isolation: isolate;
}

.section::before,
.page-surface::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background:
        linear-gradient(180deg, rgba(var(--section-rgb), 0.042), rgba(var(--section-rgb), 0.014) 62%, transparent 100%),
        linear-gradient(90deg, rgba(var(--section-rgb), 0.052), transparent 42%, rgba(255, 255, 255, 0.012));
    pointer-events: none;
}

.section::after,
.page-surface::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--section-rgb), 0.38), rgba(247, 243, 234, 0.05) 62%, transparent);
    pointer-events: none;
}

.section > *,
.page-surface > * {
    position: relative;
    z-index: 2;
}

.section-tone-features {
    --section-rgb: 114, 199, 168;
}

.section-tone-screens {
    --section-rgb: 153, 97, 235;
}

.section-tone-progress {
    --section-rgb: 230, 189, 118;
}

.section-tone-plans {
    --section-rgb: 114, 199, 168;
}

.section-tone-tools {
    --section-rgb: 82, 179, 250;
}

.section-tone-compare {
    --section-rgb: 153, 97, 235;
}

.section-tone-support {
    --section-rgb: 114, 199, 168;
}

.section-tone-quiet {
    --section-rgb: 230, 189, 118;
}

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

.compact-section {
    padding-top: 64px;
}

.section h2 {
    max-width: 840px;
}

.section > h2,
.feature-subsection h2,
.feature-deep-dive h2 {
    color: var(--text);
    color: color-mix(in srgb, rgb(var(--heading-rgb, var(--section-rgb))) 36%, var(--text));
}

.section-lede {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.feature-grid,
.module-grid,
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

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

.feature,
.module-grid article,
.comparison-grid article {
    min-height: 176px;
    padding: 22px;
}

.feature p,
.module-grid p,
.library-list p,
.tier-cards p,
.comparison-grid p {
    margin: 12px 0 0;
    color: var(--muted);
}

.plan-stack {
    display: grid;
    gap: 14px;
}

.feature-subsection,
.feature-deep-dive {
    --heading-rgb: var(--section-rgb);
    --panel-rgb: var(--heading-rgb);
    padding: 28px;
    border: 1px solid rgba(var(--panel-rgb), 0.16);
    background:
        linear-gradient(145deg, rgba(var(--panel-rgb), 0.072), rgba(255, 255, 255, 0.018) 42%, transparent 100%),
        rgba(255, 255, 255, 0.014);
}

.feature-deep-dive {
    margin-top: 24px;
}

#what-it-is-for-feature {
    --heading-rgb: 114, 199, 168;
    --panel-rgb: 114, 199, 168;
}

#pocket-producer-feature {
    --heading-rgb: 82, 179, 250;
    --panel-rgb: 82, 179, 250;
}

#writing-plans-feature {
    --heading-rgb: 230, 189, 118;
    --panel-rgb: 230, 189, 118;
}

#treasure-map-songbook-feature {
    --heading-rgb: 71, 209, 191;
    --panel-rgb: 71, 209, 191;
}

.plan-stack article {
    padding: 18px;
}

.plan-stack span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
}

.library-groups {
    display: grid;
    gap: 22px;
    margin-top: 38px;
}

.library-group {
    --family-rgb: 114, 199, 168;
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-color: rgba(var(--family-rgb), 0.22);
    background:
        linear-gradient(90deg, rgba(var(--family-rgb), 0.12), rgba(24, 31, 28, 0.76) 34%),
        rgba(24, 31, 28, 0.78);
}

.library-group[open] {
    border-color: rgba(var(--family-rgb), 0.34);
}

.library-group::before,
.feature-group::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: rgba(var(--family-rgb), 0.72);
}

.family-plan {
    --family-rgb: 114, 199, 168;
}

.family-generate {
    --family-rgb: 250, 148, 38;
}

.family-shape {
    --family-rgb: 82, 179, 250;
}

.family-musicalize {
    --family-rgb: 71, 209, 191;
}

.family-improve {
    --family-rgb: 235, 107, 140;
}

.family-story {
    --family-rgb: 153, 97, 235;
}

.family-commercial {
    --family-rgb: 242, 209, 51;
}

.library-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: baseline;
    cursor: pointer;
    list-style: none;
}

.library-heading::-webkit-details-marker {
    display: none;
}

.library-heading::marker {
    content: "";
}

.library-heading::after {
    content: "+";
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(var(--family-rgb), 0.36);
    border-radius: 999px;
    color: rgb(var(--family-rgb));
    background: rgba(var(--family-rgb), 0.08);
    font-size: 1.08rem;
    font-weight: 850;
    line-height: 1;
}

.library-group[open] .library-heading {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.library-group[open] .library-heading::after {
    content: "-";
}

.library-heading:focus-visible {
    outline: 2px solid rgba(var(--family-rgb), 0.82);
    outline-offset: 6px;
    border-radius: 8px;
}

.library-heading span {
    color: rgb(var(--family-rgb));
    font-size: 1.08rem;
    font-weight: 850;
}

.library-heading small {
    max-width: 520px;
    color: var(--soft);
    font-size: 0.9rem;
    line-height: 1.45;
}

.library-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.library-list article {
    min-height: 132px;
    padding: 16px;
    border-color: rgba(var(--family-rgb), 0.13);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
}

.library-list h3 {
    font-size: 1rem;
    line-height: 1.18;
}

.library-list p {
    font-size: 0.9rem;
    line-height: 1.52;
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.pricing-grid article {
    display: flex;
    flex-direction: column;
    min-height: 290px;
    padding: 24px;
}

.pricing-grid h3 {
    color: var(--warm);
    font-size: 1.18rem;
}

.pricing-grid p {
    margin: 12px 0 22px;
    color: var(--muted);
}

.pricing-grid strong {
    display: block;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--accent-strong);
    font-size: 1.04rem;
}

.pricing-note {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--soft);
    font-size: 0.78rem;
    line-height: 1.45;
}

.tier-cards article {
    padding: 24px;
}

.tier-cards h3 {
    margin-top: 2px;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
    gap: 42px;
    align-items: start;
}

.co-write-block {
    margin-top: 64px;
}

.workflow-list {
    display: grid;
    gap: 0;
    padding: 4px 24px;
}

.workflow-list div {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.workflow-list div:first-child {
    border-top: 0;
}

.quiet-cta {
    padding-bottom: 86px;
}

.comparison-summary {
    align-content: stretch;
    padding: 24px;
}

.comparison-summary div + div {
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.comparison-summary strong {
    display: block;
    color: var(--text);
    font-size: 1.18rem;
    line-height: 1.32;
}

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

.decision-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
}

.decision-card-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
}

.decision-card-header .panel-kicker {
    margin: 0;
}

.decision-card-header strong {
    color: var(--text);
    font-size: 0.98rem;
    white-space: nowrap;
}

.decision-card h3 {
    color: var(--warm);
    font-size: 1.35rem;
    line-height: 1.18;
}

.featured-decision {
    border-color: rgba(114, 199, 168, 0.42);
    background:
        linear-gradient(180deg, rgba(114, 199, 168, 0.12), rgba(24, 31, 28, 0.78) 44%),
        rgba(24, 31, 28, 0.78);
}

.decision-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.fit-note {
    margin: auto 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--accent-strong);
    font-weight: 760;
}

.feature-comparison {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.feature-group {
    --family-rgb: 114, 199, 168;
    position: relative;
    overflow: hidden;
    border-color: rgba(var(--family-rgb), 0.22);
    background:
        linear-gradient(90deg, rgba(var(--family-rgb), 0.10), rgba(24, 31, 28, 0.74) 35%),
        rgba(24, 31, 28, 0.78);
}

.feature-group summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.feature-group summary::-webkit-details-marker {
    display: none;
}

.feature-group summary::after {
    content: none;
}

.feature-group summary .fg-group {
    color: rgb(var(--family-rgb));
    font-size: 1.08rem;
    font-weight: 850;
}

.feature-group summary .fg-text {
    flex: 1 1 260px;
    min-width: 0;
    display: grid;
    gap: 3px;
}

.feature-group summary .access-badge {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 5px 11px;
    border: 1px solid;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

.access-badge.free {
    color: var(--accent-strong);
    border-color: rgba(114, 199, 168, 0.42);
    background: rgba(114, 199, 168, 0.10);
}

.access-badge.mixed {
    color: var(--warm);
    border-color: rgba(230, 189, 118, 0.42);
    background: rgba(230, 189, 118, 0.10);
}

.access-badge.full {
    color: var(--soft);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
}

.feature-group summary .fg-toggle {
    flex: 0 0 auto;
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(var(--family-rgb), 0.4);
    border-radius: 999px;
    background: rgba(var(--family-rgb), 0.08);
}

.fg-toggle::before,
.fg-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(var(--family-rgb));
}

.fg-toggle::before {
    width: 11px;
    height: 2px;
}

.fg-toggle::after {
    width: 2px;
    height: 11px;
    transition: opacity 0.16s ease;
}

.feature-group[open] .fg-toggle::after {
    opacity: 0;
}

.feature-head {
    align-items: center;
    padding-top: 14px;
    padding-bottom: 8px;
}

.feature-head .fh-label,
.feature-head .col-head {
    color: var(--soft);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.feature-head .col-head {
    padding-left: 2px;
}

.v-mark {
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1;
}

.v-mark.yes {
    color: var(--accent-strong);
}

.v-mark.no {
    color: #c2b06a;
}

.v-text {
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.2;
}

.comparison-legend {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 14px 0 0;
    color: var(--soft);
    font-size: 0.82rem;
}

.comparison-legend .lg-key {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.comparison-legend .v-mark {
    font-size: 0.95rem;
}

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

.lg-partial {
    color: #f0b982;
}

.lg-none {
    color: #c2b06a;
}

@media (min-width: 721px) {
    .access-pill b {
        display: none;
    }

    .access-pill {
        align-content: center;
    }
}

@media (max-width: 720px) {
    .feature-head {
        display: none;
    }
}

.feature-group summary small {
    color: var(--soft);
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 22px;
    padding: 18px 20px;
    border-top: 1px solid var(--line);
}

.feature-copy h3 {
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.22;
}

.feature-copy p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.access-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
}

.access-pill {
    display: grid;
    gap: 4px;
    min-height: 56px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.88rem;
    line-height: 1.25;
}

.access-pill b {
    color: var(--soft);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.access-pill.same {
    border-color: rgba(114, 199, 168, 0.30);
    color: var(--accent-strong);
    background: rgba(114, 199, 168, 0.05);
}

.access-pill.upgrade {
    border-color: rgba(114, 199, 168, 0.38);
    color: var(--accent-strong);
    background: rgba(114, 199, 168, 0.09);
}

.access-pill.same b,
.access-pill.upgrade b {
    color: var(--accent-strong);
}

.access-pill.partial {
    border-color: rgba(234, 162, 94, 0.38);
    color: #f0b982;
    background: rgba(234, 162, 94, 0.10);
}

.access-pill.partial b {
    color: #f0b982;
}

.access-pill.full-only-value {
    border-color: rgba(194, 176, 106, 0.24);
    color: #c2b06a;
    background: rgba(194, 176, 106, 0.05);
}

.access-pill.full-only-value b {
    color: #c2b06a;
}

.tool-fit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.tool-fit-grid article {
    min-height: 258px;
    padding: 22px;
}

.tool-fit-grid h3 {
    color: var(--warm);
    font-size: 1.08rem;
    line-height: 1.2;
}

.tool-fit-grid p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.tool-fit-highlight {
    display: grid;
    grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
    padding: 20px 22px;
}

.tool-fit-highlight strong {
    color: var(--accent-strong);
}

.tool-fit-highlight span {
    color: var(--muted);
}

.recommendation-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
    padding: 22px;
}

.recommendation-panel p {
    margin: 0;
    color: var(--muted);
}

.compare-table {
    display: grid;
    margin-top: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(24, 31, 28, 0.6);
}

.compare-row {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr;
    border-top: 1px solid var(--line);
}

.compare-row:first-child {
    border-top: 0;
}

.compare-row > div {
    padding: 18px;
    border-left: 1px solid var(--line);
    color: var(--muted);
}

.compare-row > div:first-child {
    border-left: 0;
    color: var(--text);
    font-weight: 800;
}

.compare-head {
    background: rgba(255, 255, 255, 0.055);
}

.compare-head > div {
    color: var(--text);
    font-weight: 850;
}

.legal-page {
    max-width: 860px;
    padding: 42px 0 88px;
}

.legal-page h1 {
    font-size: 4.4rem;
}

.legal-page h2 {
    margin-top: 38px;
    font-size: 1.6rem;
}

.legal-page p,
.legal-page li {
    color: var(--muted);
}

.legal-page .effective {
    margin: 12px 0 28px;
    color: var(--soft);
}

.legal-page ul {
    padding-left: 1.35rem;
}

.support-panel {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    padding: 24px;
}

.protected-contact-form {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.protected-contact-form label {
    color: var(--text);
    font-weight: 760;
}

.protected-contact-form input,
.protected-contact-form select,
.protected-contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
    font: inherit;
}

.protected-contact-form textarea {
    min-height: 152px;
    resize: vertical;
}

.protected-contact-form input:focus,
.protected-contact-form select:focus,
.protected-contact-form textarea:focus {
    outline: 2px solid rgba(114, 199, 168, 0.54);
    outline-offset: 2px;
}

.contact-status,
.contact-fallback {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0 46px;
    border-top: 1px solid var(--line);
    color: var(--soft);
    font-size: 0.94rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: var(--soft);
    text-decoration: none;
    transition: color 0.12s ease;
}

@media (max-width: 980px) {
    h1 {
        font-size: 3.85rem;
    }

    h2 {
        font-size: 2.55rem;
    }

    .hero,
    .two-column {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .module-grid,
    .library-list,
    .comparison-grid,
    .tool-fit-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .site-header {
        gap: 12px;
        padding: 12px 14px;
    }

    .top-nav {
        flex-wrap: wrap;
        gap: 10px 14px;
        font-size: 0.92rem;
    }

    .hero {
        padding: 24px 0 32px;
    }

    h1,
    .legal-page h1 {
        font-size: 2.48rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .feature-grid,
    .module-grid,
    .comparison-grid,
    .mini-grid,
    .library-list,
    .tier-cards,
    .pricing-grid,
    .decision-grid,
    .tool-fit-grid,
    .recommendation-panel {
        grid-template-columns: 1fr;
    }

    .feature-subsection,
    .feature-deep-dive {
        padding: 20px;
    }

    .feature-deep-dive {
        margin-top: 18px;
    }

    .decision-card,
    .feature-group summary,
    .feature-row,
    .tool-fit-grid article,
    .tool-fit-highlight,
    .recommendation-panel {
        padding-inline: 16px;
    }

    .decision-card-header,
    .tool-fit-highlight {
        grid-template-columns: 1fr;
    }

    .decision-card-header {
        display: grid;
        gap: 6px;
    }

    .feature-group summary {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

    .feature-group summary small {
        grid-column: 1 / -1;
    }

    .feature-group summary::after {
        grid-column: 2;
        grid-row: 1;
    }

    .access-values {
        grid-template-columns: 1fr 1fr;
    }

    .library-heading {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 12px;
        align-items: start;
    }

    .library-heading small {
        grid-column: 1;
    }

    .library-heading::after {
        grid-column: 2;
        grid-row: 1 / span 2;
        justify-self: end;
        align-self: center;
    }

    .hero .signal-panel,
    .hero .mini-grid {
        display: none;
    }

    .compare-table {
        border-radius: 8px;
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .compare-row {
        display: block;
        margin-top: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(24, 31, 28, 0.78);
        overflow: hidden;
    }

    .compare-row > div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .compare-row > div:first-child {
        border-top: 0;
    }

    .compare-head {
        display: none;
    }

    .compare-category {
        margin-top: 22px;
        border-top: 0;
        border-radius: 4px;
    }
}

.screenshot-strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 32px 0 24px;
    margin-top: 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--line-strong) transparent;
}

.screenshot-strip::-webkit-scrollbar {
    height: 4px;
}

.screenshot-strip::-webkit-scrollbar-track {
    background: transparent;
}

.screenshot-strip::-webkit-scrollbar-thumb {
    background: var(--line-strong);
    border-radius: 2px;
}

.screenshot-frame {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 220px;
    margin: 0;
    padding: 0;
}

.screenshot-frame img {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    height: auto;
    object-fit: cover;
    border-radius: 32px;
    border: 1px solid var(--line-strong);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.46), 0 4px 10px rgba(0, 0, 0, 0.22);
    display: block;
}

.screenshot-frame figcaption {
    margin-top: 14px;
    color: var(--soft);
    font-size: 0.82rem;
    line-height: 1.42;
    text-align: center;
}

.appstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-download {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.88rem;
}

.hero-footnote {
    margin: 14px 0 0;
    color: var(--soft);
    font-size: 0.88rem;
}

.tools-more {
    margin-top: 22px;
    color: var(--soft);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 880px;
}

.compare-category {
    display: block;
    padding: 10px 18px;
    background: rgba(114, 199, 168, 0.06);
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-top: 1px solid var(--line);
}

.compare-row:first-child .compare-category,
.compare-table .compare-category:first-of-type {
    border-top: 0;
}

@media (max-width: 520px) {
    .site-shell {
        width: min(100% - 28px, 1120px);
    }

    .brand-lockup img {
        width: 40px;
        height: 40px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
    }

    .button {
        min-height: 44px;
        width: 100%;
    }

    .app-icon-card {
        align-items: flex-start;
        padding: 14px;
    }

    .app-icon-card img {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .feature-group summary {
        padding-block: 16px;
    }

    .feature-row {
        gap: 14px;
    }

    .tool-fit-grid article {
        min-height: 0;
    }

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

@media (max-width: 720px) {
    .site-shell {
        width: min(100% - 32px, 1120px);
    }

    .site-header {
        width: 100%;
        max-width: none;
        align-items: stretch;
        gap: 10px;
        padding: 10px 14px 12px;
    }

    .site-header.site-shell {
        width: 100%;
        max-width: none;
    }

    .brand-lockup {
        gap: 10px;
        min-width: 0;
    }

    .brand-lockup span {
        font-size: 0.94rem;
        line-height: 1.04;
    }

    .top-nav {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        padding: 2px 0 4px;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .top-nav::-webkit-scrollbar {
        display: none;
    }

    .top-nav a {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 10px;
        border: 1px solid rgba(247, 243, 234, 0.12);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.035);
        font-size: 0.88rem;
        scroll-snap-align: start;
    }

    .top-nav .button,
    .top-nav .nav-download {
        width: auto;
        min-height: 34px;
        padding: 0 12px;
        border-color: transparent;
        color: var(--ink);
        background: var(--accent);
    }

    .hero {
        gap: 20px;
        padding: 26px 0 36px;
    }

    h1,
    .legal-page h1 {
        font-size: 2.24rem;
        line-height: 1.05;
        text-wrap: balance;
    }

    h2 {
        font-size: 1.86rem;
        line-height: 1.08;
        text-wrap: balance;
    }

    h3 {
        font-size: 1.05rem;
    }

    .eyebrow,
    .panel-kicker {
        margin-bottom: 10px;
        font-size: 0.72rem;
    }

    .hero-copy,
    .section-lede {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero-copy {
        margin-top: 18px;
    }

    .button {
        padding-inline: 16px;
        text-align: center;
        line-height: 1.2;
    }

    .hero-footnote {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .product-surface {
        gap: 12px;
    }

    .app-icon-card {
        gap: 12px;
    }

    .app-icon-card strong,
    .comparison-summary strong {
        font-size: 1rem;
        line-height: 1.26;
    }

    .app-icon-card span,
    .mini-card span,
    .workflow-list span,
    .plan-stack span {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .hero .signal-panel {
        display: block;
        padding: 14px;
    }

    .signal-title {
        font-size: 1.04rem;
    }

    .hero .signal-copy {
        display: none;
    }

    .hero .challenge-grid {
        display: flex;
        grid-template-columns: none;
        gap: 10px;
        overflow-x: auto;
        margin-top: 12px;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .hero .challenge-grid::-webkit-scrollbar {
        display: none;
    }

    .hero .challenge-grid article {
        flex: 0 0 220px;
        min-height: 0;
        padding: 12px;
        scroll-snap-align: start;
    }

    .challenge-grid strong {
        font-size: 0.92rem;
    }

    .challenge-grid p {
        font-size: 0.84rem;
    }

    .section {
        padding: 42px 0;
    }

    .compact-section {
        padding-top: 40px;
    }

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

    .section-lede {
        margin-top: 14px;
    }

    .feature-grid,
    .module-grid,
    .comparison-grid,
    .tier-cards,
    .pricing-grid,
    .decision-grid,
    .tool-fit-grid,
    .library-groups,
    .feature-comparison {
        gap: 12px;
        margin-top: 24px;
    }

    .feature,
    .module-grid article,
    .comparison-grid article,
    .tier-cards article,
    .tool-fit-grid article {
        min-height: 0;
        padding: 16px;
    }

    .feature p,
    .module-grid p,
    .library-list p,
    .tier-cards p,
    .comparison-grid p,
    .tool-fit-grid p {
        margin-top: 8px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .feature-subsection,
    .feature-deep-dive {
        padding: 18px;
        border-radius: 8px;
    }

    .feature-subsection,
    .feature-deep-dive,
    .two-column {
        gap: 20px;
    }

    .feature-deep-dive {
        margin-top: 16px;
    }

    .plan-stack {
        gap: 10px;
    }

    .plan-stack article,
    .mini-card {
        padding: 14px;
    }

    .library-groups {
        gap: 14px;
    }

    .library-group {
        padding: 16px;
    }

    .library-heading span {
        font-size: 1rem;
        line-height: 1.18;
    }

    .library-heading small {
        font-size: 0.84rem;
    }

    .library-list {
        gap: 10px;
        margin-top: 14px;
    }

    .library-list article {
        min-height: 0;
        padding: 14px;
    }

    .pricing-grid article {
        min-height: 0;
        padding: 18px;
    }

    .pricing-grid p {
        margin-bottom: 16px;
    }

    .pricing-grid strong {
        padding-top: 12px;
    }

    .comparison-summary,
    .decision-card,
    .recommendation-panel,
    .tool-fit-highlight,
    .support-panel {
        padding: 18px;
    }

    .decision-card {
        gap: 14px;
    }

    .decision-card h3 {
        font-size: 1.16rem;
    }

    .decision-list {
        gap: 8px;
        font-size: 0.92rem;
        line-height: 1.48;
    }

    .feature-row {
        padding: 16px;
    }

    .feature-copy p {
        font-size: 0.9rem;
    }

    .access-pill {
        min-height: 0;
        padding: 9px 10px;
        font-size: 0.82rem;
    }

    .screenshot-strip {
        gap: 12px;
        width: 100%;
        margin-inline: 0;
        padding: 24px 0 20px;
        scroll-padding-left: 0;
    }

    .screenshot-frame {
        width: 174px;
    }

    .screenshot-frame img {
        border-radius: 26px;
    }

    .screenshot-frame figcaption {
        margin-top: 10px;
        font-size: 0.78rem;
    }

    .co-write-block {
        margin-top: 42px;
    }

    .workflow-list {
        padding: 2px 18px;
    }

    .workflow-list div {
        padding: 14px 0;
    }

    .quiet-cta {
        padding-bottom: 58px;
    }

    .legal-page {
        padding: 32px 0 64px;
    }

    .legal-page h2 {
        margin-top: 30px;
        font-size: 1.28rem;
    }

    .protected-contact-form {
        gap: 10px;
    }

    .protected-contact-form input,
    .protected-contact-form select,
    .protected-contact-form textarea {
        min-height: 46px;
        padding: 11px 12px;
    }

    .site-footer {
        gap: 12px;
        padding: 26px 0 34px;
    }
}

@media (max-width: 520px) {
    .site-shell {
        width: min(100% - 24px, 1120px);
    }

    h1,
    .legal-page h1 {
        font-size: 2.12rem;
    }

    h2 {
        font-size: 1.72rem;
    }

    .hero {
        padding-top: 22px;
    }

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

    .top-nav .button,
    .top-nav .nav-download {
        width: auto;
    }

    .access-values {
        grid-template-columns: 1fr;
    }

    .compare-row > div {
        padding: 14px;
    }

    .pricing-note {
        font-size: 0.74rem;
    }
}

/* ---- How it works ---- */

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
    counter-reset: how-step;
}

.how-steps article {
    position: relative;
    min-width: 0;
    padding: 24px 22px 22px;
    border: 1px solid rgba(230, 189, 118, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(230, 189, 118, 0.06), rgba(255, 255, 255, 0.015) 55%),
        rgba(24, 31, 28, 0.78);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.how-steps article::before {
    counter-increment: how-step;
    content: "0" counter(how-step);
    display: block;
    margin-bottom: 14px;
    color: var(--warm);
    font-size: 2.1rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.how-steps h3 {
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.2;
}

.how-steps p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.promise-panel {
    margin-top: 44px;
    padding: 36px 34px;
    border: 1px solid rgba(230, 189, 118, 0.26);
    border-radius: 8px;
    background:
        radial-gradient(120% 160% at 12% 0%, rgba(230, 189, 118, 0.12), transparent 55%),
        rgba(24, 31, 28, 0.82);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.promise-line {
    margin: 0;
    max-width: 760px;
    color: var(--text);
    font-size: 2.1rem;
    font-weight: 850;
    line-height: 1.16;
}

.promise-line em {
    font-style: normal;
    color: var(--warm);
}

.promise-copy {
    margin: 16px 0 0;
    max-width: 700px;
    color: var(--muted);
}

.promise-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: var(--accent-strong);
    font-size: 0.92rem;
    font-weight: 760;
}

.promise-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promise-points li::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--warm);
}

/* ---- Cinematic reveals (active only when JS adds .js-reveal) ---- */

html.js-reveal .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.js-reveal .reveal.is-visible {
    opacity: 1;
    transform: none;
}

html.js-reveal h2.reveal {
    transition-delay: 0.07s;
}

html.js-reveal .section-lede.reveal {
    transition-delay: 0.14s;
}

html.js-reveal .subtle-actions.reveal {
    transition-delay: 0.1s;
}

html.js-reveal .reveal-group > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.js-reveal .reveal-group.is-visible > * {
    opacity: 1;
    transform: none;
}

html.js-reveal .reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
html.js-reveal .reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
html.js-reveal .reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
html.js-reveal .reveal-group.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
html.js-reveal .reveal-group.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
html.js-reveal .reveal-group.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
html.js-reveal .reveal-group.is-visible > *:nth-child(n+8) { transition-delay: 0.56s; }

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

html.js-reveal .hero-text > * {
    animation: rise-in 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

html.js-reveal .hero-text > *:nth-child(2) { animation-delay: 0.1s; }
html.js-reveal .hero-text > *:nth-child(3) { animation-delay: 0.2s; }
html.js-reveal .hero-text > *:nth-child(4) { animation-delay: 0.3s; }
html.js-reveal .hero-text > *:nth-child(5) { animation-delay: 0.38s; }

html.js-reveal .hero .product-surface {
    animation: rise-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.28s both;
}

.screenshot-frame img {
    transition: transform 0.35s ease;
}

@media (hover: hover) {
    .screenshot-frame:hover img {
        transform: translateY(-8px);
    }
}

@media (max-width: 980px) {
    .how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 26px;
    }

    .how-steps article {
        padding: 18px 16px 16px;
    }

    .how-steps article::before {
        margin-bottom: 10px;
        font-size: 1.7rem;
    }

    .promise-panel {
        margin-top: 30px;
        padding: 24px 18px;
    }

    .promise-line {
        font-size: 1.5rem;
    }

    .promise-points {
        gap: 8px 18px;
        font-size: 0.86rem;
    }
}

@media (max-width: 360px) {
    .brand-lockup img {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .brand-lockup span {
        font-size: 0.86rem;
    }

    .top-nav a {
        min-height: 32px;
        padding-inline: 9px;
        font-size: 0.82rem;
    }

    h1,
    .legal-page h1 {
        font-size: 1.96rem;
    }

    h2 {
        font-size: 1.58rem;
    }

    .hero-copy,
    .section-lede {
        font-size: 0.94rem;
    }
}

/* Availability pills (pre-launch timeline, 2026-07-05) */
.availability-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.availability-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(247, 243, 234, 0.05);
    color: var(--text);
    font-weight: 650;
    font-size: 0.94rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.availability-pill svg {
    flex: 0 0 auto;
    opacity: 0.92;
}

.availability-pill .pill-when {
    color: var(--warm);
    font-weight: 600;
}

/* One-real-session gallery inside How it works (2026-07-05) */
.loop-gallery {
    display: flex;
    gap: 20px;
    margin-top: 34px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 0 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--line-strong) transparent;
}

.loop-gallery .screenshot-frame {
    width: 240px;
}

.loop-gallery .screenshot-frame figcaption {
    font-weight: 600;
    color: var(--muted);
}

@media (min-width: 900px) {
    .loop-gallery {
        justify-content: center;
        overflow-x: visible;
    }
}

/* Hero screenshot (Living Sky) — 2026-07-05 */
.hero-shot {
    margin: 0;
    display: grid;
    justify-items: center;
    gap: 12px;
}

.hero-shot img {
    width: min(64%, 264px);
    height: auto;
    display: block;
    border-radius: 30px;
    border: 1px solid var(--line-strong);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.5), 0 6px 14px rgba(0, 0, 0, 0.24);
}

.hero-shot figcaption {
    color: var(--soft);
    font-size: 0.86rem;
    text-align: center;
}
