:root {
    color-scheme: dark;
    --landing-text: #15325c;
    --landing-text-soft: #4f6f9f;
    --landing-border: rgba(20, 55, 109, 0.18);
    --landing-border-strong: rgba(20, 55, 109, 0.28);
    --landing-shadow: 0 20px 44px rgba(8, 24, 57, 0.22);
    --landing-shadow-strong: 0 28px 56px rgba(8, 24, 57, 0.3);
    --landing-gradient: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    --landing-radius-lg: 30px;
    --landing-radius-md: 22px;
    --landing-radius-sm: 16px;
    --landing-nav-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Figtree", sans-serif;
    color: #fff;
    background: var(--landing-background);
}

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

button {
    font: inherit;
}

.bg-glow,
.grid-bg {
    display: none;
}

.landing-nav,
.hero-section,
.stats-strip,
.section-shell,
.cta-band,
.landing-footer {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.landing-nav {
    height: var(--landing-nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand,
.nav-actions,
.nav-links {
    display: flex;
    align-items: center;
}

.nav-brand {
    gap: 14px;
}

.nav-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(8, 24, 57, 0.2);
}

.nav-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-brand-mark-fallback,
.hero-logo-fallback span {
    font-family: "Syne", sans-serif;
    font-weight: 800;
}

.nav-brand-name {
    font-family: "Syne", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-brand-logo-tone,
.landing-footer-brand strong {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.brand-word-primary {
    color: #2f5fb8;
}

.brand-word-secondary {
    color: #f18b2b;
}

.nav-brand-logo-tone {
    text-shadow: 0 1px 0 rgba(255,255,255,.18);
}

.nav-links {
    gap: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 600;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.btn-primary {
    color: #fff;
    background: var(--landing-secondary);
    box-shadow: 0 14px 26px rgba(241, 139, 43, 0.28);
}

.btn-secondary,
.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.btn-large {
    min-height: 56px;
    padding: 0 28px;
}

.btn-block {
    width: 100%;
}

.hero-section {
    padding: 36px 0 28px;
}

.hero-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 32px;
    align-items: stretch;
}

.hero-main-layout.is-single-column {
    grid-template-columns: minmax(0, 1fr);
}

.hero-copy,
.hero-preview,
.feature-card,
.process-card,
.role-card,
.pricing-card,
.stat-card,
.hero-logo-card {
    background: #ffffff;
    border: 1px solid var(--landing-border);
    box-shadow: var(--landing-shadow);
}

.hero-copy,
.hero-logo-card,
.hero-preview {
    border-radius: var(--landing-radius-lg);
}

.hero-copy {
    padding: 42px;
    color: var(--landing-text);
    box-shadow: 0 26px 50px rgba(8, 24, 57, 0.26);
}

.hero-logo-panel {
    display: flex;
    justify-content: center;
}

.hero-main-layout.is-single-column .hero-copy {
    max-width: 100%;
}

.hero-logo-card {
    width: 100%;
    min-height: 420px;
    padding: 28px;
    display: grid;
    place-items: center;
    position: relative;
    background: #ffffff;
}

.hero-banner-card {
    overflow: hidden;
}

.hero-logo-card::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px dashed rgba(241, 139, 43, 0.3);
}

.hero-banner-track {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-banner-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .8s ease, transform 1.1s ease;
    background:
        radial-gradient(circle at top left, rgba(95, 168, 255, 0.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(241, 139, 43, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero-banner-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-banner-image {
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 14px 24px rgba(18, 42, 78, 0.08));
}

.hero-banner-card.has-slider::after {
    inset: auto 18px 18px 18px;
    height: 92px;
    border: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-banner-dots {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.hero-banner-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(21, 50, 92, 0.28);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, width .2s ease;
}

.hero-banner-dot.is-active {
    width: 28px;
    background: linear-gradient(135deg, var(--landing-secondary), var(--landing-highlight));
}

.hero-logo-image {
    max-width: min(100%, 360px);
    max-height: 320px;
    object-fit: contain;
    z-index: 1;
}

.hero-logo-fallback {
    display: grid;
    place-items: center;
    gap: 14px;
    z-index: 1;
    color: var(--landing-text);
}

.hero-logo-fallback span {
    width: 110px;
    height: 110px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 3rem;
    background: var(--landing-secondary);
}

.hero-logo-fallback strong,
.hero-title,
.section-head h2,
.cta-copy h2,
.pricing-price {
    font-family: "Syne", sans-serif;
    letter-spacing: -0.05em;
}

.hero-eyebrow,
.section-tag,
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.hero-eyebrow {
    color: var(--landing-text);
    background: rgba(47, 95, 184, 0.1);
    border: 1px solid rgba(47, 95, 184, 0.14);
}

.hero-eyebrow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--landing-secondary);
}

.hero-title {
    margin: 20px 0 18px;
    font-size: clamp(3rem, calc(5vw * var(--landing-hero-title-scale)), 5.4rem);
    line-height: 0.95;
    color: var(--landing-text);
}

.hero-description,
.preview-metric span,
.stat-card span,
.pricing-meta,
.feature-card p,
.process-card p,
.role-card p,
.section-head p,
.cta-copy p,
.preview-title {
    color: var(--landing-text-soft);
}

.hero-description {
    max-width: min(100%, var(--landing-hero-description-width));
    margin: 0 0 24px;
    font-size: 1.06rem;
    line-height: 1.75;
}

.hero-pill-row,
.pricing-features,
.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-pill,
.pricing-features span,
.cta-points span,
.role-badge {
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid rgba(22, 59, 115, 0.16);
    background: #fff;
    color: var(--landing-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-pill-2,
.section-tag-accent,
.section-tag-orange,
.pricing-badge {
    background: rgba(241, 139, 43, 0.12);
    color: #9b5b15;
}

.hero-pill-3,
.section-tag-blue,
.role-badge {
    background: rgba(47, 95, 184, 0.1);
    color: #214b8d;
}

.section-tag-purple {
    background: rgba(47, 95, 184, 0.12);
    color: #32528d;
}

.hero-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-preview {
    margin-top: 26px;
    padding: 24px;
    border: 1px solid var(--landing-border-strong);
}

.preview-topbar,
.preview-board-head,
.preview-board-row,
.preview-metrics,
.section-head,
.feature-grid,
.process-grid,
.role-grid,
.pricing-grid,
.stats-strip,
.landing-footer {
    display: grid;
}

.preview-topbar {
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff7f7f; }
.dot.yellow { background: #f6c453; }
.dot.green { background: #68c47b; }

.preview-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.preview-metric,
.stat-card {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--landing-border-strong);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.preview-metric strong,
.stat-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.45rem;
    color: var(--landing-text);
    letter-spacing: -0.03em;
}

.preview-board {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--landing-border-strong);
    box-shadow: 0 16px 32px rgba(15, 36, 77, 0.08);
}

.preview-board-head,
.preview-board-row {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 12px;
    padding: 16px 18px;
    align-items: center;
    color: var(--landing-text);
}

.preview-board-head {
    font-size: 0.88rem;
    font-weight: 800;
    color: #456694;
    background: #eef3fb;
    border-bottom: 1px solid rgba(20, 55, 109, 0.16);
}

.preview-board-row + .preview-board-row {
    border-top: 1px solid rgba(20, 55, 109, 0.14);
}

.status-ok,
.status-soft,
.status-accent {
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.status-ok {
    background: #e7f5ec;
    color: #247041;
    border-color: rgba(36, 112, 65, 0.12);
}

.status-soft {
    background: #e8eef9;
    color: #28518e;
    border-color: rgba(40, 81, 142, 0.12);
}

.status-accent {
    background: #fbeede;
    color: #aa6110;
    border-color: rgba(170, 97, 16, 0.14);
}

.stats-strip,
.feature-grid,
.process-grid,
.role-grid,
.pricing-grid {
    gap: 20px;
}

.stats-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 14px auto 70px;
}

.section-shell {
    padding: 56px 0;
}

.section-shell + .section-shell {
    margin-top: 18px;
}

.stats-strip + .section-shell,
.section-shell + .cta-band,
.cta-band + .landing-footer {
    margin-top: 24px;
}

.section-soft {
    padding: 46px 32px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.05);
}

.section-head {
    gap: 14px;
    margin-bottom: 28px;
}

.section-head h2,
.cta-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.6rem);
    color: #fff;
}

.section-head p,
.cta-copy p {
    margin: 0;
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.cta-copy h2 {
    color: var(--landing-text);
}

.cta-copy p {
    color: var(--landing-text-soft);
}

.section-centered {
    justify-items: center;
    text-align: center;
}

.section-tag-white {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

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

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.feature-card,
.process-card,
.role-card,
.pricing-card {
    padding: 26px;
    border-radius: 28px;
    color: var(--landing-text);
    border: 1px solid var(--landing-border-strong);
}

.feature-index,
.process-number {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: 14px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #76e89d, #59d889);
    box-shadow: 0 12px 24px rgba(89, 216, 137, 0.28);
}

.feature-index svg,
.process-number svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-grid .feature-card:nth-child(4n + 1) .feature-index {
    color: #205e9b;
    background: linear-gradient(135deg, #d9efff, #bfe0ff);
    box-shadow: 0 12px 24px rgba(97, 184, 255, 0.22);
}

.feature-grid .feature-card:nth-child(4n + 2) .feature-index {
    color: #1f7e5d;
    background: linear-gradient(135deg, #d8f7e8, #b8efd3);
    box-shadow: 0 12px 24px rgba(97, 217, 154, 0.22);
}

.feature-grid .feature-card:nth-child(4n + 3) .feature-index {
    color: #b5641f;
    background: linear-gradient(135deg, #ffe3cf, #ffd1b0);
    box-shadow: 0 12px 24px rgba(255, 148, 106, 0.22);
}

.feature-grid .feature-card:nth-child(4n + 4) .feature-index {
    color: #6a58c5;
    background: linear-gradient(135deg, #eadfff, #d7c8ff);
    box-shadow: 0 12px 24px rgba(158, 134, 255, 0.22);
}

.process-grid .process-card:nth-child(4n + 1) .process-number {
    background: linear-gradient(135deg, #7fd8ff, #61b8ff);
    box-shadow: 0 12px 24px rgba(97, 184, 255, 0.28);
}

.process-grid .process-card:nth-child(4n + 2) .process-number {
    background: linear-gradient(135deg, #8df0b8, #61d99a);
    box-shadow: 0 12px 24px rgba(97, 217, 154, 0.28);
}

.process-grid .process-card:nth-child(4n + 3) .process-number {
    background: linear-gradient(135deg, #ffb58f, #ff946a);
    box-shadow: 0 12px 24px rgba(255, 148, 106, 0.28);
}

.process-grid .process-card:nth-child(4n + 4) .process-number {
    background: linear-gradient(135deg, #c7a7ff, #9e86ff);
    box-shadow: 0 12px 24px rgba(158, 134, 255, 0.28);
}

.feature-card h3,
.process-card h3,
.role-card h3,
.pricing-plan {
    margin: 0 0 12px;
    font-size: 1.28rem;
    color: #12345f;
}

.feature-card p,
.process-card p,
.role-card p {
    margin: 0;
    line-height: 1.75;
    color: #5474a2;
}

.process-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
}

.pricing-card {
    display: grid;
    grid-template-rows: auto auto auto auto 1fr auto;
    gap: 16px;
    min-height: 100%;
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: #ffffff;
    border-color: rgba(241, 139, 43, 0.36);
    box-shadow: var(--landing-shadow-strong);
    transform: translateY(-4px);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(47, 95, 184, 0.8), rgba(241, 139, 43, 0.8));
    opacity: 0.9;
}

.pricing-price {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    color: var(--landing-text);
    line-height: 0.95;
    letter-spacing: -0.06em;
    margin-top: 4px;
}

.pricing-features span {
    border-color: rgba(20, 55, 109, 0.14);
    color: #345b93;
    background: #f9fbff;
}

.pricing-plan {
    margin: 4px 0 0;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.pricing-meta {
    font-size: 1.02rem;
    color: #5a76a0;
}

.pricing-features {
    align-content: start;
}

.pricing-card .btn-block {
    margin-top: 8px;
    align-self: end;
    min-height: 54px;
    font-size: 1rem;
}

.cta-band {
    margin-top: 56px;
    margin-bottom: 56px;
    padding: 22px 30px;
    border-radius: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 34px;
    color: var(--landing-text);
    background:
        radial-gradient(circle at top right, rgba(95, 168, 255, 0.18), transparent 26%),
        radial-gradient(circle at bottom left, rgba(241, 139, 43, 0.18), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f5f8ff 54%, #fff6ec 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 28px 54px rgba(8, 24, 57, 0.24);
    position: relative;
    overflow: hidden;
}

.cta-band::before,
.cta-band::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.cta-band::before {
    width: 220px;
    height: 220px;
    top: -90px;
    right: -40px;
    background: radial-gradient(circle, rgba(95, 168, 255, 0.18), rgba(95, 168, 255, 0));
}

.cta-band::after {
    width: 260px;
    height: 260px;
    bottom: -150px;
    left: -80px;
    background: radial-gradient(circle, rgba(241, 139, 43, 0.16), rgba(241, 139, 43, 0));
}

.cta-copy,
.cta-points {
    position: relative;
    z-index: 1;
}

.cta-copy {
    display: grid;
    align-content: center;
    gap: 8px;
}

.cta-copy h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.9rem, 2.8vw, 2.9rem);
    line-height: 1;
}

.cta-copy p {
    max-width: 500px;
    font-size: .94rem;
    line-height: 1.5;
}

.cta-points {
    align-content: center;
    padding: 12px;
    border-radius: 28px;
    background: rgba(10, 24, 48, 0.78);
    border: 1px solid rgba(95, 168, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-points span {
    width: 100%;
    color: #e9f1ff;
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    min-height: 42px;
    align-items: center;
}

.landing-footer {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 28px 24px 36px;
    color: rgba(255, 255, 255, 0.84);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-footer-copy,
.landing-footer-links {
    font-size: .92rem;
    line-height: 1.5;
}

.landing-footer-copy {
    justify-self: start;
}

.landing-footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    color: #fff;
    font-weight: 800;
    text-align: center;
}

.landing-footer-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 24px rgba(8, 24, 57, 0.22);
    overflow: hidden;
}

.landing-footer-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.landing-footer-links {
    justify-self: end;
    text-align: right;
}

.card-tone-1,
.card-tone-2,
.card-tone-3,
.card-tone-4 {
    background: #fff;
}

.card-tone-1 {
    border-color: rgba(47, 95, 184, 0.2);
}

.card-tone-2 {
    border-color: rgba(241, 139, 43, 0.2);
}

.card-tone-3 {
    border-color: rgba(89, 216, 137, 0.24);
}

.card-tone-4 {
    border-color: rgba(84, 116, 162, 0.18);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-main-layout,
    .cta-band,
    .process-grid,
    .role-grid,
    .pricing-grid,
    .stats-strip,
    .preview-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-logo-card {
        min-height: 340px;
    }

    .hero-banner-dots {
        bottom: 22px;
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 860px) {
    .landing-nav {
        height: auto;
        padding: 20px 0;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    .hero-main-layout,
    .cta-band,
    .process-grid,
    .role-grid,
    .pricing-grid,
    .stats-strip,
    .preview-metrics,
    .landing-footer {
        grid-template-columns: 1fr;
    }

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

    .hero-copy,
    .hero-preview,
    .cta-band,
    .section-soft {
        padding: 24px;
    }

    .section-shell + .section-shell {
        margin-top: 14px;
    }

    .stats-strip + .section-shell,
    .section-shell + .cta-band,
    .cta-band + .landing-footer {
        margin-top: 18px;
    }

    .preview-board {
        overflow-x: auto;
    }

    .preview-board-head,
    .preview-board-row {
        min-width: 720px;
    }

    .landing-footer-copy,
    .landing-footer-links {
        text-align: center;
        justify-self: center;
    }

    .landing-footer {
        justify-items: center;
        text-align: center;
        gap: 16px;
        padding: 24px 20px 32px;
    }

    .landing-footer-brand {
        flex-direction: column;
        gap: 10px;
    }

    .cta-points {
        padding: 14px;
    }

    .cta-copy h2 {
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .landing-nav,
    .hero-section,
    .stats-strip,
    .section-shell,
    .cta-band,
    .landing-footer {
        width: min(100% - 20px, 1180px);
    }

    .hero-title {
        font-size: clamp(2.4rem, 14vw, 3.6rem);
        line-height: 0.96;
    }

    .btn,
    .btn-large {
        width: 100%;
    }

    .hero-action-row,
    .nav-actions {
        width: 100%;
    }

    .nav-actions {
        flex-direction: column;
    }

    .nav-brand {
        width: 100%;
    }

    .nav-brand-name {
        font-size: 1.02rem;
    }

    .nav-links a {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-copy,
    .hero-preview,
    .hero-logo-card,
    .section-shell,
    .cta-band,
    .landing-footer {
        border-radius: 24px;
    }

    .hero-copy,
    .hero-logo-card,
    .hero-preview,
    .section-shell,
    .cta-band {
        padding: 20px;
    }

    .cta-band {
        margin-top: 40px;
        margin-bottom: 40px;
        border-radius: 28px;
    }

    .hero-logo-card {
        min-height: 260px;
    }

    .hero-banner-dots {
        bottom: 16px;
        left: 16px;
        right: 16px;
    }

    .hero-pill-row,
    .pricing-features,
    .cta-points {
        gap: 10px;
    }

    .hero-pill,
    .pricing-features span,
    .cta-points span {
        width: 100%;
        justify-content: center;
    }

    .cta-copy h2 {
        max-width: none;
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }

    .cta-copy p {
        font-size: .96rem;
        line-height: 1.6;
    }

    .cta-points {
        padding: 18px;
    }

    .landing-footer {
        gap: 16px;
    }
}
