:root {
    --marketing-bg: #061226;
    --marketing-surface: rgba(10, 22, 44, 0.82);
    --marketing-line: rgba(171, 202, 255, 0.16);
    --marketing-text: #ecf4ff;
    --marketing-muted: #9db4d1;
    --marketing-blue: #2d6cff;
    --marketing-cyan: #3be7ff;
    --marketing-violet: #7d57ff;
    --marketing-green: #2ee6a6;
    --marketing-shadow: 0 32px 90px rgba(3, 10, 24, 0.45);
}

.marketing-body {
    background:
        radial-gradient(circle at top left, rgba(45, 108, 255, 0.18), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(125, 87, 255, 0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(59, 231, 255, 0.12), transparent 26%),
        linear-gradient(180deg, #07111f 0%, #08152a 45%, #050d1b 100%);
    color: var(--marketing-text);
}

.landing-shell {
    min-height: 100vh;
    display: block;
    padding: 0;
}

.marketing-page {
    position: relative;
    overflow: clip;
}

.marketing-page .container {
    position: relative;
    z-index: 2;
}

.marketing-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(20px);
    background: rgba(5, 12, 24, 0.65);
    border-bottom: 1px solid rgba(171, 202, 255, 0.08);
}

.marketing-nav-inner,
.marketing-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 84px;
}

.marketing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.marketing-brand img {
    width: 156px;
    height: auto;
    max-height: 56px;
    padding: 0.15rem;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
}

.footer-brand img {
    width: 144px;
    max-height: 54px;
}

.marketing-menu,
.footer-links,
.marketing-actions,
.hero-actions,
.cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.marketing-menu a,
.footer-links a,
.marketing-link {
    color: var(--marketing-muted);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.marketing-menu a:hover,
.footer-links a:hover,
.marketing-link:hover {
    color: #fff;
}

.marketing-btn,
.marketing-btn-secondary {
    border-radius: 999px;
    padding-inline: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.marketing-btn {
    background: linear-gradient(135deg, var(--marketing-blue), var(--marketing-cyan));
    border: none;
    box-shadow: 0 18px 40px rgba(45, 108, 255, 0.35);
}

.marketing-btn:hover {
    background: linear-gradient(135deg, #3976ff, #57ebff);
}

.marketing-btn-secondary {
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.marketing-hero {
    position: relative;
    padding: 5.25rem 0 3.5rem;
    min-height: calc(100svh - 84px);
    display: flex;
    align-items: center;
}

.marketing-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.7;
    animation: orb-drift 12s ease-in-out infinite alternate;
}

.marketing-orb-a {
    width: 420px;
    height: 420px;
    top: 12%;
    right: -100px;
    background: radial-gradient(circle, rgba(59, 231, 255, 0.35) 0%, rgba(59, 231, 255, 0) 70%);
}

.marketing-orb-b {
    width: 320px;
    height: 320px;
    left: -80px;
    bottom: 8%;
    background: radial-gradient(circle, rgba(125, 87, 255, 0.28) 0%, rgba(125, 87, 255, 0) 72%);
    animation-duration: 14s;
}

.hero-copy {
    max-width: 620px;
}

.hero-kicker,
.section-kicker,
.benefit-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #a7dbff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 231, 255, 0), rgba(59, 231, 255, 0.9));
}

.hero-copy h1,
.section-heading h2,
.cta-shell h2 {
    margin: 1.15rem 0 1rem;
    font-size: clamp(3rem, 7vw, 5.7rem);
    line-height: 0.97;
    color: #fff;
}

.hero-lead,
.section-heading p,
.cta-shell p,
.benefit-panel p,
.flow-step p,
.proof-card p,
.module-chip span,
.platform-mobile-card p {
    margin: 0;
    color: var(--marketing-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-proof-item {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(171, 202, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-proof-item strong,
.platform-topline strong,
.module-chip strong,
.proof-card h3,
.flow-step h3,
.benefit-panel h3 {
    display: block;
    color: #fff;
    font-size: 1.08rem;
    margin-bottom: 0.35rem;
}

.hero-proof-item span {
    color: var(--marketing-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.hero-visual {
    position: relative;
    min-height: 640px;
    perspective: 1400px;
}

.hero-grid-glow {
    position: absolute;
    inset: 10% 4% 4% 4%;
    border-radius: 36px;
    background:
        linear-gradient(rgba(171, 202, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(171, 202, 255, 0.08) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
    opacity: 0.55;
}

.hero-brand-mark {
    position: absolute;
    top: -18px;
    right: 54px;
    width: 160px;
    opacity: 0.1;
    pointer-events: none;
    filter: drop-shadow(0 12px 32px rgba(59, 231, 255, 0.1));
}

.hero-dashboard,
.platform-desktop,
.cta-shell,
.modules-surface {
    border: 1px solid var(--marketing-line);
    background: linear-gradient(180deg, rgba(10, 24, 48, 0.92), rgba(8, 17, 35, 0.98));
    box-shadow: var(--marketing-shadow);
}

.hero-dashboard {
    position: absolute;
    inset: 0 80px 110px 0;
    border-radius: 34px;
    padding: 1.2rem;
    transform: rotateY(-10deg) rotateX(5deg);
}

.hero-window-bar {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1.15rem;
}

.hero-window-bar span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-dashboard-head,
.platform-topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.hero-dashboard-head small,
.platform-topline small,
.hero-mobile-screen small,
.platform-mobile-card small {
    display: block;
    margin-bottom: 0.2rem;
    color: #8cb4ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-status-pill,
.platform-topline span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(46, 230, 166, 0.12);
    color: #aaf7da;
    font-weight: 800;
    white-space: nowrap;
}

.hero-metrics,
.hero-table,
.platform-panels,
.kpi-stack {
    display: grid;
    gap: 0.95rem;
}

.hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.35rem 0;
}

.hero-metrics div,
.kpi-stack article {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(171, 202, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-metrics span,
.hero-table-row span,
.platform-panel span,
.kpi-stack small {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--marketing-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-metrics strong,
.hero-table-row strong,
.kpi-stack strong {
    color: #fff;
    font-size: 1.08rem;
}

.platform-panel,
.proof-card,
.benefit-panel,
.flow-step,
.module-chip,
.platform-mobile-card,
.hero-chart {
    border: 1px solid var(--marketing-line);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 26px;
}

.hero-chart {
    padding: 1.15rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.hero-chart-bars {
    display: flex;
    align-items: end;
    gap: 0.7rem;
    min-height: 180px;
}

.hero-chart-bars span,
.line-chart i {
    display: block;
    width: 100%;
    border-radius: 999px 999px 6px 6px;
    background: linear-gradient(180deg, var(--marketing-cyan), var(--marketing-blue));
}

.hero-chart-bars span {
    flex: 1;
}

.hero-chart-copy p,
.platform-panel ul small,
.hero-table-row em {
    display: block;
    color: var(--marketing-muted);
    font-style: normal;
    line-height: 1.55;
}

.hero-table-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.hero-mobile {
    position: absolute;
    right: 0;
    bottom: 16px;
    width: 230px;
    padding: 0.9rem;
    border-radius: 34px;
    background: linear-gradient(180deg, #0d1a31, #060d18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 60px rgba(3, 10, 24, 0.45);
    animation: float-up 5.5s ease-in-out infinite;
}

.hero-mobile-notch {
    width: 84px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    margin: 0 auto 1rem;
}

.hero-mobile-screen {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(45, 108, 255, 0.16), rgba(11, 23, 44, 0.68));
}

.hero-mobile-screen strong,
.platform-mobile-card strong {
    color: #fff;
    font-size: 1.2rem;
}

.mobile-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 0.9rem;
    border-radius: 18px;
    font-weight: 800;
}

.mobile-status.success {
    background: rgba(46, 230, 166, 0.12);
    color: #b5fee2;
}

.mobile-status.neutral {
    background: rgba(59, 231, 255, 0.12);
    color: #bff7ff;
}

.hero-mobile-screen button {
    border: none;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: linear-gradient(135deg, var(--marketing-blue), var(--marketing-violet));
    color: #fff;
    font-weight: 800;
    box-shadow: none;
}

.hero-floating-card {
    position: absolute;
    max-width: 240px;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(171, 202, 255, 0.16);
    backdrop-filter: blur(14px);
}

.hero-floating-card span {
    display: block;
    color: #8cb4ff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.hero-floating-card strong {
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.5;
}

.hero-floating-a {
    top: 42px;
    right: 34px;
}

.hero-floating-b {
    left: 34px;
    bottom: 28px;
}

.marketing-section {
    padding: 5.5rem 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.25rem;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
}

.benefit-panel,
.proof-card {
    height: 100%;
    padding: 1.4rem;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    font-size: 1.3rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(45, 108, 255, 0.92), rgba(59, 231, 255, 0.75));
}

.benefit-eyebrow {
    margin-bottom: 0.65rem;
    letter-spacing: 0.12em;
}

.sticky-copy {
    position: sticky;
    top: 120px;
}

.flow-list {
    display: grid;
    gap: 1rem;
}

.flow-step {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    padding: 1.25rem;
}

.flow-step-number {
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(45, 108, 255, 0.18), rgba(125, 87, 255, 0.18));
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
}

.modules-surface {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    border-radius: 34px;
    padding: 2rem;
}

.modules-copy {
    margin: 0;
}

.modules-grid,
.platform-mobile {
    display: grid;
    gap: 1rem;
}

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

.module-chip {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.2rem;
}

.module-chip i {
    color: #a9e9ff;
    font-size: 1.15rem;
}

.platform-scene {
    display: grid;
    grid-template-columns: 1.1fr 0.72fr;
    gap: 1.25rem;
    align-items: stretch;
}

.platform-desktop {
    border-radius: 34px;
    padding: 1.5rem;
}

.platform-desktop-shell {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.2rem;
    min-height: 100%;
}

.platform-sidebar {
    padding: 1.1rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(171, 202, 255, 0.1);
}

.platform-sidebar-logo {
    width: 108px;
    height: auto;
    margin-bottom: 0.8rem;
    opacity: 0.95;
}

.platform-sidebar small {
    display: block;
    color: #8cb4ff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.platform-sidebar strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.platform-sidebar nav {
    display: grid;
    gap: 0.55rem;
}

.platform-sidebar nav span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.72rem 0.85rem;
    border-radius: 16px;
    color: #c7d9ef;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.03);
}

.platform-sidebar nav span.is-active {
    background: linear-gradient(135deg, rgba(45, 108, 255, 0.22), rgba(59, 231, 255, 0.16));
    color: #fff;
}

.platform-workspace {
    display: grid;
    gap: 1rem;
}

.platform-panels {
    grid-template-columns: 1.05fr 0.95fr;
    margin-top: 1.2rem;
}

.platform-panel,
.platform-mobile-card {
    padding: 1.2rem;
}

.chart-panel {
    min-height: 220px;
}

.line-chart {
    display: flex;
    align-items: end;
    gap: 0.85rem;
    min-height: 150px;
    margin-top: 1rem;
}

.line-chart i:nth-child(1) { height: 34%; }
.line-chart i:nth-child(2) { height: 48%; }
.line-chart i:nth-child(3) { height: 58%; }
.line-chart i:nth-child(4) { height: 82%; }
.line-chart i:nth-child(5) { height: 74%; }
.line-chart i:nth-child(6) { height: 96%; }

.platform-summary-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.list-panel ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.list-panel li {
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(171, 202, 255, 0.1);
}

.list-panel li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.kpi-panel {
    grid-column: 1 / -1;
}

.kpi-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.platform-mobile-card {
    min-height: 220px;
    display: grid;
    align-content: end;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.platform-phone {
    padding: 0.9rem;
    border-radius: 34px;
    background: linear-gradient(180deg, #0d1a31, #060d18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 60px rgba(3, 10, 24, 0.35);
}

.platform-phone-notch {
    width: 84px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    margin: 0 auto 1rem;
}

.platform-phone-screen {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(45, 108, 255, 0.16), rgba(11, 23, 44, 0.68));
}

.platform-phone-user,
.platform-phone-state,
.platform-phone-cta {
    padding: 0.8rem 0.9rem;
    border-radius: 18px;
    border: 1px solid rgba(171, 202, 255, 0.08);
}

.platform-phone-user {
    background: rgba(255, 255, 255, 0.05);
}

.platform-phone-user span {
    display: block;
    color: var(--marketing-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.platform-phone-user strong {
    color: #fff;
    font-size: 0.96rem;
}

.platform-phone-state {
    color: #fff;
    font-weight: 800;
}

.platform-phone-state.success {
    background: rgba(46, 230, 166, 0.12);
    color: #b5fee2;
}

.platform-phone-state.neutral {
    background: rgba(59, 231, 255, 0.12);
    color: #bff7ff;
}

.platform-phone-cta {
    background: linear-gradient(135deg, var(--marketing-blue), var(--marketing-violet));
    color: #fff;
    font-weight: 800;
    text-align: center;
}

.platform-mobile-card.alt {
    background: linear-gradient(180deg, rgba(45, 108, 255, 0.16), rgba(255, 255, 255, 0.05));
}

.proof-card h3 {
    font-size: 1.22rem;
}

.cta-shell {
    border-radius: 36px;
    padding: 2.2rem;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.9fr);
    gap: 1.6rem;
    align-items: stretch;
}

.cta-brand-mark {
    display: block;
    width: 148px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.96;
}

.cta-shell h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding-right: 0.5rem;
}

.cta-points {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.3rem;
}

.cta-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #dcecff;
    font-weight: 700;
}

.cta-points i {
    color: var(--marketing-cyan);
}

.contact-card {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 28px;
    border: 1px solid rgba(171, 202, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(12px);
}

.terms-page .marketing-nav {
    border-bottom: 1px solid rgba(171, 202, 255, 0.08);
}

.terms-hero {
    padding-top: 9.5rem;
    padding-bottom: 2.15rem;
}

.terms-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    gap: 1.5rem;
    align-items: start;
}

.terms-hero-copy {
    display: grid;
    gap: 1rem;
    max-width: 760px;
}

.terms-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.25rem, 4.4vw, 4rem);
    letter-spacing: -0.04em;
}

.terms-hero-lead {
    max-width: 66ch;
    font-size: 1.06rem;
    color: #dcecff;
}

.terms-facts-card {
    display: grid;
    gap: 1rem;
    padding: 1.3rem;
    border-radius: 28px;
    border: 1px solid rgba(171, 202, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 48px rgba(5, 14, 32, 0.16);
}

.terms-facts-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.46rem 0.82rem;
    border-radius: 999px;
    background: rgba(59, 231, 255, 0.12);
    border: 1px solid rgba(59, 231, 255, 0.18);
    color: #bff7ff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.terms-facts-grid {
    display: grid;
    gap: 0.9rem;
}

.terms-facts-grid article {
    display: grid;
    gap: 0.18rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(171, 202, 255, 0.08);
}

.terms-facts-grid article:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.terms-facts-grid span {
    color: rgba(182, 207, 236, 0.75);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.terms-facts-grid strong {
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.45;
}

.terms-content {
    padding-top: 0;
    padding-bottom: 4.6rem;
}

.terms-layout {
    display: grid;
    grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
    gap: 1.35rem;
    align-items: start;
}

.terms-toc {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 0.85rem;
    padding: 1.2rem;
    border-radius: 26px;
    border: 1px solid rgba(171, 202, 255, 0.1);
    background: linear-gradient(180deg, rgba(8, 21, 38, 0.92), rgba(7, 17, 31, 0.72));
    box-shadow: 0 22px 46px rgba(4, 11, 24, 0.18);
}

.terms-toc-eyebrow {
    color: #8cb4ff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.terms-toc nav {
    display: grid;
    gap: 0.42rem;
}

.terms-toc a {
    padding: 0.72rem 0.82rem;
    border-radius: 14px;
    color: #dbe8fb;
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.45;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.terms-toc a:hover {
    background: rgba(59, 231, 255, 0.08);
    color: #fff;
    transform: translateX(2px);
}

.terms-article {
    display: grid;
    gap: 1rem;
}

.terms-block {
    padding: 1.45rem 1.55rem;
    border-radius: 28px;
    border: 1px solid rgba(171, 202, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 48px rgba(5, 14, 32, 0.12);
}

.terms-block h3 {
    margin: 0 0 0.9rem;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.terms-block p {
    margin: 0 0 0.92rem;
    color: rgba(221, 234, 249, 0.86);
    line-height: 1.72;
    font-size: 0.98rem;
}

.terms-block p:last-child {
    margin-bottom: 0;
}

.terms-block a {
    color: #8de8ff;
    font-weight: 700;
}

.terms-block a:hover {
    color: #c9f7ff;
}

.landing-contact-form,
.contact-grid {
    display: grid;
    gap: 1rem;
}

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

.contact-field {
    display: grid;
    gap: 0.45rem;
}

.contact-field label {
    color: #dcecff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(171, 202, 255, 0.14);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(7, 17, 31, 0.72);
    color: #fff;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(157, 180, 209, 0.72);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(59, 231, 255, 0.55);
    background: rgba(8, 20, 38, 0.92);
}

.contact-field textarea {
    min-height: 148px;
    resize: vertical;
}

.contact-field small {
    color: #ffb7c5;
    font-size: 0.82rem;
    font-weight: 700;
}

.contact-field-terms {
    gap: 0.7rem;
}

.terms-consent-card {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.95rem;
    align-items: start;
    padding: 1rem 1rem 1rem 0.95rem;
    border-radius: 22px;
    border: 1px solid rgba(171, 202, 255, 0.14);
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.88), rgba(10, 25, 44, 0.72));
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.terms-consent-card:hover {
    border-color: rgba(59, 231, 255, 0.32);
    box-shadow: 0 18px 34px rgba(4, 11, 24, 0.18);
    transform: translateY(-1px);
}

.terms-consent-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.terms-consent-check {
    width: 24px;
    height: 24px;
    margin-top: 0.2rem;
    border-radius: 9px;
    border: 1px solid rgba(171, 202, 255, 0.26);
    background: rgba(255, 255, 255, 0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.terms-consent-check i {
    font-size: 0.95rem;
}

.terms-consent-copy {
    display: grid;
    gap: 0.32rem;
}

.terms-consent-copy strong {
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.terms-consent-copy small {
    color: rgba(214, 230, 250, 0.78);
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.5;
}

.terms-consent-link,
.terms-inline-link {
    color: #8de8ff;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.terms-consent-link {
    margin-top: 0.12rem;
}

.terms-inline-link:hover,
.terms-consent-link:hover {
    color: #c9f7ff;
    text-decoration: underline;
}

.terms-consent-input:checked + .terms-consent-check {
    border-color: rgba(59, 231, 255, 0.6);
    background: linear-gradient(135deg, #2e84ff, #39d8ff);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(32, 138, 255, 0.28);
}

.terms-consent-input:checked ~ .terms-consent-copy strong {
    color: #dff7ff;
}

.terms-consent-card:has(.terms-consent-input:checked) {
    border-color: rgba(59, 231, 255, 0.34);
    background: linear-gradient(180deg, rgba(13, 31, 57, 0.94), rgba(12, 38, 63, 0.78));
}

.terms-consent-card:has(.terms-consent-input:focus-visible) {
    outline: 2px solid rgba(59, 231, 255, 0.5);
    outline-offset: 3px;
}

.contact-feedback {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(46, 230, 166, 0.22);
}

.contact-feedback.success {
    background: rgba(46, 230, 166, 0.1);
    color: #d6ffef;
}

.contact-feedback strong {
    color: #fff;
}

.contact-form-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.marketing-footer {
    padding: 1.5rem 0 2.25rem;
    border-top: 1px solid rgba(171, 202, 255, 0.08);
}

.marketing-footer p {
    max-width: 460px;
    margin: 0.75rem 0 0;
    color: var(--marketing-muted);
}

.footer-brand {
    margin-bottom: 0.35rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes orb-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(18px, -16px, 0) scale(1.06); }
}

@keyframes float-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1199px) {
    .hero-proof,
    .hero-metrics,
    .kpi-stack,
    .modules-grid,
    .platform-scene,
    .modules-surface,
    .platform-panels {
        grid-template-columns: 1fr;
    }

    .hero-dashboard {
        inset: 0 44px 120px 0;
        transform: none;
    }

    .hero-visual {
        min-height: 720px;
    }
}

@media (max-width: 991px) {
    .marketing-nav-inner,
    .marketing-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-shell {
        grid-template-columns: 1fr;
    }

    .terms-hero-shell,
    .terms-layout {
        grid-template-columns: 1fr;
    }

    .terms-toc {
        position: static;
    }

    .marketing-menu {
        display: none;
    }

    .marketing-hero {
        min-height: auto;
        padding-top: 3.5rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 12vw, 4.1rem);
    }

    .hero-visual {
        min-height: 680px;
    }

    .hero-dashboard {
        position: relative;
        inset: auto;
        margin-right: 72px;
        transform: none;
    }

    .platform-desktop-shell {
        grid-template-columns: 1fr;
    }

    .hero-brand-mark {
        width: 132px;
        right: 28px;
        top: -8px;
    }

    .hero-mobile {
        right: 12px;
        width: 210px;
    }

    .sticky-copy {
        position: static;
    }
}

@media (max-width: 767px) {
    .marketing-nav {
        position: static;
    }

    .marketing-actions {
        width: 100%;
        justify-content: space-between;
    }

    .marketing-hero,
    .marketing-section {
        padding: 3.75rem 0;
    }

    .hero-chart,
    .flow-step {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 0;
    }

    .hero-dashboard,
    .hero-mobile {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .hero-dashboard {
        margin-right: 0;
    }

    .hero-brand-mark {
        position: absolute;
        width: 108px;
        right: 14px;
        top: 12px;
    }

    .hero-mobile {
        margin-top: 1rem;
    }

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

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

    .terms-block {
        padding: 1.2rem 1.1rem;
    }

    .contact-form-actions .btn,
    .cta-actions .btn,
    .hero-actions .btn,
    .marketing-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-orb,
    .hero-mobile,
    [data-reveal] {
        animation: none !important;
        transition: none !important;
    }
}
