/* Home page specific styles.
   Shared core styles are loaded via /css/tokens.css, /css/layout.css, /css/forms-buttons.css, /css/loaders.css. */

/* Marketing header: nav + optional signed-in slot share the end grid track (AB#2973). */
.app-header .header-actions {
    justify-self: end;
    gap: 0.75rem;
}

.app-header .header-auth:empty {
    display: none;
}

.app-header .header-auth:not(:empty) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.hero-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2.5rem;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: "Space Grotesk", "Outfit", sans-serif;
    color: var(--brand-ink);
}

.hero-value {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--brand-ink);
    max-width: 52ch;
    margin: 0 0 0.85rem;
    font-weight: 500;
}

.hero-differentiator {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--ink-muted);
    max-width: 52ch;
    margin: 0 0 1.35rem;
}

.hero-cta {
    margin-bottom: 1.15rem;
}

.hero-cta .btn-launch {
    font-size: 1.05rem;
    padding: 0.85rem 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ink-muted);
    max-width: 60ch;
}

.hero-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--brand-accent-strong);
    margin-bottom: 1rem;
}

.hero-search {
    margin-top: 0;
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-search input {
    flex: 1 1 320px;
    min-width: 220px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 63, 58, 0.28);
    background: rgba(255, 255, 255, 0.85);
    color: var(--brand-ink);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-search input::placeholder {
    color: rgba(18, 63, 58, 0.65);
}

.hero-search input:focus {
    outline: none;
    border-color: var(--brand-accent-strong);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(227, 146, 43, 0.22);
}

@media (max-width: 640px) {
    .hero-search {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

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

    .hero-search input {
        flex: 0 0 auto;
        min-width: 0;
    }

    .hero-actions {
        margin-top: 0.65rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

.hero-actions {
    margin-top: 0.85rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-subtle {
    font-size: 0.88rem;
    color: var(--ink-muted);
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-style: italic;
}

.demo-caption {
    font-size: 0.82rem;
    color: var(--ink-muted);
    text-align: center;
    padding: 0.65rem 0.75rem 0.85rem;
    margin: 0;
    background: var(--card-bg);
    line-height: 1.35;
    border-top: 1px solid var(--border-soft);
}

/* ── Hero journey snapshot (progress visual) ── */

.hero-journey {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-journey__panel {
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--border-soft);
}

.hero-journey__panel--completion {
    background: linear-gradient(135deg, var(--brand-ink), #1f5c56);
    border-bottom: none;
}

.hero-journey__panel-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
    color: var(--ink-muted);
}

.hero-journey__panel--completion .hero-journey__panel-label,
.hero-journey__panel--completion .hero-journey__detail {
    color: rgba(255, 255, 255, 0.78);
}

.hero-journey__completion-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-journey__bar {
    flex: 1;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

.hero-journey__bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-accent), #f7c97f);
}

.hero-journey__pct {
    font-family: "Space Grotesk", "Outfit", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero-journey__detail {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.84rem;
    color: var(--ink-muted);
}

.hero-journey__rank-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.hero-journey__rank-title {
    font-family: "Space Grotesk", "Outfit", sans-serif;
    font-size: 1.05rem;
    color: var(--brand-ink);
}

.hero-journey__pips {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.hero-journey__pip {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    display: inline-block;
}

.hero-journey__pip--filled {
    background: var(--brand-accent);
    border: 1px solid rgba(18, 63, 58, 0.55);
    border: 1px solid color-mix(in srgb, var(--brand-accent) 70%, var(--brand-ink));
    box-shadow: 0 0 0 1px rgba(242, 202, 109, 0.25);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--brand-accent) 25%, transparent);
}

.hero-journey__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
}

.hero-journey__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-ink);
    background: rgba(18, 63, 58, 0.08);
    border: 1px solid rgba(18, 63, 58, 0.14);
}

.hero-journey__episode {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.15rem;
    border-bottom: 1px solid var(--border-soft);
    background: var(--page-bg);
}

.hero-journey__episode strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brand-ink);
    font-family: "Space Grotesk", "Outfit", sans-serif;
}

.hero-journey__episode span {
    display: block;
    font-size: 0.82rem;
    color: var(--ink-muted);
    margin-top: 0.1rem;
}

.hero-journey__watched {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    background: var(--brand-cool);
    box-shadow: 0 0 0 3px rgba(31, 92, 86, 0.12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid transparent;
}

.btn-launch {
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-strong));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-launch:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-primary {
    background: linear-gradient(135deg, #f7c97f 0%, var(--brand-accent) 100%);
    color: var(--brand-ink);
    border-color: rgba(18, 63, 58, 0.28);
    box-shadow: 0 14px 30px rgba(227, 146, 43, 0.24), 0 4px 12px rgba(18, 63, 58, 0.12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(227, 146, 43, 0.28), 0 10px 18px rgba(18, 63, 58, 0.14);
    background: linear-gradient(135deg, #f9d79e 0%, #f0aa4e 100%);
}

.btn-secondary {
    color: var(--brand-ink);
    border-color: rgba(18, 63, 58, 0.32);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.btn:focus-visible {
    outline: 3px solid rgba(227, 146, 43, 0.35);
    outline-offset: 3px;
}

.cta-final .btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: none;
}

.cta-final .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.hero-card {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-card--screenshot {
    padding: 0;
    overflow: hidden;
}

.hero-card--screenshot a {
    display: block;
    line-height: 0;
}

.hero-card--screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.hero-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--brand-ink);
}

.hero-card ul {
    list-style: none;
}

.hero-card li {
    color: var(--ink-muted);
    line-height: 1.55;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border-soft);
}

.hero-card li:last-child {
    border-bottom: none;
}

/* ── Hero trust bar ── */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: var(--ink-muted);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-trust span::before {
    content: "✓";
    color: var(--brand-cool);
    font-weight: 700;
}

/* ── Live community social proof (below hero — AB#3022) ── */

.community-live {
    padding: 2rem 1.5rem 0.25rem;
}

.community-live-inner {
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--card-bg));
    box-shadow: var(--shadow-soft);
    padding: 1.75rem 1.5rem;
}

.community-live__heading {
    margin: 0 0 1.25rem;
    font-family: "Space Grotesk", "Outfit", sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    color: var(--brand-ink);
    text-align: center;
}

.community-live__subheading {
    margin: 0 0 0.75rem;
    font-family: "Space Grotesk", "Outfit", sans-serif;
    font-size: 1.05rem;
    color: var(--brand-ink);
}

.community-live__trending,
.community-live__top5 {
    width: 100%;
}

.community-live__aggregate {
    margin: 0 0 1rem;
    max-width: 52ch;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--brand-cool);
    font-weight: 600;
}

.community-live__list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.community-live__top5-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.community-live__episode {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: var(--page-bg);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.community-live__rank {
    flex: 0 0 auto;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", "Outfit", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-ink);
    background: rgba(227, 146, 43, 0.18);
    border: 1px solid rgba(18, 63, 58, 0.14);
}

.community-live__episode-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.community-live__top5-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: var(--page-bg);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.community-live__top5-card:hover,
.community-live__episode:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(31, 122, 118, 0.35);
}

.community-live__top5-card:focus-visible,
.community-live__episode:focus-visible {
    outline: 3px solid rgba(227, 146, 43, 0.35);
    outline-offset: 3px;
}

.community-live__episode-title,
.community-live__top5-title {
    font-family: "Space Grotesk", "Outfit", sans-serif;
    font-size: 1rem;
    color: var(--brand-ink);
}

.community-live__episode-meta,
.community-live__top5-byline {
    font-size: 0.86rem;
    line-height: 1.4;
    color: var(--ink-muted);
}

.community-live__top5-desc {
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--ink-muted);
}

.community-live__see-all {
    display: inline-flex;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--brand-cool);
    text-decoration: none;
}

.community-live__see-all:hover {
    color: var(--brand-ink);
    text-decoration: underline;
}

.community-live--has-signals .community-live__live {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
}

.community-live__trending:not([hidden]) + .community-live__top5:not([hidden]) {
    padding-top: 0.25rem;
    border-top: 1px solid var(--border-soft);
}

.community-live__fallback {
    text-align: center;
}

.community-live__fallback-copy {
    margin: 0 auto 1rem;
    max-width: 48ch;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--ink-muted);
}

.community-live__fallback-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    justify-content: center;
}

.community-live__fallback-link {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 63, 58, 0.22);
    background: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-ink);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.community-live__fallback-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
}

.community-live__fallback-link:focus-visible {
    outline: 3px solid rgba(227, 146, 43, 0.35);
    outline-offset: 3px;
}

@media (min-width: 720px) {
    .community-live__list,
    .community-live__top5-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .community-live__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

/* ── Discover next (below hero — second-click paths) ── */

.discover-next {
    padding: 2.25rem 1.5rem 0.5rem;
}

.discover-next-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.discover-next-heading {
    margin: 0 0 0.5rem;
    text-align: center;
    font-family: "Space Grotesk", "Outfit", sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    color: var(--brand-ink);
}

.discover-next-lead {
    margin: 0 auto 1.5rem;
    max-width: 52ch;
    text-align: center;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ink-muted);
}

.discover-next-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.discover-next-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.35rem 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    background: var(--card-bg);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.discover-next-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(31, 122, 118, 0.35);
}

.discover-next-card:focus-visible {
    outline: 3px solid rgba(227, 146, 43, 0.35);
    outline-offset: 3px;
}

.discover-next-card__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-cool);
}

.discover-next-card__title {
    font-family: "Space Grotesk", "Outfit", sans-serif;
    font-size: 1.15rem;
    color: var(--brand-ink);
}

.discover-next-card__detail {
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--ink-muted);
}

@media (max-width: 640px) {
    .discover-next-grid {
        grid-template-columns: 1fr;
    }
}

/* ── "Try it now" quick-start strip ── */

.try-now {
    background: var(--card-bg);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 2.5rem 1.5rem;
}

.try-now-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.try-now-heading {
    text-align: center;
    margin-bottom: 1.75rem;
    font-family: "Space Grotesk", "Outfit", sans-serif;
    color: var(--brand-ink);
}

.flow-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    flex: 1;
    min-width: 220px;
    max-width: 340px;
    background: var(--page-bg);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 1.25rem 1.1rem;
    box-shadow: var(--shadow-soft);
}

.flow-step-number {
    flex: 0 0 auto;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: rgba(227, 146, 43, 0.18);
    color: var(--brand-ink);
    border: 1px solid rgba(18, 63, 58, 0.18);
    margin-top: 0.05rem;
}

.flow-step-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
}

.flow-step-body strong {
    font-size: 1.05rem;
    font-family: "Space Grotesk", "Outfit", sans-serif;
    color: var(--brand-ink);
}

.flow-step-body p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0;
    line-height: 1.45;
}

.flow-step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--brand-cool);
    text-decoration: none;
    margin-top: 0.2rem;
}

.flow-step-link:hover {
    color: var(--brand-ink);
    text-decoration: underline;
}

.try-now-cards {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.try-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    background: var(--page-bg);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 1.5rem 1rem 1.25rem;
    text-decoration: none;
    color: var(--brand-ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: var(--shadow-soft);
}

.try-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    background: var(--card-bg);
}

.try-card:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    background: var(--card-bg);
}
.try-card-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.try-card strong {
    font-size: 1.05rem;
    font-family: "Space Grotesk", "Outfit", sans-serif;
}

.try-card p {
    font-size: 0.88rem;
    color: var(--ink-muted);
    margin: 0;
    line-height: 1.45;
}

/* ── Feature scenario (mini-story premise) ── */

.feature-scenario {
    font-size: 0.97rem;
    font-style: italic;
    color: var(--brand-cool);
    margin: 0;
    line-height: 1.5;
}

.cta-final {
    background: linear-gradient(135deg, var(--brand-ink), #1f5c56);
    padding: 3rem 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.cta-final h2 { color: #fff; }

.cta-final p { color: rgba(255, 255, 255, 0.85); }

.cta-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ── Social proof stats section ── */

.social-proof {
    background: linear-gradient(135deg, var(--brand-ink), #1f5c56);
    padding: 3rem 1.5rem;
    margin-top: 2rem;
}

.social-proof-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    min-width: 140px;
}

.proof-number {
    font-family: "Space Grotesk", "Outfit", sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--brand-accent);
    line-height: 1;
}

.proof-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.35;
}

/* ── Feature showcase (alternating text ↔ screenshot rows) ── */

.features {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.feature-row--reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.feature-text h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-family: "Space Grotesk", "Outfit", sans-serif;
    color: var(--brand-ink);
    margin: 0;
}

.feature-text p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-muted);
    margin: 0;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-cool);
    text-decoration: none;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
    margin-top: 0.25rem;
}

.feature-link:hover {
    color: var(--brand-ink);
    letter-spacing: 0.01em;
}

.feature-image {
    flex: 1.3;
}

.feature-image a {
    display: block;
    text-decoration: none;
}

/* ── Shared screenshot frame ── */

.screenshot-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 8px 28px rgba(10, 16, 14, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
    aspect-ratio: 16 / 9;
}

.screenshot-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(10, 16, 14, 0.16);
}

.screenshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
}

/* ── Responsive ── */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        order: 1;
    }

    .hero-journey {
        order: 2;
    }

    .feature-row,
    .feature-row--reverse {
        flex-direction: column;
        gap: 1.75rem;
    }

    .feature-image {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-wrap {
        padding-top: 2rem;
    }

    .feature-showcase {
        gap: 3rem;
    }

    .hero-value {
        font-size: 1.05rem;
    }

    .hero-differentiator {
        font-size: 0.92rem;
    }

    .hero-cta .btn-launch {
        width: 100%;
    }

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

    .try-now-cards,
    .flow-steps {
        gap: 1rem;
    }

    .try-card,
    .flow-step {
        min-width: 150px;
    }

    .social-proof-inner {
        gap: 1.5rem;
    }

    .proof-stat {
        min-width: 120px;
    }
}


