:root,
html[data-theme="light"] {
    color-scheme: light;
    /*
     * Design standards:
     * - Use these tokens for new sections before adding one-off values.
     * - Keep page sections as full-width bands with constrained inner content.
     * - Reserve cards for repeated items, modals, and framed tools.
     */
    --accent: #3491fe;
    --accent-strong: #017fff;
    --success: #01ba78;
    --warning: #fe7923;
    --purple: #9168de;
    --danger: #fd5153;
    --bg: #f4f5f8;
    --bg-2: #edeef2;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-2: #f0f1f5;
    --text: #0d0d1a;
    --nav-text: #2f3443;
    --muted: #737387;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0 16px 48px rgba(18, 24, 40, 0.10);
    --header-bg: rgba(244, 245, 248, 0.82);
    --footer-bg: #e9edf4;
    --subfooter-border: rgba(0, 0, 0, 0.08);
    --hero-glow-1: rgba(1, 127, 255, 0.08);
    --hero-glow-2: rgba(145, 104, 222, 0.08);
    --footer-logo-filter: none;
    --radius: 20px;
    --radius-card: 18px;
    --radius-control: 999px;
    --space-section: clamp(70px, 8vw, 126px);
    --space-section-tight: clamp(48px, 6vw, 86px);
    --space-grid: clamp(16px, 2vw, 24px);
    --container: 1280px;
    --nav-container: 1360px;
    --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: "Sora", Inter, sans-serif;
    --font-science-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
    --font-science-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --accent: #469cff;
    --accent-strong: #2f8fff;
    --success: #32cb93;
    --warning: #ffab57;
    --purple: #b29ef5;
    --danger: #ff8080;
    --bg: #0f141d;
    --bg-2: #151d29;
    --surface: rgba(29, 37, 51, 0.94);
    --surface-strong: #1c2433;
    --surface-2: #243042;
    --text: #f4f6fb;
    --nav-text: #d8e1ef;
    --muted: #a8b1c0;
    --border: rgba(255, 255, 255, 0.15);
    --shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
    --header-bg: rgba(15, 20, 29, 0.82);
    --footer-bg: #111927;
    --subfooter-border: rgba(255, 255, 255, 0.12);
    --hero-glow-1: rgba(47, 143, 255, 0.14);
    --hero-glow-2: rgba(178, 158, 245, 0.08);
    --footer-logo-filter: invert(1);
}

* { box-sizing: border-box; }

[hidden] {
    display: none !important;
}

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

body {
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, var(--hero-glow-1), transparent 34%),
        radial-gradient(circle at top right, var(--hero-glow-2), transparent 28%),
        var(--bg);
    color: var(--text);
    line-height: 1.5;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--accent-strong);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 14px 0 0;
}

.site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    width: min(var(--nav-container), calc(100% - 24px));
    margin: 0 auto;
    padding: 10px 14px;
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(18, 24, 40, 0.07);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.brand img {
    display: block;
    width: auto;
    height: 26px;
}

.site-header .brand {
    align-items: flex-end;
    gap: 8px;
}

.site-header .brand span {
    display: inline-block;
    font-size: 26px;
    font-weight: 500;
    line-height: 0.88;
    transform: translateY(1px);
}

.brand-footer img {
    height: 24px;
    filter: var(--footer-logo-filter);
}

.site-nav-panel {
    display: contents;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--nav-text);
    font-size: 0.95rem;
    font-weight: 700;
}

.site-nav a,
.text-link {
    text-decoration: none;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link {
    color: var(--accent-strong);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(10, 114, 232, 0.08);
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-toggle {
    display: none;
}

.theme-toggle,
.locale-trigger {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    color: var(--text);
    font: 700 0.86rem/1 var(--font);
}

.theme-toggle {
    cursor: pointer;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 40px;
    padding: 0 6px 0 8px;
    margin-left: -2px;
    border: 0;
    background: transparent;
    border-radius: 999px;
    transition: color 160ms ease, background-color 160ms ease;
}

.theme-toggle-icon {
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    background: rgba(10, 114, 232, 0.05);
    color: var(--accent-strong);
}

.theme-toggle:hover .theme-toggle-icon,
.theme-toggle:focus-visible .theme-toggle-icon {
    transform: rotate(-10deg) scale(1.08);
    filter: drop-shadow(0 4px 10px rgba(1, 127, 255, 0.16));
}

.submenu {
    position: relative;
    --submenu-offset: 10px;
    --submenu-panel-width: 164px;
}

.submenu:hover::after,
.submenu:focus-within::after,
.submenu.is-open::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: max(100%, var(--submenu-panel-width));
    height: calc(var(--submenu-offset) + 14px);
}

.locale-trigger {
    cursor: pointer;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 999px;
    transition: transform 160ms ease, background-color 160ms ease;
}

.locale-trigger:hover,
.locale-trigger:focus-visible,
.locale-menu:hover .locale-trigger,
.locale-menu.is-open .locale-trigger {
    background: rgba(10, 114, 232, 0.08);
    transform: translateY(-1px);
}

.locale-flag-icon {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(12, 18, 32, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.locale-trigger:hover .locale-flag-icon,
.locale-trigger:focus-visible .locale-flag-icon,
.locale-menu:hover .locale-flag-icon,
.locale-menu.is-open .locale-flag-icon {
    transform: scale(1.06);
    box-shadow:
        0 0 0 1px rgba(12, 18, 32, 0.08),
        0 8px 18px rgba(18, 24, 40, 0.14);
}

.submenu-panel {
    position: absolute;
    top: calc(100% + var(--submenu-offset));
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    min-width: var(--submenu-panel-width);
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-strong);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.submenu:hover .submenu-panel,
.submenu:focus-within .submenu-panel,
.submenu.is-open .submenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.locale-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    text-decoration: none;
}

.locale-option:hover,
.locale-option:focus-visible,
.locale-option.is-current {
    background: rgba(10, 114, 232, 0.08);
}

.locale-option.is-current {
    box-shadow: inset 0 0 0 1px rgba(10, 114, 232, 0.22);
}

.locale-option.is-inactive {
    opacity: 0.44;
    cursor: default;
}

.locale-option.is-inactive:hover,
.locale-option.is-inactive:focus-visible {
    background: transparent;
}

.locale-option.is-inactive .locale-flag-icon {
    filter: saturate(0.8);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--accent-strong);
    color: #fff;
    font: 700 0.95rem/1 var(--font);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(1, 127, 255, 0.22);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(1, 127, 255, 0.24);
}

.button-small {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.86rem;
}

.button-secondary {
    background: var(--surface-strong);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 690px) 360px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: min(var(--container), calc(100% - 32px));
    min-height: calc(100svh - 104px);
    margin: 0 auto;
    padding: 54px 0 72px;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 690px;
}

.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 42px;
    margin-bottom: 22px;
    padding: 8px 14px 8px 10px;
    border: 2px solid color-mix(in srgb, var(--accent) 12%, var(--border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 62%, transparent);
    box-shadow: 0 8px 18px rgba(18, 24, 40, 0.04);
    backdrop-filter: blur(10px);
}

.hero .hero-social-proof p {
    margin: 0;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 400;
}

.hero-social-avatars {
    display: flex;
    align-items: center;
    padding-right: 2px;
}

.hero-social-avatars span,
.hero-social-avatars img {
    width: 27px;
    height: 27px;
    margin-left: -6px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(18, 24, 40, 0.1);
}

.hero-social-avatars img {
    object-fit: cover;
    display: block;
}

.hero-social-avatars span:first-child,
.hero-social-avatars img:first-child {
    margin-left: 0;
}

.hero-social-avatars span:nth-child(1) {
    background:
        radial-gradient(circle at 50% 34%, #f1d2be 0 26%, transparent 27%),
        radial-gradient(circle at 50% 82%, #9bb8ff 0 34%, #6a87d6 35% 100%);
}

.hero-social-avatars span:nth-child(2) {
    background:
        radial-gradient(circle at 50% 34%, #e8c3af 0 24%, transparent 25%),
        radial-gradient(circle at 50% 82%, #ffd48c 0 34%, #e9a84c 35% 100%);
}

.hero-social-avatars span:nth-child(3) {
    background:
        radial-gradient(circle at 50% 34%, #e4c6b7 0 25%, transparent 26%),
        radial-gradient(circle at 50% 82%, #8fd7ca 0 34%, #319b8a 35% 100%);
}

.hero-social-rating {
    font-weight: 700;
}

.hero-social-star {
    color: #f4b400;
}

.hero h1 {
    max-width: 10ch;
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.9rem, 5.9vw, 5rem);
    line-height: 0.97;
    letter-spacing: -0.03em;
}

.hero p {
    max-width: 46ch;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

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

.phone-frame {
    width: min(100%, 360px);
    aspect-ratio: 0.49;
    justify-self: end;
    padding: 14px;
    border-radius: 48px;
    background: #10121a;
    box-shadow: var(--shadow);
}

.phone-screen {
    position: relative;
    height: 100%;
    padding: 54px 20px 20px;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface-2) 100%);
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    width: 112px;
    height: 28px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #10121a;
}

.phone-holder {
    position: relative;
    container-type: inline-size;
    aspect-ratio: 86.399 / 174.8;
    overflow: visible;
    background: transparent;
}

.phone-holder::before {
    content: attr(data-phone-time);
    position: absolute;
    top: 4.35%;
    left: 13.2%;
    z-index: 4;
    color: #11131d;
    font-size: clamp(8px, 3.25cqw, 12px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    pointer-events: none;
}

.phone-holder-frame {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.phone-holder-screen {
    position: absolute;
    top: auto;
    right: 4%;
    bottom: 1.5%;
    left: 4%;
    z-index: 1;
    width: 93%;
    aspect-ratio: 79.5 / 169.5;
    overflow: hidden;
    border-radius: 11% / 5.4%;
    background: var(--surface-strong);
    box-shadow: 0 16px 48px rgba(18, 24, 40, 0.30);
    filter: drop-shadow(0 28px 62px rgba(18, 24, 40, 0.22)) drop-shadow(0 10px 24px rgba(18, 24, 40, 0.08));
}

.phone-holder-screen > img,
.phone-holder-screen > video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center bottom;
}

.phone-screen h2 {
    margin: 0 0 18px;
    font-size: 1.4rem;
}

.gauge {
    width: 180px;
    aspect-ratio: 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: conic-gradient(var(--success), var(--accent), var(--warning), var(--danger), var(--surface-2) 0);
    box-shadow: inset 0 0 0 24px #fff;
}

.macro-row,
.quick-menu {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 0;
    padding: 13px 14px;
    border-radius: 16px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
}

.quick-menu span {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    border-radius: 999px;
    background: rgba(52, 145, 254, 0.1);
    color: var(--accent-strong);
    font-weight: 700;
    font-size: 0.84rem;
}

.section {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: var(--space-section) 0;
}

.section-tight {
    padding-top: var(--space-section-tight);
    padding-bottom: var(--space-section-tight);
}

.section.muted {
    width: 100%;
    padding-left: max(16px, calc((100% - var(--container)) / 2));
    padding-right: max(16px, calc((100% - var(--container)) / 2));
    background: var(--bg-2);
}

.narrow {
    max-width: min(72ch, calc(100% - 32px));
}

.section-heading {
    max-width: 56ch;
    margin-bottom: 32px;
}

.section-heading-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-label {
    display: block;
    margin-bottom: 12px;
    color: var(--accent-strong);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

[data-drag-scroll] img {
    -webkit-user-drag: none;
    user-select: none;
}

.section h2,
.article-page h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.section-heading p,
.lede {
    color: var(--muted);
    font-size: 1.05rem;
}

.why-title {
    white-space: nowrap;
    font-size: clamp(2.8rem, 4.9vw, 3.9rem);
    font-weight: 400;
    letter-spacing: -0.045em;
}

.why-grid,
.testimonial-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.why-grid article,
.testimonial-grid figure,
.blog-grid article,
.feature-grid article,
.insight-list article {
    margin: 0;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-strong);
}

.why-grid article {
    position: relative;
    overflow: hidden;
}

.why-grid article,
.feature-grid article,
.timeline article,
.faq-list details {
    box-shadow: 0 18px 38px rgba(18, 24, 40, 0.06);
}

.why-grid h3,
.copy-row h3,
.insight-list h3,
.feature-grid h3,
.blog-grid h3,
.timeline h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.08rem;
}

.why-grid p,
.copy-row p,
.insight-list p,
.feature-grid p,
.blog-grid p,
.timeline p {
    margin: 0;
    color: var(--muted);
}

.why-grid h3 {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    padding-right: 118px;
    font-size: 1.62rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: -0.04em;
}

.why-grid p {
    position: relative;
    z-index: 1;
    padding-right: 18px;
    line-height: 1.42;
}

.avatar {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--success));
}

blockquote {
    margin: 0 0 16px;
    font-size: 1.05rem;
}

figcaption {
    color: var(--muted);
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 64px;
}

.reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.media-panel {
    min-height: 520px;
    border-radius: 34px;
    background: #11131d;
    padding: 28px;
    box-shadow: var(--shadow);
}

.app-stack {
    display: grid;
    gap: 18px;
    height: 100%;
    align-content: center;
}

.mini-shot {
    min-height: 128px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.mini-shot.active {
    background: #fff;
    color: var(--text);
}

.copy-row {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.copy-row:first-of-type {
    margin-top: 22px;
}

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

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

.trust-band > div {
    padding: 34px;
    border-radius: 28px;
    color: #fff;
    background: #11131d;
}

.trust-band > div:nth-child(2) {
    background: var(--accent-strong);
}

.trust-band p {
    color: rgba(255, 255, 255, 0.82);
}

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

.timeline {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
}

.timeline article {
    scroll-snap-align: start;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--surface-strong);
    border: 1px solid var(--border);
}

.timeline time,
.blog-grid span,
.article-date {
    display: block;
    margin-bottom: 12px;
    color: var(--accent-strong);
    font-weight: 800;
    font-size: 0.86rem;
}

.timeline-page {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
}

.blog-grid a {
    text-decoration: none;
}

.blog-index {
    padding-top: 54px;
}

.blog-index-grid article {
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.blog-card-link {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    text-decoration: none;
}

.blog-card-link > img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
    background: var(--surface-2);
}

.blog-card-link > div {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 24px 0 0;
}

.blog-card-link h2 {
    margin: 0;
    font-family: "PT Sans", var(--font-display);
    font-size: clamp(1.25rem, 2.1vw, 1.72rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    font-family: "Roboto", var(--font-body);
}

.blog-card-meta time {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    color: var(--text);
    font-family: "Roboto", var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
}

.blog-card-tags span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 700;
}

.blog-filter {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 32px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-strong);
    box-shadow: 0 8px 24px rgba(18, 24, 40, 0.06);
}

.blog-filter a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    color: var(--text);
    font-family: "Roboto", var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.blog-filter a.is-active,
.blog-filter a:hover,
.blog-filter a:focus-visible {
    background: var(--accent-strong);
    color: #fff;
}

.generic-hero {
    padding-bottom: 52px;
}

.generic-hero .section-heading {
    max-width: 760px;
}

.generic-hero .button {
    margin-top: 10px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-strong);
}

.faq-list summary {
    cursor: pointer;
    display: block;
    position: relative;
    padding: 20px 52px 20px 22px;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "▾";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.95rem;
    transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--muted);
}

.faq-list details .text-link {
    display: inline-block;
    margin: 0 22px 20px;
}

.site-footer {
    margin-top: 56px;
    background: var(--footer-bg);
    color: var(--muted);
}

.site-footer a {
    text-decoration: none;
}

.site-footer-inner {
    width: min(var(--nav-container), calc(100% - 32px));
    margin: 0 auto;
    padding: 52px 0 0;
}

.footer-main {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
    gap: 48px;
    padding-bottom: 34px;
}

.footer-brand-block {
    max-width: 34ch;
}

.footer-brand-block p {
    margin: 18px 0 0;
}

.brand-footer {
    color: var(--text);
}

.footer-sections {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-sections section {
    display: grid;
    gap: 14px;
}

.footer-sections h2 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text);
}

.footer-sections nav,
.site-subfooter nav {
    display: grid;
    gap: 10px;
}

.footer-sections a:hover,
.footer-sections a:focus-visible,
.site-subfooter a:hover,
.site-subfooter a:focus-visible {
    color: var(--text);
}

.site-subfooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0 22px;
    border-top: 1px solid var(--subfooter-border);
}

.site-subfooter small {
    font-size: 0.78rem;
    color: var(--muted);
}

.site-subfooter nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 18px;
}

.site-subfooter nav a {
    font-size: 0.78rem;
    color: color-mix(in srgb, var(--muted) 90%, transparent);
}

.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: grid;
    gap: 14px;
    width: min(420px, calc(100% - 40px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    background: var(--accent-strong);
    color: #fff;
    box-shadow: 0 22px 52px rgba(1, 127, 255, 0.28);
}

.cookie-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.cookie-banner a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.cookie-banner div {
    display: flex;
    justify-content: start;
    gap: 10px;
}

.cookie-banner .button {
    background: #fff;
    color: var(--accent-strong);
    box-shadow: none;
}

.qr-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 24px;
}

.qr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 26, 0.48);
    backdrop-filter: blur(8px);
}

.qr-modal-panel {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 14px;
    width: min(380px, 100%);
    padding: 32px 28px 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface-strong);
    box-shadow: var(--shadow);
    text-align: center;
}

.qr-modal-panel h2,
.qr-modal-panel p {
    margin: 0;
}

.qr-modal-panel p {
    color: var(--muted);
}

.qr-modal-panel img {
    width: 220px;
    height: 220px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
}

.qr-modal-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.blog-article {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0 42px;
}

.blog-article-header {
    display: grid;
    gap: 64px;
    margin-bottom: 18px;
}

.blog-article-header h1 {
    width: min(960px, 100%);
    margin: 0 auto;
    font-family: "PT Sans", var(--font-display);
    font-size: clamp(3rem, 6.2vw, 5.25rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
    text-align: center;
}

.blog-article-meta {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.blog-article-summary {
    width: min(760px, 100%);
    margin: 34px auto 0;
}

.blog-article-summary h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-family: "PT Sans", var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 400;
    line-height: 1.15;
}

.blog-article-excerpt {
    margin: 0;
    color: var(--muted);
    font-family: "Roboto", var(--font-body);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.55;
}

.blog-article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.blog-article-categories a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--text);
    font-family: "Roboto", var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-article-og {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    margin: 0;
    border-radius: 18px;
    background: var(--surface-2);
}

.blog-article-body {
    width: min(760px, 100%);
    margin: 38px auto 0;
    font-family: "Roboto", var(--font-body);
    font-size: clamp(1.18rem, 2vw, 1.34rem);
    line-height: 1.78;
}

.blog-article-body p,
.blog-article-body li,
.blog-article-body blockquote {
    color: color-mix(in srgb, var(--text) 86%, var(--muted));
}

.blog-article-body p {
    margin-top: 0;
    margin-bottom: 1.45em;
}

.blog-article-body p + p {
    margin-top: 1.45em;
}

.blog-article-body blockquote {
    margin: 2rem 0;
    padding: 1.1rem 1.3rem 1.1rem 1.45rem;
    border-left: 4px solid var(--accent-strong);
    border-radius: 0 12px 12px 0;
    background: color-mix(in srgb, var(--surface-strong) 78%, var(--surface-2));
    box-shadow: 0 14px 34px rgba(18, 24, 40, 0.10);
    font-size: 1.04em;
    line-height: 1.7;
}

.blog-article-body blockquote p:last-child {
    margin-bottom: 0;
}

.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4 {
    margin: 34px 0 14px;
    font-family: "PT Sans", var(--font-display);
    font-weight: 400;
    color: var(--text);
    line-height: 1.15;
}

.blog-article-body h2 {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.blog-article-body h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

.blog-article-body h4 {
    font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.blog-article-body a {
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.blog-article-body ul,
.blog-article-body ol {
    padding-left: 1.35em;
}

.blog-article-body li::marker {
    color: var(--accent-strong);
    font-weight: 800;
}

.blog-article-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px 0;
    border-radius: 14px;
}

.article-date {
    margin: 0;
    color: var(--accent-strong);
    font-family: "Roboto", var(--font-body);
    font-size: 1.12rem;
    font-weight: 700;
}

.blog-copy-link {
    justify-self: end;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--text);
    font-family: "Roboto", var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

.blog-cta {
    margin-top: 24px;
}

.blog-related .section-heading {
    margin-bottom: 20px;
}

.blog-related .section-heading h2 {
    font-family: "PT Sans", var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

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

.blog-related-grid article {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--surface-strong);
}

.blog-related-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--surface-2);
}

.blog-related-grid article > div {
    padding: 18px;
}

.blog-related-grid h3 {
    margin: 0 0 8px;
    font-family: "PT Sans", var(--font-display);
    font-size: 1.05rem;
    line-height: 1.18;
}

.blog-related-grid a {
    text-decoration: none;
}

.blog-related-grid p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-blog-tools {
    position: fixed;
    top: 132px;
    right: max(18px, calc((100vw - var(--container)) / 2));
    z-index: 18;
    display: grid;
    gap: 10px;
    width: 176px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-strong);
    box-shadow: 0 14px 34px rgba(18, 24, 40, 0.10);
}

.admin-blog-tools.is-draft {
    border-color: color-mix(in srgb, var(--warning) 36%, var(--border));
    background: color-mix(in srgb, var(--surface-strong) 92%, var(--warning) 8%);
    box-shadow: 0 22px 52px rgba(254, 121, 35, 0.14);
}

.admin-blog-tools strong {
    font-size: 0.84rem;
}

.admin-blog-tools a,
.admin-blog-tools button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    width: 100%;
    padding: 0 12px;
    border-radius: 999px;
    font: 800 0.82rem/1 var(--font);
    text-decoration: none;
}

.admin-blog-tools a {
    border: 1px solid var(--border);
    background: var(--surface-strong);
    color: var(--text);
}

.admin-blog-tools button {
    border: 0;
    background: var(--accent-strong);
    color: #fff;
    cursor: pointer;
}

html[data-theme="dark"] .admin-blog-tools {
    background: var(--surface-strong);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .admin-blog-tools.is-draft {
    border-color: color-mix(in srgb, var(--warning) 42%, var(--border));
    background: color-mix(in srgb, var(--surface-strong) 86%, var(--warning) 14%);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.30);
}

.admin-blog-tools form {
    margin: 0;
}

.legal-copy {
    color: var(--muted);
}

.legal-copy h2 {
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--text);
}

.legal-copy p,
.legal-copy li {
    font-size: 1rem;
}

.legal-copy strong {
    color: var(--text);
}

.legal-copy table {
    width: 100%;
    margin: 18px 0 26px;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.legal-copy th,
.legal-copy td {
    padding: 12px 14px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.legal-copy th {
    color: var(--text);
    background: var(--surface-2);
}

.editor-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.editor-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
}

.editor-form input,
.editor-form select,
.editor-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-strong);
    color: var(--text);
    font: 1rem/1.4 var(--font);
}

html[data-theme="dark"] .media-panel,
html[data-theme="dark"] .trust-band > div:first-child {
    background: #1b2433;
    border: 1px solid var(--border);
}

html[data-theme="dark"] .mini-shot.active {
    background: var(--surface-2);
    color: var(--text);
}

html[data-theme="dark"] .phone-frame {
    background: #151d29;
}

html[data-theme="dark"] .gauge {
    box-shadow: inset 0 0 0 24px var(--surface-strong);
}

.closing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1160px);
    margin-inline: auto;
    gap: 32px;
    padding: 54px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(1, 127, 255, 0.2), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
        #11131d;
    color: #fff;
    box-shadow: var(--shadow);
}

.closing-cta.section-tight {
    margin-bottom: 72px;
}

.closing-cta h2,
.closing-cta p {
    margin: 0;
}

.closing-cta p {
    max-width: 56ch;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.closing-cta .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.closing-cta .hero-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-self: end;
    width: min(100%, 388px);
    margin-top: 0;
}

.closing-cta .hero-actions .button {
    flex: 1 1 0;
    justify-content: center;
}


html[data-theme="dark"] .proof-card,
html[data-theme="dark"] .why-grid article,
html[data-theme="dark"] .feature-grid article,
html[data-theme="dark"] .timeline article,
html[data-theme="dark"] .faq-list details {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .proof-photo span {
    background: rgba(255, 255, 255, 0.84);
}

html[data-theme="dark"] .timeline-node-badge,
html[data-theme="dark"] .timeline-popover {
    background: color-mix(in srgb, var(--surface-strong) 94%, #1b2433);
}

html[data-theme="dark"] .timeline-wave-glow {
    opacity: 0;
    filter: none;
}

@media (max-width: 860px) {
    .why-title {
        white-space: normal;
    }

    .site-header-inner {
        grid-template-columns: 1fr auto;
        gap: 10px;
        width: min(56vw, 240px);
        min-width: 188px;
        padding: 7px 10px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
            0 16px 34px rgba(18, 24, 40, 0.16),
            0 5px 14px rgba(18, 24, 40, 0.08);
        transition: width 220ms ease, border-radius 220ms ease;
    }

    .site-header-inner.is-open {
        width: min(var(--nav-container), calc(100% - 24px));
        border-radius: 24px;
    }

    .site-header .brand {
        gap: 6px;
        min-width: 0;
    }

    .site-header .brand img {
        height: 21px;
    }

    .site-header .brand span {
        font-size: 20px;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        justify-self: end;
        gap: 4px;
        width: 32px;
        height: 32px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: var(--muted);
        flex: 0 0 auto;
    }

    .nav-toggle span {
        display: block;
        width: 15px;
        height: 2px;
        margin-inline: auto;
        border-radius: 999px;
        background: currentColor;
        transition: transform 160ms ease, opacity 160ms ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav-panel {
        display: none;
        grid-column: 1 / -1;
        gap: 14px;
        padding-top: 12px;
    }

    .site-nav-panel.is-open {
        display: grid;
    }

    .site-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        font-size: 0.86rem;
    }

    .site-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        width: 100%;
        padding: 10px 8px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: color-mix(in srgb, var(--surface-strong) 68%, transparent);
        text-align: center;
    }

    .header-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        justify-self: end;
        justify-content: end;
        gap: 8px;
        width: 100%;
    }

    .header-actions .button-small {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 280px);
        margin-block: 10px;
    }

    .locale-menu.submenu {
        position: static;
        display: grid;
    }

    .locale-trigger {
        display: none;
    }

    .submenu:hover::after,
    .submenu:focus-within::after,
    .submenu.is-open::after {
        display: none;
    }

    .locale-dropdown.submenu-panel {
        position: static;
        display: flex;
        justify-content: start;
        gap: 5px;
        min-width: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .locale-option {
        width: 34px;
        height: 34px;
        border-radius: 999px;
    }

    html[data-theme="dark"] .locale-option {
        background: rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
    }

    html[data-theme="dark"] .locale-option.is-current {
        background: rgba(70, 156, 255, 0.20);
        box-shadow:
            inset 0 0 0 1px rgba(185, 217, 255, 0.46),
            0 8px 18px rgba(0, 0, 0, 0.20);
    }

    html[data-theme="dark"] .locale-option .locale-flag-icon {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.18),
            0 4px 10px rgba(0, 0, 0, 0.24);
    }

    .locale-option .locale-flag-icon {
        width: 22px;
        height: 22px;
    }

    .theme-toggle {
        justify-self: end;
        min-height: 36px;
        width: 36px;
        padding: 0;
    }

    .hero,
    .split,
    .reverse,
    .trust-band,
    .footer-main,
    .footer-sections {
        grid-template-columns: 1fr;
    }

    .hero {
        gap: 36px;
        min-height: auto;
        padding-top: 44px;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(2.7rem, 9vw, 4.3rem);
    }


    .why-grid,
    .testimonial-grid,
    .blog-grid,
    .blog-related-grid,
    .feature-grid,
    .insight-list,
    .timeline-page {
        grid-template-columns: 1fr;
    }

    .admin-blog-tools {
        position: static;
        width: min(100% - 32px, 780px);
        margin: 18px auto 0;
    }

    .blog-article-meta {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
    }

    .blog-article-categories {
        justify-content: center;
    }

    .blog-copy-link {
        justify-self: center;
    }


    .closing-cta {
        display: grid;
        padding: 34px;
        width: calc(100% - 32px);
        margin-inline: auto;
    }

    .section {
        padding: 68px 0;
    }

    .section-tight {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .section-heading-row {
        display: block;
    }

    .media-panel {
        min-height: 360px;
    }

    .site-subfooter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .site-subfooter nav {
        grid-auto-flow: column;
        justify-content: end;
        gap: 12px;
    }

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



}

@media (max-width: 560px) {
    .site-header-inner {
        grid-template-columns: 1fr auto;
        width: min(58vw, 224px);
        min-width: 180px;
        gap: 10px;
    }

    .nav-toggle {
        justify-self: end;
    }

    .site-nav-panel,
    .header-actions {
        grid-column: 1 / -1;
    }

    .header-actions {
        justify-self: end;
        justify-content: stretch;
    }


    .locale-dropdown {
        min-width: 0;
    }

    .hero-actions {
        align-items: stretch;
    }


    .closing-cta {
        margin-inline: 16px;
        padding: 28px;
        border-radius: 28px;
    }

}

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