* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0b1f4d;
    --navy-2: #102b6a;
    --blue: #1d4ed8;
    --cyan: #0e7490;
    --green: #0f766e;
    --amber: #b45309;
    --ink: #172033;
    --muted: #64748b;
    --line: #e2e8f0;
    --page: #f6f8fb;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --blue-soft: #eaf2ff;
    --green-soft: #ecfdf5;
    --shadow-xs: 0 4px 14px rgba(15, 23, 42, 0.045);
    --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.065);
    --shadow: 0 22px 60px rgba(15, 23, 42, 0.13);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 22px;
}

html {
    scroll-behavior: smooth;
}

main section[id] {
    scroll-margin-top: 96px;
}

body {
    min-width: 320px;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

a:focus-visible,
summary:focus-visible {
    border-radius: 8px;
    outline: 3px solid rgba(29, 78, 216, 0.2);
    outline-offset: 3px;
}

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

button {
    cursor: pointer;
}

a,
button,
summary {
    touch-action: manipulation;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1200;
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--navy);
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    font-weight: 850;
    padding: 0.7rem 0.9rem;
    transform: translateY(-160%);
    transition: transform 150ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

#main-content:focus {
    outline: 0;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
    backdrop-filter: blur(18px) saturate(150%);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.2vw, 1.15rem);
    min-height: 80px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    flex: 0 0 auto;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: linear-gradient(145deg, var(--navy), #174985);
    color: #fff;
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    box-shadow: 0 10px 20px rgba(11, 31, 77, 0.18);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--navy);
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.brand small {
    margin-top: 1px;
    color: #64748b;
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin-left: auto;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.78);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.28rem;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 36px;
    border-radius: 10px;
    padding: 0.48rem clamp(0.48rem, 0.7vw, 0.72rem);
    white-space: nowrap;
    transition: color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
}

.demo-nav-link > span:first-child {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.mobile-portal-link {
    display: none !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 0.15rem;
}

.header-login {
    color: #334155;
    font-size: 0.84rem;
    font-weight: 750;
    white-space: nowrap;
    transition: color 150ms ease;
}

.header-login:hover {
    color: var(--blue);
}

.brand:focus-visible,
.primary-nav a:focus-visible,
.header-login:focus-visible,
.nav-toggle:focus-visible {
    border-radius: 10px;
    outline: 3px solid rgba(29, 78, 216, 0.2);
    outline-offset: 3px;
}

.header-actions .header-trial {
    min-height: 42px;
    gap: 0.5rem;
    border-radius: 11px;
    padding-right: 1rem;
    padding-left: 1rem;
    box-shadow: 0 10px 22px rgba(29, 78, 216, 0.2);
}

.header-trial span {
    font-size: 1rem;
    transition: transform 150ms ease;
}

.header-trial:hover span {
    transform: translateX(2px);
}

.nav-toggle {
    display: none;
    position: relative;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--navy);
    transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.72rem 1.15rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:focus-visible {
    outline: 3px solid rgba(29, 78, 216, 0.2);
    outline-offset: 3px;
}

.btn:disabled,
.btn[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

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

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.1);
}

.btn-secondary {
    border-color: var(--navy);
    background: #fff;
    color: var(--navy);
    box-shadow: none;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

.btn-invert {
    border-color: rgba(255, 255, 255, 0.24);
    background: #fff;
    color: var(--navy);
}

.btn-large {
    min-height: 52px;
    padding-right: 1.28rem;
    padding-left: 1.28rem;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-2), #163a8a);
    color: #fff;
}

.hero::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 40%);
    content: "";
    opacity: 0.45;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: 3.25rem;
    min-height: auto;
    padding: 4rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #dbeafe;
    border: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    padding: 0.45rem 0.75rem;
}

.hero-status-dot {
    width: 7px;
    height: 7px;
    margin-right: 0.45rem;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.13);
}

.eyebrow.dark {
    border-color: #d8e6fb;
    background: var(--blue-soft);
    color: var(--navy);
}

.eyebrow.light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.hero h1 {
    max-width: 680px;
    margin-top: 1.1rem;
    color: #fff;
    font-size: clamp(2.75rem, 4.4vw, 4.15rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    color: #93c5fd;
}

.hero-text {
    max-width: 600px;
    margin-top: 1.2rem;
    color: #e2e8f0;
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.6rem;
}

.hero-actions .btn-primary {
    gap: 0.55rem;
}

.hero-actions .btn-primary span {
    font-size: 1.05rem;
    transition: transform 150ms ease;
}

.hero-actions .btn-primary:hover span {
    transform: translateX(3px);
}

.hero .btn-primary {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    color: #cbd5e1;
}

.hero-stats strong,
.hero-stats small {
    display: block;
}

.hero-stats strong {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.15;
}

.hero-stats small {
    color: #cbd5e1;
    font-size: 0.88rem;
}

.hero-capabilities {
    display: grid;
    gap: 0.6rem;
    max-width: 610px;
    margin-top: 1.5rem;
}

.hero-capabilities > span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    color: #dbeafe;
}

.hero-capabilities i {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.09);
    padding: 0.48rem;
}

.hero-capabilities strong,
.hero-capabilities small {
    display: block;
}

.hero-capabilities strong {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.35;
}

.hero-capabilities small {
    margin-top: 0.05rem;
    color: #b9c9df;
    font-size: 0.75rem;
}

.hero-product {
    position: relative;
}

.product-shell.hero-product-shell {
    position: relative;
    z-index: 1;
    max-width: 540px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 36px 90px rgba(3, 12, 35, 0.38);
}

.hero-product-shell .product-topbar {
    min-height: 46px;
    padding: 0.75rem 0.9rem;
}

.hero-product-shell .product-topbar strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-topbar em {
    flex: 0 0 auto;
    margin-left: auto;
    border-radius: 999px;
    color: #08754a;
    background: #dcfce7;
    font-size: 0.62rem;
    font-style: normal;
    font-weight: 850;
    padding: 0.28rem 0.5rem;
}

.product-shot {
    overflow: hidden;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    background: #f5f8fc;
}

.product-shot img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top left;
}

.product-window-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 54px;
    padding: 0.7rem 0.9rem;
}

.product-window-footer > span,
.product-window-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
}

.product-window-footer > span {
    color: #08754a;
}

.product-window-footer > span i {
    width: 16px;
    height: 16px;
}

.product-window-footer a {
    color: var(--blue);
}

.product-window-footer a:hover {
    color: var(--navy);
}

.product-proof-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 205px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(3, 12, 35, 0.24);
    padding: 0.72rem 0.85rem;
    backdrop-filter: blur(14px);
}

.product-proof-card > i {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue);
    padding: 0.48rem;
}

.product-proof-card strong,
.product-proof-card small {
    display: block;
}

.product-proof-card strong {
    color: var(--navy);
    font-size: 0.76rem;
    line-height: 1.35;
}

.product-proof-card small {
    margin-top: 0.08rem;
    color: var(--muted);
    font-size: 0.62rem;
    line-height: 1.4;
}

.product-proof-roles {
    top: 72px;
    right: -28px;
}

.product-proof-workflow {
    bottom: 42px;
    left: -30px;
}

.dashboard-card {
    max-width: 560px;
    margin-left: auto;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    color: var(--ink);
    padding: 1.5rem;
}

.dashboard-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-card-header h2 {
    color: var(--navy);
    font-size: 1.5rem;
    line-height: 1.25;
}

.dashboard-card-header p {
    margin-top: 0.25rem;
    color: #94a3b8;
}

.dashboard-card-header span {
    flex: 0 0 auto;
    border-radius: 12px;
    background: #eff6ff;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 700;
    padding: 0.55rem 0.85rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-grid div {
    min-width: 0;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    background: #f8fafc;
    padding: 1.25rem;
}

.dashboard-grid p {
    color: #94a3b8;
    font-size: 0.86rem;
}

.dashboard-grid strong {
    display: block;
    margin-top: 0.45rem;
    color: var(--ink);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
}

.dashboard-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 16px;
    background: linear-gradient(90deg, var(--navy), var(--blue));
    color: #fff;
    padding: 1.5rem;
}

.dashboard-card-footer h3 {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.3;
}

.dashboard-card-footer p {
    margin-top: 0.45rem;
    color: #e2e8f0;
}

.dashboard-card-footer i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.85rem;
}

.product-shell {
    overflow: hidden;
    max-width: 560px;
    margin-left: auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.product-topbar {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
    padding: 0.92rem 1rem;
}

.product-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #cbd5e1;
}

.product-topbar span:first-child {
    background: #ef4444;
}

.product-topbar span:nth-child(2) {
    background: #f59e0b;
}

.product-topbar span:nth-child(3) {
    background: #10b981;
}

.product-topbar strong {
    margin-left: 0.45rem;
    color: var(--navy);
    font-size: 0.82rem;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 430px;
}

.dashboard-preview aside {
    display: grid;
    align-content: start;
    gap: 0.72rem;
    background: #102b4d;
    padding: 0.95rem;
}

.dashboard-preview aside b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.dashboard-preview aside i {
    display: block;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
}

.dashboard-preview section {
    display: grid;
    gap: 1rem;
    background: #f7f9fc;
    padding: 1.25rem;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.preview-header strong,
.preview-header small {
    display: block;
}

.preview-header strong {
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1.2;
}

.preview-header small {
    color: var(--muted);
}

.preview-header em {
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green);
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.35rem 0.7rem;
}

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

.preview-cards div,
.preview-list div {
    border: 1px solid #eef2f7;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    padding: 1rem;
}

.preview-cards small {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.preview-cards strong {
    display: block;
    margin-top: 0.2rem;
    color: var(--navy);
    font-size: 1.45rem;
}

.preview-chart {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    min-height: 130px;
    border-radius: var(--radius);
    background: var(--navy);
    padding: 1rem;
}

.preview-chart span {
    flex: 1;
    border-radius: 10px 10px 0 0;
    background: #bfdbfe;
}

.preview-list {
    display: grid;
    gap: 0.6rem;
}

.preview-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.78rem 0.95rem;
}

.preview-list span {
    color: #334155;
    font-weight: 750;
}

.preview-list b {
    color: var(--green);
}

.metrics-band {
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 1.5rem 0;
}

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

.metrics-grid div {
    border-right: 1px solid var(--line);
    padding: 0.3rem 1rem;
}

.metrics-grid div:last-child {
    border-right: 0;
}

.metrics-grid strong {
    display: block;
    color: var(--navy);
    font-size: 1.75rem;
    font-weight: 900;
}

.metrics-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding: 5.75rem 0;
}

.section:nth-of-type(odd) {
    background: var(--page);
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 2.6rem;
    text-align: center;
}

.section-heading h2,
.split-layout h2,
.contact-grid h2,
.video-section h2 {
    margin-top: 0.8rem;
    color: var(--navy);
    font-size: clamp(2.05rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.section-heading p,
.section-lead,
.video-section p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.split-layout,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 3rem;
}

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

.outcome-grid article,
.security-grid article,
.feature-grid article,
.price-card,
.tour-card,
.lead-form,
.contact-cards article,
blockquote {
    border: 1px solid #dde5ef;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.outcome-grid article,
.security-grid article,
.feature-grid article,
.tour-card,
.price-card,
.contact-cards article,
blockquote {
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.outcome-grid article:hover,
.security-grid article:hover,
.feature-grid article:hover,
.tour-card:hover,
.price-card:hover,
.contact-cards article:hover,
blockquote:hover {
    border-color: #c9d7e8;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.outcome-grid article,
.security-grid article {
    padding: 1.35rem;
}

.outcome-grid i,
.security-grid i,
.feature-grid i {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--blue-soft);
    color: var(--blue);
    padding: 0.62rem;
}

.outcome-grid strong,
.outcome-grid span,
.security-grid strong,
.security-grid span {
    display: block;
}

.outcome-grid strong,
.security-grid strong {
    margin-top: 0.9rem;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 850;
}

.outcome-grid span,
.security-grid span {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

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

.feature-grid article {
    min-height: 245px;
    padding: 1.35rem;
}

.feature-grid h3 {
    margin-top: 1.1rem;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 850;
}

.feature-grid p {
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.product-tour {
    background: #fff !important;
}

.tour-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 1rem;
}

.tour-card {
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.tour-card.large {
    grid-row: span 2;
}

.tour-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
    background: #eef2f7;
}

.tour-card.large img {
    aspect-ratio: 16 / 9;
}

.tour-card div {
    padding: 1.2rem;
}

.tour-card span {
    display: inline-flex;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.045em;
    padding: 0.35rem 0.65rem;
    text-transform: uppercase;
}

.tour-card h3 {
    margin-top: 0.85rem;
    color: var(--navy);
    font-size: 1.16rem;
    font-weight: 850;
    line-height: 1.35;
}

.tour-card p {
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.tour-card .tour-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 850;
}

.tour-card .tour-link span {
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 0.95rem;
    padding: 0;
    transition: transform 150ms ease;
}

.tour-card .tour-link:hover span {
    transform: translateX(3px);
}

.video-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1rem;
    border-radius: var(--radius-lg);
    background: var(--navy);
    color: #fff;
    padding: 2rem;
}

.video-section h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.video-section p {
    max-width: 760px;
    color: #cbd5e1;
}

.pricing-section {
    background: var(--page) !important;
}

.pricing-section .section-heading {
    max-width: 850px;
}

.pricing-intro-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.1rem;
    margin-top: 1.15rem;
}

.pricing-intro-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #475569;
    font-size: 0.86rem;
    font-weight: 700;
}

.pricing-intro-points i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    color: #08754a;
    background: #dcfce7;
    font-size: 0.68rem;
    font-style: normal;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.1rem;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    padding: 1.4rem;
    border-radius: 22px;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.price-card.featured {
    border-color: var(--navy);
    background: linear-gradient(145deg, #0b1f4d 0%, #123765 100%);
    color: #fff;
    box-shadow: 0 22px 48px rgba(11, 31, 77, 0.2);
}

.price-card.featured::after {
    position: absolute;
    top: -76px;
    right: -65px;
    width: 190px;
    height: 190px;
    border: 32px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 1.15rem;
    z-index: 1;
    padding: 0.38rem 0.72rem;
    border-radius: 0 0 9px 9px;
    color: #0b1f4d;
    background: #7dd3fc;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.price-card-heading {
    position: relative;
    z-index: 1;
    min-height: 142px;
}

.plan-label {
    display: inline-flex;
    align-self: flex-start;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.045em;
    padding: 0.35rem 0.65rem;
    text-transform: uppercase;
}

.price-card.featured .plan-label {
    color: #e0f2fe;
    background: rgba(125, 211, 252, 0.16);
}

.price-card h3 {
    margin-top: 0.9rem;
    color: var(--navy);
    font-size: 1.22rem;
    font-weight: 850;
    line-height: 1.3;
}

.price-card.featured h3 {
    color: #fff;
}

.price-card-heading p {
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.price-card.featured .price-card-heading p {
    color: #c9d9ee;
}

.price-amount {
    position: relative;
    z-index: 1;
    min-height: 86px;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.price-card.featured .price-amount {
    border-color: rgba(255, 255, 255, 0.14);
}

.price-amount strong,
.price-amount > span {
    display: block;
}

.price-amount strong {
    color: var(--navy);
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.price-amount strong small {
    margin-right: 0.15rem;
    font-size: 1.15rem;
    font-weight: 800;
    vertical-align: 0.55rem;
}

.price-card.featured .price-amount strong {
    color: #fff;
}

.price-amount > span {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 650;
}

.price-card.featured .price-amount > span {
    color: #bfd0e8;
}

.price-amount.custom strong {
    font-size: 2rem;
}

.plan-limits {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.plan-limits span {
    min-width: 0;
    padding: 0.62rem;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: #64748b;
    background: #f8fafc;
    font-size: 0.68rem;
    line-height: 1.3;
    text-align: center;
}

.plan-limits b {
    display: block;
    overflow: hidden;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.price-card.featured .plan-limits span {
    border-color: rgba(255, 255, 255, 0.15);
    color: #b9cbe3;
    background: rgba(255, 255, 255, 0.07);
}

.price-card.featured .plan-limits b {
    color: #fff;
}

.plan-feature-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.7rem;
    margin: 1.25rem 0;
    color: #334155;
    list-style: none;
}

.price-card.featured .plan-feature-list {
    color: #e2e8f0;
}

.plan-feature-list li {
    position: relative;
    padding-left: 1.45rem;
    font-size: 0.82rem;
    line-height: 1.55;
}

.plan-feature-list li::before {
    position: absolute;
    left: 0;
    top: 0.03rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    color: #08754a;
    background: #dcfce7;
    content: "✓";
    font-size: 0.62rem;
    font-weight: 900;
}

.plan-feature-list li.unavailable {
    color: #94a3b8;
}

.plan-feature-list li.unavailable::before {
    color: #64748b;
    background: #eef2f6;
    content: "—";
}

.price-card.featured .plan-feature-list li::before {
    color: #dff7ff;
    background: rgba(56, 189, 248, 0.2);
}

.price-card .btn {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: auto;
}

.comparison-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.comparison-heading > div > span {
    color: var(--blue);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.comparison-heading h3 {
    margin-top: 0.25rem;
    color: var(--navy);
    font-size: 1.45rem;
}

.comparison-heading p {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.comparison-wrap {
    overflow-x: auto;
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    scrollbar-color: #9fb3ce #eef2f7;
}

.comparison-swipe-hint {
    display: none;
}

.comparison-wrap:focus-visible {
    outline: 3px solid rgba(29, 78, 216, 0.2);
    outline-offset: 3px;
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.comparison-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.comparison-table th,
.comparison-table td {
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 1rem;
    text-align: left;
}

.comparison-table thead th {
    background: var(--navy);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.comparison-table thead th small {
    display: block;
    margin-top: 0.08rem;
    color: #9ddcf6;
    font-size: 0.6rem;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.comparison-table td {
    color: #334155;
    font-size: 0.84rem;
}

.comparison-table tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    min-width: 190px;
    color: var(--navy);
    background: #fff;
    font-size: 0.84rem;
    font-weight: 750;
}

.comparison-table tbody tr:hover > * {
    background: #f8fafc;
}

.comparison-table .recommended-column {
    background: #f0f6ff;
}

.comparison-table thead .recommended-column {
    background: #173f79;
}

.comparison-yes {
    color: #08754a;
    font-weight: 750;
    white-space: nowrap;
}

.comparison-no {
    color: #94a3b8;
    font-weight: 800;
}

.comparison-table tr:last-child > * {
    border-bottom: 0;
}

.security-section {
    background: #fff !important;
}

.cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.35rem;
}

.cert-row span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.035em;
    padding: 0.42rem 0.68rem;
    text-transform: uppercase;
}

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

blockquote {
    position: relative;
    padding: 1.35rem;
}

blockquote::before {
    display: block;
    width: 38px;
    height: 38px;
    margin-bottom: 0.8rem;
    border-radius: var(--radius-sm);
    color: var(--blue);
    background: var(--blue-soft);
    content: "“";
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
}

blockquote p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.75;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    color: var(--navy);
    font-style: normal;
    font-weight: 850;
}

.faq-section {
    background: var(--page) !important;
}

.faq-grid {
    display: grid;
    gap: 0.85rem;
    max-width: 920px;
    margin: 0 auto;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-xs);
    padding: 1rem 1.1rem;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

details[open] {
    border-color: #bfd1ea;
    box-shadow: var(--shadow-sm);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--navy);
    cursor: pointer;
    font-weight: 850;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    color: var(--blue);
    background: var(--blue-soft);
    content: "+";
    font-size: 1.05rem;
    line-height: 1;
    transition: transform 160ms ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    margin-top: 0.75rem;
    color: var(--muted);
    line-height: 1.75;
}

.contact-section {
    background: #fff !important;
}

.contact-grid {
    align-items: stretch;
}

.contact-cards {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.3rem;
}

.contact-cards article {
    padding: 1rem;
}

.contact-cards strong,
.contact-cards span {
    display: block;
}

.contact-cards strong {
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.contact-cards span {
    margin-top: 0.35rem;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.6;
}

.lead-form {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
}

.form-head h3 {
    color: var(--navy);
    font-size: 1.35rem;
}

.form-head p {
    margin-top: 0.25rem;
    color: var(--muted);
}

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

.lead-form label {
    display: grid;
    gap: 0.35rem;
    color: #334155;
    font-size: 0.86rem;
    font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    min-height: 46px;
    padding: 0.78rem 0.86rem;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
    border-color: #9fb2ca;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: #94a3b8;
}

.lead-form textarea {
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
    outline: 0;
}

.turnstile-wrap {
    overflow: hidden;
    min-height: 65px;
}

.btn-submit {
    width: 100%;
}

.form-status {
    min-height: 1.4rem;
    color: var(--muted);
    font-weight: 800;
}

.form-status[data-state="success"] {
    color: var(--green);
}

.form-status[data-state="error"] {
    color: #b42318;
}

.site-footer {
    background: var(--navy);
    color: #cbd5e1;
    padding: 3.2rem 0 1.2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand .brand-mark {
    background: #fff;
    color: var(--navy);
}

.footer-brand strong {
    color: #fff;
}

.footer-brand small {
    color: #94a3b8;
}

.footer-grid p {
    margin-top: 1rem;
    color: #94a3b8;
}

.footer-grid nav,
.footer-grid div:last-child {
    display: grid;
    align-content: start;
    gap: 0.6rem;
}

.footer-grid strong {
    color: #fff;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    width: min(1180px, calc(100% - 40px));
    margin: 2rem auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    font-size: 0.85rem;
    padding-top: 1rem;
}

.floating-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: none;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
    font-weight: 900;
    padding: 0.78rem 1.05rem;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.floating-cta.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

@media (max-width: 1120px) {
    .nav-toggle {
        display: inline-block;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        max-height: calc(100vh - 110px);
        max-height: calc(100dvh - 110px);
        overflow-y: auto;
        overscroll-behavior: contain;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        padding: 0.7rem;
    }

    .nav-open .primary-nav {
        display: flex;
    }

    body.nav-open {
        overflow: hidden;
    }

    .primary-nav a {
        min-height: 46px;
        padding: 0.72rem 0.85rem;
        border-radius: 11px;
    }

    .primary-nav a:hover,
    .primary-nav a.active {
        background: #f1f5f9;
        box-shadow: none;
    }

    .mobile-portal-link {
        display: flex !important;
        justify-content: space-between;
        margin-top: 0.25rem;
        border-top: 1px solid var(--line);
        border-radius: 0 !important;
        color: var(--blue);
    }

    .header-login {
        display: none;
    }

    .hero-grid,
    .split-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 2.5rem;
        min-height: 0;
    }

    .product-shell {
        max-width: 680px;
        margin-left: 0;
    }

    .dashboard-card {
        max-width: 680px;
        margin-left: 0;
    }

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

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

@media (max-width: 920px) {
    .hero-proof,
    .outcome-grid,
    .security-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

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

    .metrics-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 1rem;
    }

    .metrics-grid div:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .metrics-grid div:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

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

    .tour-card.large {
        grid-row: auto;
    }

    .video-section {
        align-items: stretch;
        flex-direction: column;
    }

    .floating-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        right: 14px;
        bottom: max(12px, env(safe-area-inset-bottom));
        left: 14px;
        min-height: 52px;
        border: 1px solid rgba(255, 255, 255, 0.18);
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 72px;
    }

    .brand small {
        display: none;
    }

    .header-actions .btn-primary {
        min-height: 40px;
        padding: 0.62rem 0.78rem;
    }

    .primary-nav {
        right: 14px;
        left: 14px;
    }

    .hero-grid {
        gap: 2rem;
        padding: 3.5rem 0 3.25rem;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 10vw, 2.75rem);
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.7;
    }

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

    .hero-actions {
        gap: 0.75rem;
    }

    .hero-capabilities {
        margin-top: 1.6rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-proof {
        flex-direction: column;
    }

    .hero-proof span {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
        border-radius: 16px;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .dashboard-card-header,
    .dashboard-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .dashboard-preview aside {
        display: none;
    }

    .product-proof-card {
        display: none;
    }

    .product-shell.hero-product-shell {
        max-width: 100%;
    }

    .product-window-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .preview-cards,
    .feature-grid,
    .pricing-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .feature-grid article {
        min-height: 0;
    }

    .section {
        padding: 4.25rem 0;
    }

    .section-heading {
        margin-bottom: 2rem;
    }

    .section-heading h2,
    .split-layout h2,
    .contact-grid h2,
    .video-section h2 {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
    }

    .section-heading p,
    .section-lead,
    .video-section p {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .tour-card div,
    .price-card,
    .lead-form {
        padding: 1.15rem;
    }

    .video-section {
        padding: 1.35rem;
    }

    .price-card-heading {
        min-height: 0;
    }

    .comparison-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .comparison-heading .btn {
        width: 100%;
    }

    .comparison-swipe-hint {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        margin-top: 1rem;
        color: var(--muted);
        font-size: 0.76rem;
        font-weight: 750;
    }

    .comparison-swipe-hint span {
        color: var(--blue);
        font-size: 1rem;
    }

    .comparison-wrap {
        margin-top: 0.55rem;
        border-radius: 14px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 680px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.72rem 0.75rem;
    }

    .comparison-table tbody th {
        min-width: 132px;
        font-size: 0.76rem;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
        font-size: 1rem;
    }

    details {
        padding: 0.9rem 1rem;
    }

    summary {
        min-height: 44px;
    }

    .footer-grid nav a,
    .footer-grid > div:last-child a {
        display: flex;
        align-items: center;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        gap: 0.45rem;
    }

    .brand {
        gap: 0.5rem;
    }

    .brand-mark,
    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .brand-mark {
        border-radius: 13px;
        font-size: 1rem;
    }

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

    .header-actions .header-trial {
        min-height: 38px;
        font-size: 0.78rem;
        padding-right: 0.7rem;
        padding-left: 0.7rem;
    }

    .header-trial span {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2rem, 10.5vw, 2.5rem);
    }

    .product-topbar em {
        display: none;
    }

    .metrics-grid strong {
        font-size: 1.45rem;
    }

    .metrics-grid span {
        font-size: 0.78rem;
    }
}

@media (max-width: 360px) {
    .turnstile-wrap {
        min-height: 56px;
    }

    .cf-turnstile {
        width: 117.65%;
        transform: scale(0.85);
        transform-origin: left top;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
