:root {
    color-scheme: dark;
    --font-display: "Manrope", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --navy-950: #03111d;
    --navy-900: #071828;
    --navy-850: #0a2033;
    --navy-800: #0d2b43;
    --navy-700: #16415f;
    --teal-500: #12c4cf;
    --teal-400: #3bd9df;
    --teal-300: #77e9e8;
    --blue-500: #3977f6;
    --violet-500: #7759f6;
    --cream-50: #fbfaf7;
    --white: #ffffff;
    --surface: #091c2d;
    --surface-soft: #10283d;
    --surface-raised: #132f47;
    --text: #f7fbff;
    --text-muted: #a9bdca;
    --text-soft: #7e9aaa;
    --line: rgba(187, 222, 235, 0.14);
    --line-strong: rgba(106, 225, 228, 0.28);
    --section-light: #f5f8f8;
    --light-card: #ffffff;
    --light-text: #0a2235;
    --light-muted: #536b78;
    --focus: #fde68a;
    --shadow-xl: 0 40px 100px rgba(0, 10, 20, 0.28);
    --shadow-card: 0 22px 60px rgba(8, 35, 53, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shell: 1180px;
    --header-height: 76px;
}

html[data-theme="light"] {
    color-scheme: light;
    --surface: #f8fbfb;
    --surface-soft: #edf5f5;
    --surface-raised: #ffffff;
    --text: #081f31;
    --text-muted: #536b78;
    --text-soft: #6e8490;
    --line: rgba(8, 47, 68, 0.12);
    --line-strong: rgba(18, 160, 172, 0.28);
    --focus: #0b7381;
    --shadow-xl: 0 40px 100px rgba(18, 59, 76, 0.15);
    --shadow-card: 0 22px 60px rgba(22, 65, 82, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    min-width: 0;
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

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

.skip-link {
    position: fixed;
    z-index: 999;
    top: 10px;
    left: 10px;
    transform: translateY(-160%);
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-900);
    font-weight: 700;
    transition: transform 160ms ease;
}

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

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(3, 17, 29, 0.7);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

html[data-theme="light"] .site-header {
    background: rgba(248, 251, 251, 0.82);
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(3, 17, 29, 0.94);
    box-shadow: 0 14px 35px rgba(0, 10, 20, 0.16);
}

html[data-theme="light"] .site-header.is-scrolled {
    background: rgba(248, 251, 251, 0.95);
}

.header-inner {
    min-width: 0;
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.27rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand > span > span {
    color: var(--teal-400);
}

.site-nav {
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, 2vw, 28px);
}

.site-nav a,
.header-login {
    position: relative;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 160ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 -10px;
    height: 2px;
    border-radius: 99px;
    background: var(--teal-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-login:hover,
.header-login:focus-visible {
    color: var(--text);
}

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

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

.theme-toggle,
.menu-toggle {
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    color: var(--text);
    cursor: pointer;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.theme-toggle span {
    grid-area: 1 / 1;
    transition: opacity 160ms ease, transform 160ms ease;
}

.theme-sun {
    opacity: 0;
    transform: rotate(-40deg) scale(0.7);
}

.theme-moon {
    opacity: 1;
}

html[data-theme="light"] .theme-sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}

html[data-theme="light"] .theme-moon {
    opacity: 0;
    transform: rotate(40deg) scale(0.7);
}

.menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 12px;
}

.menu-toggle .menu-line {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform-origin: center;
    transition: top 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.menu-line-one {
    top: 14px;
}

.menu-line-two {
    top: 21px;
}

.menu-line-three {
    top: 28px;
}

.menu-toggle[aria-expanded="true"] .menu-line-one,
.menu-toggle[aria-expanded="true"] .menu-line-three {
    top: 21px;
}

.menu-toggle[aria-expanded="true"] .menu-line-one {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line-two {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-line-three {
    transform: rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-small {
    min-height: 44px;
    padding: 11px 17px;
    font-size: 0.88rem;
}

.button-large {
    min-height: 56px;
    padding: 16px 22px;
}

.button-primary {
    background: linear-gradient(135deg, var(--teal-400), #1cbac8);
    color: var(--navy-950);
    box-shadow: 0 13px 30px rgba(18, 196, 207, 0.2);
}

.button-primary:hover {
    box-shadow: 0 18px 40px rgba(18, 196, 207, 0.3);
}

.button-ghost {
    border-color: var(--line-strong);
    background: rgba(9, 37, 55, 0.5);
    color: var(--text);
}

html[data-theme="light"] .button-ghost {
    background: rgba(255, 255, 255, 0.75);
}

.button-dark {
    background: var(--navy-900);
    color: var(--white);
    padding: 15px 20px;
}

.button-light {
    background: var(--white);
    color: var(--navy-900);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    position: relative;
    min-height: 780px;
    padding: calc(var(--header-height) + 82px) 0 58px;
    isolation: isolate;
    background:
        radial-gradient(circle at 66% 24%, rgba(26, 185, 200, 0.12), transparent 30%),
        linear-gradient(155deg, var(--navy-950) 0%, #071a2a 52%, #092338 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.26;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-orb,
.final-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
}

.hero-orb-one {
    width: 480px;
    height: 480px;
    top: 2%;
    right: -230px;
    background: radial-gradient(circle, rgba(38, 214, 222, 0.22), transparent 68%);
}

.hero-orb-two {
    width: 360px;
    height: 360px;
    bottom: 0;
    left: -230px;
    background: radial-gradient(circle, rgba(119, 89, 246, 0.16), transparent 68%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 90px);
}

.hero-copy,
.hero-product {
    min-width: 0;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-300);
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--teal-400);
    box-shadow: 0 0 0 6px rgba(59, 217, 223, 0.1);
}

.hero h1 {
    max-width: 720px;
    margin: 22px 0 24px;
    font-family: var(--font-display);
    font-size: clamp(3.25rem, 5.5vw, 5.55rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero h1 span {
    display: inline-block;
    color: var(--teal-300);
}

.hero-lead {
    max-width: 660px;
    margin: 0;
    color: #c4d5de;
    font-size: clamp(1.03rem, 1.5vw, 1.19rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 23px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    color: #91aebb;
    font-size: 0.84rem;
    font-weight: 600;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-list span {
    color: var(--teal-400);
}

.hero-product {
    position: relative;
    min-height: 510px;
    padding: 40px 0 62px 34px;
}

.product-window {
    position: relative;
    width: min(100%, 610px);
    margin-left: auto;
    overflow: hidden;
    border: 1px solid rgba(182, 222, 232, 0.22);
    border-radius: 24px;
    background: #0a1b28;
    box-shadow: 0 45px 110px rgba(0, 0, 0, 0.5);
    transform: perspective(1300px) rotateY(-4deg) rotateX(1.5deg);
    transform-origin: center;
}

.window-bar {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-bar > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.window-address {
    margin-left: 9px;
    padding: 5px 12px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.67rem;
}

.product-screen {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eff5f6;
}

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

.oria-card {
    position: absolute;
    z-index: 3;
    right: -18px;
    bottom: 0;
    width: min(390px, 76%);
    padding: 18px;
    border: 1px solid rgba(120, 231, 233, 0.3);
    border-radius: 19px;
    background: rgba(7, 28, 43, 0.94);
    box-shadow: 0 30px 70px rgba(0, 8, 18, 0.44);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.oria-card-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.oria-avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(59, 217, 223, 0.18), rgba(119, 89, 246, 0.14));
}

.oria-avatar img {
    width: 28px;
    height: 28px;
}

.oria-card-head strong,
.oria-card-head span {
    display: block;
}

.oria-card-head strong {
    font-family: var(--font-display);
    font-size: 0.84rem;
}

.oria-card-head div > span {
    color: #8ea8b6;
    font-size: 0.68rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5be6a3;
    box-shadow: 0 0 0 5px rgba(91, 230, 163, 0.11);
}

.oria-card > p {
    margin: 16px 0 13px;
    color: #edf8fb;
    font-size: 0.85rem;
    line-height: 1.55;
}

.oria-confirm {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
}

.oria-confirm > span:first-child {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(59, 217, 223, 0.14);
    color: var(--teal-300);
    font-size: 0.75rem;
}

.oria-confirm strong,
.oria-confirm small {
    display: block;
}

.oria-confirm strong {
    font-size: 0.69rem;
}

.oria-confirm small {
    color: #7f9ba9;
    font-size: 0.59rem;
}

.oria-confirm .confirm-pill {
    padding: 7px 9px;
    border: 0;
    border-radius: 8px;
    background: var(--teal-400);
    color: var(--navy-950);
    font-size: 0.62rem;
    font-weight: 800;
}

.product-proof {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 205px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(10, 36, 53, 0.88);
    box-shadow: 0 18px 45px rgba(0, 8, 18, 0.3);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.proof-one {
    top: 4px;
    left: 0;
}

.proof-two {
    left: -8px;
    bottom: 68px;
}

.proof-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 9px;
    background: rgba(59, 217, 223, 0.11);
    color: var(--teal-300);
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
}

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

.product-proof strong {
    font-size: 0.73rem;
}

.product-proof small {
    color: #85a0ad;
    font-size: 0.62rem;
}

.audience-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 74px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
}

.audience-bar > div {
    padding: 20px 26px;
    background: rgba(4, 22, 35, 0.84);
}

.audience-bar span,
.audience-bar strong {
    display: block;
}

.audience-bar span {
    margin-bottom: 5px;
    color: var(--teal-300);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.audience-bar strong {
    color: #d8e7ed;
    font-size: 0.85rem;
    font-weight: 600;
}

.section {
    position: relative;
    padding: clamp(84px, 10vw, 138px) 0;
}

.section-light {
    background: var(--section-light);
    color: var(--light-text);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 50px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-kicker {
    margin-bottom: 15px;
    color: #087a86;
}

.section-kicker-dark {
    color: var(--teal-300);
}

.section-heading h2,
.oria-copy h2,
.security-copy h2,
.faq-copy h2,
.final-cta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.3vw, 4.25rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.section-heading p,
.oria-copy > p,
.security-copy > p,
.faq-copy > p,
.final-cta p {
    margin: 18px 0 0;
    color: var(--light-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.section-heading-dark h2,
.section-heading-dark p {
    color: var(--text);
}

.section-heading-dark p {
    color: var(--text-muted);
}

.journey-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    width: calc(100% - 100px);
    height: 1px;
    margin: 0 auto -1px;
    background: linear-gradient(90deg, transparent, rgba(8, 111, 123, 0.28) 12%, rgba(8, 111, 123, 0.28) 88%, transparent);
}

.journey-line span {
    width: 13px;
    height: 13px;
    justify-self: center;
    border: 3px solid var(--section-light);
    border-radius: 50%;
    background: #11abb7;
    box-shadow: 0 0 0 1px rgba(8, 111, 123, 0.32);
}

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

.journey-card {
    position: relative;
    min-width: 0;
    padding: 18px 18px 25px;
    border: 1px solid rgba(11, 67, 89, 0.1);
    border-radius: 25px;
    background: var(--light-card);
    box-shadow: 0 20px 55px rgba(15, 65, 84, 0.08);
}

.journey-card-featured {
    transform: translateY(-10px);
    border-color: rgba(14, 169, 180, 0.28);
    box-shadow: 0 28px 70px rgba(13, 107, 120, 0.14);
}

.journey-number {
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 30px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(5, 26, 40, 0.83);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.journey-image {
    aspect-ratio: 1.45;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 18px;
    background: #deeaeb;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 380ms ease;
}

.journey-card:hover .journey-image img {
    transform: scale(1.025);
}

.journey-label {
    color: #07818c;
    font-family: var(--font-display);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journey-card h3 {
    margin: 8px 0 12px;
    font-family: var(--font-display);
    font-size: 1.38rem;
    line-height: 1.24;
    letter-spacing: -0.035em;
}

.journey-card p {
    margin: 0;
    color: var(--light-muted);
    font-size: 0.88rem;
}

.journey-card ul,
.feature-copy ul,
.price-card ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.journey-card li,
.feature-copy li,
.price-card li {
    position: relative;
    padding-left: 20px;
    color: var(--light-muted);
    font-size: 0.82rem;
}

.journey-card li + li,
.feature-copy li + li,
.price-card li + li {
    margin-top: 8px;
}

.journey-card li::before,
.feature-copy li::before,
.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0b9aa5;
    font-weight: 800;
}

.oria-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(59, 217, 223, 0.12), transparent 25%),
        linear-gradient(145deg, var(--navy-950), #082238 62%, #0a2d43);
    color: var(--white);
}

.oria-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.7px, transparent 0.7px);
    background-size: 16px 16px;
    pointer-events: none;
}

.oria-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
}

.oria-copy h2 {
    max-width: 600px;
}

.oria-copy > p {
    max-width: 620px;
    color: #aec3ce;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--teal-300);
    font-weight: 800;
}

.text-link:hover span {
    transform: translateX(4px);
}

.text-link span {
    transition: transform 160ms ease;
}

.oria-demo {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(126, 231, 233, 0.2);
    border-radius: 28px;
    background: rgba(10, 38, 56, 0.78);
    box-shadow: 0 40px 90px rgba(0, 8, 18, 0.36);
}

.oria-demo::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(59, 217, 223, 0.2), transparent 45%, rgba(119, 89, 246, 0.17));
}

.demo-command {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.demo-orb {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(59, 217, 223, 0.2);
    border-radius: 15px;
    background: rgba(59, 217, 223, 0.08);
}

.demo-orb img {
    width: 34px;
    height: 34px;
}

.demo-command small,
.demo-command strong {
    display: block;
}

.demo-command small {
    margin-bottom: 6px;
    color: var(--teal-300);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.demo-command strong {
    color: #f1f8fb;
    font-size: 0.91rem;
    line-height: 1.55;
}

.demo-summary {
    margin-top: 14px;
    padding: 21px;
    border-radius: 18px;
    background: #f6fbfb;
    color: var(--light-text);
}

.summary-label {
    color: #0a7b87;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.demo-summary ul {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.demo-summary li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(10, 61, 82, 0.08);
    color: #3d5b69;
    font-size: 0.82rem;
}

.demo-summary li span {
    color: #0796a2;
}

.demo-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    font-weight: 700;
}

.demo-actions span {
    color: #718792;
}

.demo-actions strong {
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--navy-900);
    color: var(--white);
}

.action-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 70px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.09);
}

.action-flow article {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 23px;
    background: rgba(4, 23, 36, 0.78);
}

.action-flow article > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(59, 217, 223, 0.1);
    color: var(--teal-300);
    font-family: var(--font-display);
    font-size: 0.63rem;
    font-weight: 800;
}

.action-flow h3 {
    margin: 0 0 4px;
    font-family: var(--font-display);
    font-size: 1rem;
}

.action-flow p {
    margin: 0;
    color: #8faab7;
    font-size: 0.75rem;
    line-height: 1.5;
}

.split-heading {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 60px;
}

.split-heading p {
    margin: 0 0 4px;
}

.feature-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
    padding: 7px;
    overflow-x: auto;
    border: 1px solid rgba(11, 67, 89, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    scrollbar-width: thin;
}

.feature-tabs button {
    flex: 0 0 auto;
    padding: 11px 15px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #5c7480;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.feature-tabs button[aria-selected="true"] {
    background: var(--navy-900);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(3, 35, 50, 0.18);
}

.feature-panel {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
    gap: clamp(40px, 7vw, 85px);
    align-items: center;
    min-height: 510px;
    padding: clamp(28px, 5vw, 62px);
    border: 1px solid rgba(11, 67, 89, 0.1);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 84% 10%, rgba(42, 202, 211, 0.12), transparent 30%),
        var(--light-card);
    box-shadow: var(--shadow-card);
}

.feature-copy {
    min-width: 0;
}

.feature-index {
    color: #0b8993;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.feature-copy h3 {
    margin: 14px 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.7vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -0.052em;
}

.feature-copy > p {
    margin: 0;
    color: var(--light-muted);
    font-size: 0.97rem;
    line-height: 1.7;
}

.feature-copy li {
    font-size: 0.87rem;
}

.feature-visual {
    min-width: 0;
    aspect-ratio: 1.45;
    overflow: hidden;
    border: 1px solid rgba(8, 67, 89, 0.1);
    border-radius: 22px;
    background: #e6eff0;
    box-shadow: 0 25px 70px rgba(13, 65, 84, 0.15);
}

.feature-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-visual-ui {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 13px;
    padding: clamp(22px, 4vw, 40px);
    background:
        radial-gradient(circle at 80% 0%, rgba(59, 217, 223, 0.19), transparent 35%),
        linear-gradient(150deg, #071827, #0d3047);
}

.chat-bubble {
    max-width: 80%;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.82rem;
    line-height: 1.55;
}

.chat-user {
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    background: var(--teal-400);
    color: var(--navy-950);
    font-weight: 700;
}

.chat-oria {
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 5px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
}

.chat-oria strong,
.chat-oria span {
    display: block;
}

.chat-oria span {
    margin-top: 4px;
    color: #9db5c1;
}

.chat-status {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    color: #8faab7;
    font-size: 0.7rem;
}

.chat-status strong {
    color: var(--teal-300);
}

.feature-visual-doc {
    display: grid;
    place-items: center;
    padding: 30px;
    background: linear-gradient(145deg, #dbe8ea, #f4f8f8);
}

.doc-paper {
    width: min(76%, 380px);
    min-height: 340px;
    padding: 35px;
    border-radius: 9px;
    background: var(--white);
    box-shadow: 0 22px 55px rgba(11, 47, 62, 0.16);
}

.doc-paper > span {
    color: #0d909b;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.doc-paper h4 {
    margin: 15px 0 28px;
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.doc-paper i {
    display: block;
    height: 7px;
    margin-top: 11px;
    border-radius: 10px;
    background: #e1e9ea;
}

.doc-paper i.short {
    width: 62%;
}

.doc-review {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 35px;
    padding: 9px 11px;
    border-radius: 10px;
    background: #e8f8f8;
    color: #087e88;
    font-size: 0.67rem;
    font-weight: 800;
}

.feature-visual-finance {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: linear-gradient(150deg, #f4f9f9, #dcebec);
    color: var(--navy-900);
}

.finance-head {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 0.74rem;
}

.finance-head span {
    font-weight: 800;
}

.finance-head strong {
    color: #66818d;
}

.finance-total {
    margin-top: 35px;
}

.finance-total small,
.finance-total strong,
.finance-total span {
    display: block;
}

.finance-total small {
    color: #6a828d;
}

.finance-total strong {
    margin: 8px 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.06em;
}

.finance-total span {
    color: #88a0aa;
    font-size: 0.68rem;
}

.finance-bars {
    min-height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-top: auto;
    padding-top: 30px;
    border-bottom: 1px solid rgba(9, 54, 73, 0.12);
}

.finance-bars i {
    flex: 1;
    height: 45%;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(to top, #10aab5, #5ae0e2);
}

.finance-bars i:nth-child(2) { height: 68%; }
.finance-bars i:nth-child(3) { height: 53%; }
.finance-bars i:nth-child(4) { height: 82%; }
.finance-bars i:nth-child(5) { height: 63%; }
.finance-bars i:nth-child(6) { height: 92%; }

.screen-gallery {
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 10%, rgba(119, 89, 246, 0.1), transparent 25%),
        radial-gradient(circle at 85% 60%, rgba(59, 217, 223, 0.1), transparent 24%),
        var(--navy-950);
}

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

.gallery-item {
    position: relative;
    grid-column: span 6;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: #102638;
    box-shadow: 0 25px 70px rgba(0, 8, 17, 0.28);
}

.gallery-main {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-main + .gallery-item,
.gallery-main + .gallery-item + .gallery-item {
    grid-column: span 4;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
    transition: transform 420ms ease, filter 420ms ease;
}

.gallery-main img {
    height: 100%;
    min-height: 470px;
    aspect-ratio: auto;
}

.gallery-item:hover img {
    transform: scale(1.025);
    filter: saturate(1.08);
}

.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 40px 22px 21px;
    background: linear-gradient(to top, rgba(3, 17, 29, 0.93), transparent);
}

.gallery-item figcaption span,
.gallery-item figcaption strong {
    display: block;
}

.gallery-item figcaption span {
    margin-bottom: 3px;
    color: var(--teal-300);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.gallery-item figcaption strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.91rem;
}

.security-section {
    background: #dff3f2;
    color: var(--light-text);
}

.security-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(550px, 1.25fr);
    align-items: center;
    gap: clamp(50px, 7vw, 90px);
}

.security-copy > p {
    color: var(--light-muted);
}

.security-copy .button {
    margin-top: 26px;
}

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

.security-grid article {
    min-width: 0;
    min-height: 215px;
    padding: 24px;
    border: 1px solid rgba(8, 74, 88, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.security-grid article > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    border-radius: 12px;
    background: var(--navy-900);
    color: var(--teal-300);
    font-family: var(--font-display);
    font-size: 0.63rem;
    font-weight: 800;
}

.security-grid h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.security-grid p {
    margin: 0;
    color: var(--light-muted);
    font-size: 0.82rem;
}

.pricing-section {
    background: var(--section-light);
    color: var(--light-text);
}

.pricing-core {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 28px;
    margin-bottom: 26px;
    padding: 22px 26px;
    border: 1px solid rgba(7, 111, 124, 0.15);
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(21, 179, 190, 0.08), rgba(255, 255, 255, 0.75));
}

.pricing-core > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 13px;
}

.core-check {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #0b919b;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
}

.pricing-core h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1rem;
}

.pricing-core p {
    margin: 3px 0 0;
    color: var(--light-muted);
    font-size: 0.76rem;
}

.pricing-core ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-core li {
    position: relative;
    padding-left: 14px;
    color: #476370;
    font-size: 0.76rem;
    font-weight: 600;
}

.pricing-core li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0c98a3;
}

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

.price-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid rgba(11, 67, 89, 0.11);
    border-radius: 26px;
    background: var(--light-card);
    box-shadow: 0 20px 55px rgba(13, 65, 84, 0.08);
}

.price-card-featured {
    border-color: #0ca8b3;
    box-shadow: 0 28px 75px rgba(10, 126, 139, 0.18);
}

.price-card-featured::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(14, 190, 200, 0.22), transparent 48%);
}

.price-badge {
    position: absolute;
    top: 0;
    right: 26px;
    transform: translateY(-50%);
    padding: 7px 12px;
    border-radius: 99px;
    background: var(--navy-900);
    color: var(--teal-300);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.price-purpose {
    color: #07818c;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.price-head h3 {
    margin: 8px 0;
    font-family: var(--font-display);
    font-size: 1.7rem;
    letter-spacing: -0.045em;
}

.price-head p {
    min-height: 73px;
    margin: 0;
    color: var(--light-muted);
    font-size: 0.84rem;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 25px 0 22px;
}

.price-value > span {
    color: #55717e;
    font-size: 0.9rem;
    font-weight: 700;
}

.price-value strong {
    font-family: var(--font-display);
    font-size: 3.35rem;
    line-height: 1;
    letter-spacing: -0.065em;
}

.price-value small {
    color: #718994;
    font-size: 0.75rem;
}

.price-card ul {
    flex: 1;
    margin-bottom: 28px;
}

.price-card li {
    color: #46616d;
    font-size: 0.82rem;
}

.price-cta {
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(9, 79, 100, 0.16);
    border-radius: 13px;
    background: #f2f7f7;
    color: var(--navy-900);
    font-size: 0.78rem;
    font-weight: 800;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.price-card-featured .price-cta {
    border-color: transparent;
    background: var(--navy-900);
    color: var(--white);
}

.price-cta:hover {
    transform: translateY(-2px);
    border-color: #0c9eaa;
}

.price-cta:focus-visible {
    outline: 3px solid #0b7381;
    outline-offset: 4px;
}

.pricing-note {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--light-muted);
    font-size: 0.75rem;
    text-align: center;
}

.faq-section {
    background: var(--cream-50);
    color: var(--light-text);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.65fr) minmax(520px, 1.35fr);
    gap: clamp(55px, 9vw, 120px);
    align-items: start;
}

.faq-copy {
    position: sticky;
    top: calc(var(--header-height) + 35px);
}

.faq-copy > p {
    color: var(--light-muted);
}

.faq-copy .text-link {
    color: #087e89;
}

.faq-list {
    border-top: 1px solid rgba(8, 65, 87, 0.13);
}

.faq-list details {
    border-bottom: 1px solid rgba(8, 65, 87, 0.13);
}

.faq-list summary {
    position: relative;
    padding: 22px 50px 22px 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background: #0c8690;
    transition: transform 160ms ease;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary::after {
    transform: rotate(0);
}

.faq-list details p {
    margin: -4px 0 22px;
    padding-right: 50px;
    color: var(--light-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(75px, 9vw, 115px) 0;
    background: linear-gradient(135deg, #063f4d 0%, #087d89 48%, #0b344e 100%);
    color: var(--white);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
}

.final-orb {
    width: 500px;
    height: 500px;
    top: -280px;
    right: -120px;
    background: radial-gradient(circle, rgba(119, 233, 232, 0.4), transparent 66%);
}

.final-cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    gap: 60px;
    align-items: center;
}

.final-cta h2 {
    max-width: 760px;
}

.final-cta p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.75);
}

.final-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.site-footer {
    padding: 70px 0 24px;
    background: #020c14;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 0.7fr);
    gap: 40px;
}

.brand-footer {
    width: fit-content;
}

.footer-brand p {
    max-width: 340px;
    margin: 18px 0 0;
    color: #7993a0;
    font-size: 0.82rem;
}

.footer-grid h2 {
    margin: 5px 0 16px;
    color: #b5cad4;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
    display: block;
    width: fit-content;
    margin-top: 10px;
    color: #7893a0;
    font-size: 0.78rem;
    transition: color 160ms ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
    color: var(--teal-300);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #5f7b88;
    font-size: 0.7rem;
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .menu-toggle {
        display: grid;
    }

    .site-nav {
        position: fixed;
        z-index: 101;
        top: var(--header-height);
        left: 20px;
        right: 20px;
        display: grid;
        justify-content: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--surface-raised);
        box-shadow: var(--shadow-xl);
    }

    .site-nav[hidden] {
        display: none;
    }

    .site-nav a {
        padding: 13px 12px;
        border-radius: 10px;
    }

    .site-nav a:hover {
        background: var(--surface-soft);
    }

    .site-nav a::after {
        display: none;
    }

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

    .hero-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }

    .product-proof {
        display: none;
    }

    .oria-layout,
    .security-layout {
        grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
        gap: 50px;
    }

    .feature-panel {
        grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1.18fr);
        gap: 45px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: calc(var(--header-height) + 60px);
    }

    .hero-grid,
    .oria-layout,
    .security-layout,
    .final-cta-inner {
        grid-template-columns: 1fr;
    }

    .hero-product {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .hero-copy {
        text-align: center;
    }

    .eyebrow,
    .hero-actions,
    .trust-list {
        justify-content: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

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

    .journey-line {
        display: none;
    }

    .journey-card-featured {
        transform: none;
    }

    .journey-card {
        display: grid;
        grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
        column-gap: 25px;
    }

    .journey-image {
        grid-row: 1 / 7;
        margin: 0;
    }

    .journey-number {
        top: 30px;
        left: 30px;
    }

    .oria-copy {
        text-align: center;
    }

    .oria-copy > p {
        margin-inline: auto;
    }

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

    .split-heading,
    .feature-panel,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .split-heading {
        gap: 20px;
    }

    .feature-panel {
        min-height: 0;
    }

    .feature-visual {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .gallery-main,
    .gallery-main + .gallery-item,
    .gallery-main + .gallery-item + .gallery-item,
    .gallery-item {
        grid-column: span 6;
        grid-row: auto;
    }

    .gallery-main img {
        min-height: 0;
        aspect-ratio: 1.55;
    }

    .security-copy {
        text-align: center;
    }

    .security-copy > p {
        max-width: 690px;
        margin-inline: auto;
    }

    .pricing-core {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 660px;
        margin-inline: auto;
    }

    .price-head p {
        min-height: 0;
    }

    .faq-copy {
        position: static;
    }

    .final-cta-inner {
        text-align: center;
    }

    .final-cta p {
        margin-inline: auto;
    }

    .final-actions {
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 68px;
        --radius-xl: 24px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .header-inner {
        gap: 10px;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .brand {
        font-size: 1.13rem;
    }

    .header-login {
        display: none;
    }

    .button-small {
        min-height: 42px;
        padding: 10px 13px;
        font-size: 0.78rem;
    }

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

    .hero {
        min-height: 0;
        padding-top: calc(var(--header-height) + 45px);
    }

    .hero h1 {
        margin-top: 18px;
        font-size: clamp(2.65rem, 13.5vw, 4rem);
    }

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

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

    .hero-actions .button {
        width: 100%;
    }

    .trust-list {
        gap: 10px 16px;
        font-size: 0.75rem;
    }

    .hero-product {
        min-height: 350px;
        padding: 20px 0 90px;
    }

    .product-window {
        transform: none;
    }

    .window-address {
        max-width: 170px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .oria-card {
        right: 0;
        bottom: 12px;
        width: 92%;
    }

    .oria-confirm {
        grid-template-columns: auto 1fr;
    }

    .oria-confirm .confirm-pill {
        display: none;
    }

    .audience-bar {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .section {
        padding: 78px 0;
    }

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

    .section-heading h2,
    .oria-copy h2,
    .security-copy h2,
    .faq-copy h2,
    .final-cta h2 {
        font-size: clamp(2.1rem, 10vw, 3.1rem);
    }

    .journey-card {
        display: block;
    }

    .journey-image {
        margin-bottom: 22px;
    }

    .oria-layout {
        gap: 40px;
    }

    .oria-demo {
        padding: 12px;
    }

    .demo-command,
    .demo-summary {
        padding: 15px;
    }

    .action-flow {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .feature-tabs {
        max-width: 100%;
        margin-inline: 0;
        border-radius: 14px;
    }

    .feature-panel {
        padding: 22px;
        gap: 28px;
    }

    .feature-copy h3 {
        font-size: 2.15rem;
    }

    .feature-visual {
        border-radius: 16px;
    }

    .chat-bubble {
        max-width: 93%;
    }

    .doc-paper {
        width: 90%;
        min-height: 260px;
        padding: 25px;
    }

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

    .gallery-main,
    .gallery-main + .gallery-item,
    .gallery-main + .gallery-item + .gallery-item,
    .gallery-item {
        grid-column: auto;
    }

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

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

    .pricing-core {
        padding: 20px;
    }

    .pricing-core ul {
        display: grid;
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 26px 22px;
    }

    .faq-list summary {
        padding-block: 19px;
        font-size: 0.92rem;
    }

    .faq-list details p {
        padding-right: 20px;
    }

    .final-actions .button {
        width: 100%;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

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

@media (max-width: 390px) {
    .shell {
        width: min(calc(100% - 24px), var(--shell));
    }

    .brand > span {
        display: none;
    }

    .header-actions .button-small {
        padding-inline: 11px;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .trust-list {
        display: grid;
        justify-content: start;
        width: fit-content;
        margin-inline: auto;
        text-align: left;
    }

    .oria-card {
        width: 96%;
        padding: 14px;
    }

    .feature-panel,
    .price-card {
        padding-inline: 18px;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}

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

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