@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
    --bg-primary: #08111d;
    --bg-secondary: #0f1b2a;
    --bg-tertiary: #17283a;
    --bg-elevated: #22364c;
    --bg-card: #101c2a;
    --text-primary: #f4f8fb;
    --text-secondary: #c2cfdb;
    --text-tertiary: #8395a6;
    --text-inverse: #07111f;
    --accent-blue: #5f9cff;
    --accent-cyan: #32d5ca;
    --accent-green: #5ac28f;
    --accent-gold: #f3c46e;
    --accent-rose: #e46f7c;
    --neon-blue: var(--accent-blue);
    --neon-cyan: var(--accent-cyan);
    --primary: #1e8cff;
    --primary-dark: #0b5fc1;
    --primary-light: #35d3cc;
    --success: #22a977;
    --warning: #d8952f;
    --border-primary: rgba(185, 203, 220, 0.2);
    --border-secondary: rgba(185, 203, 220, 0.12);
    --border-neon: rgba(50, 213, 202, 0.34);
    --overlay-header: rgba(6, 15, 27, 0.72);
    --overlay-card-a: rgba(18, 33, 49, 0.82);
    --overlay-card-b: rgba(8, 17, 29, 0.94);
    --glow-accent-sm: rgba(50, 213, 202, 0.14);
    --glow-accent-md: rgba(50, 213, 202, 0.22);
    --glow-accent-lg: rgba(95, 156, 255, 0.26);
    --pattern-color: rgba(166, 189, 209, 0.045);
    --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    --gradient-card: linear-gradient(180deg, rgba(23, 40, 58, 0.9), rgba(8, 17, 29, 0.96));
    --gradient-header: linear-gradient(135deg, rgba(23, 40, 58, 0.92), rgba(12, 29, 50, 0.92));
    --gradient-neon-line: linear-gradient(90deg, transparent, rgba(50, 213, 202, 0.68), rgba(243, 196, 110, 0.78), rgba(95, 156, 255, 0.66), transparent);
    --shadow-color: rgba(0, 0, 0, 0.52);
    --shadow-neon: 0 14px 32px rgba(50, 213, 202, 0.16);
    --shadow-xl: 0 22px 60px var(--shadow-color);
    --font-sans: 'Exo 2', 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Rajdhani', var(--font-sans);
    --font-mono: 'Share Tech Mono', monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--text-primary);
    background:
        linear-gradient(135deg, rgba(50, 213, 202, 0.08), transparent 28%),
        linear-gradient(225deg, rgba(243, 196, 110, 0.06), transparent 32%),
        linear-gradient(180deg, #07111f, #101b29 44%, #08111d);
    font-family: var(--font-sans);
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(var(--pattern-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--pattern-color) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 86%);
    animation: pageGridDrift 34s linear infinite;
}

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

.marketing-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 13px clamp(20px, 5vw, 72px);
    background: var(--overlay-header);
    border-bottom: 1px solid var(--border-primary);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(20px);
}

.marketing-header::after {
    content: "";
    position: absolute;
    left: clamp(20px, 5vw, 72px);
    right: clamp(20px, 5vw, 72px);
    bottom: -1px;
    height: 1px;
    background: var(--gradient-neon-line);
    opacity: 0.65;
    animation: neonRail 6s ease-in-out infinite;
}

.marketing-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: 0;
}

.marketing-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(37, 214, 208, 0.2));
}

.marketing-brand span {
    color: var(--text-primary);
}

.marketing-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 700;
}

.marketing-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.marketing-nav a:hover {
    color: var(--neon-cyan);
    background: rgba(37, 214, 208, 0.08);
    border-color: var(--border-neon);
}

.marketing-nav .nav-login {
    color: var(--text-inverse);
    background: var(--gradient-primary);
    box-shadow: 0 12px 28px rgba(50, 213, 202, 0.16);
}

.marketing-nav .nav-login:hover {
    color: var(--text-inverse);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 28px rgba(0, 168, 232, 0.42);
}

.hero-section {
    position: relative;
    min-height: min(840px, calc(100vh - 72px));
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(46px, 6vw, 76px);
    border-bottom: 1px solid var(--border-primary);
    background:
        linear-gradient(90deg, rgba(50, 213, 202, 0.12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(50, 213, 202, 0.08) 1px, transparent 1px),
        linear-gradient(135deg, rgba(50, 213, 202, 0.1), transparent 32%),
        linear-gradient(225deg, rgba(243, 196, 110, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.95), rgba(12, 26, 43, 0.96));
    background-size: 68px 68px, 68px 68px, auto, auto, auto;
    animation: industrialGrid 28s linear infinite;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        repeating-linear-gradient(115deg, transparent 0, transparent 28px, rgba(255, 255, 255, 0.025) 29px, transparent 30px),
        linear-gradient(90deg, rgba(5, 12, 22, 0.72), rgba(5, 12, 22, 0.3) 52%, rgba(5, 12, 22, 0.68));
}

.hero-section::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 26px clamp(20px, 5vw, 72px) auto;
    height: 1px;
    pointer-events: none;
    background: var(--gradient-neon-line);
    opacity: 0.62;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 760px;
    animation: riseIn 620ms ease both;
}

.eyebrow {
    width: fit-content;
    max-width: 100%;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 0 12px;
    border: 1px solid rgba(243, 196, 110, 0.34);
    border-radius: 999px;
    color: var(--accent-gold);
    background: rgba(243, 196, 110, 0.1);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    letter-spacing: 0;
}

h1 {
    margin: 0;
    max-width: 720px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 7vw, 6.6rem);
    line-height: 0.9;
    font-weight: 900;
    text-shadow: 0 22px 54px rgba(0, 0, 0, 0.46), 0 0 34px rgba(50, 213, 202, 0.14);
}

h2 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 2.75rem;
    line-height: 1.05;
    font-weight: 800;
}

h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.hero-lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: #d3dde7;
    font-size: clamp(1.06rem, 1.8vw, 1.26rem);
    line-height: 1.62;
}

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

.btn-primary,
.btn-secondary {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 900;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn-primary {
    color: var(--text-inverse);
    background: var(--gradient-primary);
    box-shadow: 0 16px 36px rgba(50, 213, 202, 0.2), 0 16px 34px rgba(0, 0, 0, 0.28);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(37, 214, 208, 0.26), 0 16px 34px rgba(0, 0, 0, 0.34);
}

.btn-secondary {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(244, 248, 251, 0.18);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    color: var(--neon-cyan);
    border-color: var(--border-neon);
    background: rgba(37, 214, 208, 0.08);
    transform: translateY(-1px);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
    max-width: 740px;
}

.hero-proof span {
    position: relative;
    overflow: hidden;
    min-height: 106px;
    padding: 18px;
    border: 1px solid rgba(244, 248, 251, 0.15);
    border-radius: 8px;
    background: rgba(8, 17, 29, 0.62);
    color: #c5d3df;
    font-size: 0.92rem;
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.05);
}

.hero-proof span::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 12px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
    opacity: 0.45;
    animation: proofSignal 4.8s ease-in-out infinite;
}

.hero-proof span:nth-child(2)::before {
    animation-delay: 0.45s;
}

.hero-proof span:nth-child(3)::before {
    animation-delay: 0.9s;
}

.hero-proof strong {
    display: block;
    color: var(--accent-cyan);
    margin-bottom: 4px;
}

.hero-command {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 560px;
    justify-self: end;
    animation: riseIn 760ms ease 120ms both;
}

.command-frame {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(50, 213, 202, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(50, 213, 202, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(16, 31, 49, 0.94), rgba(6, 14, 26, 0.98));
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(50, 213, 202, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
}

.command-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0 47%, rgba(50, 213, 202, 0.14) 48% 48.5%, transparent 49%),
        repeating-linear-gradient(180deg, transparent 0, transparent 23px, rgba(244, 248, 251, 0.035) 24px, transparent 25px);
    opacity: 0.45;
}

.command-frame::after {
    content: "";
    position: absolute;
    inset: -40% -20%;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 42%, rgba(50, 213, 202, 0.08) 49%, rgba(243, 196, 110, 0.05) 52%, transparent 60%);
    transform: translateX(-55%);
    animation: commandScanner 11s ease-in-out infinite;
}

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

.command-topbar {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid rgba(185, 203, 220, 0.18);
    border-radius: 8px;
    background: rgba(6, 14, 26, 0.72);
    color: var(--text-secondary);
}

.command-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent-cyan);
    box-shadow: 0 0 14px rgba(50, 213, 202, 0.34);
    animation: statusBlink 5.6s ease-in-out infinite;
}

.command-topbar span:nth-child(2) {
    background: var(--accent-gold);
    animation-delay: 0.35s;
}

.command-topbar span:nth-child(3) {
    background: var(--accent-green);
    animation-delay: 0.7s;
}

.command-topbar strong {
    margin-left: 8px;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    font-weight: 900;
}

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

.command-status {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    padding: 18px;
    border: 1px solid rgba(185, 203, 220, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(95, 156, 255, 0.16), rgba(255, 255, 255, 0.035)),
        rgba(8, 17, 29, 0.72);
}

.command-status::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-cyan), rgba(95, 156, 255, 0.3), transparent);
    transform-origin: left center;
    animation: metricLoad 5.2s ease-in-out infinite;
}

.command-status.accent {
    background:
        linear-gradient(180deg, rgba(243, 196, 110, 0.18), rgba(255, 255, 255, 0.035)),
        rgba(8, 17, 29, 0.72);
}

.command-status small,
.command-modules span,
.command-terminal span {
    color: var(--accent-gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.command-status strong {
    display: block;
    margin: 12px 0 4px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 3.2rem;
    line-height: 1;
}

.command-status span {
    color: var(--text-secondary);
    font-weight: 800;
}

.command-flow {
    display: grid;
    grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(185, 203, 220, 0.16);
    border-radius: 8px;
    background: rgba(6, 14, 26, 0.58);
}

.command-flow span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(50, 213, 202, 0.18);
    color: var(--text-primary);
    background: rgba(16, 32, 64, 0.68);
    font-size: 0.8rem;
    font-weight: 900;
    text-align: center;
}

.command-flow i {
    position: relative;
    overflow: hidden;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
}

.command-flow i::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 38%;
    background: rgba(255, 255, 255, 0.88);
    filter: blur(1px);
    transform: translateX(-130%);
    animation: conveyorLight 2.8s ease-in-out infinite;
}

.command-flow i:nth-of-type(2)::before {
    animation-delay: 0.3s;
}

.command-flow i:nth-of-type(3)::before {
    animation-delay: 0.6s;
}

.command-modules {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.command-modules article {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 70px;
    padding: 12px;
    border: 1px solid rgba(185, 203, 220, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.command-modules article::after {
    content: none;
    display: none;
}

.command-modules article:nth-child(2)::after { animation-delay: 0.35s; }
.command-modules article:nth-child(3)::after { animation-delay: 0.7s; }
.command-modules article:nth-child(4)::after { animation-delay: 1.05s; }

.command-modules span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-inverse);
    background: var(--gradient-primary);
}

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

.command-modules strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.command-modules small {
    margin-top: 3px;
    color: var(--text-secondary);
    font-size: 0.84rem;
}

.command-terminal {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(50, 213, 202, 0.2);
    border-radius: 8px;
    background: rgba(2, 8, 14, 0.7);
}

.command-terminal span {
    position: relative;
    padding-left: 18px;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: none;
    animation: terminalPulse 4.2s ease-in-out infinite;
}

.command-terminal span:nth-child(2) { animation-delay: 0.4s; }
.command-terminal span:nth-child(3) { animation-delay: 0.8s; }

.command-terminal span::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.product-preview {
    position: relative;
    z-index: 1;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 790px;
    justify-self: end;
    padding: 18px;
    border: 1px solid rgba(126, 158, 191, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(15, 29, 48, 0.98), rgba(7, 17, 31, 0.98)),
        var(--bg-primary);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(37, 214, 208, 0.05);
    transform: none;
}

.product-preview::before {
    content: "";
    position: absolute;
    inset: -16px;
    z-index: -1;
    border: 1px solid rgba(240, 183, 94, 0.13);
    border-radius: 8px;
    background: rgba(240, 183, 94, 0.035);
}

.preview-topbar {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0 14px;
    background: var(--gradient-header);
    border: 1px solid var(--border-primary);
}

.preview-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--text-tertiary);
}

.preview-topbar span:nth-child(1) { background: var(--danger, #C0392B); }
.preview-topbar span:nth-child(2) { background: var(--warning); }
.preview-topbar span:nth-child(3) { background: var(--success); }

.preview-topbar strong {
    margin-left: 8px;
    font-size: 0.9rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.metric-tile {
    min-height: 128px;
    padding: 16px;
    border-radius: 8px;
    color: var(--text-primary);
    border: 1px solid rgba(26, 58, 90, 0.9);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.05);
}

.metric-tile small,
.metric-tile span {
    display: block;
    color: var(--text-secondary);
}

.metric-tile strong {
    display: block;
    margin: 8px 0 4px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.tile-blue { background: linear-gradient(180deg, rgba(79, 140, 255, 0.26), rgba(10, 22, 40, 0.96)); }
.tile-green { background: linear-gradient(180deg, rgba(77, 200, 150, 0.26), rgba(10, 22, 40, 0.96)); }
.tile-amber { background: linear-gradient(180deg, rgba(240, 183, 94, 0.28), rgba(10, 22, 40, 0.96)); }
.tile-slate { background: linear-gradient(180deg, rgba(166, 189, 209, 0.18), rgba(10, 22, 40, 0.96)); }

.branch-preview {
    background:
        linear-gradient(145deg, rgba(37, 214, 208, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(15, 29, 48, 0.98), rgba(7, 17, 31, 0.98));
}

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

.branch-preview-card {
    min-height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(126, 158, 191, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(23, 43, 67, 0.82), rgba(6, 14, 26, 0.9)),
        var(--bg-card);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.06);
}

.branch-preview-card small {
    width: fit-content;
    max-width: 100%;
    padding: 6px 9px;
    border: 1px solid rgba(240, 183, 94, 0.28);
    border-radius: 999px;
    color: var(--accent-gold);
    background: rgba(240, 183, 94, 0.08);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.branch-preview-card strong {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1.05;
}

.branch-preview-card span {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 800;
}

.flow-panel {
    display: grid;
    grid-template-columns: 1fr 22px 1fr 22px 1fr 22px 1fr;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: rgba(6, 14, 26, 0.58);
}

.flow-step {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: rgba(10, 22, 40, 0.88);
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 800;
}

.flow-step.active {
    border-color: rgba(0, 168, 232, 0.45);
    color: var(--neon-cyan);
    box-shadow: 0 14px 28px rgba(37, 214, 208, 0.1);
}

.flow-step.done {
    border-color: rgba(13, 158, 106, 0.42);
    color: #67e0b3;
}

.flow-line {
    height: 2px;
    background: linear-gradient(90deg, var(--border-primary), var(--accent-gold), var(--accent-cyan));
}

.preview-table {
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr;
    gap: 12px;
    padding: 12px 14px;
    color: var(--text-secondary);
    background: rgba(10, 22, 40, 0.88);
    border-bottom: 1px solid var(--border-primary);
    font-size: 0.9rem;
}

.table-row:last-child {
    border-bottom: 0;
}

.table-head {
    color: var(--text-primary);
    background: rgba(16, 32, 64, 0.92);
    font-weight: 900;
}

.status {
    font-weight: 900;
}

.status.ok { color: #67e0b3; }
.status.warn { color: #ffc46a; }

.trust-strip {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 24px clamp(20px, 5vw, 72px);
    background: linear-gradient(180deg, rgba(8, 17, 29, 0.98), rgba(15, 27, 42, 0.98));
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
}

.trust-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(50, 213, 202, 0.08), rgba(243, 196, 110, 0.05), transparent);
    transform: translateX(-70%);
    animation: stripSweep 16s ease-in-out infinite;
}

.trust-strip span {
    position: relative;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(185, 203, 220, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(244, 248, 251, 0.04);
    transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.trust-strip span::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--accent-cyan);
    box-shadow: 0 0 14px rgba(50, 213, 202, 0.46);
}

.trust-strip span:hover {
    transform: translateY(-2px);
    color: var(--text-primary);
    border-color: rgba(50, 213, 202, 0.38);
    box-shadow: 0 0 20px rgba(50, 213, 202, 0.1);
}

.pain-section,
.section,
.operation-section,
.integrations-section,
.pricing-section,
.final-cta {
    padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.section-heading {
    position: relative;
    max-width: 920px;
    margin-bottom: 38px;
}

.section-heading::after {
    content: "";
    display: block;
    width: min(100%, 520px);
    height: 1px;
    margin-top: 22px;
    background: var(--gradient-neon-line);
    opacity: 0.58;
    animation: headingRail 7s ease-in-out infinite;
}

.pain-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(244, 248, 251, 0.03), rgba(50, 213, 202, 0.04)),
        linear-gradient(180deg, #0f1b2a, #08111d);
    border-bottom: 1px solid var(--border-primary);
}

.pain-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(50, 213, 202, 0.07), transparent 32%),
        repeating-linear-gradient(135deg, transparent 0, transparent 18px, rgba(243, 196, 110, 0.03) 19px, transparent 20px);
}

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

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

.pain-grid article {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border: 1px solid rgba(185, 203, 220, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026)),
        rgba(8, 17, 29, 0.78);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.05), 0 18px 38px rgba(0, 0, 0, 0.25);
}

.pain-grid article::before {
    content: "";
    width: 52px;
    height: 4px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: var(--gradient-neon-line);
    box-shadow: 0 0 18px rgba(50, 213, 202, 0.12);
}

.pain-grid article::after {
    content: none;
    display: none;
}

.pain-grid article:nth-child(2)::after { animation-delay: 0.35s; }
.pain-grid article:nth-child(3)::after { animation-delay: 0.7s; }
.pain-grid article:nth-child(4)::after { animation-delay: 1.05s; }

.pain-grid article:hover::after {
    border-color: transparent;
}

.pain-grid strong {
    color: var(--text-primary);
    font-size: 1.16rem;
    line-height: 1.25;
}

.pain-grid p {
    margin: 18px 0 0;
    color: #b4c4d2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

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

.module-family-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(50, 213, 202, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(50, 213, 202, 0.13), transparent 38%),
        linear-gradient(225deg, rgba(243, 196, 110, 0.08), transparent 44%),
        linear-gradient(180deg, rgba(23, 40, 58, 0.94), rgba(8, 17, 29, 0.98)),
        var(--bg-card);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.06), 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 24px rgba(50, 213, 202, 0.08);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.module-family-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(50, 213, 202, 0.18), transparent),
        repeating-linear-gradient(90deg, transparent 0, transparent 34px, rgba(255, 255, 255, 0.035) 35px, transparent 36px);
    opacity: 0.5;
    transform: translateX(-62%);
}

.module-family-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(50, 213, 202, 0.14), inset 0 0 36px rgba(50, 213, 202, 0.08);
}

.module-family-card:hover {
    transform: translateY(-4px);
    border-color: rgba(50, 213, 202, 0.72);
    box-shadow: inset 0 1px 0 rgba(237, 246, 255, 0.07), 0 22px 50px rgba(0, 0, 0, 0.44), 0 0 34px rgba(50, 213, 202, 0.18);
}

.module-family-card > * {
    position: relative;
    z-index: 1;
}

.module-family-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-primary);
}

.module-family-index {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-inverse);
    background: linear-gradient(135deg, #35f4e6, #4f8cff);
    font-family: var(--font-mono);
    font-weight: 900;
    box-shadow: 0 0 22px rgba(50, 213, 202, 0.28), 0 14px 26px rgba(50, 213, 202, 0.15);
}

.module-family-head h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    line-height: 1;
}

.module-family-head p {
    margin: 8px 0 0;
    color: var(--text-secondary);
}

.branch-module-count {
    width: fit-content;
    max-width: 100%;
    margin-top: 18px;
    padding: 8px 11px;
    border: 1px solid rgba(243, 196, 110, 0.48);
    border-radius: 8px;
    color: var(--accent-gold);
    background: rgba(243, 196, 110, 0.1);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(243, 196, 110, 0.08);
}

.module-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.module-item {
    position: relative;
    overflow: hidden;
    min-height: 118px;
    display: grid;
    gap: 6px;
    padding: 15px;
    border: 1px solid rgba(50, 213, 202, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(50, 213, 202, 0.07), transparent 42%),
        rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.05);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.module-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 999px;
    background: var(--accent-cyan);
    box-shadow: 0 0 18px rgba(50, 213, 202, 0.5);
}

.module-item::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 14px rgba(243, 196, 110, 0.5);
    opacity: 0.8;
}

.module-item:hover {
    transform: translateY(-2px);
    border-color: rgba(50, 213, 202, 0.48);
    background:
        linear-gradient(135deg, rgba(50, 213, 202, 0.12), transparent 42%),
        rgba(255, 255, 255, 0.065);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.07), 0 12px 26px rgba(0, 0, 0, 0.28), 0 0 22px rgba(50, 213, 202, 0.1);
}

.module-item strong {
    position: relative;
    color: #e7f1fa;
    font-size: 0.98rem;
    padding-right: 18px;
}

.module-item span {
    position: relative;
    color: #aebfcd;
    font-size: 0.9rem;
    line-height: 1.45;
}

@keyframes pageGridDrift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 42px 42px, 42px 42px; }
}

@keyframes industrialGrid {
    from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    to { background-position: 68px 0, 0 68px, 0 0, 0 0, 0 0; }
}

@keyframes neonRail {
    0%, 100% { opacity: 0.42; transform: scaleX(0.88); }
    50% { opacity: 0.92; transform: scaleX(1); }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes proofSignal {
    0%, 100% {
        opacity: 0.24;
        transform: scaleX(0.34);
    }
    50% {
        opacity: 0.72;
        transform: scaleX(1);
    }
}

@keyframes commandScanner {
    0%, 42% { transform: translateX(-64%); opacity: 0; }
    55% { opacity: 0.46; }
    82%, 100% { transform: translateX(64%); opacity: 0; }
}

@keyframes statusBlink {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
}

@keyframes metricLoad {
    0%, 100% {
        opacity: 0.38;
        transform: scaleX(0.42);
    }
    50% {
        opacity: 0.9;
        transform: scaleX(1);
    }
}

@keyframes conveyorLight {
    0%, 28% { transform: translateX(-130%); opacity: 0; }
    48% { opacity: 1; }
    74%, 100% { transform: translateX(260%); opacity: 0; }
}

@keyframes modulePass {
    0%, 42% { transform: translateX(0); opacity: 0; }
    55% { opacity: 0.78; }
    82%, 100% { transform: translateX(460%); opacity: 0; }
}

@keyframes terminalPulse {
    0%, 100% { opacity: 0.64; }
    50% { opacity: 1; }
}

@keyframes stripSweep {
    0%, 38% { transform: translateX(-70%); opacity: 0; }
    55% { opacity: 0.9; }
    82%, 100% { transform: translateX(70%); opacity: 0; }
}

@keyframes headingRail {
    0%, 100% {
        opacity: 0.34;
        transform: scaleX(0.82);
        transform-origin: left center;
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1);
        transform-origin: left center;
    }
}

@keyframes painSignal {
    0%, 100% {
        opacity: 0.42;
        background-position: 0 0;
    }
    50% {
        opacity: 0.78;
        background-position: 14px 0;
    }
}

@keyframes conveyorRail {
    0%, 100% { opacity: 0.34; transform: translateX(-18px); }
    50% { opacity: 0.86; transform: translateX(18px); }
}

@keyframes timelineRunner {
    0%, 8% { top: 24px; }
    92%, 100% { top: calc(100% - 40px); }
}

@keyframes timelineSweep {
    0%, 42% { transform: translateX(-80%); opacity: 0; }
    56% { opacity: 0.78; }
    84%, 100% { transform: translateX(80%); opacity: 0; }
}

@keyframes integrationGrid {
    0%, 100% { opacity: 0.78; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}

@keyframes paymentRail {
    0%, 100% { opacity: 0.34; transform: scaleX(0.76); }
    50% { opacity: 0.88; transform: scaleX(1); }
}

@keyframes pixCore {
    0%, 100% { opacity: 0.38; transform: scale(0.96); }
    50% { opacity: 0.72; transform: scale(1); }
}

@keyframes checklistSweep {
    0%, 46% { transform: translateX(-100%); opacity: 0; }
    60% { opacity: 0.72; }
    88%, 100% { transform: translateX(100%); opacity: 0; }
}

@keyframes cardScan {
    0%, 45% { transform: translateX(-86%); opacity: 0; }
    58% { opacity: 0.78; }
    86%, 100% { transform: translateX(86%); opacity: 0; }
}

@keyframes ctaGrid {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 0, 56px 0; }
}

@media (prefers-reduced-motion: reduce) {
    body::before,
    .marketing-header::after,
    .hero-section,
    .hero-copy,
    .hero-proof span::before,
    .hero-command,
    .command-frame,
    .command-frame::after,
    .command-topbar span,
    .command-status::after,
    .command-flow i::before,
    .command-modules article::after,
    .command-terminal span,
    .trust-strip::before,
    .section-heading::after,
    .pain-grid article::after,
    .module-family-card::before,
    .operation-section::after,
    .timeline::after,
    .timeline div::after,
    .integrations-section::before,
    .integrations-section::after,
    .integration-copy::after,
    .integration-checks span::after,
    .gateway-card::after,
    .price-card::before,
    .final-cta::before,
    .final-cta::after {
        animation: none;
    }
}

.feature-grid article,
.price-card {
    min-height: 230px;
    padding: 22px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: var(--gradient-card);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.05), 0 12px 28px rgba(0, 0, 0, 0.32);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--text-inverse);
    background: var(--gradient-primary);
    font-family: var(--font-mono);
    font-weight: 900;
    box-shadow: var(--shadow-neon);
}

.pain-grid article,
.feature-grid article,
.gateway-card,
.price-card {
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pain-grid article:hover,
.feature-grid article:hover,
.gateway-card:hover,
.price-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 214, 208, 0.34);
    box-shadow: inset 0 1px 0 rgba(237, 246, 255, 0.06), 0 20px 46px rgba(0, 0, 0, 0.42);
}

.feature-grid p,
.operation-copy p,
.price-card p,
.final-cta p {
    color: var(--text-secondary);
}

.operation-section {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
    background: linear-gradient(180deg, rgba(11, 23, 40, 0.72), rgba(7, 17, 31, 0.94));
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.operation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(90deg, transparent 0, transparent 46px, rgba(50, 213, 202, 0.035) 47px, transparent 48px),
        linear-gradient(135deg, rgba(50, 213, 202, 0.07), transparent 34%);
}

.operation-section::after {
    content: "";
    position: absolute;
    right: clamp(20px, 5vw, 72px);
    top: 48px;
    width: min(42vw, 520px);
    height: 1px;
    background: var(--gradient-neon-line);
    opacity: 0.62;
    animation: conveyorRail 8s ease-in-out infinite;
}

.operation-copy {
    position: sticky;
    z-index: 1;
    top: 104px;
}

.timeline {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-gold), var(--accent-green));
    box-shadow: 0 0 18px rgba(50, 213, 202, 0.18);
}

.timeline::after {
    content: none;
    display: none;
}

.timeline div {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: rgba(23, 43, 67, 0.58);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.04);
}

.timeline div::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(50, 213, 202, 0.11), transparent);
    transform: translateX(-80%);
    animation: timelineSweep 8s ease-in-out infinite;
}

.timeline div:nth-child(2)::after { animation-delay: 0.28s; }
.timeline div:nth-child(3)::after { animation-delay: 0.56s; }
.timeline div:nth-child(4)::after { animation-delay: 0.84s; }
.timeline div:nth-child(5)::after { animation-delay: 1.12s; }

.timeline strong {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-inverse);
    border-radius: 8px;
    background: var(--gradient-primary);
    font-family: var(--font-mono);
    font-size: 1.25rem;
    box-shadow: var(--shadow-neon);
}

.timeline span {
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    font-weight: 750;
}

.integrations-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 17, 31, 0.9), rgba(11, 23, 40, 0.76)),
        var(--bg-primary);
    border-bottom: 1px solid var(--border-primary);
}

.integrations-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(37, 214, 208, 0.08), transparent 36%),
        linear-gradient(180deg, transparent, rgba(240, 183, 94, 0.06));
    animation: integrationGrid 18s ease-in-out infinite;
}

.integrations-section::after {
    content: "";
    position: absolute;
    left: clamp(20px, 5vw, 72px);
    right: clamp(20px, 5vw, 72px);
    bottom: 42px;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(50, 213, 202, 0.7), rgba(243, 196, 110, 0.52), transparent);
    box-shadow: 0 0 24px rgba(50, 213, 202, 0.14);
    animation: paymentRail 6.5s ease-in-out infinite;
}

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

.integrations-layout {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
}

.integration-copy {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(0, 168, 232, 0.28);
    border-radius: 8px;
    background: var(--gradient-card);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.05), 0 14px 34px rgba(0, 0, 0, 0.34);
}

.integration-copy::after {
    content: none;
    display: none;
}

.integration-copy p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.integration-checks {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.integration-checks span {
    position: relative;
    overflow: hidden;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: rgba(6, 14, 26, 0.48);
    font-weight: 800;
}

.integration-checks span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(50, 213, 202, 0.11), transparent);
    transform: translateX(-100%);
    animation: checklistSweep 7.2s ease-in-out infinite;
}

.integration-checks span:nth-child(2)::after { animation-delay: 0.3s; }
.integration-checks span:nth-child(3)::after { animation-delay: 0.6s; }
.integration-checks span:nth-child(4)::after { animation-delay: 0.9s; }

.integration-checks span::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--neon-cyan);
    box-shadow: 0 0 14px rgba(37, 214, 208, 0.34);
}

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

.gateway-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: var(--gradient-card);
    box-shadow: inset 0 1px 0 rgba(212, 228, 244, 0.05), 0 12px 30px rgba(0, 0, 0, 0.32);
}

.gateway-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(50, 213, 202, 0.14);
    border-radius: 8px;
    pointer-events: none;
}

.gateway-card::after {
    content: none;
    display: none;
}

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

.gateway-kicker {
    width: fit-content;
    max-width: 100%;
    padding: 7px 10px;
    color: var(--text-inverse);
    border-radius: 8px;
    background: var(--gradient-primary);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: var(--shadow-neon);
}

.gateway-card h3 {
    margin-top: 22px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.gateway-card p {
    margin: 18px 0 0;
    color: var(--text-secondary);
}

.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(50, 213, 202, 0.06), transparent 34%),
        repeating-linear-gradient(0deg, transparent 0, transparent 36px, rgba(243, 196, 110, 0.025) 37px, transparent 38px);
}

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

.pricing-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 18px;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 16px;
    scroll-snap-type: x proximity;
    scrollbar-color: var(--primary) rgba(10, 22, 40, 0.88);
    scrollbar-width: thin;
}

.pricing-grid::-webkit-scrollbar {
    height: 8px;
}

.pricing-grid::-webkit-scrollbar-track {
    background: rgba(10, 22, 40, 0.88);
    border-radius: 999px;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 999px;
}

.price-card small {
    color: var(--accent-gold);
    font-weight: 900;
    text-transform: uppercase;
}

.price-card {
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 42%, rgba(50, 213, 202, 0.12) 48%, transparent 56%);
    transform: translateX(-86%);
    animation: cardScan 8.5s ease-in-out infinite;
}

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

.price-card h3 {
    margin-top: 12px;
    margin-bottom: 4px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 3.25rem;
}

.price-card h3 span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-card h4 {
    margin: 0 0 12px;
    color: var(--accent-cyan);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
}

.price-card ul {
    margin: 20px 0 0;
    padding-left: 18px;
    color: var(--text-secondary);
}

.price-card li + li {
    margin-top: 8px;
}

.price-card.highlighted {
    border-color: rgba(240, 183, 94, 0.5);
    box-shadow: 0 0 0 1px rgba(240, 183, 94, 0.16), 0 22px 54px rgba(0, 0, 0, 0.46);
}

.final-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    color: var(--text-primary);
    background:
        linear-gradient(135deg, rgba(23, 43, 67, 0.94), rgba(7, 17, 31, 0.98)),
        var(--bg-primary);
    border-top: 1px solid var(--border-primary);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(50, 213, 202, 0.09), transparent 45%),
        repeating-linear-gradient(90deg, transparent 0, transparent 54px, rgba(255, 255, 255, 0.035) 55px, transparent 56px);
    animation: ctaGrid 15s linear infinite;
}

.final-cta::after {
    content: "";
    position: absolute;
    left: clamp(20px, 5vw, 72px);
    right: clamp(20px, 5vw, 72px);
    bottom: 0;
    height: 2px;
    background: var(--gradient-neon-line);
    animation: neonRail 6s ease-in-out infinite;
}

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

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.final-cta h2,
.final-cta p {
    color: var(--text-primary);
}

.final-cta p {
    max-width: 780px;
    opacity: 0.82;
}

.marketing-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(54px, 7vw, 88px) clamp(20px, 5vw, 72px) 28px;
    background:
        linear-gradient(135deg, rgba(37, 214, 208, 0.06), transparent 34%),
        linear-gradient(270deg, rgba(79, 140, 255, 0.08), transparent 38%),
        linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    border-top: 1px solid var(--border-primary);
}

.marketing-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: clamp(20px, 5vw, 72px);
    right: clamp(20px, 5vw, 72px);
    height: 1px;
    background: var(--gradient-neon-line);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(160px, 0.55fr) minmax(190px, 0.7fr) minmax(300px, 1fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: start;
}

.footer-brand,
.footer-column,
.footer-cta {
    position: relative;
    z-index: 1;
}

.footer-brand p,
.footer-cta p {
    max-width: 520px;
    color: var(--text-secondary);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-badges span {
    padding: 8px 12px;
    border: 1px solid var(--border-primary);
    border-radius: 999px;
    color: var(--text-secondary);
    background: rgba(16, 32, 64, 0.56);
    font-size: 0.88rem;
    font-weight: 800;
}

.footer-column {
    display: grid;
    gap: 10px;
}

.footer-column h2,
.footer-cta h2 {
    margin: 0 0 10px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.footer-column a,
.footer-column span {
    color: var(--text-secondary);
    font-weight: 700;
}

.footer-column a:hover {
    color: var(--neon-cyan);
}

.footer-cta {
    padding: 24px;
    border: 1px solid rgba(0, 168, 232, 0.32);
    border-radius: 8px;
    background: var(--gradient-card);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
}

.footer-cta .btn-primary {
    margin-top: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: clamp(36px, 5vw, 62px);
    padding-top: 18px;
    border-top: 1px solid var(--border-primary);
    color: var(--text-tertiary);
    font-size: 0.92rem;
}

@media (max-width: 1100px) {
    .hero-section {
        grid-template-columns: 1fr;
        align-items: end;
    }

    .operation-section {
        grid-template-columns: 1fr;
    }

    .integrations-layout,
    .gateway-grid {
        grid-template-columns: 1fr;
    }

    .product-preview,
    .hero-command {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
        margin-top: 24px;
        transform: none;
    }

    .pain-grid,
    .feature-grid,
    .module-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .operation-copy {
        position: static;
    }

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

@media (max-width: 760px) {
    .marketing-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
    }

    .marketing-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 36px;
        grid-template-columns: 1fr;
    }

    .hero-section::after {
        inset: 18px 20px auto;
        width: auto;
        height: 1px;
    }

    h1 {
        font-size: 3.4rem;
        line-height: 0.95;
    }

    h2 {
        font-size: 2.15rem;
    }

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

    .hero-proof,
    .command-grid,
    .preview-grid,
    .branch-preview-grid,
    .pain-grid,
    .feature-grid,
    .module-showcase,
    .module-list,
    .final-cta {
        grid-template-columns: 1fr;
    }

    .command-frame {
        padding: 14px;
    }

    .command-flow {
        grid-template-columns: 1fr;
    }

    .command-flow i {
        width: 2px;
        height: 18px;
        justify-self: center;
    }

    .final-cta-actions {
        justify-content: stretch;
    }

    .final-cta-actions a {
        width: 100%;
    }

    .pricing-section {
        overflow: hidden;
    }

    .pricing-grid {
        grid-auto-columns: minmax(280px, calc(100vw - 40px));
        margin-inline: -20px;
        padding-inline: 20px;
        scroll-snap-type: x mandatory;
    }

    .flow-panel {
        grid-template-columns: 1fr;
    }

    .flow-line {
        width: 2px;
        height: 18px;
        justify-self: center;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .final-cta .btn-primary {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    .marketing-header,
    .hero-section,
    .trust-strip,
    .pain-section,
    .operation-section,
    .integrations-section,
    .pricing-section,
    .final-cta,
    .marketing-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .marketing-brand {
        max-width: 100%;
    }

    .marketing-brand span,
    .marketing-nav a,
    .hero-lead,
    .hero-proof span,
    .command-flow span,
    .command-modules strong,
    .footer-brand p,
    .footer-column a,
    .footer-column span {
        overflow-wrap: anywhere;
    }

    .marketing-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
    }

    .marketing-nav a {
        min-height: 42px;
        justify-content: center;
        text-align: center;
    }

    h1 {
        font-size: clamp(2.35rem, 17vw, 3rem);
    }

    h2 {
        font-size: clamp(1.65rem, 10vw, 2rem);
    }

    .hero-actions,
    .final-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-actions a,
    .final-cta-actions a,
    .nav-login {
        width: 100%;
    }

    .command-frame,
    .product-preview,
    .footer-cta {
        border-radius: 16px;
    }

    .pricing-grid {
        grid-auto-columns: minmax(240px, calc(100vw - 32px));
        margin-inline: -16px;
        padding-inline: 16px;
    }
}

@media (max-width: 340px) {
    .marketing-header,
    .hero-section,
    .trust-strip,
    .pain-section,
    .operation-section,
    .integrations-section,
    .pricing-section,
    .final-cta,
    .marketing-footer {
        padding-left: 12px;
        padding-right: 12px;
    }

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

    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
