/* ==========================================================================
   CC AntiCheat — landing page (v5)
   Depends on core.css for tokens, buttons and the motion system.
   ========================================================================== */

.container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    background: rgba(5, 9, 18, 0.55);
    /* the only backdrop-filter on the whole site */
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: background var(--med) var(--ease), border-color var(--med) var(--ease);
}

.navbar.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(5, 9, 18, 0.86);
}

.nav-inner {
    width: min(var(--max), calc(100% - 48px));
    min-height: 74px;
    margin: auto;
    display: flex;
    transition: min-height var(--med) var(--ease);
    align-items: center;
    gap: 28px;
}

.navbar.is-scrolled .nav-inner {
    min-height: 64px;
}

.logo {
    flex: 0 0 auto;
}

.nav-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.menu,
.nav-auth {
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu a {
    position: relative;
    padding: 9px 13px;
    border-radius: 9px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--fast) var(--ease);
}

.menu a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 3px;
    height: 1px;
    background: var(--blue-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--med) var(--ease);
}

.menu a:hover {
    color: var(--text);
}

.menu a:hover::after {
    transform: scaleX(1);
}

.nav-btn {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 13.5px;
}

.nav-hamburger,
.nav-mobile-footer {
    display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    padding: 96px 0 84px;
    display: flex;
    align-items: center;
    min-height: min(880px, calc(100vh - 74px));
    overflow: clip;
}

.hero-grid {
    display: none;
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 60px;
}

.hero-copy-wrap {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

/* orchestrated page-load sequence */
.hero-copy-wrap > * {
    animation: cc-rise-in 760ms var(--ease) both;
}

.hero-copy-wrap > *:nth-child(1) { animation-delay: 40ms; }
.hero-copy-wrap > *:nth-child(2) { animation-delay: 120ms; }
.hero-copy-wrap > *:nth-child(3) { animation-delay: 200ms; }
.hero-copy-wrap > *:nth-child(4) { animation-delay: 280ms; }
.hero-copy-wrap > *:nth-child(5) { animation-delay: 360ms; }

.hero h1 {
    margin: 26px 0 22px;
    color: #fff;
    font-size: clamp(46px, 6vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.042em;
    text-wrap: balance;
}

.hero h1 .gradient {
    display: block;
}

.hero-copy {
    margin-bottom: 34px;
    color: var(--muted);
    font-size: clamp(15.5px, 1.4vw, 17.5px);
    line-height: 1.68;
}

.hero-copy strong {
    color: var(--text-dim);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-note {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: -0.01em;
}

.hero-note li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-note li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
}

/* ---------------------------------------------------------- hero visual */

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    z-index: 1;
    animation: cc-rise-in 900ms var(--ease) 220ms both;
}

/* static depth glow behind the preview — painted once, never animated */
.hero-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92%;
    height: 92%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 123, 255, 0.20) 0%, rgba(46, 123, 255, 0.05) 42%, transparent 68%);
    pointer-events: none;
}

.hero-stage {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    animation: cc-float 9s ease-in-out 1.2s infinite;
}

.dashboard-window {
    position: relative;
    width: min(640px, 100%);
    border: 1px solid var(--line2);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, #0c1728 0%, #070f1c 55%, #050b16 100%);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(99, 170, 255, 0.05);
    isolation: isolate;
}

/* one-shot sheen on load, then it stays out of the way */
.dashboard-window::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(108deg, transparent 32%, rgba(255, 255, 255, 0.06) 46%, transparent 60%);
    transform: translate3d(-130%, 0, 0);
    animation: cc-sheen 1400ms var(--ease) 900ms 1 both;
}

@keyframes cc-sheen {
    from { transform: translate3d(-130%, 0, 0); }
    to   { transform: translate3d(130%, 0, 0); }
}

.window-top {
    height: 44px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(4, 9, 18, 0.6);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22405f;
}

.window-title {
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.window-body {
    display: grid;
    grid-template-columns: 152px 1fr;
    min-height: 400px;
}

.demo-side {
    padding: 16px 11px;
    border-right: 1px solid var(--line);
    background: rgba(3, 8, 16, 0.5);
}

.demo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 8px 18px;
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
}

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

.demo-nav {
    display: grid;
    gap: 3px;
}

.demo-nav span {
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--muted-2);
    font-size: 11.5px;
    font-weight: 500;
}

.demo-nav span.active {
    color: #bcdcff;
    background: var(--blue-soft);
    box-shadow: inset 2px 0 0 var(--blue-bright);
}

.demo-main {
    position: relative;
    padding: 18px;
    overflow: hidden;
}

/* scan sweep — transform only */
.demo-main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 90px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(75, 213, 255, 0.07), transparent);
    animation: cc-scan 6.5s linear infinite;
}

@keyframes cc-scan {
    from { transform: translate3d(0, -100px, 0); }
    to   { transform: translate3d(0, 480px, 0); }
}

.demo-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.demo-head small {
    display: block;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.demo-head strong {
    display: block;
    margin-top: 5px;
    color: #edf5ff;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
}

.demo-online {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border: 1px solid rgba(61, 220, 161, 0.26);
    border-radius: 999px;
    background: rgba(61, 220, 161, 0.08);
    color: #7ce9c1;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.demo-online .status-pulse {
    background: var(--green);
}

.demo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.demo-card,
.demo-panel {
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.018);
}

.demo-card {
    padding: 11px 12px;
}

.demo-card span {
    display: block;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-card strong {
    display: block;
    margin-top: 6px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
}

.demo-card strong.blue { color: var(--blue-bright); }
.demo-card strong.good { color: var(--green); }

.demo-panels {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 8px;
}

.demo-panel {
    padding: 12px;
}

.demo-panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #a9c3e2;
    font-size: 11px;
    font-weight: 600;
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.1em;
}

.live-tag::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    animation: cc-blink 2s var(--ease) infinite;
}

@keyframes cc-blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.25; }
}

.demo-activity {
    display: grid;
}

.demo-row {
    display: grid;
    grid-template-columns: 7px 1fr auto;
    align-items: center;
    gap: 9px;
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.demo-row:first-child {
    border-top: 0;
}

.demo-row i {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
}

.demo-row i::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: cc-pulse 3s var(--ease) infinite;
}

.demo-row:nth-child(2) i::after { animation-delay: 1s; }
.demo-row:nth-child(3) i::after { animation-delay: 2s; }

.demo-row b {
    color: #9db8d8;
    font-size: 11px;
    font-weight: 500;
}

.demo-row em {
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 9.5px;
    font-style: normal;
}

.demo-chart {
    height: 116px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    padding-top: 6px;
}

.demo-chart span {
    flex: 1;
    height: var(--h);
    min-height: 14%;
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, rgba(99, 170, 255, 0.9), rgba(46, 123, 255, 0.14));
    transform-origin: bottom;
    animation: cc-bars 3.2s ease-in-out var(--d, 0s) infinite alternate;
}

@keyframes cc-bars {
    from { transform: scaleY(0.7); }
    to   { transform: scaleY(1); }
}

/* --------------------------------------------------------- floating chips */

.floating-chip {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid var(--line2);
    border-radius: 12px;
    background: rgba(8, 15, 27, 0.94);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
    color: #bcd9ff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    /* two animations, two different properties — they never fight */
    animation: cc-fade-in 600ms var(--ease) 900ms both,
               cc-float 6.5s ease-in-out 1.5s infinite;
}

.floating-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.floating-chip.one {
    top: 8%;
    right: -14px;
}

.floating-chip.two {
    bottom: 9%;
    left: -22px;
    animation: cc-fade-in 600ms var(--ease) 1100ms both,
               cc-float 6.5s ease-in-out 3s infinite;
}

.floating-chip.two::before {
    background: var(--cyan);
}

/* ==========================================================================
   Signal strip
   ========================================================================== */

.signal-strip {
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(8, 14, 26, 0.7);
}

.signal-item {
    position: relative;
    padding: 20px 22px;
    border-left: 1px solid var(--line);
    transition: background var(--med) var(--ease);
}

.signal-item:first-child {
    border-left: 0;
}

.signal-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 420ms var(--ease);
}

.signal-item:hover {
    background: rgba(46, 123, 255, 0.05);
}

.signal-item:hover::before {
    transform: scaleX(1);
}

.signal-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
}

.signal-item span {
    color: var(--muted-2);
    font-size: 12.5px;
    line-height: 1.55;
}

/* ==========================================================================
   Section shell
   ========================================================================== */

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

.section.compact {
    padding: 80px 0;
}

.section-line {
    border-top: 1px solid var(--line);
}

.section-head {
    max-width: 720px;
    margin-bottom: 52px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.section-head h2,
.split-copy h2,
.cta h2 {
    margin: 20px 0 16px;
    color: #f4faff;
    font-size: clamp(32px, 3.9vw, 50px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.section-head p,
.split-copy p,
.cta p {
    margin: 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.7;
}

/* ==========================================================================
   Feature grid
   ========================================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feature-card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(158deg, rgba(14, 26, 45, 0.7), rgba(6, 13, 24, 0.7));
    overflow: hidden;
    transition: transform var(--med) var(--ease),
                border-color var(--med) var(--ease);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(420px circle at 100% 0%, rgba(46, 123, 255, 0.14), transparent 60%);
    opacity: 0;
    transition: opacity var(--med) var(--ease);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border: 1px solid var(--line2);
    border-radius: 13px;
    background: var(--blue-soft);
    color: var(--blue-bright);
    transition: color var(--med) var(--ease), border-color var(--med) var(--ease);
}

.feature-card:hover .feature-icon {
    border-color: rgba(120, 190, 255, 0.45);
    color: var(--cyan);
}

.feature-icon svg {
    width: 21px;
    height: 21px;
}

.feature-card h3 {
    margin: 0 0 10px;
    color: #e9f3ff;
    font-size: 19px;
}

.feature-card p {
    margin: 0;
    color: var(--muted-2);
    font-size: 14px;
    line-height: 1.62;
}

/* ==========================================================================
   Protection layers
   These are parallel categories, not a sequence — so they carry a plain
   mono label instead of fake 01/02/03 numbering.
   ========================================================================== */

.protection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.protection-card {
    position: relative;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(8, 15, 28, 0.6);
    overflow: hidden;
    transition: transform var(--med) var(--ease),
                border-color var(--med) var(--ease),
                background var(--med) var(--ease);
}

.protection-card::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--blue-bright), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 460ms var(--ease);
}

.protection-card:hover {
    transform: translateY(-4px);
    border-color: var(--line2);
    background: rgba(13, 25, 45, 0.75);
}

.protection-card:hover::before {
    transform: scaleX(1);
}

.protection-card .tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 24px;
    color: #5f8ec4;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.protection-card .tag::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.protection-card h3 {
    margin: 0 0 9px;
    color: #dfeeff;
    font-size: 16px;
}

.protection-card p {
    margin: 0;
    color: var(--muted-2);
    font-size: 13px;
    line-height: 1.58;
}

/* ==========================================================================
   Verification split
   ========================================================================== */

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 64px;
    align-items: center;
}

.split-copy {
    max-width: 560px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.check-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
}

.check-item i {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 2px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(61, 220, 161, 0.26);
    border-radius: 50%;
    background: rgba(61, 220, 161, 0.08);
    color: var(--green);
    font-size: 10px;
    font-style: normal;
}

.verify-visual {
    position: relative;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(158deg, rgba(12, 23, 40, 0.72), rgba(5, 11, 21, 0.72));
    box-shadow: var(--shadow-blue);
    overflow: hidden;
}

.verify-flow {
    position: relative;
    display: grid;
    gap: 14px;
}

.verify-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(4, 10, 20, 0.66);
    transition: border-color var(--med) var(--ease), transform var(--med) var(--ease);
}

.verify-step:hover {
    transform: translateX(4px);
    border-color: var(--line-strong);
}

/* connector between the steps — this one really is a sequence */
.verify-step + .verify-step::before {
    content: "";
    position: absolute;
    left: 33px;
    top: -15px;
    width: 1px;
    height: 15px;
    background: linear-gradient(to bottom, transparent, var(--blue-bright));
}

.verify-index {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--blue-soft);
    color: #8cc9ff;
    font-family: var(--mono);
    font-size: 11px;
}

.verify-step strong {
    display: block;
    margin-bottom: 3px;
    color: #d3e7ff;
    font-size: 13.5px;
    font-weight: 600;
}

.verify-step span {
    color: var(--muted-2);
    font-size: 12px;
}

/* ==========================================================================
   Control center showcase
   ========================================================================== */

.product-showcase {
    position: relative;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(12, 24, 42, 0.76), rgba(5, 11, 20, 0.76));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.showcase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    padding: 0 4px;
}

.showcase-title strong {
    display: block;
    color: #e6f2ff;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
}

.showcase-title span {
    color: var(--muted-2);
    font-size: 12.5px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
}

.showcase-panel {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(4, 10, 20, 0.6);
}

.showcase-panel h3 {
    margin: 0 0 14px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.detection-list {
    display: grid;
    gap: 7px;
}

.detection-row {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
    transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}

.detection-row:hover {
    border-color: var(--line2);
    background: rgba(255, 255, 255, 0.03);
}

.detection-row i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
}

.detection-row.high i { background: var(--red); }
.detection-row.low i  { background: var(--blue-bright); }

.detection-row strong {
    display: block;
    color: #cfe1f7;
    font-size: 13px;
    font-weight: 600;
}

.detection-row span {
    color: var(--muted-2);
    font-size: 11.5px;
}

.detection-row time {
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 11px;
}

.status-stack {
    display: grid;
    gap: 7px;
}

.status-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
}

.status-line span {
    color: #93aac7;
    font-size: 13px;
}

.status-line b {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-line b::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

/* ==========================================================================
   Integration timeline — a real, ordered process, so the steps are numbered
   ========================================================================== */

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 42px;
}

.timeline-step {
    position: relative;
    padding-top: 28px;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: 0;
    right: -12px;
    top: 5px;
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 170, 255, 0.55), rgba(99, 170, 255, 0.08));
}

.timeline-step:last-child::before {
    right: calc(100% - 10px);
}

.timeline-step::after {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue-bright);
}

.timeline-num {
    display: block;
    margin-bottom: 8px;
    color: #5f8ec4;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
}

.timeline-step b {
    display: block;
    margin-bottom: 6px;
    color: #d5e7fb;
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 600;
}

.timeline-step span {
    color: var(--muted-2);
    font-size: 12.5px;
    line-height: 1.55;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
    position: relative;
    padding: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    border: 1px solid var(--line2);
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(700px circle at 90% 10%, rgba(46, 123, 255, 0.22), transparent 60%),
        linear-gradient(150deg, rgba(14, 28, 50, 0.9), rgba(5, 11, 21, 0.9));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.cta > * {
    position: relative;
    z-index: 1;
}

.cta-copy {
    max-width: 680px;
}

.cta .button {
    flex: 0 0 auto;
    padding: 14px 26px;
    font-size: 15px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    position: relative;
    z-index: 2;
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: rgba(3, 7, 15, 0.5);
}

.footer-inner {
    width: min(var(--max), calc(100% - 48px));
    min-height: 96px;
    margin: auto;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.footer-brand {
    margin-bottom: 8px;
}

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

.footer-links a {
    color: var(--muted-2);
    font-size: 13px;
    transition: color var(--fast) var(--ease);
}

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

.footer-meta {
    color: var(--muted-2);
    font-size: 12px;
}

.legal-shell {
    width: min(920px, calc(100% - 40px));
    margin: 72px auto;
}

.legal-back {
    margin-bottom: 20px;
    display: inline-flex;
    color: var(--muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
    .hero {
        min-height: 0;
        padding: 76px 0 70px;
    }

    .hero-layout,
    .split {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-copy-wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-copy-wrap .eyebrow,
    .hero-actions,
    .hero-note {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .split-copy {
        max-width: 760px;
    }
}

@media (max-width: 860px) {
    .nav-inner,
    .navbar.is-scrolled .nav-inner {
        min-height: 64px;
    }

    .nav-hamburger {
        width: 40px;
        height: 40px;
        margin-left: auto;
        display: grid;
        place-content: center;
        gap: 4px;
        border: 1px solid var(--line2);
        border-radius: 10px;
        background: rgba(10, 19, 34, 0.8);
        cursor: pointer;
    }

    .nav-hamburger span {
        width: 17px;
        height: 1.5px;
        display: block;
        border-radius: 2px;
        background: #a8bed6;
    }

    .nav-content {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 68px;
        display: none;
        padding: 14px;
        border: 1px solid var(--line2);
        border-radius: 16px;
        background: #070d18;
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
    }

    .nav-content.open {
        display: grid;
        gap: 12px;
        animation: cc-rise-in 240ms var(--ease) both;
    }

    .menu,
    .nav-auth {
        display: grid;
        gap: 6px;
    }

    .menu a,
    .nav-btn {
        width: 100%;
        justify-content: flex-start;
    }

    .menu a::after {
        display: none;
    }

    .nav-mobile-footer {
        display: flex;
        gap: 16px;
        padding-top: 12px;
        border-top: 1px solid var(--line);
        color: var(--muted-2);
        font-size: 12px;
    }

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

    .signal-item:nth-child(3),
    .signal-item:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .signal-item:nth-child(3) {
        border-left: 0;
    }

    .showcase-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline {
        gap: 0;
    }

    .timeline-step {
        padding: 0 0 26px 26px;
    }

    .timeline-step::before {
        left: 4px;
        right: auto;
        top: 6px;
        bottom: 0;
        width: 1px;
        height: auto;
        background: linear-gradient(to bottom, rgba(99, 170, 255, 0.5), rgba(99, 170, 255, 0.06));
    }

    .timeline-step:last-child::before {
        display: none;
    }

    .timeline-step::after {
        top: 3px;
    }

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

@media (max-width: 680px) {
    .container,
    .nav-inner,
    .footer-inner {
        width: min(100% - 32px, var(--max));
    }

    .hero {
        padding: 56px 0 48px;
    }

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

    .hero-visual {
        margin-top: 10px;
    }

    .window-body {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .demo-side {
        display: none;
    }

    .demo-panels {
        grid-template-columns: 1fr;
    }

    .demo-panels .demo-panel:last-child {
        display: none;
    }

    .floating-chip {
        display: none;
    }

    .signal-grid,
    .feature-grid,
    .protection-grid {
        grid-template-columns: 1fr;
    }

    .signal-item {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .signal-item:first-child {
        border-top: 0;
    }

    .section {
        padding: 76px 0;
    }

    .section.compact {
        padding: 56px 0;
    }

    .cta {
        padding: 32px 24px;
    }

    .cta .button {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Sub-page components
   Shared by features / protection / dashboard / integration.
   ========================================================================== */

.page-hero {
    position: relative;
    padding: 74px 0 56px;
    border-bottom: 1px solid var(--line);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 11.5px;
}

.breadcrumb a {
    color: var(--muted-2);
    transition: color var(--fast) var(--ease);
}

.breadcrumb a:hover {
    color: var(--blue-bright);
}

.breadcrumb span[aria-current] {
    color: var(--text-dim);
}

.page-hero h1 {
    max-width: 900px;
    margin: 20px 0 18px;
    color: #f6fbff;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.038em;
    text-wrap: balance;
}

.page-lead {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.68;
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 12px;
}

.page-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-meta li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
}

/* ------------------------------------------------- explanatory blocks */

.detail-list {
    display: grid;
    gap: 14px;
}

.detail-item {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 32px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(158deg, rgba(13, 25, 43, 0.6), rgba(6, 13, 24, 0.6));
    transition: border-color var(--med) var(--ease);
}

.detail-item:hover {
    border-color: var(--line2);
}

.detail-label {
    position: relative;
    padding-top: 4px;
}

.detail-label .tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #5f8ec4;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-label .tag::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.detail-item h3 {
    margin: 0 0 12px;
    color: #e9f3ff;
    font-size: 20px;
}

.detail-item p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.68;
}

.detail-item p:last-child {
    margin-bottom: 0;
}

.detail-points {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-points li {
    position: relative;
    padding-left: 18px;
    color: var(--muted-2);
    font-size: 13.5px;
    line-height: 1.6;
}

.detail-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue-bright);
}

/* ---------------------------------------------------------- info cards */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

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

.info-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(8, 15, 28, 0.6);
}

.info-card h3 {
    margin: 0 0 10px;
    color: #dfeeff;
    font-size: 16px;
}

.info-card p {
    margin: 0;
    color: var(--muted-2);
    font-size: 13.5px;
    line-height: 1.62;
}

/* ------------------------------------------------------- callout / note */

.note-box {
    display: flex;
    gap: 16px;
    padding: 24px 26px;
    border: 1px solid var(--line2);
    border-left: 2px solid var(--blue-bright);
    border-radius: 14px;
    background: var(--blue-dim);
}

.note-box strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
}

.note-box p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* ------------------------------------------------------- numbered steps */

.step-list {
    display: grid;
    gap: 12px;
    counter-reset: step;
}

.step-block {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7, 14, 26, 0.6);
}

.step-num {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--blue-soft);
    color: #8cc9ff;
    font-family: var(--mono);
    font-size: 13px;
}

.step-block h3 {
    margin: 0 0 10px;
    color: #e4f0ff;
    font-size: 18px;
}

.step-block p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.68;
}

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

/* ------------------------------------------------------------------ faq */

.faq {
    display: grid;
    gap: 10px;
}

.faq-item {
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7, 14, 26, 0.55);
}

.faq-item h3 {
    margin: 0 0 9px;
    color: #dfeeff;
    font-size: 15.5px;
}

.faq-item p {
    margin: 0;
    color: var(--muted-2);
    font-size: 14px;
    line-height: 1.65;
}

/* ------------------------------------------------- explore cards (index) */

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

.explore-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(158deg, rgba(14, 26, 45, 0.68), rgba(6, 13, 24, 0.68));
    overflow: hidden;
    transition: transform var(--med) var(--ease), border-color var(--med) var(--ease);
}

.explore-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(460px circle at 100% 0%, rgba(46, 123, 255, 0.14), transparent 60%);
    opacity: 0;
    transition: opacity var(--med) var(--ease);
}

.explore-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.explore-card:hover::before {
    opacity: 1;
}

.explore-card > * {
    position: relative;
}

.explore-card .tag {
    color: #5f8ec4;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.explore-card h3 {
    margin: 20px 0 12px;
    color: #eaf4ff;
    font-size: 23px;
}

.explore-card p {
    margin: 0 0 22px;
    color: var(--muted-2);
    font-size: 14.5px;
    line-height: 1.62;
}

.explore-points {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.explore-points li {
    padding: 5px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 10.5px;
}

.explore-go {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-bright);
    font-size: 14px;
    font-weight: 600;
}

.explore-go svg {
    width: 15px;
    height: 15px;
    transition: transform var(--med) var(--ease);
}

.explore-card:hover .explore-go svg {
    transform: translateX(4px);
}

/* --------------------------------------------------- prev / next footer */

.page-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

.page-nav a {
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7, 14, 26, 0.5);
    transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}

.page-nav a:hover {
    border-color: var(--line2);
    background: rgba(13, 25, 45, 0.7);
}

.page-nav small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted-2);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-nav strong {
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
}

.page-nav .prev small::before {
    content: "\2190\00a0";
}

.page-nav .next {
    text-align: right;
}

.page-nav .next small::after {
    content: "\00a0\2192";
}

/* active navbar entry */
.menu a.is-active {
    color: var(--text);
}

.menu a.is-active::after {
    transform: scaleX(1);
}

@media (max-width: 1080px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .page-hero {
        padding: 52px 0 44px;
    }

    .detail-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }

    .explore-grid,
    .info-grid,
    .info-grid.two {
        grid-template-columns: 1fr;
    }

    .step-block {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 18px;
        padding: 22px;
    }

    .page-nav {
        grid-template-columns: 1fr;
    }

    .page-nav .next {
        text-align: left;
    }
}
