@charset "UTF-8";

:root {
    --black: #000000;
    --black-soft: #08090b;
    --graphite: #111317;
    --graphite-2: #17191e;
    --white: #ffffff;
    --off-white: #f5f5f7;
    --light-gray: #e8e8ed;
    --mid-gray: #86868b;
    --dark-gray: #424245;
    --cyan: #00d9ff;
    --cyan-deep: #007a9a;
    --green: #b6ff4d;
    --green-dark: #63a800;
    --danger: #d70015;
    --container: 1200px;
    --radius-xl: 44px;
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.10);
    --shadow-dark: 0 40px 120px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

::selection {
    background: var(--cyan);
    color: var(--black);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-150%);
    padding: 11px 15px;
    border-radius: 999px;
    background: var(--green);
    color: var(--black);
    font-weight: 700;
}

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

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

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

.section {
    position: relative;
    padding: 120px 0;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-light {
    background: var(--off-white);
    color: var(--black-soft);
}

.section-white {
    background: var(--white);
    color: var(--black-soft);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
    border-color: rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    color: var(--black);
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(0, 217, 255, 0.20);
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-size: 12px;
    letter-spacing: 0.14em;
}

.brand-copy small {
    margin-top: 5px;
    color: #a1a1a6;
    font-size: 9px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a:not(.button) {
    color: #d2d2d7;
    font-size: 13px;
    font-weight: 500;
    transition: color 180ms ease;
}

.main-nav > a:not(.button):hover {
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 4px auto;
    background: var(--white);
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.015em;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: var(--green);
    color: var(--black);
    box-shadow: 0 14px 36px rgba(182, 255, 77, 0.20);
}

.button-primary:hover {
    background: #c5ff73;
    box-shadow: 0 18px 48px rgba(182, 255, 77, 0.30);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.10);
}

.button-small {
    min-height: 40px;
    padding-inline: 17px;
    font-size: 13px;
}

.button-block {
    width: 100%;
}

.eyebrow {
    display: inline-block;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: #008aa4;
}

.eyebrow-ink {
    color: var(--black);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(54px, 7vw, 102px);
    line-height: 0.94;
    letter-spacing: -0.072em;
    font-weight: 760;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(42px, 5.3vw, 76px);
    line-height: 1;
    letter-spacing: -0.058em;
    font-weight: 740;
}

h3 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.hero {
    min-height: 980px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 156px 0 90px;
    background:
        radial-gradient(circle at 50% 58%, rgba(0, 217, 255, 0.08), transparent 34%),
        linear-gradient(180deg, #050607 0%, #000000 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 220px;
    background: linear-gradient(transparent, #000000);
    pointer-events: none;
}

.hero-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.hero-aurora-one {
    width: 520px;
    height: 520px;
    top: 4%;
    right: 4%;
    background: rgba(0, 217, 255, 0.12);
}

.hero-aurora-two {
    width: 430px;
    height: 430px;
    left: 4%;
    bottom: 4%;
    background: rgba(182, 255, 77, 0.07);
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-copy {
    max-width: 1060px;
    margin-inline: auto;
}

.hero-copy .eyebrow {
    margin-bottom: 25px;
}

.hero-copy h1 span {
    background: linear-gradient(90deg, #ffffff 12%, #9ceeff 54%, #c9ff83 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy > p {
    max-width: 760px;
    margin: 0 auto 34px;
    color: #a1a1a6;
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.5;
    letter-spacing: -0.018em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-meta {
    width: min(100%, 840px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 44px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-meta article {
    padding: 22px 18px 0;
}

.hero-meta article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-meta strong,
.hero-meta span {
    display: block;
}

.hero-meta strong {
    color: var(--white);
    font-size: 14px;
}

.hero-meta span {
    margin-top: 4px;
    color: #86868b;
    font-size: 12px;
}

.product-stage {
    position: relative;
    width: min(100%, 1110px);
    min-height: 560px;
    margin: 82px auto 0;
}

.product-glow {
    position: absolute;
    inset: 18% 14% 4%;
    border-radius: 50%;
    background: linear-gradient(100deg, rgba(0, 217, 255, 0.22), rgba(182, 255, 77, 0.16));
    filter: blur(90px);
}

.desktop-device {
    position: relative;
    z-index: 2;
    width: 84%;
    margin-inline: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: perspective(1500px) rotateX(3deg);
}

.desktop-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 21px;
    background: #0d0f13;
}

.desktop-toolbar {
    height: 44px;
    display: grid;
    grid-template-columns: 86px 1fr 86px;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #15171b;
}

.window-controls {
    display: flex;
    gap: 7px;
}

.window-controls span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4b4d52;
}

.window-controls span:nth-child(1) { background: #ff5f57; }
.window-controls span:nth-child(2) { background: #febc2e; }
.window-controls span:nth-child(3) { background: #28c840; }

.desktop-url {
    justify-self: center;
    width: min(100%, 310px);
    padding: 7px 18px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.07);
    color: #9b9ba0;
    font-size: 10px;
}

.toolbar-control {
    justify-self: end;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.desktop-screen {
    min-height: 430px;
    display: grid;
    grid-template-columns: 60px 1fr;
    background: linear-gradient(145deg, #11151b, #0a0c0f);
}

.screen-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-top: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.screen-logo {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
}

.screen-sidebar > span {
    width: 18px;
    height: 4px;
    border-radius: 99px;
    background: #303238;
}

.screen-sidebar > span.active {
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(0, 217, 255, 0.55);
}

.screen-content {
    padding: 22px;
}

.screen-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.screen-topbar small,
.screen-topbar strong {
    display: block;
}

.screen-topbar small {
    margin-bottom: 4px;
    color: #6f7278;
    font-size: 8px;
    letter-spacing: 0.12em;
}

.screen-topbar strong {
    color: #f5f5f7;
    font-size: 12px;
}

.live-pill {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(182, 255, 77, 0.10);
    color: var(--green);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.10em;
}

.screen-hero {
    min-height: 230px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background:
        radial-gradient(circle at 82% 28%, rgba(0, 217, 255, 0.18), transparent 35%),
        linear-gradient(145deg, #171c23, #11151a);
}

.screen-hero-copy {
    text-align: left;
}

.screen-hero-copy small {
    color: var(--cyan);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.13em;
}

.screen-hero-copy h2 {
    max-width: 360px;
    margin: 10px 0 9px;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.screen-hero-copy p {
    max-width: 350px;
    margin-bottom: 18px;
    color: #8f9298;
    font-size: 10px;
    line-height: 1.5;
}

.screen-cta {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--green);
    color: var(--black);
    font-size: 8px;
    font-weight: 750;
}

.system-orbit {
    position: relative;
    width: 170px;
    height: 170px;
    margin-left: auto;
}

.orbit-ring {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring-one {
    width: 142px;
    height: 142px;
}

.orbit-ring-two {
    width: 98px;
    height: 98px;
}

.orbit-core,
.orbit-item {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 750;
}

.orbit-core {
    inset: 50% auto auto 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, var(--cyan), #087b94);
    color: var(--black);
    font-size: 11px;
    box-shadow: 0 0 34px rgba(0, 217, 255, 0.30);
}

.orbit-item {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: #15191f;
    color: #d8d8dc;
    font-size: 8px;
}

.orbit-item-one { top: 0; left: 68px; }
.orbit-item-two { right: 0; bottom: 38px; }
.orbit-item-three { left: 0; bottom: 34px; }

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.metric-row article {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    text-align: left;
}

.metric-row small,
.metric-row strong,
.metric-row span {
    display: block;
}

.metric-row small {
    color: #64676d;
    font-size: 7px;
    letter-spacing: 0.10em;
}

.metric-row strong {
    margin: 6px 0 2px;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.metric-row span {
    color: #85878d;
    font-size: 8px;
}

.phone-device {
    position: absolute;
    z-index: 4;
    right: 1%;
    bottom: 2%;
    width: 180px;
    height: 350px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 36px;
    background: linear-gradient(145deg, #2d3036, #08090b);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.50);
    transform: rotate(4deg);
}

.phone-island {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 50%;
    width: 66px;
    height: 18px;
    border-radius: 999px;
    background: var(--black);
    transform: translateX(-50%);
}

.phone-screen {
    height: 100%;
    padding: 58px 14px 18px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(0, 217, 255, 0.14), transparent 35%),
        #101318;
    text-align: left;
}

.phone-screen small {
    color: var(--cyan);
    font-size: 7px;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.phone-screen h3 {
    margin: 13px 0 20px;
    font-size: 18px;
}

.phone-screen span {
    display: block;
    margin-bottom: 10px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #d6d6da;
    font-size: 9px;
}

.glass-card {
    position: absolute;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(26, 29, 34, 0.66);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.glass-card-lead {
    left: 0;
    bottom: 5%;
    min-width: 285px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
    text-align: left;
}

.glass-icon {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.12);
}

.glass-icon::before,
.glass-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    border-radius: 99px;
    background: var(--cyan);
    transform: translate(-50%, -50%);
}

.glass-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.glass-card small,
.glass-card strong,
.glass-card span {
    display: block;
}

.glass-card small {
    color: #74777d;
    font-size: 7px;
    letter-spacing: 0.11em;
}

.glass-card strong {
    margin: 3px 0;
    font-size: 12px;
}

.glass-card span {
    color: #9a9ca1;
    font-size: 9px;
}

.glass-card em {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(182, 255, 77, 0.10);
    color: var(--green);
    font-size: 7px;
    font-style: normal;
    font-weight: 750;
}

.glass-card-route {
    top: 13%;
    right: -1%;
    min-width: 250px;
    padding: 15px 18px;
    border-radius: 18px;
    text-align: left;
}

.route-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.route-mini span {
    color: #d2d2d7;
    font-size: 8px;
}

.route-mini i {
    flex: 1;
    min-width: 22px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), rgba(0, 217, 255, 0.12));
}

.trust-strip {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #050607;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.trust-inner p {
    margin: 0;
    color: #6e6e73;
    font-size: 12px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 42px;
    color: #d2d2d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.section-heading {
    max-width: 880px;
}

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

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

.section-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--dark-gray);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    letter-spacing: -0.018em;
}

.section-dark .section-heading p {
    color: #86868b;
}

.bento-problem {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 64px;
}

.bento-card {
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 36px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.05);
}

.bento-card-large,
.bento-card-wide {
    grid-column: span 2;
    min-height: 390px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 42px;
}

.bento-card-dark {
    background: var(--black-soft);
    color: var(--white);
}

.bento-number {
    position: absolute;
    top: 32px;
    right: 34px;
    color: #9a9aa0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.bento-card h3 {
    max-width: 620px;
    font-size: clamp(28px, 3vw, 46px);
}

.bento-card p {
    max-width: 620px;
    margin: 0;
    color: #6e6e73;
    font-size: 17px;
    line-height: 1.55;
}

.bento-card-dark p {
    color: #9a9aa0;
}

.clarity-visual {
    position: relative;
    min-height: 230px;
    display: grid;
    place-items: center;
}

.clarity-visual::before,
.clarity-visual::after,
.clarity-visual span {
    position: absolute;
    border-radius: 50%;
}

.clarity-visual::before {
    content: "";
    width: 210px;
    height: 210px;
    border: 1px solid rgba(0, 217, 255, 0.30);
}

.clarity-visual::after {
    content: "";
    width: 145px;
    height: 145px;
    border: 1px solid rgba(0, 217, 255, 0.22);
}

.clarity-visual span:nth-child(1) {
    width: 16px;
    height: 16px;
    top: 18px;
    left: 50%;
    background: var(--cyan);
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.45);
}

.clarity-visual span:nth-child(2) {
    width: 12px;
    height: 12px;
    right: 22px;
    bottom: 55px;
    background: var(--green);
}

.clarity-visual span:nth-child(3) {
    width: 10px;
    height: 10px;
    left: 34px;
    bottom: 42px;
    background: #8e8e93;
}

.clarity-visual strong {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.20);
}

.follow-visual {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 28px;
    border-radius: 24px;
    background: var(--off-white);
}

.follow-visual span {
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--white);
    color: var(--black-soft);
    font-size: 12px;
    font-weight: 650;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.follow-visual i {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--green));
}

.center-statement {
    margin-top: 36px;
    text-align: center;
}

.center-statement span,
.center-statement strong {
    display: block;
}

.center-statement span {
    color: #6e6e73;
    font-size: 17px;
}

.center-statement strong {
    margin-top: 6px;
    font-size: clamp(22px, 2.6vw, 36px);
    letter-spacing: -0.035em;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 24px;
    margin-top: 58px;
}

.offer-card {
    height: 100%;
    padding: 48px;
    border-radius: var(--radius-xl);
}

.offer-card-light {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.offer-card-dark {
    background: var(--black-soft);
    color: var(--white);
    box-shadow: var(--shadow-dark);
}

.offer-label {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 217, 255, 0.09);
    color: #007f99;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.offer-label-green {
    background: rgba(182, 255, 77, 0.10);
    color: var(--green);
}

.offer-card h3 {
    margin-bottom: 22px;
    font-size: clamp(30px, 3vw, 44px);
}

.offer-card > p {
    margin-bottom: 36px;
    color: #6e6e73;
    font-size: 18px;
    line-height: 1.55;
}

.offer-card-dark > p {
    color: #9a9aa0;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 31px;
    font-size: 17px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 0.44em;
    left: 2px;
    width: 11px;
    height: 6px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.feature-list-cyan li::before {
    color: #0095b4;
}

.feature-list-green li::before {
    color: var(--green);
}

.offer-note {
    max-width: 760px;
    margin: 34px auto 0;
    color: #6e6e73;
    text-align: center;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 68px;
}

.case-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    background: #0c0d10;
}

.case-visual {
    position: relative;
    min-height: 280px;
    display: grid;
    place-items: center;
    padding: 30px;
}

.case-visual > span {
    position: absolute;
    align-self: start;
    justify-self: start;
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.case-visual-powen {
    background: radial-gradient(circle at 70% 30%, rgba(255, 183, 0, 0.32), transparent 28%), linear-gradient(145deg, #17191d, #0b0c0e);
}

.case-visual-kam {
    background: radial-gradient(circle at 70% 30%, rgba(0, 217, 255, 0.25), transparent 28%), linear-gradient(145deg, #17191d, #0b0c0e);
}

.case-visual-cientouno {
    background: radial-gradient(circle at 70% 30%, rgba(182, 255, 77, 0.22), transparent 28%), linear-gradient(145deg, #17191d, #0b0c0e);
}

.case-window {
    width: 80%;
    height: 150px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 0.6fr;
    align-items: end;
    gap: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.case-window i {
    border-radius: 9px;
    background: linear-gradient(#ffb000, #765000);
}

.case-window i:nth-child(1) { height: 44%; }
.case-window i:nth-child(2) { height: 80%; }
.case-window i:nth-child(3) { height: 58%; }

.case-dashboard {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.case-dashboard i {
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.20), rgba(255, 255, 255, 0.03));
}

.case-chart {
    width: 80%;
    height: 150px;
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
}

.case-chart i {
    flex: 1;
    border-radius: 7px 7px 2px 2px;
    background: linear-gradient(var(--green), #3d6b00);
}

.case-chart i:nth-child(1) { height: 31%; }
.case-chart i:nth-child(2) { height: 47%; }
.case-chart i:nth-child(3) { height: 64%; }
.case-chart i:nth-child(4) { height: 52%; }
.case-chart i:nth-child(5) { height: 89%; }

.case-copy {
    padding: 30px;
}

.case-copy > span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.13em;
}

.case-copy h3 {
    margin-top: 14px;
    font-size: 28px;
}

.case-copy p {
    margin: 0;
    color: #86868b;
    font-size: 15px;
}

.case-copy p + p {
    margin-top: 14px;
}

.case-copy strong {
    color: #d2d2d7;
    font-weight: 650;
}

.method-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 56px;
    overflow: hidden;
    border: 1px solid #dedee3;
    border-radius: var(--radius-lg);
    background: #dedee3;
}

.method-item {
    min-height: 250px;
    padding: 36px;
    background: var(--white);
}

.method-item > span {
    display: inline-flex;
    margin-bottom: 48px;
    color: #8e8e93;
    font-size: 11px;
    font-weight: 700;
}

.method-item p {
    margin: 0;
    color: #6e6e73;
    font-size: 15px;
}

.pricing-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 74px;
    padding: 72px;
    border-radius: var(--radius-xl);
    background: var(--off-white);
}

.pricing-copy > p {
    max-width: 620px;
    color: #6e6e73;
    font-size: 19px;
    line-height: 1.55;
}

.pricing-copy > p strong {
    color: var(--black);
}

.text-link {
    display: inline-flex;
    margin-top: 10px;
    color: #0071e3;
    font-size: 17px;
    font-weight: 600;
}

.text-link::after {
    content: "";
    width: 7px;
    height: 7px;
    margin: 8px 0 0 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.pricing-card {
    padding: 42px;
    border-radius: 34px;
    background: var(--black-soft);
    color: var(--white);
    box-shadow: var(--shadow-dark);
}

.pricing-kicker {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.13em;
}

.pricing-value {
    margin: 30px 0 34px;
}

.pricing-value small,
.pricing-value strong,
.pricing-value em {
    display: block;
}

.pricing-value small {
    color: #86868b;
    font-size: 13px;
}

.pricing-value strong {
    margin: 4px 0;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.pricing-value em {
    color: #86868b;
    font-size: 12px;
    font-style: normal;
}

.pricing-card .feature-list {
    margin-bottom: 34px;
}

.pricing-card .feature-list li {
    color: #d2d2d7;
    font-size: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.faq-list details {
    border-top: 1px solid #d2d2d7;
}

.faq-list details:last-child {
    border-bottom: 1px solid #d2d2d7;
}

.faq-list summary {
    position: relative;
    padding: 25px 50px 25px 0;
    cursor: pointer;
    list-style: none;
    font-size: 20px;
    font-weight: 650;
    letter-spacing: -0.025em;
}

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

.faq-list summary::before,
.faq-list summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 14px;
    height: 1px;
    background: var(--black);
    transition: transform 180ms ease;
}

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

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

.faq-list details p {
    max-width: 780px;
    margin: -4px 0 28px;
    color: #6e6e73;
    font-size: 16px;
    line-height: 1.65;
}

.diagnostic-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.10), transparent 26%),
        radial-gradient(circle at 82% 80%, rgba(182, 255, 77, 0.08), transparent 24%),
        var(--black);
}

.diagnostic-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: start;
    gap: 72px;
}

.diagnostic-copy {
    position: sticky;
    top: 110px;
}

.diagnostic-copy > p {
    max-width: 620px;
    color: #9a9aa0;
    font-size: 19px;
    line-height: 1.55;
}

.diagnostic-list {
    display: grid;
    gap: 18px;
    margin-top: 42px;
}

.diagnostic-list > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: start;
    gap: 14px;
}

.diagnostic-list > div > span {
    position: relative;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(182, 255, 77, 0.12);
    color: var(--green);
}

.diagnostic-list > div > span::before {
    content: "";
    width: 10px;
    height: 5px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.diagnostic-list p,
.diagnostic-list strong,
.diagnostic-list small {
    display: block;
}

.diagnostic-list p {
    margin: 0;
}

.diagnostic-list strong {
    color: var(--white);
    font-size: 15px;
}

.diagnostic-list small {
    margin-top: 3px;
    color: #86868b;
    font-size: 13px;
}

.form-card {
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.form-card-heading {
    margin-bottom: 32px;
}

.form-card-heading > span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.13em;
}

.form-card-heading h3 {
    margin: 10px 0 8px;
    font-size: 34px;
}

.form-card-heading p {
    margin: 0;
    color: #86868b;
    font-size: 14px;
}

.form-row.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: #d2d2d7;
    font-size: 12px;
    font-weight: 600;
}

.field label span {
    color: #6e6e73;
    font-weight: 400;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
    min-height: 52px;
    padding: 0 15px;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
    padding: 14px 15px;
}

.field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #9a9aa0 50%),
        linear-gradient(135deg, #9a9aa0 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 22px,
        calc(100% - 13px) 22px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.field option {
    background: #17191e;
    color: var(--white);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #6e6e73;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.10);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
    border-color: var(--danger);
}

.field-error {
    display: none;
    margin-top: 6px;
    color: #ff6961;
    font-size: 11px;
}

.field-error:not(:empty) {
    display: block;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-legal {
    margin: 16px 0 0;
    color: #6e6e73;
    font-size: 11px;
    line-height: 1.55;
}

.form-legal a {
    color: #d2d2d7;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-status {
    display: none;
    margin-top: 14px;
    font-size: 13px;
}

.form-status:not(:empty) {
    display: block;
}

.form-status.error {
    color: #ff6961;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.68;
    transform: none !important;
}

.site-footer {
    padding: 70px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050607;
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-grid > div:first-child > p {
    max-width: 360px;
    margin: 24px 0 0;
    color: #6e6e73;
    font-size: 14px;
}

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

.footer-links a {
    color: #a1a1a6;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #5f6065;
    font-size: 11px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 18px;
    }

    .product-stage {
        min-height: 500px;
    }

    .desktop-device {
        width: 90%;
    }

    .phone-device {
        right: 0;
        transform: scale(0.88) rotate(4deg);
        transform-origin: bottom right;
    }

    .glass-card-lead {
        left: 0;
        transform: scale(0.90);
        transform-origin: bottom left;
    }

    .glass-card-route {
        right: 0;
        transform: scale(0.90);
        transform-origin: top right;
    }

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

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

    .case-card {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
    }

    .case-copy {
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 105px 0;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 72px 0 auto;
        display: grid;
        gap: 0;
        padding: 18px 20px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        background: rgba(0, 0, 0, 0.94);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        transform: translateY(-130%);
        transition: transform 220ms ease;
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .main-nav > a:not(.button) {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 16px;
    }

    .main-nav .button {
        margin-top: 18px;
    }

    .hero {
        min-height: auto;
        padding-top: 132px;
    }

    .product-stage {
        min-height: 480px;
        margin-top: 62px;
    }

    .desktop-device {
        width: 100%;
    }

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

    .system-orbit {
        display: none;
    }

    .phone-device {
        width: 160px;
        height: 310px;
    }

    .glass-card-route {
        display: none;
    }

    .bento-card-large,
    .bento-card-wide {
        grid-template-columns: 1fr;
    }

    .system-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .system-route {
        flex-wrap: wrap;
        border-radius: 28px;
    }

    .offer-grid,
    .feature-story-wide,
    .feature-story-grid,
    .pricing-shell,
    .faq-grid,
    .diagnostic-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        min-height: auto;
    }

    .diagnostic-copy {
        position: static;
    }

    .method-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .section {
        padding: 88px 0;
    }

    h1 {
        font-size: clamp(48px, 15vw, 72px);
        line-height: 0.96;
    }

    h2 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .hero-copy > p,
    .section-heading p {
        font-size: 18px;
    }

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

    .hero-meta article {
        padding: 16px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .hero-meta article + article {
        border-left: 0;
    }

    .product-stage {
        min-height: 380px;
        margin-top: 46px;
    }

    .desktop-device {
        padding: 7px;
        border-radius: 20px;
    }

    .desktop-frame {
        border-radius: 14px;
    }

    .desktop-toolbar {
        height: 34px;
        grid-template-columns: 54px 1fr 54px;
        padding-inline: 10px;
    }

    .desktop-url {
        padding: 5px 10px;
        font-size: 7px;
    }

    .desktop-screen {
        min-height: 270px;
        grid-template-columns: 38px 1fr;
    }

    .screen-sidebar {
        gap: 14px;
        padding-top: 13px;
    }

    .screen-logo {
        width: 21px;
        height: 21px;
        font-size: 8px;
    }

    .screen-sidebar > span {
        width: 13px;
        height: 3px;
    }

    .screen-content {
        padding: 12px;
    }

    .screen-topbar {
        margin-bottom: 10px;
    }

    .screen-topbar strong {
        font-size: 9px;
    }

    .screen-topbar small,
    .live-pill {
        font-size: 6px;
    }

    .screen-hero {
        min-height: 145px;
        padding: 18px;
        border-radius: 13px;
    }

    .screen-hero-copy h2 {
        font-size: 22px;
    }

    .screen-hero-copy p {
        font-size: 8px;
    }

    .metric-row {
        gap: 5px;
        margin-top: 7px;
    }

    .metric-row article {
        padding: 8px;
        border-radius: 9px;
    }

    .metric-row small,
    .metric-row span {
        display: none;
    }

    .metric-row strong {
        margin: 0;
        font-size: 14px;
    }

    .phone-device {
        right: -18px;
        bottom: -28px;
        width: 122px;
        height: 240px;
        border-radius: 27px;
    }

    .phone-screen {
        padding: 48px 10px 12px;
        border-radius: 21px;
    }

    .phone-screen h3 {
        font-size: 13px;
    }

    .phone-screen span {
        padding: 8px;
        font-size: 7px;
    }

    .glass-card-lead {
        left: -18px;
        bottom: -25px;
        min-width: 220px;
        transform: scale(0.72);
    }

    .trust-inner,
    .footer-grid,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .trust-logos {
        flex-wrap: wrap;
        gap: 22px;
    }

    .bento-problem,
    .bento-card-large,
    .bento-card-wide {
        grid-template-columns: 1fr;
    }

    .bento-card-large,
    .bento-card-wide {
        grid-column: span 1;
    }

    .bento-card {
        min-height: 340px;
        padding: 30px;
    }

    .follow-visual {
        flex-direction: column;
        align-items: stretch;
    }

    .follow-visual i {
        width: 1px;
        height: 28px;
        margin-inline: auto;
    }

    .system-steps {
        grid-template-columns: 1fr;
    }

    .system-step {
        min-height: 230px;
    }

    .system-step > span {
        margin-bottom: 44px;
    }

    .system-route {
        display: grid;
        justify-items: center;
        border-radius: 30px;
    }

    .system-route i {
        width: 1px;
        height: 26px;
    }

    .offer-card,
    .feature-story-wide,
    .feature-story-grid .feature-story,
    .pricing-shell,
    .form-card {
        padding: 32px;
        border-radius: 30px;
    }

    .offer-card h3,
    .feature-story-copy h2 {
        font-size: 38px;
    }

    .feature-story-wide {
        min-height: auto;
    }

    .feature-story-grid .feature-story {
        min-height: 560px;
    }

    .case-card {
        grid-template-columns: 1fr;
    }

    .case-visual {
        min-height: 220px;
    }

    .method-list {
        grid-template-columns: 1fr;
    }

    .method-item {
        min-height: 240px;
    }

    .method-item > span {
        margin-bottom: 40px;
    }

    .pricing-shell {
        padding: 32px;
    }

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

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* Ajustes finales de rendimiento, accesibilidad y espacios */
.includes-section {
    background: #f5f5f7;
}

.pricing-section {
    padding-top: 110px;
}

.case-copy h3 {
    text-wrap: balance;
}

@media (max-width: 900px) {
    section[id] {
        scroll-margin-top: 78px;
    }
}

@media (max-width: 700px) {
    .offer-card {
        height: auto;
    }

    .case-copy {
        padding: 28px;
    }
}

/* Páginas auxiliares */
.simple-page,
.legal-page {
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
}

.simple-page-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 48px 20px;
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 217, 255, 0.12), transparent 28%),
        radial-gradient(circle at 82% 80%, rgba(182, 255, 77, 0.08), transparent 24%),
        var(--black);
}

.success-card {
    width: min(100%, 920px);
    padding: 58px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow-dark);
    text-align: center;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.simple-brand {
    justify-content: center;
    margin-bottom: 40px;
}

.success-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(182, 255, 77, 0.12);
    color: var(--green);
}

.success-icon::before {
    content: "";
    width: 20px;
    height: 10px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg) translateY(-2px);
}

.success-card h1 {
    max-width: 760px;
    margin: 18px auto 22px;
    font-size: clamp(42px, 6vw, 76px);
}

.success-card > p {
    max-width: 700px;
    margin: 0 auto;
    color: #9a9aa0;
    font-size: 18px;
}

.success-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 42px 0;
}

.success-steps article {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    text-align: left;
}

.success-steps span,
.success-steps strong,
.success-steps small {
    display: block;
}

.success-steps span {
    margin-bottom: 28px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 750;
}

.success-steps strong {
    margin-bottom: 7px;
    font-size: 17px;
}

.success-steps small {
    color: #86868b;
    font-size: 13px;
    line-height: 1.5;
}

.lead-reference {
    margin-bottom: 24px !important;
    font-size: 12px !important;
}

.legal-header {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.legal-back {
    margin: 0;
}

.legal-main {
    padding: 90px 0 120px;
    background: var(--off-white);
    color: var(--black-soft);
}

.legal-article {
    max-width: 900px;
}

.legal-article h1 {
    margin: 18px 0 10px;
    font-size: clamp(48px, 7vw, 86px);
}

.legal-updated {
    margin-bottom: 60px;
    color: #6e6e73;
}

.legal-article h2 {
    margin: 48px 0 14px;
    font-size: 28px;
}

.legal-article p {
    color: #424245;
    font-size: 17px;
    line-height: 1.7;
}

.legal-article a {
    color: #0071e3;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-note {
    margin-top: 54px;
    padding: 22px;
    border-radius: 18px;
    background: #ffffff;
}

@media (max-width: 700px) {
    .success-card {
        padding: 34px 24px;
        border-radius: 30px;
    }

    .success-steps {
        grid-template-columns: 1fr;
    }

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

    .legal-main {
        padding: 64px 0 90px;
    }
}

.no-js .reveal {
    opacity: 1;
    transform: none;
}

.conditional-field {
    width: 100%;
}

.footer-brand {
    display: inline-flex;
}
