/* ── RESET & VARS ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #060910;
    --bg2: #0c1018;
    --bg3: #111620;
    --glow1: rgba(110, 60, 220, 0.18);
    --glow2: rgba(0, 229, 176, 0.12);
    --accent: #00e5b0;
    --accent2: #00c49a;
    --purple: #7c3aff;
    --border: rgba(255, 255, 255, 0.07);
    --border-h: rgba(0, 229, 176, 0.22);
    --text: #eef2f0;
    --muted: #6b7e7a;
    --muted2: #a0b5b0;
    --font-h: 'Space Grotesk', sans-serif;
    --font-b: 'DM Sans', sans-serif;
    --r: 14px;
    --r-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent2);
    border-radius: 2px;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 10px 20px 10px 16px;
    background: rgba(6, 9, 16, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 100px;
    width: min(96vw, 1040px);
    transition: background 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-svg {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.logo-text em {
    color: var(--accent);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted2);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    background: var(--accent);
    color: #04100d;
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 13px;
    padding: 9px 18px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--accent2);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 229, 176, 0.3);
}

.nav-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.nav-cta::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 65%);
    left: var(--gx, 50%);
    top: var(--gy, 50%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.nav-cta:hover::before {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
}

.nav-cta>* {
    position: relative;
    z-index: 1;
}

/* ── GLOW BG ── */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 120px 0 40px;
    overflow: hidden;
}

/* Spotlight that follows mouse */
.hero-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(circle 500px at var(--sx, 50%) var(--sy, 50%),
            rgba(0, 229, 176, 0.07),
            rgba(124, 58, 255, 0.04) 40%,
            transparent 70%);
}

/* Split layout */
.hero-inner {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    min-width: 0;
    padding-right: 40px;
}

.hero-right {
    flex: 1;
    min-width: 0;
    height: 520px;
    position: relative;
}

/* Spline container */
.spline-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--r);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
}

#spline-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Loader while 3D scene loads */
.spline-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(11, 16, 28, 0.9), rgba(6, 9, 16, 0.8));
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.spline-loader span {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--font-b);
}

.loader-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin-ring 0.8s linear infinite;
}

@keyframes spin-ring {
    to {
        transform: rotate(360deg);
    }
}

.hero-glow-1 {
    width: 700px;
    height: 700px;
    background: var(--glow1);
    top: -200px;
    left: 30%;
    transform: translateX(-50%);
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--glow2);
    bottom: -100px;
    right: 10%;
}

.hero-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 58, 255, 0.12);
    border: 1px solid rgba(124, 58, 255, 0.3);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 13px;
    color: #b39dff;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fade-up 0.8s ease both;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #7c3aff;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(124, 58, 255, 0);
    }
}

h1 {
    font-family: var(--font-h);
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -2.5px;
    max-width: 640px;
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
    animation: fade-up 0.8s 0.1s ease both;
}

h1 .hl {
    color: var(--accent);
}

.hero-desc {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--muted2);
    max-width: 480px;
    margin: 0 0 44px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    animation: fade-up 0.8s 0.2s ease both;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    animation: fade-up 0.8s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #040e0b;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 26px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-b);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 65%);
    left: var(--gx, 50%);
    top: var(--gy, 50%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
}

.btn-primary>* {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 229, 176, 0.3);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 100px;
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-b);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 176, 0.18) 0%, transparent 65%);
    left: var(--gx, 50%);
    top: var(--gy, 50%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.btn-ghost:hover::before {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
}

.btn-ghost>* {
    position: relative;
    z-index: 1;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
    animation: fade-up 0.8s 0.4s ease both;
    flex-wrap: wrap;
}

.proof-avatars {
    display: flex;
}

.proof-avatars .av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg3);
    object-fit: cover;
}

.proof-avatars .av:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 13px;
    color: var(--muted2);
}

.proof-text strong {
    color: var(--text);
}

.proof-sep {
    width: 1px;
    height: 28px;
    background: var(--border);
}

.proof-checks {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted2);
}

.check-item svg {
    color: var(--accent);
    flex-shrink: 0;
}


/* ── TICKER ── */
#ticker {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.015);
}

#ticker::before,
#ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 2;
}

#ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

#ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

/* ── SECTION BASICS ── */
section {
    padding: 110px 24px;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.label::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--accent);
}

h2 {
    font-family: var(--font-h);
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.sec-desc {
    font-size: 17px;
    color: var(--muted2);
    max-width: 500px;
    font-weight: 300;
    margin-bottom: 64px;
    line-height: 1.7;
}

/* ── BENTO FEATURES ── */
#features {
    background: var(--bg);
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(120px, auto);
    gap: 14px;
}

.bc {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.bc:hover {
    border-color: var(--border-h);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.bc::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 229, 176, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.bc:hover::after {
    opacity: 1;
}

.bc-a {
    grid-column: span 5;
    grid-row: span 2;
}

.bc-b {
    grid-column: span 7;
}

.bc-c {
    grid-column: span 4;
}

.bc-d {
    grid-column: span 3;
}

.bc-e {
    grid-column: span 7;
}

.bc-f {
    grid-column: span 5;
}

.bc-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 229, 176, 0.08);
    border: 1px solid rgba(0, 229, 176, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}

.bc h3 {
    font-family: var(--font-h);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
}

.bc p {
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.7;
    max-width: 320px;
}

/* Big number in bento */
.bc-stat {
    font-family: var(--font-h);
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--accent), #7c3aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-top: 16px;
}

/* Mini live widget inside bento */
.mini-widget {
    margin-top: 20px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 14px 18px;
}

.mini-widget .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.mini-widget .row:last-child {
    border-bottom: none;
}

.mini-widget .row .key {
    color: var(--muted2);
}

.mini-widget .row .val {
    font-weight: 600;
    color: var(--text);
}

.mini-widget .row .good {
    color: var(--accent);
}

.mini-widget .row .bad {
    color: #ff6b6b;
}

/* Progress bar */
.prog-bar {
    height: 4px;
    background: var(--bg3);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.prog-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--purple));
    border-radius: 2px;
    transition: width 1s ease;
}

/* ── METHOD STEPS ── */
#methode {
    background: var(--bg2);
    overflow: hidden;
}

.method-head {
    text-align: center;
}

.method-head .sec-desc {
    margin: 0 auto 72px;
    text-align: center;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.25;
}

.step-card {
    padding: 48px 36px;
    text-align: center;
}

.step-no {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border-h);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s;
}

.step-card:hover .step-no {
    box-shadow: 0 0 0 8px rgba(0, 229, 176, 0.06);
}

.step-card h3 {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--muted2);
}

/* ── USE CASES ── */
#usecases {
    background: var(--bg);
}

.cases-head {
    max-width: 560px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 0;
}

.case-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.case-card:hover::before {
    opacity: 1;
}

.case-card:hover {
    border-color: var(--border-h);
    transform: translateY(-4px);
}

.case-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 229, 176, 0.08);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(0, 229, 176, 0.15);
    display: inline-block;
    margin-bottom: 20px;
}

.case-card h3 {
    font-family: var(--font-h);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.case-card p {
    font-size: 14px;
    color: var(--muted2);
    margin-bottom: 28px;
    line-height: 1.7;
}

.case-metrics {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.cm-val {
    font-family: var(--font-h);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    letter-spacing: -1px;
}

.cm-lbl {
    font-size: 12px;
    color: var(--muted);
}

/* ── COMPARISON ── */
#compare {
    background: var(--bg2);
    text-align: center;
}

#compare .sec-desc {
    margin: 0 auto 56px;
    text-align: center;
}

.compare-table {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    max-width: 780px;
    margin: 0 auto;
}

.cmp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.cmp-row:last-child {
    border-bottom: none;
}

.cmp-cell {
    padding: 18px 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid var(--border);
}

.cmp-cell:last-child {
    border-right: none;
}

.cmp-row.header .cmp-cell {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    background: var(--bg2);
    padding: 16px 24px;
}

.cmp-row.header .cmp-cell.ours {
    color: var(--accent);
    background: rgba(0, 229, 176, 0.04);
}

.cmp-cell .ok {
    color: var(--accent);
}

.cmp-cell .nok {
    color: #ff5e5e;
}

.cmp-cell.ours {
    background: rgba(0, 229, 176, 0.03);
}

/* ── PRICING ── */
#pricing {
    background: #050810;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 229, 176, 0.05);
}

#pricing h2 {
    margin-bottom: 16px;
    text-align: center;
}

.pricing-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(10, 18, 40, 0.6);
    border: 1px solid rgba(0, 229, 176, 0.1);
    border-radius: 16px;
    padding: 32px 40px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(0, 229, 176, 0);
    transition: background 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(0, 229, 176, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 229, 176, 0.05);
}

.pricing-card:hover::before {
    background: rgba(0, 229, 176, 0.8);
}

.pc-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.pc-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #e8f4f0;
    margin: 0;
}

.pc-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ptag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid;
    letter-spacing: 0.03em;
}

.ptag-green {
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.ptag-orange {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
}

.ptag-purple {
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
}

.ptag-blue {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.pc-desc {
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.pc-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-price {
    font-size: 14px;
    color: var(--muted2);
}

.pc-price strong {
    font-size: 20px;
    color: var(--accent);
    font-weight: 700;
    margin-left: 4px;
}

.pc-views {
    font-size: 13px;
    color: #737c94;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

@media (max-width: 768px) {
    .pc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pricing-card {
        padding: 24px;
    }

    .pc-price-row {
        flex-wrap: wrap;
    }
}

/* ── PORTFOLIO ── */
#portfolio {
    background: #050810;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#portfolio h2 {
    margin-bottom: 16px;
    text-align: center;
}

.pf-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 176, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* List */
.pf-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 0;
}

/* Card */
.pf-card {
    background: rgba(10, 18, 40, 0.85);
    border: 1px solid rgba(0, 229, 176, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pf-card:hover {
    border-color: rgba(0, 229, 176, 0.3);
    box-shadow: 0 0 60px rgba(0, 229, 176, 0.07), 0 24px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.pf-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
}

/* Alt: image on right */
.pf-card--alt .pf-card-inner {
    direction: rtl;
}

.pf-card--alt .pf-card-inner>* {
    direction: ltr;
}

/* Image column */
.pf-img-col {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pf-img-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.pf-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(1.3);
    transition: transform 0.6s ease, filter 0.3s ease;
}

.pf-card:hover .pf-img-wrap img {
    transform: scale(1.05);
    filter: brightness(0.85) saturate(1.4);
}

.pf-img-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 176, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Performance badges */
.pf-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 229, 176, 0.08);
}

.pf-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.04em;
}

.pf-badge--green {
    background: rgba(0, 229, 176, 0.1);
    color: var(--accent);
    border-color: rgba(0, 229, 176, 0.25);
}

/* Content / info column */
.pf-info-col {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: left;
}

.pf-num {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 229, 176, 0.08);
    letter-spacing: -4px;
    margin-bottom: -12px;
}

.pf-info-col h3 {
    font-size: 22px;
    font-weight: 800;
    color: #e8f4f0;
    margin: 0;
    line-height: 1.3;
}

.pf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-desc {
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.7;
    margin: 0;
}

.pf-desc strong {
    color: #c0d4cc;
    font-weight: 600;
}

/* CTA link */
.pf-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.03em;
    border: 1px solid rgba(0, 229, 176, 0.25);
    border-radius: 100px;
    padding: 8px 20px;
    background: rgba(0, 229, 176, 0.05);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    width: fit-content;
}

.pf-cta:hover {
    background: rgba(0, 229, 176, 0.15);
    border-color: rgba(0, 229, 176, 0.5);
    transform: translateX(4px);
}

/* Footer CTA */
.pf-footer-cta {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .pf-card-inner {
        grid-template-columns: 1fr;
    }

    .pf-card--alt .pf-card-inner {
        direction: ltr;
    }

    .pf-img-col {
        max-height: 260px;
    }

    .pf-info-col {
        padding: 28px;
    }

    .pf-num {
        font-size: 48px;
    }
}

/* ── INTEGRATIONS TICKER ── */
#integrations {
    background: var(--bg);
    text-align: center;
    overflow: hidden;
    /* Hide the overflow from the ticker */

}

#integrations .sec-desc {
    margin: 0 auto 56px;
    text-align: center;
}

/* Ticker Container */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Optional: Fading edges to make the ticker blend in */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* The track holding all the cards */
.ticker-track {
    display: flex;
    gap: 16px;
    width: max-content;
    /* Animate from 0 to half of its width (since content will be duplicated) */
    animation: ticker-scroll 30s linear infinite;
}

/* Pause animation on hover */
.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    to {
        transform: translateX(calc(-50% - 8px));
        /* 50% width + half of the gap */
    }
}

.int-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: border-color 0.3s, transform 0.25s;
    width: 200px;
    /* Give a fixed width so they don't squish */
    flex-shrink: 0;
}

.int-card:hover {
    border-color: var(--border-h);
    transform: translateY(-4px);
}

.int-card .ico {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.int-card span {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted2);
}

/* ── CTA ── */
#cta,
#connect {
    background: var(--bg2);
    text-align: center;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

#cta .glow-cta,
#connect .glow-cta {
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 229, 176, 0.07) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    pointer-events: none;
}

#cta .glow-purple,
#connect .glow-purple {
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124, 58, 255, 0.1) 0%, transparent 65%);
    top: 20%;
    left: 15%;
    position: absolute;
    pointer-events: none;
}

#cta h2,
#connect h2 {
    max-width: 640px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

#cta .sec-desc,
#connect .sec-desc {
    margin: 0 auto 44px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* SOCIAL CONNECT 3D CONTAINER */
.social-connect-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.social-container {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.4), 0 0 80px rgba(0, 229, 176, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    padding: 32px;
    transition: all 0.5s ease;
}

.social-container:hover {
    transform: scale(1.02);
}

.social-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-icon .icon-container {
    display: inline-flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-svg {
    width: 32px;
    height: 32px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.social-icon:hover .icon-container {
    transform: translateY(-10px) scale(1.1);
}

.social-icon:hover .icon-label {
    opacity: 1;
    transform: translateY(5px);
}

.social-icon .icon-label {
    margin-top: 12px;
    color: var(--text);
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-family: var(--font-b);
}

/* Custom platform hovers */
.social-icon.linkedin:hover .icon-container {
    background: #0077b5;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.6);
}

.social-icon.tiktok:hover .icon-container {
    background: #000000;
    border-color: #00f2fe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5), -5px 0 10px rgba(254, 44, 85, 0.5);
}

.social-icon.youtube:hover .icon-container {
    background: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.social-icon:hover .social-svg {
    opacity: 1;
    animation: socialShake 0.5s;
}

@keyframes socialShake {

    0%,
    100% {
        transform: translateX(0) rotate(0);
    }

    20% {
        transform: translateX(-5px) rotate(-5deg);
    }

    40% {
        transform: translateX(5px) rotate(5deg);
    }

    60% {
        transform: translateX(-5px) rotate(-5deg);
    }

    80% {
        transform: translateX(5px) rotate(5deg);
    }
}

.social-icon .icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover .icon-container::before {
    opacity: 1;
}

/* CONTACT INFO */
.contact-info {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted2);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 32px;
    border-radius: 100px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-item:hover {
    color: var(--text);
    border-color: rgba(0, 229, 176, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 229, 176, 0.1);
    background: rgba(0, 229, 176, 0.05);
}

/* ── FOOTER ── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 64px 24px 40px;
}

.footer-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted2);
    margin-top: 16px;
    max-width: 260px;
    line-height: 1.8;
}

.footer-col h4 {
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--muted2);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.v {
    opacity: 1;
    transform: none;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--bg2);
    text-align: center;
}

.testi-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.testi-stack {
    position: relative;
    width: 340px;
    height: 440px;
    margin: 0 auto;
    -webkit-user-select: none;
    user-select: none;
}

.testi-card {
    position: absolute;
    inset: 0;
    width: 340px;
    height: 430px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, opacity 0.35s ease;
    will-change: transform;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.testi-card.is-front {
    cursor: grab;
    z-index: 3;
    transform: rotate(-6deg) translateX(0%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 229, 176, 0.15);
}

.testi-card.is-front:active {
    cursor: grabbing;
}

.testi-card.is-middle {
    z-index: 2;
    transform: rotate(0deg) translateX(40px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testi-card.is-back {
    z-index: 1;
    transform: rotate(6deg) translateX(80px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0.7;
}

.testi-card.is-hidden {
    z-index: 0;
    transform: scale(0.85) translateY(40px);
    opacity: 0;
    pointer-events: none;
}

/* While dragging */
.testi-card.dragging {
    transition: box-shadow 0.1s ease;
    cursor: grabbing;
    box-shadow: 0 32px 80px rgba(0, 229, 176, 0.15), 0 24px 60px rgba(0, 0, 0, 0.5);
}

.testi-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--border-h);
    object-fit: cover;
    background: var(--bg2);
    flex-shrink: 0;
}

.testi-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--muted2);
    line-height: 1.7;
    text-align: center;
    flex: 1;
}

.testi-quote::before {
    content: '"';
    color: var(--accent);
    font-size: 20px;
    font-style: normal;
}

.testi-quote::after {
    content: '"';
    color: var(--accent);
    font-size: 20px;
    font-style: normal;
}

.testi-author {
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-align: center;
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: -14px;
    text-align: center;
}

.testi-hint {
    font-size: 13px;
    color: var(--muted);
    animation: pulse-hint 2.5s ease-in-out infinite;
}

@keyframes pulse-hint {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-6px);
    }
}

@media (max-width: 960px) {
    .hero-inner {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-left .hero-badge {
        display: inline-flex;
    }

    .hero-left h1 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-left .hero-desc {
        max-width: 100%;
    }

    .hero-left .hero-ctas {
        justify-content: center;
    }

    .hero-left .hero-social-proof {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        max-width: 520px;
        height: 320px;
    }

    .nav-links {
        display: none;
    }

    .bento {
        grid-template-columns: 1fr 1fr;
    }

    .bc-a,
    .bc-b,
    .bc-c,
    .bc-d,
    .bc-e,
    .bc-f {
        grid-column: span 2;
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

    .steps-row::before {
        display: none;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .int-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cmp-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-right {
        display: none;
    }

    .hero-inner {
        padding: 0 16px;
    }

    section {
        padding: 72px 16px;
    }

    nav {
        padding: 8px 12px;
        top: 8px;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .bc-a,
    .bc-b,
    .bc-c,
    .bc-d,
    .bc-e,
    .bc-f {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cmp-cell {
        padding: 14px 14px;
        font-size: 13px;
    }
}