:root {
    --bg: #eef5fb;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #f8fbff;
    --ink: #1e2430;
    --ink-soft: #5c6473;
    --line: rgba(30, 36, 48, 0.1);
    --brand: #0f56b3;
    --brand-soft: #5e97d9;
    --accent: #e97032;
    --accent-soft: #ffbf86;
    --sky-soft: #d8ebff;
    --sky-strong: #b7d8fb;
    --shadow: 0 24px 60px rgba(15, 86, 179, 0.12);
    --shadow-soft: 0 14px 34px rgba(15, 86, 179, 0.08);
    --shadow-strong: 0 28px 70px rgba(15, 86, 179, 0.16);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1320px;
    --ease: 260ms cubic-bezier(.2, .8, .2, 1);
    --ease-slow: 560ms cubic-bezier(.16, 1, .3, 1);
    --ease-snappy: 180ms cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(94, 151, 217, 0.2), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(233, 112, 50, 0.14), transparent 22%),
        linear-gradient(180deg, #f6fbff 0%, #eef5fb 54%, #f8fcff 100%);
    color: var(--ink);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 86, 179, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 86, 179, 0.04) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
    z-index: -1;
}

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

img,
svg,
video,
canvas {
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.contact-card .hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    border: 0 !important;
    z-index: -1 !important;
}

.site-shell {
    position: relative;
}

.site-header,
.story-section,
.services-section,
.process-section,
.contact-section,
.site-footer {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.navbar {
    position: sticky;
    top: 16px;
    z-index: 50;
    width: min(calc(100% - 32px), var(--max-width));
    margin: 20px auto 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(248, 252, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 44px rgba(15, 86, 179, 0.09);
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.navbar.navbar-scrolled {
    background: rgba(245, 250, 255, 0.92);
    box-shadow: 0 18px 48px rgba(15, 86, 179, 0.12);
}

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

.brand-logo {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background:
        url("../Images/circle-logo-transparent.png") center/contain no-repeat,
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 6px rgba(233, 112, 50, 0.1);
    transition: transform var(--ease), box-shadow var(--ease);
    min-width: 34px;
    min-height: 34px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    line-height: 1;
    min-width: 0;
}

.brand-copy strong,
.footer-brand strong {
    font-family: "Syne", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.brand-copy small,
.footer-brand span {
    color: var(--ink-soft);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-panel a {
    position: relative;
    font-size: 0.94rem;
    color: var(--ink-soft);
    transition: color var(--ease), transform var(--ease);
}

.nav-panel a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
    color: var(--ink);
    transform: translateY(-1px);
}

.nav-panel a:hover::after,
.nav-panel a:focus-visible::after {
    transform: scaleX(1);
}

.nav-panel .nav-quote {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 28px rgba(17, 43, 69, 0.16);
}

.nav-panel .nav-quote::after {
    display: none;
}

.nav-panel .nav-quote:hover,
.nav-panel .nav-quote:focus-visible,
.nav-panel .nav-quote:active {
    color: #fff;
    background: #173858;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--brand);
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform var(--ease-snappy), box-shadow var(--ease), background var(--ease);
}

.menu-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 12px 24px rgba(17, 43, 69, 0.18);
}

.menu-toggle span:first-child {
    transform: translateY(-4px);
}

.menu-toggle span:last-child {
    transform: translateY(4px);
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg);
}

.hero {
    padding: 64px 0 52px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
    gap: 38px;
    align-items: center;
}

.hero-copy,
.hero-stage,
.story-panel,
.service-tile,
.path-step,
.contact-frame,
.site-footer,
.navbar {
    will-change: transform, opacity;
}

.eyebrow,
.section-kicker,
.route-label,
.route-status,
.form-intro span {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--brand-soft);
}

.eyebrow span {
    width: 48px;
    height: 1px;
    background: currentColor;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2,
.insight-card h2 {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    max-width: 9.5ch;
    font-size: clamp(3rem, 5.2vw, 5rem);
    line-height: 0.92;
    overflow-wrap: break-word;
}

.hero-copy h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-lead,
.heading-note,
.story-panel p,
.service-tile p,
.path-step p,
.contact-list,
.contact-card label,
.site-footer p {
    color: var(--ink-soft);
}

.hero-lead {
    max-width: 58ch;
    margin: 20px 0 28px;
    font-size: 1rem;
    line-height: 1.75;
}

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

.primary-cta,
.secondary-cta {
    padding: 15px 22px;
    border-radius: 999px;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
    will-change: transform;
}

.primary-cta {
    background: linear-gradient(135deg, var(--accent), #f08d4f);
    color: #fff;
    box-shadow: 0 18px 36px rgba(233, 112, 50, 0.24);
}

.secondary-cta {
    border: 1px solid var(--line);
    background: rgba(229, 241, 255, 0.76);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.primary-cta:hover,
.secondary-cta:hover,
.service-tile:hover,
.path-step:hover,
.contact-card:hover {
    transform: translateY(-4px);
}

.primary-cta:hover {
    box-shadow: 0 22px 44px rgba(233, 112, 50, 0.28);
}

.secondary-cta:hover {
    box-shadow: var(--shadow-soft);
    border-color: rgba(17, 43, 69, 0.18);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
}

.hero-proof div,
.route-card,
.insight-card,
.story-panel,
.service-tile,
.path-step,
.contact-frame,
.contact-card,
.site-footer {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
}

.hero-proof div {
    min-height: 108px;
    padding: 18px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 243, 255, 0.88)),
        var(--surface);
}

.hero-proof strong,
.route-node strong,
.route-metrics strong,
.stat-item strong,
.service-tile h3,
.path-step h3,
.contact-copy h2 {
    display: block;
    color: var(--ink);
}

.hero-proof span,
.route-node small,
.route-metrics span,
.stat-item span {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.hero-stage {
    display: grid;
    justify-items: end;
    align-content: center;
    gap: 18px;
    min-height: auto;
    padding-top: 8px;
}

.stage-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.route-card {
    width: min(100%, 520px);
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(228, 242, 255, 0.86)),
        var(--surface);
}

.route-header,
.route-metrics {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.route-status {
    color: var(--accent);
}

.route-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(96px, 1.15fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin: 28px 0 24px;
}

.route-node {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.node-dot {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    border-radius: 50%;
    background: rgba(17, 43, 69, 0.16);
    border: 4px solid rgba(17, 43, 69, 0.08);
}

.node-dot.active {
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(233, 112, 50, 0.14);
    animation: nodePulse 2.8s ease-in-out infinite;
}

.route-track {
    position: relative;
    width: 100%;
    min-width: 96px;
    height: 3px;
    margin-top: 15px;
    background: rgba(17, 43, 69, 0.18);
    overflow: hidden;
    border-radius: 999px;
}

.moving-signal {
    position: absolute;
    inset: 0 auto 0 0;
    width: 44px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: signalMove 2.8s linear infinite;
}

.route-metrics article {
    flex: 1;
    padding: 16px;
    border-radius: 20px;
    background: rgba(15, 86, 179, 0.08);
}

.route-metrics strong {
    font-size: 1.2rem;
}

.insight-card {
    width: min(100%, 390px);
    padding: 24px;
    background: linear-gradient(135deg, rgba(17, 43, 69, 0.96), rgba(40, 77, 115, 0.88));
    color: #fff;
}

.insight-card p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
}

.insight-card h2 {
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    line-height: 1.04;
}

.operations-card {
    padding: 0;
    background: linear-gradient(135deg, rgba(17, 43, 69, 0.98), rgba(31, 61, 93, 0.92));
}

.operations-card img {
    display: block;
    width: 100%;
    aspect-ratio: auto;
    max-height: 320px;
    object-fit: contain;
    object-position: center;
    background: transparent;
    filter: saturate(0.95) contrast(1.02);
}

.operations-copy {
    padding: 22px 24px 24px;
}

.hero-marquee {
    display: block;
    overflow: hidden;
    margin-top: 28px;
    padding: 12px 0 2px;
    border-top: 1px solid rgba(17, 43, 69, 0.08);
    border-bottom: 1px solid rgba(17, 43, 69, 0.08);
    width: 100%;
}

.hero-marquee-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    white-space: nowrap;
}

.hero-marquee span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 43, 69, 0.08);
    color: rgba(17, 43, 69, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    box-shadow: 0 10px 24px rgba(17, 43, 69, 0.06);
}

.hero-marquee span i {
    color: var(--accent);
    font-size: 0.9rem;
}

section {
    padding: 68px 0;
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 24px;
    align-items: end;
}

.section-kicker {
    color: var(--brand-soft);
    margin-bottom: 14px;
}

.section-heading h2,
.contact-copy h2 {
    max-width: 13ch;
    font-size: clamp(2.2rem, 3.6vw, 3.8rem);
    line-height: 1.02;
}

.heading-note {
    line-height: 1.8;
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
}

.story-panel {
    padding: 30px;
    border-radius: var(--radius-xl);
}

.story-primary {
    min-height: 270px;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(360px, 520px);
    column-gap: clamp(44px, 7vw, 120px);
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    width: 100%;
}

.story-primary p {
    font-size: 1rem;
    line-height: 1.82;
}

.story-logo-panel {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 18px 0;
}

.story-logo {
    display: block;
    width: min(100%, 320px);
    height: auto;
    object-fit: contain;
}

.story-detail {
    display: block;
    gap: 18px;
    width: 100%;
    max-width: 520px;
    min-width: 0;
    padding: 0;
    margin: 0;
    justify-self: end;
    align-self: center;
}

.story-detail p {
    color: var(--ink-soft);
    width: 100%;
}

.story-detail p:first-child {
    color: var(--brand);
}

.story-detail p + p {
    margin-top: 22px;
}

.services-showcase {
    display: grid;
    grid-template-columns: minmax(320px, 1.08fr) minmax(240px, 0.78fr) minmax(240px, 0.8fr);
    gap: 22px;
    grid-template-areas:
        "large small1 dark"
        "wide wide wide";
}

.service-tile {
    position: relative;
    min-height: 220px;
    padding: 26px;
    border-radius: var(--radius-xl);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
}

.service-tile:hover,
.path-step:hover,
.contact-card:hover,
.story-panel:hover,
.route-card:hover,
.insight-card:hover {
    box-shadow: var(--shadow-strong);
}

.story-primary:hover {
    transform: none;
    box-shadow: none;
}

.story-section .story-panel,
.story-section .story-panel:hover {
    transform: none;
    box-shadow: none;
}

.service-tile::before,
.path-step::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity var(--ease-slow);
    pointer-events: none;
}

.service-tile:hover::before,
.path-step:hover::before {
    opacity: 1;
}

.service-large {
    grid-area: large;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(224, 240, 255, 0.88)),
        var(--surface);
    min-height: auto;
}

.services-showcase article:nth-child(2) {
    grid-area: small1;
}

.tone-dark {
    grid-area: dark;
    background: linear-gradient(160deg, rgba(17, 43, 69, 0.98), rgba(40, 77, 115, 0.92));
    color: #fff;
}

.tone-dark p,
.tone-dark h3,
.tone-dark .service-index {
    color: #fff;
}

.service-wide {
    grid-area: wide;
}

.service-index,
.path-step > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: 18px;
    font-family: "Syne", sans-serif;
    background: rgba(17, 43, 69, 0.08);
    color: var(--brand);
}

.service-tile h3,
.path-step h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    line-height: 1.18;
}

.service-tile p,
.path-step p {
    line-height: 1.68;
    font-size: 0.96rem;
}

.tile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tile-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 86, 179, 0.1);
    color: var(--brand);
    font-size: 0.86rem;
}

.tile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--brand);
    font-weight: 700;
}

.tile-link::after {
    content: "\2192";
    font-size: 1rem;
    transition: transform var(--ease);
}

.tile-link:hover::after,
.tile-link:focus-visible::after {
    transform: translateX(4px);
}

.process-path {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.path-step {
    min-height: 240px;
    padding: 22px;
    border-radius: 28px;
    position: relative;
}

.path-step::after {
    content: "";
    position: absolute;
    top: 50px;
    right: -9px;
    width: 18px;
    height: 2px;
    background: rgba(17, 43, 69, 0.2);
}

.path-step:last-child::after {
    display: none;
}

.guide-section,
.notes-section {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.box-card,
.rates-card,
.mini-proof-card,
.info-card,
.proof-media,
.contact-support-card {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.box-card,
.rates-card,
.info-card,
.contact-support-card {
    border-radius: var(--radius-xl);
}

.box-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(232, 244, 255, 0.88)),
        var(--surface);
}

.box-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(94, 151, 217, 0.18), rgba(233, 112, 50, 0.12));
    transform: rotate(18deg);
}

.box-card span,
.card-topline span {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--brand-soft);
}

.box-card strong,
.card-topline strong,
.contact-support-card strong {
    display: block;
    margin-top: 12px;
    font-size: 1.34rem;
    line-height: 1.15;
    color: var(--ink);
}

.box-card p,
.mini-proof-card p,
.rates-note,
.info-card p,
.contact-support-card p {
    margin-top: 12px;
    color: var(--ink-soft);
    line-height: 1.68;
}

.rates-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 22px;
    align-items: start;
}

.rates-card {
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 246, 255, 0.9)),
        var(--surface);
}

.card-topline {
    margin-bottom: 18px;
}

.rates-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 22px;
    border: 1px solid rgba(17, 43, 69, 0.08);
    background: rgba(255, 255, 255, 0.72);
    -webkit-overflow-scrolling: touch;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.rates-table th,
.rates-table td {
    padding: 16px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(17, 43, 69, 0.08);
}

.rates-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-soft);
    background: rgba(94, 151, 217, 0.14);
}

.rates-table td:first-child,
.rates-table th:first-child {
    font-weight: 700;
    color: var(--ink);
}

.rates-table tr:last-child td {
    border-bottom: 0;
}

.mini-proof-card {
    border-radius: 28px;
    overflow: hidden;
}

.mini-proof-card img,
.proof-media img,
.contact-support-card img {
    display: block;
    width: 100%;
}

.poster-proof-card img {
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center top;
    background: rgba(255, 255, 255, 0.96);
    padding: 14px;
}

.mini-proof-card div {
    padding: 18px 20px 20px;
}

.mini-proof-card strong,
.proof-media figcaption {
    display: block;
    color: var(--ink);
}

.notes-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 22px;
}

.notes-layout-with-proof {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
}

.notes-stack {
    display: grid;
    gap: 20px;
}

.info-card {
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 246, 255, 0.9)),
        var(--surface);
}

.info-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.info-list li {
    position: relative;
    padding-left: 18px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.proof-media {
    border-radius: 28px;
    overflow: hidden;
}

.proof-media img {
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center top;
    background: #fff;
    padding: 12px;
}

.form-proof-card img {
    max-height: 720px;
    padding: 14px;
}

.contact-support-card img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    background: #fff;
    padding: 10px;
}

.proof-media figcaption {
    padding: 16px 18px 18px;
    background: rgba(255, 252, 247, 0.9);
    font-size: 0.92rem;
}

.products-header {
    margin-bottom: 10px;
}

.products-hero {
    padding: 64px 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: end;
}

.products-copy h1 {
    max-width: 9.5ch;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.93;
}

.products-copy h1 em {
    display: block;
    color: var(--accent);
    font-style: normal;
}

.products-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.products-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 43, 69, 0.08);
    color: var(--brand);
    font-size: 0.84rem;
    box-shadow: 0 10px 24px rgba(17, 43, 69, 0.06);
}

.products-hero-points i {
    color: var(--accent);
}

.products-hero-panel,
.product-card {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.products-hero-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(233, 244, 255, 0.88)),
        var(--surface);
}

.products-hero-panel h2 {
    margin: 6px 0 12px;
    font-family: "Syne", sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    line-height: 1.04;
}

.products-hero-panel p {
    color: var(--ink-soft);
    line-height: 1.72;
    margin-bottom: 16px;
}

.back-home-cta i {
    font-size: 0.92rem;
}

.products-display-section {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding: 28px 0 68px;
}

.products-heading {
    margin-bottom: 26px;
}

.products-heading h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.02;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.product-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-xl);
    min-height: 220px;
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 244, 255, 0.9)),
        var(--surface);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: auto -46px -42px auto;
    width: 140px;
    height: 140px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(94, 151, 217, 0.16), rgba(233, 112, 50, 0.1));
    transform: rotate(18deg);
    pointer-events: none;
}

.product-media {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 210px;
    margin-bottom: 18px;
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(223, 239, 255, 0.84)),
        var(--surface);
    border: 1px solid rgba(17, 43, 69, 0.08);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.product-media img {
    display: block;
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.9);
}

.product-card-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: center;
}

.product-card-wide .product-media {
    margin-bottom: 0;
    min-height: 250px;
}

.product-copy {
    position: relative;
    z-index: 1;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 86, 179, 0.1);
    color: var(--brand-soft);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 18px 0 12px;
    font-size: 1.35rem;
    line-height: 1.18;
    color: var(--ink);
}

.product-card p {
    color: var(--ink-soft);
    line-height: 1.72;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--brand);
    font-weight: 700;
}

.product-link::after {
    content: "\2192";
    transition: transform var(--ease);
}

.product-link:hover::after,
.product-link:focus-visible::after {
    transform: translateX(4px);
}

.contact-frame {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(440px, 1.1fr);
    gap: 28px;
    padding: 0;
    border-radius: 0;
    align-items: start;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.contact-copy {
    padding: 12px 6px 12px 6px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
}

.contact-copy h2 {
    margin-bottom: 18px;
    max-width: 8ch;
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    line-height: 0.96;
}

.contact-list {
    display: grid;
    gap: 14px;
    font-size: 1rem;
}

.contact-list a,
.contact-list span {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-list i {
    width: 20px;
    color: var(--accent);
}

.contact-list a span {
    color: var(--ink-soft);
}

.contact-support-card {
    margin-top: 10px;
    padding: 16px;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.contact-support-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-support-card {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.contact-support-card img {
    border-radius: 20px;
    background: #fff;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
    max-width: 150px;
    justify-self: center;
}

.contact-support-card strong {
    margin-top: 0;
    font-size: 1rem;
}

.contact-support-card p {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.55;
}

.contact-card {
    padding: 24px;
    border-radius: 34px;
    transition: transform var(--ease), box-shadow var(--ease);
}

.form-intro {
    margin-bottom: 16px;
}

.form-intro p {
    margin-top: 8px;
    color: var(--ink-soft);
}

.contact-card label {
    display: block;
    font-size: 0.94rem;
    margin-bottom: 14px;
}

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

.conditional-fields[hidden] {
    display: none !important;
}

.conditional-fields {
    margin-bottom: 2px;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
    width: 100%;
    margin-top: 8px;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(17, 43, 69, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
    outline: none;
    border-color: rgba(233, 112, 50, 0.8);
    box-shadow: 0 0 0 4px rgba(233, 112, 50, 0.12);
}

.contact-card select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(17, 43, 69, 0.6) 50%),
        linear-gradient(135deg, rgba(17, 43, 69, 0.6) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.submit-cta {
    border: 0;
    cursor: pointer;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
}

.submit-cta:disabled {
    cursor: wait;
    opacity: 0.88;
}

.site-footer {
    margin-top: 36px;
    margin-bottom: 26px;
    padding: 24px 28px;
    border-radius: 26px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.legal-strip {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto 18px;
    padding: 14px 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 18px;
    border-radius: 20px;
    background: rgba(255, 250, 241, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.56);
    box-shadow: 0 12px 28px rgba(17, 43, 69, 0.06);
    color: var(--ink-soft);
    font-size: 0.82rem;
    backdrop-filter: blur(14px);
}

.legal-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-strip i {
    color: var(--accent);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(17, 43, 69, 0.95);
    color: #fff;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
    z-index: 80;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

body.motion-desktop .hero-copy h1 {
    animation: heroTitleFloat 8s ease-in-out infinite;
}

body.motion-desktop .hero-lead {
    animation: softLift 9s ease-in-out infinite 0.4s;
}

body.motion-desktop .hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -80px;
    top: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 112, 50, 0.18) 0%, rgba(233, 112, 50, 0.04) 45%, transparent 72%);
    filter: blur(8px);
    pointer-events: none;
    animation: heroOrbMove 14s ease-in-out infinite;
}

body.motion-desktop .navbar {
    animation: navFloat 9s ease-in-out infinite;
}

body.motion-desktop .eyebrow,
body.motion-desktop .section-kicker {
    animation: eyebrowDrift 7s ease-in-out infinite;
}

body.motion-desktop .section-heading {
    animation: headingDrift 11s ease-in-out infinite;
}

body.motion-desktop .services-section,
body.motion-desktop .process-section,
body.motion-desktop .contact-section {
    position: relative;
    overflow: hidden;
}

body.motion-desktop .services-section::before,
body.motion-desktop .process-section::before,
body.motion-desktop .contact-section::before {
    content: "";
    position: absolute;
    inset: 8% auto auto -10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 43, 69, 0.08) 0%, rgba(17, 43, 69, 0.02) 48%, transparent 74%);
    pointer-events: none;
    animation: sectionOrbMove 16s ease-in-out infinite;
}

body.motion-desktop .contact-section::before {
    left: auto;
    right: -8%;
    top: 12%;
    background: radial-gradient(circle, rgba(233, 112, 50, 0.12) 0%, rgba(233, 112, 50, 0.03) 48%, transparent 74%);
}

body.motion-desktop .hero-proof div:nth-child(1) {
    animation: ambientCardFloatA 9s ease-in-out infinite;
}

body.motion-desktop .hero-proof div:nth-child(2) {
    animation: ambientCardFloatB 10s ease-in-out infinite;
}

body.motion-desktop .hero-proof div:nth-child(3) {
    animation: ambientCardFloatC 11s ease-in-out infinite;
}

body.motion-desktop .route-card {
    animation: routeCardDrift 11s ease-in-out infinite;
}

body.motion-desktop .insight-card {
    animation: insightCardDrift 12s ease-in-out infinite;
}

body.motion-desktop .route-card::after,
body.motion-desktop .contact-card::after {
    content: "";
    position: absolute;
    inset: -40% auto auto -18%;
    width: 48%;
    height: 180%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.2) 46%, transparent 72%);
    transform: rotate(14deg);
    pointer-events: none;
    animation: sheenSweep 7.5s ease-in-out infinite;
}

body.motion-desktop .contact-card::after {
    animation-duration: 8.2s;
}

body.motion-desktop .story-panel:nth-of-type(1) {
    animation: sectionDriftA 12s ease-in-out infinite;
}

body.motion-desktop .story-panel:nth-of-type(2) {
    animation: sectionDriftB 13s ease-in-out infinite;
}

body.motion-desktop .story-primary {
    animation: none;
}

body.motion-desktop .service-tile:nth-child(1) {
    animation: serviceDriftA 12s ease-in-out infinite;
}

body.motion-desktop .service-tile:nth-child(2) {
    animation: serviceDriftB 10s ease-in-out infinite;
}

body.motion-desktop .service-tile:nth-child(3) {
    animation: serviceDriftC 11s ease-in-out infinite;
}

body.motion-desktop .service-tile:nth-child(4) {
    animation: serviceDriftD 13s ease-in-out infinite;
}

body.motion-desktop .box-card:nth-child(1) {
    animation: boxDriftA 10s ease-in-out infinite;
}

body.motion-desktop .box-card:nth-child(2) {
    animation: boxDriftB 11s ease-in-out infinite 0.3s;
}

body.motion-desktop .box-card:nth-child(3) {
    animation: boxDriftC 12s ease-in-out infinite 0.6s;
}

body.motion-desktop .box-card:nth-child(4) {
    animation: boxDriftD 13s ease-in-out infinite 0.9s;
}

body.motion-desktop .rates-card {
    animation: ratesCardDrift 12s ease-in-out infinite;
}

body.motion-desktop .poster-proof-card {
    animation: proofCardDrift 13s ease-in-out infinite;
}

body.motion-desktop .notes-stack .info-card:nth-child(1) {
    animation: noteDriftA 11s ease-in-out infinite;
}

body.motion-desktop .notes-stack .info-card:nth-child(2) {
    animation: noteDriftB 12s ease-in-out infinite 0.5s;
}

body.motion-desktop .form-proof-card {
    animation: proofCardTallDrift 12s ease-in-out infinite;
}

body.motion-desktop .path-step:nth-child(1) {
    animation: pathDrift 10s ease-in-out infinite;
}

body.motion-desktop .path-step:nth-child(2) {
    animation: pathDrift 11s ease-in-out infinite 0.4s;
}

body.motion-desktop .path-step:nth-child(3) {
    animation: pathDrift 12s ease-in-out infinite 0.8s;
}

body.motion-desktop .path-step:nth-child(4) {
    animation: pathDrift 13s ease-in-out infinite 1.2s;
}

body.motion-desktop .contact-copy {
    animation: sectionDriftA 12s ease-in-out infinite;
}

body.motion-desktop .contact-card {
    animation: sectionDriftB 13s ease-in-out infinite;
}

body.motion-desktop .contact-support-card:nth-child(1) {
    animation: supportCardDriftA 10s ease-in-out infinite;
}

body.motion-desktop .contact-support-card:nth-child(2) {
    animation: supportCardDriftB 11s ease-in-out infinite 0.5s;
}

body.motion-desktop .site-footer {
    animation: footerDrift 10s ease-in-out infinite;
}

body.motion-desktop .hero-marquee-track {
    animation: marquee 18s linear infinite;
}

body.motion-desktop .hero-proof div,
body.motion-desktop .route-card,
body.motion-desktop .insight-card,
body.motion-desktop .story-panel,
body.motion-desktop .service-tile,
body.motion-desktop .path-step,
body.motion-desktop .contact-copy,
body.motion-desktop .contact-card,
body.motion-desktop .site-footer,
body.motion-desktop .box-card,
body.motion-desktop .rates-card,
body.motion-desktop .poster-proof-card,
body.motion-desktop .info-card,
body.motion-desktop .form-proof-card,
body.motion-desktop .contact-support-card,
body.motion-desktop .section-heading,
body.motion-desktop .navbar {
    transform-origin: center center;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    transition:
        opacity 700ms cubic-bezier(.2, .8, .2, 1),
        transform 700ms cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] {
    transform: translate3d(42px, 0, 0);
}

[data-reveal="scale"] {
    transform: scale(0.96);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes signalMove {
    from {
        transform: translateX(-40px);
    }
    to {
        transform: translateX(100px);
    }
}

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(233, 112, 50, 0.12);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(233, 112, 50, 0.04);
    }
}

@keyframes heroTitleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes navFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -6px, 0);
    }
}

@keyframes eyebrowDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    50% {
        transform: translate3d(8px, -2px, 0);
        opacity: 0.92;
    }
}

@keyframes headingDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes softLift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes ambientCardFloatA {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -14px, 0) rotate(-0.7deg);
    }
}

@keyframes ambientCardFloatB {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -12px, 0) rotate(0.55deg);
    }
}

@keyframes ambientCardFloatC {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -13px, 0) rotate(-0.45deg);
    }
}

@keyframes routeCardDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-10px, -14px, 0);
    }
}

@keyframes insightCardDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(10px, -14px, 0);
    }
}

@keyframes sectionDriftA {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes sectionDriftB {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes serviceDriftA {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@keyframes serviceDriftB {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -11px, 0);
    }
}

@keyframes serviceDriftC {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -13px, 0);
    }
}

@keyframes serviceDriftD {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -12px, 0);
    }
}

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

@keyframes boxDriftB {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -10px, 0) rotate(0.55deg);
    }
}

@keyframes boxDriftC {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -13px, 0) rotate(-0.45deg);
    }
}

@keyframes boxDriftD {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -11px, 0) rotate(0.4deg);
    }
}

@keyframes ratesCardDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-8px, -10px, 0);
    }
}

@keyframes proofCardDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(8px, -12px, 0);
    }
}

@keyframes noteDriftA {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -11px, 0);
    }
}

@keyframes noteDriftB {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -9px, 0);
    }
}

@keyframes proofCardTallDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(10px, -10px, 0);
    }
}

@keyframes pathDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes footerDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -6px, 0);
    }
}

@keyframes supportCardDriftA {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes supportCardDriftB {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -7px, 0);
    }
}

@keyframes heroOrbMove {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-36px, 20px, 0) scale(1.08);
    }
}

@keyframes sectionOrbMove {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(28px, 22px, 0) scale(1.06);
    }
}

@keyframes sheenSweep {
    0%, 100% {
        transform: translate3d(-160%, 0, 0) rotate(14deg);
        opacity: 0;
    }
    16% {
        opacity: 0;
    }
    38% {
        transform: translate3d(260%, 0, 0) rotate(14deg);
        opacity: 1;
    }
    39% {
        opacity: 0;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .products-hero,
    .story-layout,
    .contact-frame,
    .section-heading.split {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        justify-items: start;
    }

    .hero-copy h1 {
        max-width: 10ch;
    }

    .route-card,
    .insight-card {
        width: min(100%, 520px);
    }

    .services-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "large large"
            "small1 dark"
            "wide wide";
    }

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

    .product-card-wide {
        grid-column: span 2;
    }

    .products-heading h2 {
        max-width: 100%;
    }

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

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

    .rates-layout,
    .notes-layout-with-proof {
        grid-template-columns: 1fr;
    }

    .path-step::after {
        display: none;
    }
}

@media (max-width: 1180px) and (min-width: 821px) {
    .route-card {
        width: min(100%, 460px);
    }

    .insight-card {
        width: min(100%, 340px);
    }
}

@media (max-width: 820px) {
    body::before {
        display: none;
    }

    .hero-copy,
    .hero-stage,
    .story-panel,
    .service-tile,
    .path-step,
    .contact-frame,
    .site-footer,
    .navbar,
    .primary-cta,
    .secondary-cta {
        will-change: auto;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    body.mobile-lite-motion [data-reveal] {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
        transition:
            opacity 380ms ease-out,
            transform 380ms ease-out;
        transition-delay: var(--reveal-delay, 0ms);
    }

    body.mobile-lite-motion [data-reveal].is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    body.mobile-lite-motion .primary-cta,
    body.mobile-lite-motion .secondary-cta,
    body.mobile-lite-motion .service-tile,
    body.mobile-lite-motion .path-step,
    body.mobile-lite-motion .box-card,
    body.mobile-lite-motion .info-card,
    body.mobile-lite-motion .contact-support-card,
    body.mobile-lite-motion .contact-card {
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    body.mobile-lite-motion .primary-cta:active,
    body.mobile-lite-motion .secondary-cta:active {
        transform: scale(0.985);
    }

    body.mobile-lite-motion .service-tile:active,
    body.mobile-lite-motion .path-step:active,
    body.mobile-lite-motion .box-card:active,
    body.mobile-lite-motion .info-card:active,
    body.mobile-lite-motion .contact-support-card:active,
    body.mobile-lite-motion .contact-card:active {
        transform: translateY(1px);
    }

    .navbar {
        border-radius: 28px;
        align-items: center;
        padding: 12px 14px;
        backdrop-filter: none;
        box-shadow: 0 10px 24px rgba(17, 43, 69, 0.08);
    }

    .menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 14px;
        padding: 18px;
        background: rgba(255, 250, 241, 0.96);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        box-shadow: 0 18px 44px rgba(17, 43, 69, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    .nav-panel.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-copy h1,
    .section-heading h2,
    .contact-copy h2 {
        max-width: 100%;
    }

    .hero-proof,
    .services-showcase,
    .process-path,
    .product-grid,
    .site-footer,
    .box-grid,
    .notes-layout {
        grid-template-columns: 1fr;
    }

    .product-card-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card-wide .product-media {
        margin-bottom: 18px;
        min-height: 210px;
    }

    .hero-stage {
        display: grid;
        justify-items: stretch;
        gap: 18px;
    }

    .stage-card,
    .route-card,
    .insight-card {
        position: relative;
        width: 100%;
    }

    .hero-proof div,
    .route-card,
    .insight-card,
    .story-panel,
    .service-tile,
    .path-step,
    .products-summary-card,
    .products-hero-panel,
    .product-card,
    .box-card,
    .rates-card,
    .mini-proof-card,
    .info-card,
    .proof-media,
    .contact-card,
    .contact-support-card,
    .site-footer,
    .legal-strip {
        backdrop-filter: none;
        box-shadow: 0 10px 24px rgba(17, 43, 69, 0.07);
    }

    .route-line {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 18px 0;
        align-items: start;
    }

    .route-track {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 2px;
        min-width: 0;
        height: 34px;
        margin: -2px 0 -2px 8px;
        border-radius: 999px;
    }

    .moving-signal {
        width: 2px;
        height: 22px;
        background: linear-gradient(180deg, transparent, var(--accent), transparent);
        animation: signalMoveVertical 2.4s linear infinite;
    }

    .route-node {
        min-height: auto;
    }

    .route-node small {
        margin-top: 4px;
    }

    .route-node .node-dot {
        position: static;
        width: 16px;
        height: 16px;
        margin-top: 2px;
        border-width: 3px;
    }

    .operations-card img {
        filter: none;
    }

    .services-showcase {
        grid-template-areas:
            "large"
            "small1"
            "dark"
            "wide";
    }

    .contact-frame {
        grid-template-columns: 1fr;
    }

    .rates-layout {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .path-step::after {
        display: none;
    }

    .brand-copy strong {
        font-size: 0.96rem;
    }

    .brand-copy small {
        font-size: 0.7rem;
    }

    .hero {
        padding: 38px 0 42px;
    }

    .hero-grid {
        gap: 26px;
    }

    .hero-copy h1 {
        max-width: 8ch;
        font-size: clamp(2.7rem, 12vw, 4.4rem);
        line-height: 0.94;
    }

    .eyebrow {
        flex-wrap: wrap;
        row-gap: 8px;
        margin-bottom: 18px;
    }

    .eyebrow span {
        width: 36px;
    }

    .hero-lead {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .hero-actions {
        gap: 12px;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-proof {
        gap: 12px;
    }

    .hero-marquee {
        animation-duration: 24s;
    }

    .route-card,
    .insight-card {
        width: 100%;
    }

    .poster-proof-card img {
        max-height: 360px;
    }

    .section-heading h2,
    .contact-copy h2 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.02;
    }

    .story-panel,
    .service-tile,
    .path-step,
    .product-card,
    .contact-card {
        min-height: auto;
    }

    .story-primary {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .story-logo-panel,
    .story-detail {
        padding: 22px;
    }

    .story-primary {
        padding: 0;
    }

    .site-footer {
        gap: 10px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .contact-support-grid {
        gap: 12px;
    }

    body.products-page .products-hero {
        padding: 40px 0 12px;
        gap: 20px;
    }

    body.products-page .products-copy {
        display: grid;
        gap: 14px;
    }

    body.products-page .products-copy h1 {
        max-width: 11ch;
        font-size: clamp(2.35rem, 10vw, 3.45rem);
        line-height: 0.96;
    }

    body.products-page .hero-lead,
    body.products-page .products-hero-panel p,
    body.products-page .product-card p {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    body.products-page .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        align-items: stretch;
    }

    body.products-page .primary-cta,
    body.products-page .secondary-cta {
        width: 100%;
        min-height: 46px;
        padding: 12px 14px;
        font-size: 0.9rem;
        justify-content: center;
        text-align: center;
    }

    body.products-page .products-hero-points {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.products-page .products-hero-points span {
        min-width: 0;
        padding: 10px 12px;
        border-radius: 18px;
        font-size: 0.83rem;
        line-height: 1.35;
        align-items: flex-start;
    }

    body.products-page .products-hero-points span:last-child {
        grid-column: 1 / -1;
    }

    body.products-page .products-display-section {
        padding: 18px 0 56px;
    }

    body.products-page .products-heading {
        margin-bottom: 18px;
    }

    body.products-page .product-grid {
        gap: 16px;
    }

    body.products-page .product-card,
    body.products-page .product-card-wide {
        display: grid;
        grid-template-columns: minmax(112px, 132px) minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        padding: 18px;
    }

    body.products-page .product-card > :not(.product-media),
    body.products-page .product-card-wide .product-copy {
        position: relative;
        z-index: 1;
    }

    body.products-page .product-card .product-media,
    body.products-page .product-card-wide .product-media {
        min-height: 118px;
        margin-bottom: 0;
        border-radius: 18px;
    }

    body.products-page .product-media img {
        max-height: 132px;
    }

    body.products-page .product-card h3 {
        margin: 10px 0 8px;
        font-size: 1.08rem;
        line-height: 1.2;
    }

    body.products-page .product-badge {
        padding: 7px 10px;
        font-size: 0.66rem;
    }

    body.products-page .product-link {
        margin-top: 12px;
        font-size: 0.88rem;
    }
}

@media (max-width: 560px) {
    .site-header,
    .products-display-section,
    .story-section,
    .services-section,
    .process-section,
    .guide-section,
    .notes-section,
    .contact-section,
    .site-footer,
    .navbar,
    .legal-strip {
        width: min(calc(100% - 20px), var(--max-width));
    }

    .hero {
        padding-top: 40px;
    }

    .hero-copy h1 {
        max-width: 8.5ch;
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 0.98;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .navbar {
        width: min(calc(100% - 16px), var(--max-width));
        margin-top: 14px;
        border-radius: 24px;
    }

    .legal-strip {
        padding: 12px 14px;
        font-size: 0.74rem;
        justify-content: flex-start;
    }

    .brand-mark {
        gap: 10px;
        max-width: calc(100% - 62px);
    }

    .brand-logo {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        box-shadow: 0 0 0 5px rgba(233, 112, 50, 0.1);
        min-width: 30px;
        min-height: 30px;
    }

    .brand-copy strong {
        font-size: 0.84rem;
        letter-spacing: 0.05em;
    }

    .brand-copy small {
        font-size: 0.62rem;
        letter-spacing: 0.05em;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .eyebrow,
    .section-kicker,
    .route-label,
    .route-status,
    .form-intro span {
        letter-spacing: 0.12em;
        font-size: 0.68rem;
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

    .products-copy h1 {
        max-width: 8.5ch;
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 0.98;
    }

    .route-card {
        padding: 18px 18px 20px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 241, 0.82)),
            var(--surface);
    }

    .route-header,
    .route-metrics {
        gap: 10px;
    }

    .route-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .route-status {
        align-self: flex-start;
    }

    .route-metrics {
        flex-direction: column;
    }

    .route-line {
        gap: 14px;
        margin: 16px 0 18px;
    }

    .route-track {
        height: 30px;
        margin: -1px 0 -1px 7px;
    }

    .moving-signal {
        height: 18px;
    }

    .route-node {
        gap: 12px;
    }

    .route-node .node-dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .operations-card img {
        max-height: 240px;
    }

    .poster-proof-card img {
        max-height: 300px;
        padding: 10px;
    }

    .form-proof-card img {
        max-height: 520px;
        padding: 10px;
    }

    .route-node strong {
        font-size: 1.04rem;
    }

    .rates-card {
        padding: 18px;
    }

    .rates-table-wrap {
        border-radius: 18px;
        overflow-x: hidden;
    }

    .rates-table {
        min-width: 0;
        table-layout: fixed;
    }

    .rates-table th,
    .rates-table td {
        padding: 10px 6px;
        font-size: 0.78rem;
    }

    .rates-table th {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        white-space: normal;
        word-break: break-word;
    }

    .rates-table td {
        word-break: break-word;
    }

    .poster-proof-card {
        width: 100%;
    }

    .poster-proof-card img {
        width: 100%;
        max-width: 100%;
        object-position: center top;
    }

    .route-node small {
        line-height: 1.45;
    }

    .insight-card {
        padding: 20px;
    }

    .insight-card h2 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .hero-marquee {
        display: none;
    }

    .hero-proof div,
    .story-panel,
    .service-tile,
    .path-step,
    .contact-card,
    .products-summary-card,
    .products-hero-panel,
    .product-card,
    .box-card,
    .rates-card,
    .info-card {
        padding: 22px;
    }

    .contact-frame {
        padding: 12px;
        border-radius: 28px;
    }

    .story-logo-panel,
    .story-detail {
        padding: 0;
    }

    .contact-list {
        font-size: 0.92rem;
    }

    .contact-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .contact-support-card {
        margin-top: 0;
        padding: 12px;
        text-align: left;
    }

    .contact-support-card img {
        max-width: 110px;
    }

    .site-footer {
        padding: 18px;
    }

    body.products-page .products-copy h1 {
        max-width: 9.5ch;
        font-size: clamp(1.95rem, 10vw, 2.8rem);
    }

    body.products-page .hero-actions,
    body.products-page .products-hero-points {
        grid-template-columns: 1fr;
    }

    body.products-page .products-hero-points span:last-child {
        grid-column: auto;
    }

    body.products-page .primary-cta,
    body.products-page .secondary-cta {
        min-height: 42px;
        padding: 11px 12px;
        font-size: 0.86rem;
    }

    body.products-page .products-hero-panel,
    body.products-page .product-card,
    body.products-page .product-card-wide {
        padding: 16px;
    }

    body.products-page .product-card,
    body.products-page .product-card-wide {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
    }

    body.products-page .product-card .product-media,
    body.products-page .product-card-wide .product-media {
        min-height: 96px;
        border-radius: 16px;
    }

    body.products-page .product-media img {
        max-height: 106px;
    }

    body.products-page .product-card h3 {
        margin-top: 8px;
        font-size: 1rem;
    }

    body.products-page .product-card p {
        font-size: 0.88rem;
        line-height: 1.55;
    }

}

@media (max-width: 420px) {
    .site-header,
    .products-display-section,
    .story-section,
    .services-section,
    .process-section,
    .guide-section,
    .notes-section,
    .contact-section,
    .site-footer,
    .navbar,
    .legal-strip {
        width: min(calc(100% - 12px), var(--max-width));
    }

    .hero-copy h1 {
        max-width: 9ch;
        font-size: clamp(1.75rem, 10.4vw, 2.45rem);
        line-height: 1;
    }

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

    .primary-cta,
    .secondary-cta {
        padding: 14px 16px;
        font-size: 0.94rem;
    }

    .hero-proof div,
    .story-panel,
    .service-tile,
    .path-step,
    .contact-card,
    .products-summary-card,
    .products-hero-panel,
    .product-card,
    .route-card,
    .insight-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-marquee {
        display: none;
    }

    .rates-card {
        padding: 16px;
    }

    body.products-page .products-hero {
        padding-top: 34px;
        gap: 16px;
    }

    body.products-page .products-copy h1 {
        max-width: 9ch;
        font-size: clamp(1.72rem, 9.4vw, 2.24rem);
        line-height: 1;
    }

    body.products-page .hero-lead,
    body.products-page .products-hero-panel p,
    body.products-page .product-card p {
        font-size: 0.84rem;
    }

    body.products-page .primary-cta,
    body.products-page .secondary-cta {
        min-height: 40px;
        padding: 10px 11px;
        font-size: 0.82rem;
    }

    body.products-page .products-hero-panel,
    body.products-page .product-card,
    body.products-page .product-card-wide {
        padding: 14px;
    }

    body.products-page .product-card,
    body.products-page .product-card-wide {
        grid-template-columns: 1fr;
    }

    body.products-page .product-card .product-media,
    body.products-page .product-card-wide .product-media {
        min-height: 140px;
        margin-bottom: 10px;
    }

    body.products-page .product-media img {
        max-height: 150px;
    }

    body.products-page .product-badge {
        font-size: 0.62rem;
        letter-spacing: 0.09em;
    }

    body.products-page .product-card h3 {
        font-size: 0.96rem;
    }

    body.products-page .product-link {
        font-size: 0.84rem;
    }

    .rates-table {
        min-width: 0;
    }

    .rates-table th,
    .rates-table td {
        padding: 9px 4px;
        font-size: 0.72rem;
    }

    .rates-table th {
        font-size: 0.56rem;
        letter-spacing: 0.06em;
    }

    .rates-note,
    .mini-proof-card p {
        font-size: 0.88rem;
    }

    .mini-proof-card div {
        padding: 16px;
    }

    .contact-support-card strong {
        font-size: 0.9rem;
    }

    .contact-support-card p {
        font-size: 0.8rem;
        line-height: 1.45;
    }
}

@keyframes signalMoveVertical {
    from {
        transform: translateY(-24px);
    }
    to {
        transform: translateY(80px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (hover: none) and (pointer: coarse) {
    body::before {
        display: none;
    }

    .navbar,
    .hero-proof div,
    .route-card,
    .insight-card,
    .story-panel,
    .service-tile,
    .path-step,
    .box-card,
    .rates-card,
    .mini-proof-card,
    .info-card,
    .proof-media,
    .contact-card,
    .contact-support-card,
    .legal-strip,
    .site-footer {
        backdrop-filter: none;
        box-shadow: 0 8px 20px rgba(17, 43, 69, 0.06);
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    body.mobile-lite-motion [data-reveal] {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
        transition:
            opacity 380ms ease-out,
            transform 380ms ease-out;
        transition-delay: var(--reveal-delay, 0ms);
    }

    body.mobile-lite-motion [data-reveal].is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .primary-cta:hover,
    .secondary-cta:hover,
    .service-tile:hover,
    .path-step:hover,
    .contact-card:hover,
    .story-panel:hover,
    .route-card:hover,
    .insight-card:hover,
    .menu-toggle:hover,
    .nav-panel a:hover {
        transform: none;
        box-shadow: var(--shadow);
    }

    .service-tile::before,
    .path-step::before,
    .hero-marquee,
    .moving-signal,
    .node-dot.active {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}
