@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@600;700;800&display=swap');

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #eaf2ff;
    --surface-muted: #edf4ff;
    --text: #11203d;
    --muted: #5f6f91;
    --line: rgba(17, 32, 61, 0.1);
    --accent: #2f7dff;
    --accent-strong: #1459d9;
    --accent-soft: #e5efff;
    --shadow: 0 24px 64px rgba(18, 54, 120, 0.16);
    --shadow-soft: 0 16px 40px rgba(18, 54, 120, 0.1);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --site-width: min(1180px, calc(100vw - 40px));
    --narrow-width: min(760px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.website-landing {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

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

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

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

.site-shell {
    width: var(--site-width);
    margin: 0 auto;
}

.narrow-shell {
    width: var(--narrow-width);
}

.landing-main {
    overflow: hidden;
    background: #ffffff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    padding: 18px 0;
    background: rgba(243, 248, 255, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-header.is-scrolled {
    border-color: rgba(24, 23, 31, 0.06);
    box-shadow: 0 10px 26px rgba(24, 23, 31, 0.04);
}

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

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

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    object-fit: cover;
}

.brand span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    white-space: nowrap;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-nav a,
.nav-link {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-link:hover {
    color: var(--text);
}

.nav-link--button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff !important;
    box-shadow: 0 14px 32px rgba(47, 125, 255, 0.28);
}

.site-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(24, 23, 31, 0.08);
    border-radius: 16px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.site-nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.site-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(47, 125, 255, 0.28);
}

.btn--ghost {
    border-color: rgba(24, 23, 31, 0.1);
    background: #ffffff;
    color: var(--text);
}

.btn--light {
    background: #ffffff;
    color: var(--accent-strong);
    box-shadow: 0 16px 34px rgba(9, 56, 150, 0.18);
}

.btn--outline-light {
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    background: transparent;
}

.btn--block {
    width: 100%;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-label--light {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
}

.hero-block {
    position: relative;
    padding: 44px 0 84px;
    overflow: hidden;
    background: #ffffff;
}

.hero-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-block::before,
.hero-block::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-block::before {
    display: none;
}

.hero-block::after {
    display: none;
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    gap: 48px;
    align-items: center;
}

.hero-copy h1,
.section h2,
.promo-copy h2,
.cta-copy h2 {
    margin: 18px 0 18px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.hero-copy h1 span {
    display: block;
    color: var(--accent-strong);
}

.hero-copy p,
.section p,
.promo-copy p,
.cta-copy p,
.feature-card p,
.plan-card p,
.testimonial-card p,
.step-card p,
.faq-body p,
.story-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.78;
    font-size: 1rem;
}

.hero-copy > p {
    max-width: 560px;
}

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

.hero-platform-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-platform-card,
.feature-card,
.story-note,
.story-stage__card,
.story-stage__stat,
.plan-card,
.testimonial-card,
.step-card,
.download-chip,
.faq-item {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.hero-platform-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-platform-card:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 125, 255, 0.24);
    box-shadow: 0 22px 46px rgba(18, 54, 120, 0.14);
}

.hero-platform-card__badge,
.download-chip__badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    padding: 0 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(47, 125, 255, 0.14), rgba(20, 89, 217, 0.2));
    color: var(--accent-strong);
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.hero-platform-card__badge svg,
.download-chip__badge svg {
    width: 28px;
    height: 28px;
}

.hero-platform-card strong,
.download-chip__content strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
}

.hero-platform-card span,
.download-chip__content span {
    color: var(--muted);
    font-size: 0.88rem;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-chip-row span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(24, 23, 31, 0.08);
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-stage {
    position: relative;
    min-height: 620px;
}

.hero-stage__glow {
    display: none;
}

.hero-stage__slide {
    position: absolute;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-stage__slide img,
.story-stage__card img,
.promo-device img,
.hero-floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stage__slide img {
    border-radius: 0;
    object-fit: contain;
}

.hero-stage__slide--single {
    inset: 0;
    border-radius: 0;
    background: transparent;
}

.hero-floating-card {
    position: absolute;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(47, 125, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.hero-floating-card--top {
    right: 10%;
    top: 24px;
    width: 228px;
    padding: 18px;
}

.hero-floating-card--top small,
.download-chip small {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-floating-card--top strong {
    display: block;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.36rem;
    color: var(--accent-strong);
    line-height: 1.25;
}

.hero-floating-card--top span {
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding: 92px 0;
}

.section-features {
    position: relative;
    overflow: hidden;
}

.feature-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.62;
}

.section-features > .site-shell {
    position: relative;
    z-index: 1;
}

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

.section--centered .section-label,
.section--centered .eyebrow {
    margin-inline: auto;
}

.section h2,
.promo-copy h2,
.cta-copy h2 {
    margin-top: 18px;
    margin-bottom: 14px;
    font-size: clamp(2rem, 3.6vw, 3rem);
}

.section--centered > .site-shell > p,
.narrow-shell > p {
    max-width: 660px;
    margin-inline: auto;
}

.feature-grid,
.plan-grid,
.testimonial-grid,
.step-grid {
    display: grid;
    gap: 22px;
    margin-top: 42px;
}

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

.feature-card {
    position: relative;
    z-index: 2;
    padding: 32px 28px;
}

.feature-icon,
.step-index,
.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.feature-card h3,
.story-copy h2,
.plan-card h3,
.step-card h3,
.footer-links h4 {
    margin: 18px 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
}

.story-grid,
.promo-grid,
.cta-grid,
.footer-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    align-items: center;
}

.story-copy,
.promo-copy,
.cta-copy {
    text-align: left;
}

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

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

.story-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    top: -2px;
    color: var(--accent-strong);
    font-size: 1.2rem;
}

.story-note {
    padding: 24px;
    max-width: 440px;
}

.story-note strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.story-stage {
    display: flex;
    align-items: center;
}

.story-stage__visual {
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
}

.story-stage__visual img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.section-cta {
    background: linear-gradient(135deg, #0d3f9b, #2f7dff);
    color: #0b2454;
}

.section-cta {
    position: relative;
    background: linear-gradient(135deg, #062d7a 0%, #0d47b8 48%, #2f7dff 100%);
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(132, 193, 255, 0.22), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.section-cta .cta-grid {
    position: relative;
    z-index: 1;
}

.section-cta .section-label--light {
    background: rgba(255, 255, 255, 0.72);
    color: #0d47b8;
    border: 1px solid rgba(13, 71, 184, 0.12);
}

.section-cta .cta-copy h2 {
    color: #ffffff;
    text-shadow: 0 12px 28px rgba(2, 21, 69, 0.32);
}

.section-cta .cta-copy p {
    color: #7fb0ff;
    max-width: 620px;
}

.section-cta .btn--light {
    color: #0d47b8;
    box-shadow: 0 18px 40px rgba(2, 20, 64, 0.22);
}

.section-cta .btn--outline-light {
    border-color: rgba(220, 238, 255, 0.34);
    color: #eef6ff;
    background: rgba(255, 255, 255, 0.08);
}

.cta-copy p {
    color: rgba(239, 246, 255, 0.98);
}

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

.plan-card {
    position: relative;
    padding: 34px 30px;
    text-align: left;
}

.plan-card--featured {
    border-color: rgba(47, 125, 255, 0.24);
    box-shadow: 0 26px 60px rgba(47, 125, 255, 0.16);
    transform: translateY(-8px);
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plan-price {
    margin: 24px 0;
}

.plan-price strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.plan-price span {
    display: inline-block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 12px;
}

.plan-card li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
}

.plan-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.plan-card--empty {
    grid-column: 1 / -1;
}

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

.testimonial-card {
    padding: 26px;
    text-align: left;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    border-radius: 50%;
}

.testimonial-head strong {
    display: block;
    font-size: 1rem;
}

.testimonial-head span {
    color: var(--muted);
    font-size: 0.88rem;
}

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

.step-card {
    padding: 26px;
    text-align: left;
}

.step-media {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(17, 59, 140, 0.12), rgba(47, 125, 255, 0.04));
}

.step-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 52%;
    background: linear-gradient(180deg, rgba(17, 32, 61, 0), rgba(17, 32, 61, 0.58));
}

.step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-media__label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    min-width: 46px;
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.step-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.step-tabs span {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 800;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

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

.download-chip {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(17, 59, 140, 0.12);
    color: var(--text);
}

.download-chip small {
    color: var(--accent-strong);
}

.download-chip__badge {
    background: linear-gradient(135deg, #0d3f9b, #2f7dff);
    color: #ffffff;
}

.download-chip__content {
    display: grid;
    gap: 4px;
}

.download-chip__content span {
    color: var(--muted);
}

.download-chip--static {
    justify-content: center;
    grid-column: 1 / -1;
    background: rgba(8, 45, 120, 0.12);
}

.download-chip--static strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
}

.section-faq {
    background: #ffffff;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 38px;
}

.faq-item {
    text-align: left;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-trigger strong {
    font-size: 1.3rem;
    color: var(--accent-strong);
    transition: transform 0.2s ease;
}

.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.24s ease;
}

.faq-body > p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0 24px 0;
}

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

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

.faq-item.is-open .faq-trigger strong {
    transform: rotate(45deg);
}

.site-footer {
    padding: 56px 0 40px;
    background: linear-gradient(135deg, #083089, #0d3f9b 52%, #1559c8 100%);
    border-top: 0;
}

.footer-shell {
    align-items: start;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.1fr);
    gap: 54px;
}

.footer-branding p {
    max-width: 340px;
    margin: 14px 0 0;
    color: rgba(233, 241, 255, 0.76);
    line-height: 1.7;
}

.brand--footer span {
    color: #ffffff;
}

.brand--footer img {
    box-shadow: 0 10px 24px rgba(3, 20, 61, 0.24);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.footer-links h4 {
    margin: 0 0 12px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-links span,
.footer-bottom p,
.footer-inline-links a {
    color: rgba(233, 241, 255, 0.76);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    grid-column: 1 / -1;
}

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

@media (max-width: 1120px) {
    .hero-shell,
    .story-grid,
    .promo-grid,
    .cta-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 920px) {
    .site-nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        background: #ffffff;
        border: 1px solid rgba(24, 23, 31, 0.08);
        border-radius: 22px;
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a,
    .nav-link,
    .nav-link--button {
        width: 100%;
        text-align: left;
    }

    .hero-platform-row,
    .feature-grid,
    .plan-grid,
    .testimonial-grid,
    .step-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-downloads {
        grid-template-columns: 1fr;
    }

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

    .hero-stage {
        min-height: 460px;
    }

    .hero-stage__slide--single {
        inset: 0;
    }

    .promo-copy,
    .cta-copy,
    .section--centered,
    .narrow-shell {
        text-align: left;
    }

    .section--centered .section-label,
    .narrow-shell .section-label {
        margin-inline: 0;
    }

    .section--centered > .site-shell > p,
    .narrow-shell > p {
        margin-inline: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-shell {
        gap: 34px;
    }
}

@media (max-width: 640px) {
    :root {
        --site-width: calc(100vw - 24px);
        --narrow-width: calc(100vw - 24px);
    }

    .site-header {
        padding: 12px 0;
    }

    .brand span {
        font-size: 1.08rem;
    }

    .hero-block {
        padding: 24px 0 60px;
    }

    .hero-copy h1,
    .section h2,
    .cta-copy h2 {
        font-size: clamp(2.1rem, 11vw, 2.8rem);
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stage {
        min-height: 360px;
    }

    .hero-stage__glow {
        inset: 42px 16px 42px 16px;
        border-radius: 32px;
    }

    .hero-stage__slide--single {
        inset: 0;
        border-radius: 24px;
    }

    .hero-floating-card--top {
        top: auto;
        right: 12px;
        bottom: 0;
        width: min(72%, 220px);
        padding: 12px 14px;
    }

    .hero-floating-card--top strong {
        font-size: 1rem;
    }

    .feature-card,
    .plan-card,
    .testimonial-card,
    .step-card,
    .download-chip,
    .faq-trigger,
    .story-note,
    .hero-platform-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .step-grid {
        display: flex;
        gap: 16px;
        margin-top: 28px;
        padding: 0 0 10px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .step-card {
        flex: 0 0 min(82vw, 320px);
        scroll-snap-align: start;
    }

    .step-tabs {
        display: none;
    }

    .step-media {
        min-height: 160px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

.hero-slide.is-current .hero-visual {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.hero-device-stage {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.hero-device-stage--cluster .hero-card {
    position: absolute;
}

.hero-card {
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 60px rgba(2, 18, 57, 0.22);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card--desktop {
    right: 0;
    top: 32px;
    width: 69%;
    height: 330px;
}

.hero-card--laptop {
    left: 12%;
    bottom: 0;
    width: 62%;
    height: 250px;
}

.hero-card--tablet {
    left: 0;
    top: 68px;
    width: 27%;
    height: 250px;
}

.hero-card--mobile {
    right: 10%;
    bottom: 28px;
    width: 19%;
    height: 220px;
    border-radius: 24px;
}

.hero-device-stage--single {
    display: grid;
    place-items: center;
}

.hero-card--single {
    width: min(100%, 420px);
    aspect-ratio: 0.83;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.slider-arrow--prev { left: 0; }
.slider-arrow--next { right: 0; }

.slider-dots {
    position: absolute;
    left: 52px;
    right: 52px;
    bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.slider-dot.is-active {
    width: 36px;
    background: #ffffff;
}

.hero-bottom-band {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 22px;
    padding: 24px 30px 8px;
    color: rgba(243, 248, 255, 0.85);
}

.hero-bottom-band p,
.hero-bottom-stats span {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.7;
}

.hero-bottom-stats {
    display: grid;
    gap: 12px;
}

.section {
    width: var(--landing-shell);
    margin: 0 auto;
    padding: 110px 0 0;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head--left {
    margin-left: 0;
    text-align: left;
}

.section-head--split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    text-align: left;
}

.section-head h2 {
    margin: 18px 0 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.section-head p {
    margin: 0;
    color: var(--landing-copy);
    font-size: 1.04rem;
    line-height: 1.78;
}

.story-shell,
.plan-grid,
.download-grid,
.announcement-list,
.feature-grid,
.screen-grid,
.footer-shell {
    position: relative;
    z-index: 1;
}

.story-grid,
.feature-grid,
.screen-grid,
.plan-grid,
.download-grid {
    display: grid;
    gap: 22px;
}

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

.story-card,
.feature-card,
.screen-card,
.plan-card,
.download-card,
.announcement-item,
.showcase-highlight,
.empty-card {
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius-xl);
    background: var(--landing-surface);
    box-shadow: var(--landing-shadow);
    backdrop-filter: blur(14px);
}

.story-card,
.feature-card,
.download-card,
.empty-card {
    padding: 28px;
}

.story-card h3,
.feature-card h3,
.screen-card h3,
.plan-card h3,
.download-card h3,
.empty-card h3,
.announcement-item h3 {
    margin: 0 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.04em;
}

.story-card p,
.feature-card p,
.screen-card p,
.plan-card p,
.download-card p,
.empty-card p,
.announcement-item p,
.showcase-highlight p {
    margin: 0;
    color: var(--landing-copy);
    line-height: 1.72;
}

.story-card--accent {
    background: linear-gradient(135deg, rgba(18, 97, 255, 0.98), rgba(9, 54, 169, 0.94));
}

.story-card--accent h3,
.story-card--accent p {
    color: #ffffff;
}

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

.feature-card {
    position: relative;
    min-height: 220px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(18, 97, 255, 0.12), rgba(83, 195, 255, 0.18));
    color: var(--landing-primary-deep);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.showcase-highlight {
    max-width: 320px;
    padding: 22px 24px;
}

.showcase-highlight span,
.screen-meta__badge,
.download-card__tag,
.plan-badge,
.announcement-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(18, 97, 255, 0.1);
    color: var(--landing-primary-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-highlight strong {
    display: block;
    margin: 14px 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
}

.screen-card {
    overflow: hidden;
}

.screen-card__image {
    aspect-ratio: 1.18;
    background: linear-gradient(180deg, #dceaff, #f7fbff);
}

.screen-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-card__placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: rgba(9, 54, 169, 0.4);
}

.screen-meta {
    padding: 24px;
}

.screen-meta a {
    display: inline-block;
    margin-top: 14px;
    color: var(--landing-primary);
    font-weight: 800;
}

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

.plan-card {
    padding: 28px;
}

.plan-card--popular {
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(18, 97, 255, 0.08), rgba(255, 255, 255, 0.92));
}

.plan-card header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}

.price {
    display: flex;
    align-items: end;
    gap: 8px;
    margin: 26px 0 20px;
}

.price strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    line-height: 0.9;
}

.price span {
    color: var(--landing-copy);
    font-size: 0.92rem;
    padding-bottom: 5px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 12px;
    color: #28416d;
}

.plan-card li {
    position: relative;
    padding-left: 20px;
}

.plan-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landing-primary);
}

.download-summary {
    min-width: 170px;
    padding: 22px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(18, 97, 255, 0.1), rgba(83, 195, 255, 0.14));
    border: 1px solid rgba(18, 97, 255, 0.14);
    text-align: center;
}

.download-summary strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
}

.download-summary span {
    color: var(--landing-copy);
}

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

.download-card__tag {
    margin-bottom: 18px;
}

.announcement-list {
    display: grid;
    gap: 18px;
}

.announcement-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    padding: 26px 28px;
}

.announcement-priority {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3rem;
    line-height: 1;
    color: rgba(18, 97, 255, 0.34);
}

.site-footer {
    padding: 110px 0 42px;
}

.footer-shell {
    width: var(--landing-shell);
    margin: 0 auto;
    padding: 38px;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(8, 25, 64, 0.98), rgba(7, 19, 50, 0.98));
    color: rgba(234, 242, 255, 0.92);
}

.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
}

.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand--footer span {
    color: #ffffff;
}

.footer-brand-block p {
    margin: 14px 0 0;
    max-width: 480px;
    color: rgba(222, 232, 248, 0.72);
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    min-width: min(100%, 440px);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-form input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    padding: 0 14px;
    font: inherit;
}

.footer-newsletter-form input::placeholder {
    color: rgba(222, 232, 248, 0.48);
}

.footer-newsletter-form button {
    min-width: 128px;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-cyan));
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 34px 0;
}

.footer-column h4 {
    margin: 0 0 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-column a,
.footer-column span,
.footer-bottom p,
.footer-social a,
.footer-legal a {
    color: rgba(222, 232, 248, 0.72);
}

.footer-social,
.footer-legal {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1180px) {
    .hero-slide {
        grid-template-columns: 1fr;
        min-height: 0;
    }

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

    .hero-visual {
        min-height: 460px;
    }

    .section-head--split,
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-grid,
    .screen-grid,
    .plan-grid,
    .download-grid,
    .story-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .website-landing .site-header {
        width: calc(100vw - 24px);
        margin-top: 12px;
        padding: 12px 14px;
    }

    .website-landing .site-nav-toggle {
        display: inline-flex;
    }

    .website-landing .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 24px 70px rgba(10, 38, 108, 0.18);
    }

    .website-landing .site-nav.is-open {
        display: flex;
    }

    .website-landing .site-nav > a {
        width: 100%;
        text-align: center;
    }

    .hero,
    .section,
    .footer-shell {
        width: calc(100vw - 24px);
    }

    .hero {
        padding: 18px;
        border-radius: 30px;
    }

    .hero-slide {
        padding: 20px 8px 40px;
    }

    .hero-metrics,
    .hero-bottom-band,
    .feature-grid,
    .screen-grid,
    .plan-grid,
    .download-grid,
    .story-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        display: none;
    }

    .slider-dots {
        left: 0;
        right: 0;
        bottom: 2px;
    }

    .hero-device-stage,
    .hero-visual {
        min-height: 360px;
    }

    .hero-card--desktop {
        width: 72%;
        height: 220px;
    }

    .hero-card--laptop {
        width: 62%;
        height: 172px;
        left: 10%;
    }

    .hero-card--tablet {
        width: 31%;
        height: 168px;
    }

    .hero-card--mobile {
        width: 22%;
        height: 150px;
    }

    .announcement-item {
        flex-direction: column;
    }

    .footer-shell {
        padding: 28px 20px;
    }

    .footer-newsletter-form {
        width: 100%;
        flex-direction: column;
        border-radius: 24px;
    }

    .footer-newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-copy h1 {
        font-size: clamp(2.6rem, 14vw, 4.2rem);
    }

    .section {
        padding-top: 84px;
    }

    .story-card,
    .feature-card,
    .screen-meta,
    .plan-card,
    .download-card,
    .announcement-item,
    .empty-card,
    .showcase-highlight {
        padding: 22px;
    }
}

.hero-slide.is-current .hero-visual {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 180ms;
}

.hero-slide.is-leaving .hero-visual {
    opacity: 0;
    transform: translate3d(-16px, 0, 0) scale(0.985);
}

/* Device Frames */
.hero-device-frame {
    position: relative;
    width: 100%;
    border: 2px solid #1b2744;
    background: linear-gradient(160deg, #2a3554, #1d2844);
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 25px 40px rgba(10, 35, 89, 0.3);
    transition: all 0.3s ease;
    isolation: isolate;
}

.hero-device-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(10, 35, 89, 0.4);
}

.hero-device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.5s ease;
}

.hero-device-frame:hover img {
    transform: scale(1.02);
}

.hero-device-frame::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 16px;
    background: linear-gradient(180deg, rgba(9, 34, 90, 0.35), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-device-frame--desktop {
    max-width: 620px;
    height: 390px;
    border-radius: 18px;
    overflow: visible;
    margin-bottom: 28px;
    padding: 14px 12px 18px;
}

.hero-device-frame--desktop::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 12px;
    right: 12px;
    height: 14px;
    border-radius: 10px 10px 5px 5px;
    background:
        radial-gradient(
            circle at 50% 52%,
            rgba(28, 42, 68, 0.95) 0 2px,
            rgba(183, 202, 233, 0.5) 2.2px 3.6px,
            transparent 3.8px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 3;
}

.hero-device-frame--desktop::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -36px;
    width: 196px;
    height: 34px;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(28, 39, 66, 0.56);
    background:
        linear-gradient(180deg, #b7c5de, #8fa1c1) center 0 / 44px 16px no-repeat,
        linear-gradient(180deg, #d0dbec, #a6b7d2) center 12px / 196px 22px no-repeat;
    box-shadow: 0 10px 18px rgba(16, 44, 96, 0.2);
}

.hero-device-frame--laptop {
    max-width: 590px;
    height: 360px;
    border-radius: 16px;
    overflow: visible;
    padding: 16px 10px 42px;
}

.hero-device-frame--laptop img {
    height: calc(100% - 26px);
    border-radius: 10px 10px 8px 8px;
}

.hero-device-frame--laptop::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;
    right: 12px;
    height: 12px;
    border-radius: 8px 8px 4px 4px;
    background:
        radial-gradient(
            circle at 50% 54%,
            rgba(21, 33, 55, 0.92) 0 1.8px,
            rgba(171, 191, 222, 0.42) 2px 3.1px,
            transparent 3.3px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 3;
}

.hero-device-frame--laptop::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -14px;
    height: 30px;
    border-radius: 0 0 18px 18px;
    border: 1px solid rgba(28, 39, 66, 0.56);
    background:
        radial-gradient(ellipse at center, rgba(142, 156, 182, 0.38) 0 26%, transparent 27%) center 63% / 102px 16px no-repeat,
        repeating-linear-gradient(
            90deg,
            rgba(118, 132, 160, 0.36) 0 1px,
            transparent 1px 8px
        ) center 30% / 88% 8px no-repeat,
        linear-gradient(180deg, #c8d4e8, #9daecd);
    box-shadow: 0 10px 20px rgba(15, 44, 96, 0.22);
}

.hero-device-frame--tablet {
    max-width: 420px;
    height: 530px;
    border-radius: 24px;
    border-width: 3px;
    border-color: #1a263f;
    background: linear-gradient(165deg, #2b3555, #1e2842);
    padding: 16px 10px 18px;
    box-shadow:
        0 28px 46px rgba(10, 35, 89, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-device-frame--tablet img {
    border-radius: 16px;
}

.hero-device-frame--tablet::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    width: 10px;
    height: 10px;
    transform: translateX(-50%);
    border-radius: 999px;
    background:
        radial-gradient(circle at 45% 45%, rgba(23, 36, 59, 0.95) 0 2.2px, rgba(167, 188, 222, 0.42) 2.4px 4px, transparent 4.2px);
    z-index: 3;
}

.hero-device-frame--tablet::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 56px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(224, 236, 255, 0.75);
    z-index: 3;
}

.hero-device-frame--mobile {
    max-width: 300px;
    height: 580px;
    border-radius: 30px;
    border-width: 3px;
    border-color: #16223f;
    background: linear-gradient(170deg, #2d3857, #1a233b);
    padding: 22px 8px 22px;
    box-shadow:
        0 30px 50px rgba(10, 35, 89, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.hero-device-frame--mobile img {
    border-radius: 22px;
}

.hero-device-frame--mobile::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 9px;
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: rgba(230, 240, 255, 0.88);
    z-index: 2;
}

.hero-device-frame--mobile::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 9px;
    width: 68px;
    height: 15px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 26% 50%, rgba(64, 74, 94, 0.98) 0 2.1px, transparent 2.3px),
        radial-gradient(circle at 74% 50%, rgba(55, 66, 88, 0.95) 0 1.8px, transparent 2px),
        #0d1528;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 2px 6px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Device Collage */
.hero-device-collage {
    width: 100%;
    max-width: 760px;
    height: 450px;
    position: relative;
}

.hero-device-collage .mockup {
    position: absolute;
    border: 2px solid #1d2742;
    background: linear-gradient(160deg, #2b3553, #1f2a47);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 40px rgba(10, 35, 89, 0.25);
    padding: 10px;
    transform-origin: center bottom;
    transition: all 0.3s ease;
    isolation: isolate;
}

.hero-device-collage .mockup:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 50px rgba(10, 35, 89, 0.35);
}

.hero-device-collage .mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-device-collage .mockup--desktop {
    width: 520px;
    height: 304px;
    top: 0;
    left: 126px;
    border-radius: 18px;
    z-index: 1;
    animation: deviceFloatDesktop 6s ease-in-out infinite;
    overflow: visible;
}

.hero-device-collage .mockup--laptop {
    width: 316px;
    height: 194px;
    left: 0;
    bottom: 34px;
    border-radius: 16px;
    z-index: 2;
    animation: deviceFloatLaptop 5.6s ease-in-out infinite;
    overflow: visible;
}

.hero-device-collage .mockup--tablet {
    width: 204px;
    height: 278px;
    right: 22px;
    bottom: 22px;
    border-radius: 24px;
    border-width: 2.4px;
    border-color: #1a263f;
    background: linear-gradient(165deg, #2b3555, #1e2842);
    padding: 14px 8px 14px;
    box-shadow:
        0 24px 38px rgba(10, 35, 89, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 3;
    animation: deviceFloatTablet 6.4s ease-in-out infinite;
}

.hero-device-collage .mockup--mobile {
    width: 110px;
    height: 228px;
    left: 372px;
    bottom: 16px;
    border-radius: 24px;
    border-width: 2.4px;
    border-color: #16223f;
    background: linear-gradient(170deg, #2d3857, #1a233b);
    padding: 13px 6px 18px;
    box-shadow:
        0 22px 36px rgba(10, 35, 89, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 4;
    animation: deviceFloatMobile 5.2s ease-in-out infinite;
}

/* Device Details */
.hero-device-collage .mockup--desktop::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -34px;
    width: 182px;
    height: 34px;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(28, 39, 66, 0.56);
    background:
        linear-gradient(180deg, #b7c5de, #8fa1c1) center 0 / 40px 14px no-repeat,
        linear-gradient(180deg, #d0dbec, #a6b7d2) center 10px / 182px 22px no-repeat;
    box-shadow: 0 9px 16px rgba(16, 44, 96, 0.2);
}

.hero-device-collage .mockup--laptop::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -4px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(114, 128, 155, 0.72), rgba(140, 154, 181, 0.74));
    border: 1px solid rgba(28, 39, 66, 0.45);
}

.hero-device-collage .mockup--tablet::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 7px;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: rgba(220, 234, 255, 0.72);
    z-index: 2;
}

.hero-device-collage .mockup-stand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 28px;
    height: 20px;
    background: linear-gradient(180deg, #a7b7d2, #8699bf);
    border: 1px solid rgba(28, 39, 66, 0.6);
    border-top: 0;
    border-radius: 0 0 8px 8px;
}

.hero-device-collage .mockup-stand::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9px;
    width: 84px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(180deg, #c8d4e8, #a7b8d3);
    border: 1px solid rgba(28, 39, 66, 0.44);
}

.hero-device-collage .mockup-keyboard {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -36px;
    height: 26px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(180deg, #c8d4e8, #9daecd);
    border: 1px solid rgba(28, 39, 66, 0.5);
    box-shadow: 0 12px 24px rgba(15, 44, 96, 0.2);
    overflow: hidden;
}

.hero-device-collage .mockup-keyboard::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 4px;
    height: 9px;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(117, 132, 159, 0.42) 0 1px,
            transparent 1px 8px
        );
}

.hero-device-collage .mockup-keyboard::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3px;
    width: 84px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(145, 160, 186, 0.56), rgba(107, 124, 153, 0.5));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.hero-device-collage .mockup::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 16px;
    background: linear-gradient(180deg, rgba(9, 34, 90, 0.35), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-device-collage .mockup--desktop::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 9px;
    right: 9px;
    height: 12px;
    border-radius: 9px 9px 4px 4px;
    background:
        radial-gradient(
            circle at 50% 52%,
            rgba(28, 42, 68, 0.95) 0 1.8px,
            rgba(183, 202, 233, 0.45) 2px 3px,
            transparent 3.2px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0));
    z-index: 3;
}

.hero-device-collage .mockup--laptop::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 9px;
    right: 9px;
    height: 10px;
    border-radius: 8px 8px 4px 4px;
    background:
        radial-gradient(
            circle at 50% 52%,
            rgba(21, 33, 55, 0.92) 0 1.6px,
            rgba(171, 191, 222, 0.42) 1.8px 2.8px,
            transparent 3px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    z-index: 3;
}

.hero-device-collage .mockup--tablet::before {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    top: 5px;
    width: 8px;
    height: 8px;
    transform: translateX(-50%);
    border-radius: 999px;
    background:
        radial-gradient(circle at 45% 45%, rgba(23, 36, 59, 0.95) 0 1.8px, rgba(167, 188, 222, 0.4) 2px 3.2px, transparent 3.4px);
    z-index: 3;
}

.hero-device-collage .mockup--mobile::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 7px;
    width: 40px;
    height: 9px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 24% 50%, rgba(64, 74, 94, 0.96) 0 1.5px, transparent 1.7px),
        radial-gradient(circle at 76% 50%, rgba(55, 66, 88, 0.95) 0 1.3px, transparent 1.5px),
        #0d1528;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero-device-collage .mockup--mobile::before {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 7px;
    width: 26px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(230, 240, 255, 0.82);
    z-index: 2;
}

.hero-slide.is-current .hero-device-frame {
    animation: deviceFrameBreath 5.8s ease-in-out infinite;
}

/* Animations */
@keyframes deviceFloatDesktop {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-0.5deg); }
}

@keyframes deviceFloatLaptop {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.6deg); }
}

@keyframes deviceFloatTablet {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-0.3deg); }
}

@keyframes deviceFloatMobile {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(0.8deg); }
}

@keyframes deviceFrameBreath {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.01); }
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(20, 80, 184, 0.24);
    background: rgba(255, 255, 255, 0.95);
    color: #0f45a6;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 20px rgba(20, 80, 184, 0.15);
    border-color: #1450b8;
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.98);
}

.slider-arrow--prev {
    left: 0;
}

.slider-arrow--next {
    right: 0;
}

.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(20, 80, 184, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(20, 80, 184, 0.4);
    transform: scale(1.2);
}

.slider-dot.is-active {
    background: #1450b8;
    width: 30px;
}

/* Sections */
.section {
    padding: 80px 7vw;
    background: rgba(255, 255, 255, 0.78);
    position: relative;
}

.section--downloads,
.section--updates {
    background: linear-gradient(135deg, rgba(247, 251, 255, 0.76), rgba(240, 247, 255, 0.72));
}

.section--plans {
    --plans-inline-gutter: 7vw;
    padding-left: 0;
    padding-right: 0;
}

.section--plans .section-head {
    padding-left: var(--plans-inline-gutter);
    padding-right: var(--plans-inline-gutter);
}

.section-head {
    margin-bottom: 24px;
    position: relative;
}

.section-head h2 {
    margin: 0;
    background: linear-gradient(135deg, #07235f, #1450b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(30px, 4vw, 46px);
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    position: relative;
    display: inline-block;
}

.section-head h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1450b8, #4a8cff);
    border-radius: 3px;
}

.section-head p {
    margin: 16px 0 0;
    color: #2d4d8a;
    max-width: 820px;
    font-size: 18px;
    line-height: 1.5;
}

/* Cards */
.feature-grid,
.screen-grid,
.download-grid {
    margin-top: 24px;
    display: grid;
    gap: 20px;
}

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

.feature-card,
.screen-card,
.download-card,
.announcement-item,
.empty-card {
    border-radius: 24px;
    border: 1px solid rgba(20, 80, 184, 0.16);
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 15px 30px rgba(18, 68, 152, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.screen-card::before,
.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1450b8, #4a8cff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before,
.screen-card:hover::before,
.download-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover,
.screen-card:hover,
.download-card:hover,
.announcement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(18, 68, 152, 0.12);
}

.feature-card h3,
.screen-meta h3,
.download-card h3,
.announcement-item h3,
.empty-card h3 {
    margin: 0;
    color: #0f3473;
    font-size: 22px;
    font-weight: 700;
}

.feature-card p,
.screen-meta p,
.download-card p,
.announcement-item p,
.empty-card p {
    margin: 12px 0 0;
    color: #39619f;
    line-height: 1.5;
}

/* Screen Grid */
.screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid--carousel,
.screen-grid--carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding-bottom: 2px;
}

.feature-grid--carousel > *,
.screen-grid--carousel > * {
    flex: 0 0 clamp(340px, 46vw, 560px);
}

.feature-grid--carousel::-webkit-scrollbar,
.screen-grid--carousel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.feature-grid--carousel.is-dragging,
.screen-grid--carousel.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.screen-card {
    padding: 0;
    overflow: hidden;
}

.screen-card img {
    width: 100%;
    min-height: 280px;
    max-height: 340px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.screen-card:hover img {
    transform: scale(1.05);
}

.screen-meta {
    margin-top: 16px;
    padding: 0 20px 20px;
}

.screen-meta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #1852b6;
    font-weight: 800;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.screen-meta a:hover {
    gap: 12px;
}

/* Download Grid */
.download-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.download-card {
    text-align: center;
}

.download-card .icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Plan Grid */
.plan-grid {
    margin-top: 24px;
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 20px;
    width: 100%;
    padding: 8px calc(var(--plans-inline-gutter) + 18px) 16px var(--plans-inline-gutter);
    scroll-padding-inline-start: var(--plans-inline-gutter);
    scroll-padding-inline-end: calc(var(--plans-inline-gutter) + 18px);
    scrollbar-width: thin;
    -ms-overflow-style: auto;
}

.plan-grid::after {
    content: '';
    flex: 0 0 18px;
}

.plan-card {
    min-width: 340px;
    max-width: 360px;
    flex: 0 0 340px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 24px;
    border: 1px solid rgba(20, 80, 184, 0.2);
    background: linear-gradient(150deg, #1450b8, #1a5ed0);
    box-shadow: 0 20px 40px rgba(17, 69, 162, 0.3);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 32px 64px rgba(17, 69, 162, 0.36);
}

.plan-card::before {
    content: none;
}

.plan-card:hover::before {
    opacity: 0;
}

.plan-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.plan-card h3 {
    color: #f2f7ff;
    font-size: 24px;
    margin: 0;
}

.plan-card p {
    color: rgba(242, 247, 255, 0.9);
    margin: 8px 0;
    line-height: 1.5;
}

.plan-card .price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 16px 0;
}

.plan-card .price strong {
    font-size: 42px;
    color: #ffffff;
    font-weight: 800;
}

.plan-card .price span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.plan-card ul {
    margin: 20px 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
    color: rgba(242, 247, 255, 0.9);
}

.plan-card li {
    color: inherit;
}

.plan-card .btn-primary {
    background: #ffffff;
    color: #1149a9;
    box-shadow: 0 15px 30px rgba(9, 41, 99, 0.3);
    width: 100%;
    margin-top: 16px;
}

.plan-card .btn-primary:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(9, 41, 99, 0.4);
}

.plan-card--popular {
    background: linear-gradient(150deg, #0e429a, #1450b8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.plan-card--popular .plan-badge {
    background: #ffd700;
    color: #0e429a;
}

.plan-grid::-webkit-scrollbar {
    height: 10px;
}

.plan-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #1450b8, #4a8cff);
    border-radius: 999px;
}

.plan-grid::-webkit-scrollbar-track {
    background: rgba(20, 80, 184, 0.1);
    border-radius: 999px;
}

.plan-badge {
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #124cae;
    background: #f6fbff;
}

/* Announcements */
.announcement-list {
    margin-top: 20px;
    display: grid;
    gap: 16px;
}

.announcement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.announcement-priority {
    border-radius: 999px;
    padding: 6px 12px;
    color: #0d316f;
    background: #d8e8ff;
    font-weight: 700;
    font-size: 13px;
}

/* Footer */
.site-footer {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 60px 7vw 30px;
    background: linear-gradient(180deg, #0b245e 0%, #051436 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shape {
    position: absolute;
    left: -20%;
    right: -20%;
    top: -100px;
    height: 150px;
    border-radius: 0 0 50% 50%;
    background: #ffffff;
    opacity: 0.05;
}

.footer-newsletter {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.footer-newsletter p {
    margin: 0;
    color: #d9e7ff;
    font-size: 16px;
    max-width: 440px;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    width: min(100%, 460px);
}

.footer-newsletter-form input {
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #07235f;
    flex: 1 1 auto;
    min-width: 0;
    transition: all 0.3s ease;
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.footer-newsletter-form button {
    height: 48px;
    border-radius: 999px;
    border: 0;
    padding: 0 24px;
    background: linear-gradient(135deg, #1450b8, #1a5ed0);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    background: linear-gradient(135deg, #1a5ed0, #1450b8);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 80, 184, 0.3);
}

/* Footer Grid */
.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.footer-column h4 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #4a8cff;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-column a,
.footer-column span {
    color: #b0c8ff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #b0c8ff;
    font-size: 14px;
}

.footer-social,
.footer-legal {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social a,
.footer-legal a {
    color: #b0c8ff;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-social a:hover,
.footer-legal a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Media Queries */
@media (max-width: 1240px) {
    .hero-slide {
        grid-template-columns: 1fr;
        min-height: 920px;
    }

    .hero-visual {
        max-width: 760px;
        width: 100%;
        justify-self: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-device-collage .mockup,
    .hero-slide.is-current .hero-device-frame,
    .feature-card::before,
    .plan-card::before {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 1120px) {
    .feature-grid,
    .download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 980px) {
    .website-landing .site-header {
        position: sticky;
        top: 0;
        z-index: 220;
        padding-top: max(12px, calc(10px + env(safe-area-inset-top)));
    }

    .website-landing .site-nav-toggle {
        display: inline-flex;
    }

    .website-landing .site-nav {
        position: fixed;
        top: calc(72px + env(safe-area-inset-top));
        right: 4vw;
        left: 4vw;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 16px;
        border-radius: 20px;
        border: 1px solid rgba(20, 80, 184, 0.18);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 20px 40px rgba(12, 52, 127, 0.15);
        backdrop-filter: blur(10px);
        z-index: 230;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .website-landing .site-nav.is-open {
        display: flex;
    }

    .website-landing .site-nav > a {
        border-radius: 12px;
        padding: 12px 16px;
    }
}

@media (max-width: 780px) {
    .website-landing .site-header {
        position: sticky;
        top: 0;
        z-index: 220;
    }

    .hero,
    .section,
    .site-footer {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .hero-slider {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 22px;
    }

    .hero-metrics,
    .feature-grid,
    .screen-grid,
    .download-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: auto;
        overscroll-behavior-x: contain;
        padding-bottom: 8px;
    }

    .plan-grid,
    .announcement-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: auto;
        overscroll-behavior-x: contain;
    }

    .hero-metrics::-webkit-scrollbar,
    .feature-grid::-webkit-scrollbar,
    .screen-grid::-webkit-scrollbar,
    .download-grid::-webkit-scrollbar,
    .plan-grid::-webkit-scrollbar,
    .announcement-list::-webkit-scrollbar {
        display: none;
    }

    .hero-metrics > * {
        flex: 0 0 min(68vw, 240px);
    }

    .feature-grid > *,
    .download-grid > *,
    .plan-grid > *,
    .announcement-list > * {
        flex: 0 0 min(84vw, 360px);
    }

    .screen-grid > * {
        flex: 0 0 min(88vw, 420px);
    }

    .hero-slide {
        min-height: auto;
        gap: 16px;
        align-items: start;
    }

    .hero-content h1 {
        font-size: clamp(38px, 11vw, 58px);
        line-height: 0.98;
    }

    .hero-content p {
        font-size: clamp(16px, 4.8vw, 21px);
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
        min-height: 0;
    }

    .hero-device-collage {
        max-width: 100%;
        height: 238px;
        margin: 0 auto;
    }

    .hero-device-collage .mockup--desktop {
        width: 82%;
        height: 162px;
        left: 9%;
        top: 8px;
    }

    .hero-device-collage .mockup--laptop {
        display: none;
    }

    .hero-device-collage .mockup--tablet {
        width: 28%;
        height: 128px;
        right: 6%;
        bottom: 8px;
    }

    .hero-device-collage .mockup--mobile {
        width: 20%;
        height: 114px;
        left: 8%;
        bottom: 8px;
    }

    .hero-device-frame--desktop,
    .hero-device-frame--laptop {
        height: 220px;
    }

    .hero-device-frame--tablet {
        height: 300px;
    }

    .hero-device-frame--mobile {
        height: 360px;
    }

    .announcement-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .footer-newsletter {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .footer-newsletter-form {
        width: 100%;
    }

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

@media (max-width: 620px) {
    .hero-content h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-slider {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-slide {
        min-height: auto;
        gap: 12px;
    }

    .hero-device-collage {
        max-width: 100%;
        height: 196px;
    }

    .hero-device-collage .mockup--desktop {
        width: 84%;
        height: 132px;
        left: 8%;
        top: 6px;
    }

    .hero-device-collage .mockup--laptop {
        display: none;
    }

    .hero-device-collage .mockup--tablet {
        width: 30%;
        height: 108px;
        right: 4%;
        bottom: 6px;
    }

    .hero-device-collage .mockup--mobile {
        width: 22%;
        height: 94px;
        left: 6%;
        bottom: 6px;
    }

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


/* Final mobile layout stabilization. Keep this at the bottom so it wins over
   earlier legacy responsive blocks that still target older landing variants. */
@media (max-width: 980px) {
    body.website-landing {
        overflow-x: hidden;
    }

    .website-landing .site-header,
    .website-landing .site-header.scrolled {
        inset: 0 0 auto 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: max(10px, calc(8px + env(safe-area-inset-top))) 12px 0;
        transform: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .website-landing .site-header.header-hidden {
        transform: none;
    }

    .website-landing .brand {
        gap: 10px;
        max-width: calc(100% - 68px);
        padding: 10px 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 14px 34px rgba(10, 49, 131, 0.14);
    }

    .website-landing .brand span,
    .website-landing .site-header.scrolled .brand span {
        color: var(--ink);
        font-size: 1.18rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

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

    .website-landing .site-nav-toggle,
    .website-landing .site-header.scrolled .site-nav-toggle {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        border: 1px solid rgba(16, 112, 255, 0.12);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 14px 30px rgba(10, 49, 131, 0.14);
    }

    .website-landing .site-nav {
        top: calc(74px + env(safe-area-inset-top));
        right: 12px;
        left: 12px;
        display: flex;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .website-landing .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .website-landing .site-nav > a,
    .website-landing .site-header.scrolled .site-nav > a {
        color: var(--ink);
        text-align: left;
    }

    .hero-section {
        min-height: 0;
        padding: 118px 0 44px;
    }

    .hero-container,
    .section-inner,
    .hero-feature-strip,
    .footer-shell {
        width: min(calc(100vw - 24px), 100%);
    }

    .hero-container {
        gap: 22px;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.3rem, 10vw, 3.6rem);
    }

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

    .hero-actions {
        margin-top: 24px;
        gap: 12px;
    }

    .hero-actions .btn,
    .hero-actions .btn-primary,
    .hero-actions .btn-outline-light,
    .hero-actions .btn-ghost {
        width: 100%;
    }

    .hero-metrics {
        gap: 12px;
        margin-top: 24px;
    }

    .hero-metrics > div {
        padding: 18px;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-device-stage {
        width: min(100%, 360px);
        min-height: 320px;
        margin: 0 auto;
    }

    .hero-device--ring {
        inset: 22px 18px 38px;
    }

    .hero-device--desktop {
        top: 18px;
        right: 0;
        width: 74%;
        height: 200px;
    }

    .hero-device--laptop {
        left: 0;
        bottom: 28px;
        width: 68%;
        height: 154px;
    }

    .hero-device--phone {
        right: 6%;
        bottom: 0;
        width: 31%;
        height: 184px;
    }

    .hero-feature-strip {
        gap: 16px;
        margin-top: 30px;
    }

    .hero-feature-card,
    .feature-card,
    .plan-card,
    .news-card,
    .hero-feature-card,
    .download-chip,
    .empty-card,
    .screen-meta {
        padding: 22px;
    }

    .section {
        padding: 76px 0;
    }

    .section-documentation {
        padding-top: 76px;
    }

    .split-layout,
    .video-callout,
    .download-band {
        gap: 24px;
    }

    .phone-frame {
        width: min(100%, 270px);
        padding: 14px;
        border-radius: 28px;
    }

    .feature-grid--six,
    .news-grid {
        gap: 16px;
        margin-top: 32px;
    }

    .loop-rail-mask {
        margin-top: 32px;
        padding: 4px 0 0;
    }

    .screen-grid--gallery,
    .section-screenshots .screen-grid--gallery {
        gap: 14px;
        padding: 6px 2px 18px;
    }

    .screen-card,
    .section-screenshots .screen-grid--gallery > .screen-card {
        flex-basis: min(78vw, 320px);
        width: min(78vw, 320px);
        min-width: min(78vw, 320px);
        max-width: min(78vw, 320px);
    }

    .screen-card__image {
        aspect-ratio: 0.82;
    }

    .plan-grid {
        margin-top: 32px;
    }

    .section-pricing .plan-grid > .plan-card,
    .section-pricing .plan-grid > .empty-card {
        flex-basis: min(82vw, 340px);
        width: min(82vw, 340px);
        min-width: min(82vw, 340px);
        max-width: min(82vw, 340px);
    }

    .price strong {
        font-size: 2.5rem;
    }

    .download-band {
        padding: 56px 0;
    }

    .download-actions {
        gap: 14px;
    }

    .download-chip {
        padding: 18px 20px;
    }

    .video-callout {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 48px 0;
    }

    .video-play {
        width: 74px;
        height: 74px;
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .website-landing .site-header,
    .website-landing .site-header.scrolled {
        padding-top: max(8px, calc(6px + env(safe-area-inset-top)));
    }

    .website-landing .brand {
        max-width: calc(100% - 60px);
        padding: 8px 12px;
        border-radius: 18px;
    }

    .website-landing .brand img {
        width: 34px;
        height: 34px;
    }

    .website-landing .brand span {
        font-size: 1rem;
    }

    .website-landing .site-nav-toggle,
    .website-landing .site-header.scrolled .site-nav-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .website-landing .site-nav {
        top: calc(68px + env(safe-area-inset-top));
        right: 10px;
        left: 10px;
        padding: 14px;
    }

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

    .hero-copy h1 {
        font-size: clamp(2rem, 11vw, 2.9rem);
        line-height: 1.03;
    }

    .hero-copy p,
    .centered-copy p,
    .copy-block p,
    .video-callout p,
    .hero-feature-card p,
    .feature-card p,
    .screen-card p,
    .plan-card p,
    .news-card p,
    .download-stat p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-device-stage {
        min-height: 270px;
    }

    .hero-device--desktop {
        width: 76%;
        height: 164px;
    }

    .hero-device--laptop {
        width: 70%;
        height: 126px;
    }

    .hero-device--phone {
        width: 34%;
        height: 154px;
    }

    .hero-feature-card,
    .feature-card,
    .plan-card,
    .news-card,
    .download-chip,
    .empty-card,
    .screen-meta,
    .hero-metrics > div {
        padding: 18px;
    }

    .section {
        padding: 64px 0;
    }

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

    .phone-frame {
        width: min(100%, 232px);
        padding: 12px;
    }

    .screen-card,
    .section-screenshots .screen-grid--gallery > .screen-card,
    .section-pricing .plan-grid > .plan-card,
    .section-pricing .plan-grid > .empty-card {
        flex-basis: calc(100vw - 40px);
        width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }

    .download-band {
        padding: 44px 0;
    }
}

.footer-bottom {
    flex-direction: column;
    text-align: center;
}

/* Keep this override at the end to beat older header variants still present above. */
.website-landing {
    --brand-blue-solid: #123f98;
    --brand-blue-deep: #0d327c;
}

.website-landing .site-header {
    position: sticky;
    top: 0;
    isolation: isolate;
    padding: 14px 0;
    background: var(--brand-blue-solid);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(8, 43, 116, 0.28);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(-18px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
}

.website-landing .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0.22) 66%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0.72;
    transform: translateX(-18%);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
    pointer-events: none;
    z-index: -1;
}

.website-landing .site-header.is-ready {
    opacity: 1;
    transform: translateY(0);
}

.website-landing .site-header.is-ready::before,
.website-landing .site-header:hover::before {
    transform: translateX(8%);
}

.website-landing .site-header.is-scrolled {
    background: var(--brand-blue-deep);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 48px rgba(7, 33, 92, 0.34);
}

.website-landing .site-header .site-shell {
    position: relative;
    z-index: 1;
}

.website-landing .brand {
    position: relative;
    gap: 14px;
}

.website-landing .brand span,
.website-landing .site-header.scrolled .brand span {
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(5, 24, 67, 0.16);
}

.website-landing .brand img {
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(6, 30, 82, 0.24);
}

.website-landing .site-nav {
    align-items: center;
    gap: 8px;
}

.website-landing .site-nav > a,
.website-landing .site-nav > .nav-link,
.website-landing .site-header.scrolled .site-nav > a,
.website-landing .site-header.scrolled .site-nav > .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    padding: 10px 12px;
    border-radius: 999px;
    transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.website-landing .site-nav > a::after,
.website-landing .site-nav > .nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease;
}

.website-landing .site-nav > a:hover,
.website-landing .site-nav > a.is-active,
.website-landing .site-nav > .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.website-landing .site-nav > a:hover::after,
.website-landing .site-nav > a.is-active::after,
.website-landing .site-nav > .nav-link:hover::after {
    transform: scaleX(1);
}

.website-landing .nav-link--button,
.website-landing .site-header.scrolled .nav-link--button {
    min-height: 46px;
    padding: 0 22px;
    background: #ffffff;
    color: var(--brand-blue-solid) !important;
    box-shadow: 0 16px 30px rgba(5, 33, 89, 0.22);
}

.website-landing .nav-link--button::after,
.website-landing .site-header.scrolled .nav-link--button::after {
    display: none;
}

.website-landing .nav-link--button:hover,
.website-landing .site-header.scrolled .nav-link--button:hover {
    background: #f6faff;
    color: var(--brand-blue-deep) !important;
    box-shadow: 0 18px 34px rgba(5, 33, 89, 0.28);
}

.website-landing .site-nav-toggle,
.website-landing .site-header.scrolled .site-nav-toggle {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 30px rgba(6, 31, 84, 0.2);
}

.website-landing .site-nav-toggle span,
.website-landing .site-header.scrolled .site-nav-toggle span {
    background: #ffffff;
}

@media (max-width: 980px) {
    .website-landing .site-header,
    .website-landing .site-header.scrolled {
        padding: max(10px, calc(8px + env(safe-area-inset-top))) 12px 0;
        background: transparent;
        border-bottom: 0;
        box-shadow: none;
    }

    .website-landing .site-header::before,
    .website-landing .site-header.scrolled::before {
        display: none;
    }

    .website-landing .brand {
        background: var(--brand-blue-solid);
        box-shadow: 0 18px 36px rgba(8, 43, 116, 0.24);
    }

    .website-landing .brand span,
    .website-landing .site-header.scrolled .brand span {
        color: #ffffff;
    }

    .website-landing .site-nav-toggle,
    .website-landing .site-header.scrolled .site-nav-toggle {
        background: var(--brand-blue-solid);
        border-color: rgba(255, 255, 255, 0.22);
        box-shadow: 0 18px 32px rgba(8, 43, 116, 0.2);
    }

    .website-landing .site-nav {
        padding: 16px;
        border-radius: 24px;
        background: rgba(47, 125, 255, 0.98);
        box-shadow: 0 22px 44px rgba(7, 33, 92, 0.32);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .website-landing .site-nav > a,
    .website-landing .site-nav > .nav-link,
    .website-landing .site-header.scrolled .site-nav > a,
    .website-landing .site-header.scrolled .site-nav > .nav-link {
        width: 100%;
        color: rgba(255, 255, 255, 0.92);
        background: transparent;
    }

    .website-landing .site-nav > a::after,
    .website-landing .site-nav > .nav-link::after {
        left: 14px;
        right: 14px;
        bottom: 4px;
    }

    .website-landing .site-nav > a:hover,
    .website-landing .site-nav > a.is-active,
    .website-landing .site-nav > .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .website-landing .nav-link--button,
    .website-landing .site-header.scrolled .nav-link--button {
        background: #ffffff;
        color: var(--brand-blue-solid) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .website-landing .site-header,
    .website-landing .site-header::before,
    .website-landing .site-nav > a,
    .website-landing .site-nav > a::after,
    .website-landing .site-nav > .nav-link,
    .website-landing .site-nav > .nav-link::after {
        transition: none;
    }
}

/* Visible interactive motion for landing content excluding the header. */
.website-landing .landing-main .feature-card,
.website-landing .landing-main .plan-card,
.website-landing .landing-main .testimonial-card,
.website-landing .landing-main .story-note,
.website-landing .landing-main .faq-item,
.website-landing .landing-main .download-chip,
.website-landing .landing-main .btn,
.website-landing .landing-main .hero-chip-row span {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1200px;
    opacity: 0;
    --card-rotate-x: 0deg;
    --card-rotate-y: 0deg;
    --card-shift-x: 0px;
    --card-shift-y: 0px;
    --card-glow-x: 50%;
    --card-glow-y: 50%;
    transform: translate3d(0, 28px, 0) scale(0.98);
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    transition-delay: var(--card-delay, 0ms);
}

.website-landing .landing-main .feature-card::after,
.website-landing .landing-main .plan-card::after,
.website-landing .landing-main .testimonial-card::after,
.website-landing .landing-main .story-note::after,
.website-landing .landing-main .faq-item::after,
.website-landing .landing-main .download-chip::after,
.website-landing .landing-main .btn::after,
.website-landing .landing-main .hero-chip-row span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(47, 125, 255, 0.14), rgba(47, 125, 255, 0) 42%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.website-landing .landing-main .feature-card.is-visible,
.website-landing .landing-main .plan-card.is-visible,
.website-landing .landing-main .testimonial-card.is-visible,
.website-landing .landing-main .story-note.is-visible,
.website-landing .landing-main .faq-item.is-visible,
.website-landing .landing-main .download-chip.is-visible,
.website-landing .landing-main .btn.is-visible,
.website-landing .landing-main .hero-chip-row span.is-visible {
    opacity: 1;
    transform:
        translate3d(var(--card-shift-x), var(--card-shift-y), 0)
        rotateX(var(--card-rotate-x))
        rotateY(var(--card-rotate-y))
        scale(1);
}

.website-landing .landing-main .feature-card:hover,
.website-landing .landing-main .plan-card:hover,
.website-landing .landing-main .testimonial-card:hover,
.website-landing .landing-main .story-note:hover,
.website-landing .landing-main .faq-item:hover,
.website-landing .landing-main .download-chip:hover,
.website-landing .landing-main .btn:hover,
.website-landing .landing-main .hero-chip-row span:hover {
    border-color: rgba(47, 125, 255, 0.26);
    box-shadow: 0 26px 52px rgba(18, 54, 120, 0.16);
}

/* Final pricing overrides to beat duplicated legacy blocks above. */
.section-pricing {
    overflow: visible;
}

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

.section-pricing > .plan-grid-viewport {
    width: min(1540px, calc(100vw - 40px));
    margin: 0 auto;
    overflow: hidden;
}

.plan-grid-viewport {
    width: 100%;
    overflow: visible;
}

.section-pricing .plan-grid-viewport {
    scrollbar-width: none;
}

.section-pricing .plan-grid-viewport::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.section-pricing .plan-grid-viewport--centered {
    overflow: visible;
}

.section-pricing .plan-grid--centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 24px auto 0;
    padding: 0;
    align-items: stretch;
    overflow: visible;
    overscroll-behavior: auto;
    scroll-snap-type: none;
    scroll-padding-inline-start: 0;
    scroll-padding-inline-end: 0;
}

.section-pricing .plan-grid--centered > .plan-card,
.section-pricing .plan-grid--centered > .plan-card.plan-card--empty {
    width: clamp(214px, calc((100% - 72px) / 5), 276px);
    flex: 0 1 clamp(214px, calc((100% - 72px) / 5), 276px);
    min-width: 0;
    max-width: 276px;
}

.section-pricing .plan-grid-viewport--scroll {
    overflow: visible;
}

.section-pricing .plan-grid--scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 24px auto 0;
    padding: 0;
    overflow: visible;
    align-items: stretch;
    overscroll-behavior: auto;
    scroll-snap-type: none;
    scroll-padding-inline-start: 0;
    scroll-padding-inline-end: 0;
}

.section-pricing .plan-grid--scroll > .plan-card,
.section-pricing .plan-grid--scroll > .plan-card.plan-card--empty {
    width: clamp(214px, calc((100% - 72px) / 5), 276px);
    flex: 0 1 clamp(214px, calc((100% - 72px) / 5), 276px);
    min-width: 0;
    max-width: 276px;
}

.section-pricing .plan-grid::after {
    content: none;
}

.section-pricing .plan-card {
    min-width: 0;
    max-width: none;
    padding: 22px 20px;
    border-radius: 22px;
}

.section-pricing .plan-card h3 {
    font-size: 1.95rem;
    line-height: 1.02;
}

.section-pricing .plan-card p,
.section-pricing .plan-card li {
    font-size: 0.97rem;
    line-height: 1.56;
}

.section-pricing .plan-card .price {
    margin: 14px 0;
    gap: 6px;
}

.section-pricing .plan-card .price strong {
    font-size: clamp(2.7rem, 2.8vw, 3.35rem);
    line-height: 0.96;
}

.section-pricing .plan-card .price span {
    font-size: 0.95rem;
}

.section-pricing .plan-card ul {
    margin: 16px 0;
    gap: 8px;
}

.section-pricing .plan-card .btn-primary {
    min-height: 48px;
    margin-top: 12px;
}

@media (min-width: 769px) and (max-width: 1320px) {
    .section-pricing > .plan-grid-viewport {
        width: min(1320px, calc(100vw - 28px));
    }

    .section-pricing .plan-grid--centered,
    .section-pricing .plan-grid--scroll {
        gap: 16px;
    }

    .section-pricing .plan-grid--centered > .plan-card,
    .section-pricing .plan-grid--centered > .plan-card.plan-card--empty,
    .section-pricing .plan-grid--scroll > .plan-card,
    .section-pricing .plan-grid--scroll > .plan-card.plan-card--empty {
        width: clamp(188px, calc((100% - 64px) / 5), 244px);
        flex-basis: clamp(188px, calc((100% - 64px) / 5), 244px);
        max-width: 244px;
    }

    .section-pricing .plan-card {
        padding: 20px 18px;
    }

    .section-pricing .plan-card h3 {
        font-size: 1.72rem;
    }

    .section-pricing .plan-card p,
    .section-pricing .plan-card li {
        font-size: 0.93rem;
    }

    .section-pricing .plan-card .price strong {
        font-size: clamp(2.35rem, 2.4vw, 3rem);
    }

    .section-pricing .plan-card .price span {
        font-size: 0.88rem;
    }
}

.step-grid-viewport {
    width: 100%;
    overflow: visible;
}

@media (max-width: 768px) {
    .section-pricing {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-pricing > .plan-grid-viewport {
        width: 100%;
        overflow-x: auto;
    }

    .section-pricing .site-shell,
    .section-pricing .narrow-shell {
        width: 100%;
    }

    .section-pricing .plan-grid-viewport {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }

    .section-pricing .plan-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        width: max-content;
        min-width: 100%;
        margin-top: 24px;
        padding: 0 20px 10px 0;
        overflow: visible;
        scroll-snap-type: x proximity;
    }

    .section-pricing .plan-grid::after {
        content: none;
    }

    .section-pricing .plan-grid > .plan-card {
        width: min(84vw, 340px);
        min-width: min(84vw, 340px);
        max-width: min(84vw, 340px);
        flex: 0 0 min(84vw, 340px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .section-steps {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-steps .step-grid-viewport {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }

    .section-steps .step-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        width: max-content;
        min-width: 100%;
        margin-top: 28px;
        padding: 0 20px 10px 0;
        overflow: visible;
        scroll-snap-type: x proximity;
    }

    .section-steps .step-card {
        width: min(84vw, 320px);
        min-width: min(84vw, 320px);
        max-width: min(84vw, 320px);
        flex: 0 0 min(84vw, 320px);
        scroll-snap-align: start;
    }

    .section-pricing .plan-grid-viewport::-webkit-scrollbar,
    .section-steps .step-grid-viewport::-webkit-scrollbar {
        display: none;
    }
}

.website-landing .landing-main .feature-card:hover::after,
.website-landing .landing-main .plan-card:hover::after,
.website-landing .landing-main .testimonial-card:hover::after,
.website-landing .landing-main .story-note:hover::after,
.website-landing .landing-main .faq-item:hover::after,
.website-landing .landing-main .download-chip:hover::after,
.website-landing .landing-main .btn:hover::after,
.website-landing .landing-main .hero-chip-row span:hover::after {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .website-landing .landing-main .feature-card,
    .website-landing .landing-main .plan-card,
    .website-landing .landing-main .testimonial-card,
    .website-landing .landing-main .story-note,
    .website-landing .landing-main .faq-item,
    .website-landing .landing-main .download-chip,
    .website-landing .landing-main .btn,
    .website-landing .landing-main .hero-chip-row span {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .website-landing .landing-main .feature-card::after,
    .website-landing .landing-main .plan-card::after,
    .website-landing .landing-main .testimonial-card::after,
    .website-landing .landing-main .story-note::after,
    .website-landing .landing-main .faq-item::after,
    .website-landing .landing-main .download-chip::after,
    .website-landing .landing-main .btn::after,
    .website-landing .landing-main .hero-chip-row span::after {
        display: none;
    }
}

/* Keep the full hero zone in brand blue to match the requested top-section treatment. */
.website-landing .landing-main > .hero-block,
.website-landing section.hero-block#home {
    background: var(--brand-blue-solid) !important;
}

.website-landing .hero-block::before {
    display: block;
    top: -160px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 72%);
}

.website-landing .hero-block::after {
    display: block;
    left: -120px;
    bottom: -180px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.website-landing .hero-copy h1 {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(3.6rem, 5vw, 5.6rem);
    line-height: 0.92;
    letter-spacing: -0.065em;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 10px 34px rgba(3, 22, 68, 0.22);
}

.website-landing .hero-copy h1 span {
    color: #d9ecff;
}

.website-landing .hero-copy > p {
    max-width: 38rem;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.12rem, 1.35vw, 1.34rem);
    line-height: 1.78;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.84);
}

.website-landing .hero-stage {
    min-height: 760px;
    padding: 16px;
    border-radius: 36px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 26px 56px rgba(4, 28, 80, 0.22);
}

.website-landing .hero-stage__slide img {
    transform: scale(1.14);
    transform-origin: center;
    filter: drop-shadow(0 30px 50px rgba(5, 24, 70, 0.18));
}

.website-landing .story-stage {
    justify-content: center;
}

.website-landing .story-stage__visual {
    display: grid;
    place-items: center;
    min-height: 620px;
}

.website-landing .story-stage__visual img {
    width: auto;
    max-width: 114%;
    max-height: 660px;
    object-fit: contain;
    object-position: center;
}

.website-landing .hero-block .eyebrow {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.website-landing .hero-block .btn--primary {
    background: #ffffff;
    color: var(--brand-blue-solid);
    box-shadow: 0 20px 38px rgba(4, 28, 80, 0.24);
}

.website-landing .hero-block .btn--ghost {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.website-landing .hero-platform-card {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 42px rgba(5, 33, 89, 0.18);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.website-landing .hero-platform-card strong,
.website-landing .hero-platform-card span {
    color: #ffffff;
}

.website-landing .hero-platform-card__badge {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.website-landing .hero-chip-row span {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
}

.website-landing .section-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 22%, rgba(116, 193, 255, 0.34), transparent 22%),
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
        linear-gradient(135deg, #072b73 0%, #0d47b8 46%, #2f7dff 100%);
}

.website-landing .section-cta .cta-grid {
    align-items: center;
    gap: 32px;
}

.website-landing .section-cta .cta-copy h2 {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    max-width: 10.5ch;
    margin-bottom: 18px;
}

.website-landing .section-cta .cta-copy p {
    font-size: clamp(1.05rem, 1.3vw, 1.22rem);
    line-height: 1.82;
    letter-spacing: -0.02em;
    max-width: 42rem;
    color: #7fb0ff;
}

.website-landing .section-cta .cta-actions {
    gap: 16px;
    margin-top: 28px;
}

.website-landing .section-cta .btn--light {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #edf5ff 100%);
    color: #0d47b8;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    box-shadow: 0 22px 44px rgba(2, 20, 64, 0.24);
}

.website-landing .section-cta .btn--outline-light {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 18px;
    border-color: rgba(222, 238, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.website-plans-page .plans-hero {
    padding: 148px 0 48px;
    background:
        radial-gradient(circle at 18% 20%, rgba(124, 194, 255, 0.18), transparent 24%),
        linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.website-plans-page .plans-hero__inner {
    display: grid;
    justify-items: center;
    gap: 16px;
    text-align: center;
}

.website-plans-page .plans-hero__inner h1 {
    margin: 0;
    max-width: 8.5ch;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
    color: #123f98;
}

.website-plans-page .plans-hero__inner p {
    max-width: 38rem;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.76;
    color: #4d6796;
}

@media (max-width: 980px) {
    .website-landing .landing-main > .hero-block,
    .website-landing section.hero-block#home {
        background: var(--brand-blue-solid) !important;
    }

    .website-landing .hero-stage {
        padding: 14px;
        border-radius: 28px;
        min-height: 680px;
    }

    .website-landing .hero-copy h1 {
        font-size: clamp(3rem, 11vw, 4.4rem);
        line-height: 0.96;
    }

    .website-landing .hero-copy > p {
        font-size: 1.04rem;
        line-height: 1.72;
    }

    .website-landing .hero-stage__slide img {
        transform: scale(1.08);
    }

    .website-landing .story-stage__visual {
        min-height: 420px;
    }

    .website-landing .story-stage__visual img {
        max-width: 108%;
        max-height: 460px;
    }

    .website-landing .section-cta .cta-copy h2 {
        max-width: none;
        font-size: clamp(2.3rem, 9vw, 3.4rem);
    }

    .website-plans-page .plans-hero {
        padding: 118px 0 36px;
    }
}

/* Final plans-page pricing override. Keep this at the absolute end so it wins
   over older shared pricing rules. */
body.website-plans-page,
body.website-plans-page .landing-main {
    overflow-x: hidden;
}

.website-plans-page .section-pricing {
    overflow: hidden;
}

.website-plans-page .section-pricing > .plan-grid-viewport {
    width: min(1520px, calc(100vw - 32px));
    margin: 0 auto;
    overflow: hidden !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.website-plans-page .section-pricing > .plan-grid-viewport::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.website-plans-page .section-pricing .plan-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin: 24px auto 0;
    padding: 0;
    overflow: visible !important;
}

.website-plans-page .section-pricing .plan-grid::after {
    content: none !important;
}

.website-plans-page .section-pricing .plan-grid > .plan-card,
.website-plans-page .section-pricing .plan-grid > .plan-card.plan-card--empty,
.website-plans-page .section-pricing .plan-grid > .empty-card {
    flex: 0 1 clamp(220px, 18.5vw, 276px) !important;
    width: clamp(220px, 18.5vw, 276px) !important;
    min-width: 0 !important;
    max-width: 276px !important;
}

@media (min-width: 769px) and (max-width: 1320px) {
    .website-plans-page .section-pricing .plan-grid > .plan-card,
    .website-plans-page .section-pricing .plan-grid > .plan-card.plan-card--empty,
    .website-plans-page .section-pricing .plan-grid > .empty-card {
        flex-basis: clamp(205px, 21vw, 248px) !important;
        width: clamp(205px, 21vw, 248px) !important;
        max-width: 248px !important;
    }
}

@media (max-width: 768px) {
    .website-plans-page .section-pricing > .plan-grid-viewport {
        width: 100%;
        overflow-x: auto !important;
    }

    .website-plans-page .section-pricing .plan-grid {
        justify-content: flex-start !important;
        width: max-content;
        max-width: none;
        overflow: visible !important;
    }

    .website-plans-page .section-pricing .plan-grid > .plan-card,
    .website-plans-page .section-pricing .plan-grid > .plan-card.plan-card--empty,
    .website-plans-page .section-pricing .plan-grid > .empty-card {
        flex: 0 0 min(84vw, 340px) !important;
        width: min(84vw, 340px) !important;
        max-width: min(84vw, 340px) !important;
    }
}

.download-choice {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.download-choice[hidden] {
    display: none;
}

.download-choice.is-open {
    display: flex;
}

.download-choice__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 46, 0.68);
    backdrop-filter: blur(6px);
}

.download-choice__panel {
    position: relative;
    z-index: 1;
    width: min(360px, calc(100vw - 28px));
    padding: 20px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(6, 20, 46, 0.35);
    text-align: left;
    animation: downloadChoiceIn 0.28s ease;
}

.download-choice__label {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1d4ed8;
}

.download-choice__panel h3 {
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    color: #0f172a;
}

.download-choice__subtitle {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.download-choice__actions {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.download-choice__option {
    width: 100%;
    justify-content: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 700;
    text-decoration: none;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.download-choice__option:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.16);
    transform: translateY(-1px);
}

.download-choice__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
}

.download-choice__badge img {
    height: 24px;
    width: auto;
    display: block;
}

.download-choice__label-text {
    font-weight: 700;
}

.download-chip__store-badge {
    margin-top: 8px;
    height: 18px;
    width: auto;
    display: inline-block;
}

.download-choice__close {
    margin-top: 18px;
    border: 0;
    background: transparent;
    color: #64748b;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

@keyframes downloadChoiceIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 520px) {
    .download-choice__panel {
        padding: 22px;
    }
}

/* Mobile polish overrides */
@media (max-width: 920px) {
    .website-landing .site-nav {
        background: rgba(9, 18, 35, 0.96);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: 0 22px 44px rgba(2, 8, 22, 0.45);
    }

    .website-landing .site-nav > a,
    .website-landing .site-nav > .nav-link {
        color: #eaf2ff !important;
    }

    .website-landing .site-nav .nav-link--button {
        background: #ffffff;
        color: #123f98 !important;
    }

    .website-landing .site-nav-toggle {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .website-landing .site-nav-toggle span {
        background: #ffffff;
    }
}

@media (max-width: 720px) {
    .website-landing .site-shell {
        width: min(100%, calc(100vw - 28px));
    }

    .website-landing .narrow-shell {
        width: min(100%, calc(100vw - 28px));
    }

    .website-landing .hero-block {
        padding: 32px 0 64px;
    }

    .website-landing .section {
        padding: 70px 0;
    }

    .website-landing .hero-shell {
        gap: 28px;
    }

    .website-landing .hero-copy h1 {
        font-size: clamp(2.6rem, 9.5vw, 3.4rem);
    }

    .website-landing .hero-copy > p {
        font-size: 1.02rem;
    }

    .website-landing .hero-platform-card {
        padding: 16px;
    }

    .website-landing .hero-stage {
        min-height: 360px;
        padding: 12px;
        border-radius: 26px;
    }

    .website-landing .story-grid,
    .website-landing .promo-grid,
    .website-landing .cta-grid,
    .website-landing .footer-shell {
        gap: 28px;
    }

    .website-landing .footer-shell {
        grid-template-columns: 1fr;
    }

    .website-landing .footer-links {
        grid-template-columns: 1fr;
    }

    .website-landing .cta-downloads {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .website-landing .site-header {
        padding: 14px 0;
    }

    .website-landing .site-nav {
        left: 12px;
        right: 12px;
    }

    .website-landing .hero-chip-row span {
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .website-landing .feature-card,
    .website-landing .plan-card,
    .website-landing .testimonial-card,
    .website-landing .step-card,
    .website-landing .download-chip {
        padding: 20px;
    }

    .website-landing .download-chip {
        flex-direction: column;
        align-items: flex-start;
    }

    .website-landing .download-chip__badge {
        width: 54px;
        height: 54px;
    }
}
