@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS — matching login/register style
   ═══════════════════════════════════════════ */
:root {
    --bg-1: #1a1a2e;
    --bg-2: #16213e;
    --bg-3: #0f0f23;
    --color-primary: #F45D13;
    --color-primary-hover: #ff7a3d;
    --color-primary-dark: #d94a08;
    --color-primary-glow: rgba(244, 93, 19, 0.3);
    --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 1.5rem;
    --radius-sm: 0.75rem;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Lenis handles smooth scroll — native disabled */

/* Safari iOS toolbar hiding — html must be overflow:visible */
html {
    overflow: visible !important;
    overscroll-behavior: auto !important;
    background-color: #1a1a2e;
}

body {
    font-family: var(--font-sans);
    background-color: #1a1a2e;
    background-image: linear-gradient(to bottom right, var(--bg-1), var(--bg-2), var(--bg-3));
    background-attachment: fixed;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: auto !important;
    overscroll-behavior: auto !important;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    line-height: 1.6;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* ═══════════════════════════════════════════
   SELECTION & SCROLLBAR
   ═══════════════════════════════════════════ */
::selection {
    background: rgba(244, 93, 19, 0.3);
    color: #fff;
}

::-webkit-scrollbar {
    width: 0;
    display: none;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(244, 93, 19, 0.2);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(244, 93, 19, 0.4);
}

/* ═══════════════════════════════════════════
   ACCENT OVERLAY (global, matches login page)
   ═══════════════════════════════════════════ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(to top right, rgba(244, 93, 19, 0.15), transparent 60%, rgba(244, 93, 19, 0.08));
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════════
   MATRIX RAIN
   ═══════════════════════════════════════════ */
.matrix-rain {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.matrix-col {
    position: absolute;
    top: -20%;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.12);
    white-space: nowrap;
    animation: matrix-fall linear infinite;
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(calc(120vh + 100%));
    }
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.page-content {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 93, 19, 0.2), transparent);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children .animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children .animate-on-scroll:nth-child(2) {
    transition-delay: 0.08s;
}

.stagger-children .animate-on-scroll:nth-child(3) {
    transition-delay: 0.10s;
}

.stagger-children .animate-on-scroll:nth-child(4) {
    transition-delay: 0.18s;
}

.stagger-children .animate-on-scroll:nth-child(5) {
    transition-delay: 0.24s;
}

.stagger-children .animate-on-scroll:nth-child(6) {
    transition-delay: 0.30s;
}

/* ═══════════════════════════════════════════
   GLASS CARD (matching login card style)
   ═══════════════════════════════════════════ */
.glass-card {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-1);
    z-index: -2;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: -1;
}

.glass-card:hover {
    border-color: rgba(244, 93, 19, 0.2);
}


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 6px 32px rgba(244, 93, 19, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-outline {
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s ease;
    height: 72px;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar.menu-open {
    background: #1a1a2e;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.navbar__logo img {
    width: 2.5rem;
    height: 2.5rem;
    transition: transform 0.3s;
}

.navbar__logo:hover img {
    transform: scale(1.1);
}

.navbar__logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar__link {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.navbar__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.navbar__cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar__login {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.navbar__login:hover {
    color: #fff;
}

.navbar__signup {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    box-shadow: 0 2px 12px var(--color-primary-glow);
}

.navbar__signup:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 4px 20px rgba(244, 93, 19, 0.4);
}

.navbar__signup:active {
    transform: scale(0.95);
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    gap: 5px;
}

.navbar__hamburger span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.navbar__mobile {
    position: fixed;
    inset: 72px 0 0 0;
    background: linear-gradient(to bottom, #1a1a2e, #16213e, #0f0f23);
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 200;
    overflow-y: auto;
}

.navbar__mobile.open {
    opacity: 1;
    pointer-events: auto;
}

/* Stagger animation for links */
.navbar__mobile-link,
.navbar__mobile-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}

.navbar__mobile.open .navbar__mobile-link:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.navbar__mobile.open .navbar__mobile-link:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.navbar__mobile.open .navbar__mobile-link:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.navbar__mobile.open .navbar__mobile-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.navbar__mobile-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.25rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    border-bottom: none;
    position: relative;
}

/* Section-divider style gradient lines */
.navbar__mobile-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.navbar__mobile-link:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.navbar__mobile-link:hover,
.navbar__mobile-link:active {
    color: var(--color-primary);
}

.navbar__mobile-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
}

.navbar__mobile-cta a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.mobile-login {
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-login:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.mobile-login:active {
    transform: scale(0.97);
}

.mobile-signup {
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 4px 24px var(--color-primary-glow);
}

.mobile-signup:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 6px 32px rgba(244, 93, 19, 0.4);
    transform: translateY(-1px);
}

.mobile-signup:active {
    transform: scale(0.97);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 1.5rem 4rem;
    text-align: center;
    overflow: hidden;
}

.hero__content {
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    margin-bottom: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.hero__badge-dot {
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
}

.hero__badge-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.6;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero__badge-dot::after {
    content: '';
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

.hero__badge-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.hero__title {
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero__title .gradient {
    background: linear-gradient(135deg, #fff 10%, var(--color-primary) 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__cursor,
.stream-cursor {
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
    animation: pulse-cursor 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    font-weight: 300;
    font-size: 0.85em;
    line-height: 1;
    vertical-align: middle;
}

@keyframes pulse-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.4);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.hero__fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-3), transparent);
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.hero__orb--1 {
    top: 30%;
    left: 8%;
    width: 8px;
    height: 8px;
    background: rgba(244, 93, 19, 0.25);
    animation-delay: 0s;
}

.hero__orb--2 {
    top: 55%;
    right: 12%;
    width: 6px;
    height: 6px;
    background: rgba(244, 93, 19, 0.15);
    animation-delay: 2s;
}

.hero__orb--3 {
    bottom: 20%;
    left: 18%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    animation-delay: 4s;
}

/* ═══════════════════════════════════════════
   TRUSTED BY
   ═══════════════════════════════════════════ */
.trusted {
    padding: 4rem 1.5rem;
    text-align: center;
}

.trusted__label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 2.5rem;
}

.trusted__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3rem;
}

.trusted__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s;
}

.trusted__item:hover {
    color: rgba(255, 255, 255, 0.4);
}

.trusted__icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.trusted__name {
    font-size: 0.875rem;
    font-weight: 500;
}

.trusted__logo-img {
    height: 48px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.trusted__item:hover .trusted__logo-img {
    opacity: 0.8;
}

/* ═══════════════════════════════════════════
   MOCKUP SCROLL ANIMATION
   ═══════════════════════════════════════════ */
.mockup-section {
    height: 300vh;
    position: relative;
}

.mockup-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 2rem;
    margin-left: -5rem;
}

.mockup-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.mockup-text {
    flex: 0 0 340px;
    margin-left: -8rem;
    margin-top: -1.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.mockup-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.mockup-text__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #ffffff;
}

.mockup-text__title .gradient {
    background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mockup-text__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.mockup-text__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-text__list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.mockup-text__list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.875rem;
}

#mockupCanvas {
    flex: 1;
    max-width: 1100px;
    width: 100%;
    height: auto;
}

@media (max-width: 1440px) {
    .mockup-sticky {
        margin-left: 0;
    }

    #mockupCanvas {
        max-width: 700px;
    }

    .mockup-text {
        flex: 0 0 280px;
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    .mockup-layout {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .mockup-sticky {
        margin-left: 0;
    }

    .mockup-text {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mockup-text__title {
        text-align: center;
    }

    .mockup-text__desc {
        text-align: center;
    }

    .mockup-text__list {
        align-items: center;
    }

    .mockup-text__list li {
        justify-content: center;
    }

    #mockupCanvas {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .mockup-sticky {
        overflow-x: clip;
        overflow-y: visible;
        padding: 0;
        margin-left: 0;
    }

    .mockup-layout {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .mockup-text {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mockup-text__title {
        text-align: center;
    }

    .mockup-text__desc {
        text-align: center;
    }

    .mockup-text__list {
        align-items: center;
    }

    .mockup-text__list li {
        justify-content: center;
    }

    #mockupCanvas {
        max-width: 160%;
        margin: 0 -30%;
    }
}

/* ═══════════════════════════════════════════
   TERMINAL CHAT DEMO
   ═══════════════════════════════════════════ */
.terminal {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.terminal__bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal__dots {
    display: flex;
    gap: 0.5rem;
}

.terminal__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal__dot--red {
    background: #ff5f57;
}

.terminal__dot--yellow {
    background: #febc2e;
}

.terminal__dot--green {
    background: #28c840;
}

.terminal__tabs {
    display: flex;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

.terminal__tab {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
}

.terminal__tab--active {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
}

.terminal__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 260px;
}

.terminal__msg {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.terminal__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.terminal__avatar--user {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

.terminal__avatar--ai {
    background: var(--color-primary);
    color: #ffffff;
    overflow: hidden;
}

.terminal__ai-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(10);
}

.terminal__bubble {
    padding: 0.875rem 1.125rem;
    border-radius: 0.75rem;
    line-height: 1.65;
    font-size: 0.9375rem;
    max-width: calc(100% - 44px);
}

.terminal__bubble--user {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal__bubble--ai {
    background: rgba(244, 93, 19, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(244, 93, 19, 0.1);
}

.terminal__ai-text {
    display: inline;
}

.terminal__cursor {
    color: var(--color-primary);
    animation: blink-cursor 1s step-end infinite;
    font-weight: 300;
    display: none;
}

.terminal__cursor.visible {
    display: inline;
}

/* ═══════════════════════════════════════════
   SECTION HEADER (shared)
   ═══════════════════════════════════════════ */
.section {
    padding: 7rem 1.5rem;
}

.section__tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(244, 93, 19, 0.7);
    margin-bottom: 1rem;
    text-align: center;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.section__title .muted {
    color: rgba(255, 255, 255, 0.35);
}

.section__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════ */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* ─── Bento Grid ─── */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.bento__card {
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(244, 93, 19, 0.08);
}

.bento__card--lg {
    grid-column: span 3;
    min-height: 200px;
}

.bento__card--md {
    grid-column: span 2;
    min-height: 180px;
}

.bento__card--full {
    grid-column: span 6;
    min-height: 160px;
}

.bento__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.bento__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.bento__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background: rgba(244, 93, 19, 0.1);
    border: 1px solid rgba(244, 93, 19, 0.2);
    padding: 0.2em 0.6em;
    border-radius: 999px;
    z-index: 1;
}

/* ─── Clickable bento cards ─── */
.bento__card--clickable {
    cursor: pointer;
    position: relative;
}

.bento__expand {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(244, 93, 19, 0.1);
    border: 1px solid rgba(244, 93, 19, 0.2);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 300;
    transition: background 0.2s, transform 0.2s;
}

.bento__card--clickable:hover .bento__expand {
    background: rgba(244, 93, 19, 0.2);
    transform: scale(1.1);
}

/* ─── Feature Modal ─── */
.feature-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.feature-modal.open {
    opacity: 1;
    pointer-events: all;
}

.feature-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-modal__card {
    position: relative;
    max-width: 640px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    scrollbar-width: none;
}

.feature-modal__card::-webkit-scrollbar {
    display: none;
}

.feature-modal.open .feature-modal__card {
    transform: scale(1) translateY(0);
}

.feature-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-modal__close:active {
    transform: scale(0.85);
}

.feature-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}

.feature-modal__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Carousel */
.feature-modal__carousel {
    position: relative;
}

.feature-modal__slides {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: height 0.4s ease;
}

.feature-modal__slides img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
    object-fit: contain;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
}

.feature-modal__slides img.active {
    opacity: 1;
    position: relative;
}

.feature-modal__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.feature-modal__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-modal__dot.active {
    width: 24px;
    background: var(--color-primary);
}

.feature-modal__dots:empty {
    display: none;
}

@media (max-width: 768px) {
    .bento {
        grid-template-columns: 1fr;
    }

    .bento__card--lg,
    .bento__card--md,
    .bento__card--full {
        grid-column: span 1;
    }
}

.feature-card {
    padding: 1.75rem;
}

.feature-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-sm);
    background: rgba(244, 93, 19, 0.08);
    border: 1px solid rgba(244, 93, 19, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}

.glass-card:hover .feature-card__icon {
    background: rgba(244, 93, 19, 0.12);
    transform: scale(1.05);
}

.feature-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.feature-card__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps::before {
    display: none;
}

.step {
    text-align: center;
}

.step__circle-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    position: relative;
    margin-bottom: 2rem;
}

.step__circle-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.5s;
}

.step:hover .step__circle-ring {
    border-color: rgba(244, 93, 19, 0.2);
}

.step__circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.5s;
}

.step:hover .step__circle {
    background: rgba(244, 93, 19, 0.08);
    border-color: rgba(244, 93, 19, 0.2);
}

.step__number {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    background: var(--bg-1);
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.step__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* ─── Comparison Table ─── */
.compare__card {
    padding: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.compare__table {
    width: 100%;
    border-collapse: collapse;
}

.compare__table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare__table th {
    padding: 1.5rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-align: left;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.compare__feature-col {
    width: 50%;
}

.compare__klideq-col {
    width: 22%;
    text-align: center !important;
    color: var(--color-primary) !important;
    background: rgba(244, 93, 19, 0.06);
    border-left: 1px solid rgba(244, 93, 19, 0.1);
    border-right: 1px solid rgba(244, 93, 19, 0.1);
    border-top: 2px solid var(--color-primary);
}

.compare__other-col {
    width: 28%;
    text-align: center !important;
}

.compare__table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.compare__table tbody tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

.compare__table tbody tr:last-child {
    border-bottom: none;
}

.compare__table td {
    padding: 1.125rem 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.compare__table tbody tr:hover td:first-child {
    color: rgba(255, 255, 255, 0.8);
}

/* KlideQ column subtle highlight */
.compare__table tbody td:nth-child(2) {
    background: rgba(244, 93, 19, 0.03);
    border-left: 1px solid rgba(244, 93, 19, 0.06);
    border-right: 1px solid rgba(244, 93, 19, 0.06);
}

.compare__check {
    text-align: center;
}

.compare__check svg {
    filter: drop-shadow(0 0 4px rgba(244, 93, 19, 0.3));
}

.compare__cross {
    text-align: center;
    color: rgba(255, 255, 255, 0.12);
    font-size: 1rem;
    font-weight: 300;
}

@media (max-width: 768px) {

    .compare__table th,
    .compare__table td {
        padding: 0.75rem 0.75rem;
        font-size: 0.75rem;
    }

    .compare__other-col {
        font-size: 0.625rem !important;
    }
}

/* ─── HIW Counter (scroll-driven) ─── */
.hiw-counter {
    height: 250vh;
    position: relative;
    margin-top: 4rem;
}

.hiw-counter__sticky {
    position: sticky;
    top: 30vh;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.hiw-counter__number {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 30%, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex: 0 0 auto;
    min-width: 160px;
    text-align: center;
}

.hiw-counter__progress {
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}

.hiw-counter__bar {
    height: 100%;
    width: 33.33%;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.hiw-counter__content {
    flex: 1;
    position: relative;
    min-height: 100px;
}

.hiw-counter__step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.hiw-counter__step.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    position: relative;
}

@media (max-width: 768px) {
    .hiw-counter__sticky {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .hiw-counter__number {
        font-size: 5rem;
        min-width: auto;
    }
}

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
.stats__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stats__divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat__value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    font-variant-numeric: tabular-nums;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.stat__sublabel {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 0.125rem;
}

@media (max-width: 600px) {
    .stats__row {
        flex-direction: column;
        gap: 2rem;
    }

    .stats__divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    }
}

/* ═══════════════════════════════════════════
   NAVBAR — Solid variant (subpages)
   ═══════════════════════════════════════════ */
.navbar--solid {
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__link--active {
    color: var(--color-primary) !important;
}

/* ═══════════════════════════════════════════
   FEATURE DETAIL — Alternating layout
   ═══════════════════════════════════════════ */
.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-detail--reverse {
    direction: rtl;
}

.feature-detail--reverse>* {
    direction: ltr;
}

.feature-detail__text {
    display: flex;
    flex-direction: column;
}

.feature-detail__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
}

.feature-detail__title .gradient {
    background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-detail__desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2rem;
}

.feature-detail__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-detail__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
}

.feature-detail__list li svg {
    flex-shrink: 0;
}

.feature-detail__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-detail__img-wrap {
    padding: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-detail__img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius) - 0.5rem);
    display: block;
}

@media (max-width: 900px) {
    .feature-detail {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .feature-detail--reverse {
        direction: ltr;
    }

    .feature-detail__text {
        align-items: center;
    }

    .feature-detail__text .hero__badge {
        align-self: center !important;
    }

    .feature-detail__list {
        align-items: center;
    }

    .feature-detail__img-wrap {
        max-width: 500px;
    }
}

/* ═══════════════════════════════════════════
   COMING SOON — Grid
   ═══════════════════════════════════════════ */
.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.coming-soon-card {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.coming-soon-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(244, 93, 19, 0.08);
    border: 1px solid rgba(244, 93, 19, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.coming-soon-card__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: rgba(244, 93, 19, 0.1);
    border: 1px solid rgba(244, 93, 19, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 980px;
}

.coming-soon-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.coming-soon-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ═══════════════════════════════════════════
   IMAGE CAROUSEL — crossfade with dots
   ═══════════════════════════════════════════ */
.img-carousel {
    position: relative;
}

.img-carousel__track {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: calc(var(--radius) - 0.5rem);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: height 0.4s ease;
}

.img-carousel__slide {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius) - 0.5rem);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
}

.img-carousel__slide--active {
    opacity: 1;
    position: relative;
}

.img-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.img-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.img-carousel__dot--active {
    width: 24px;
    background: var(--color-primary);
}

/* ═══════════════════════════════════════════
   CAPABILITIES — Grid
   ═══════════════════════════════════════════ */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.capability-card {
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.capability-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.capability-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.capability-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   CTA — Apple-style
   ═══════════════════════════════════════════ */
.cta__split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta__left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cta__headline {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
}

.cta__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.cta__buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 980px;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.cta__btn-primary:hover {
    transform: scale(1.04);
    filter: brightness(1.1);
}

.cta__btn-primary:active {
    transform: scale(0.98);
}

.cta__btn-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.875rem 0.25rem;
}

.cta__btn-secondary:hover {
    color: var(--color-primary);
}

/* Mockup image */
.cta__mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta__mockup-img {
    max-width: 100%;
    max-height: 700px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .cta__split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .cta__left {
        align-items: center;
    }

    .cta__left .hero__badge {
        align-self: center !important;
    }

    .cta__mockup {
        order: 1;
    }

    .cta__mockup-img {
        max-height: 400px;
    }

    .cta__buttons {
        justify-content: center;
    }

    .cta__headline {
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 10rem;
    padding: 4rem 0;
}

.footer__col-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.footer__link {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 0.375rem 0;
    transition: color 0.2s;
}

.footer__link:hover {
    color: var(--color-primary);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 max(env(safe-area-inset-bottom, 2rem), 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__brand img {
    width: 1.75rem;
    height: 1.75rem;
    opacity: 0.5;
}

.footer__brand-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.footer__brand-copy {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.18);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer__social-group {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer__social-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.footer__social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__social-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.footer__social {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.footer__social:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer__social svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 768px) {
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer__socials {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        gap: 0.75rem;
    }

    .footer__social-divider {
        display: none;
    }

    .footer__social-group:first-child {
        order: 1;
    }

    .footer__social-group:last-child {
        order: 0;
    }
}

/* ═══════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════ */
.partners {
    text-align: center;
    padding: 5rem 2rem 6rem;
}

.partners__label {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.partners__logo-link {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.partners__logo-link:hover {
    opacity: 0.8;
}

.partners__logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-md, 16px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.partners__logo-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.partners__logo {
    height: 104px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partners__logo-card:hover .partners__logo {
    opacity: 0.85;
}

.partners__name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}

.partners__logo-card:hover .partners__name {
    color: rgba(255, 255, 255, 0.5);
}

.partners__divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

@media (max-width: 480px) {
    .partners__logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .partners__divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {

    .navbar__links,
    .navbar__cta {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

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

@media (max-width: 768px) {
    .features__grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .steps::before {
        display: none;
    }

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

    .stats__card {
        padding: 2rem 1.5rem;
    }

    .footer__grid {
        justify-content: flex-start;
        gap: 2rem 3rem;
    }

    .cta__content {
        padding: 3rem 1.5rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .hero__ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .cta__buttons {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    left: auto;
    z-index: 10000;
    width: calc(100% - 4rem);
    max-width: 440px;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-out;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner__inner {
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md, 16px);
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-banner__content {
    flex: none;
    max-width: 100%;
}

.cookie-banner__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cookie-banner__text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cookie-banner__text a {
    color: var(--color-primary);
    text-decoration: none;
}

.cookie-banner__text a:hover {
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.cookie-banner__btn {
    flex: 1;
    justify-content: center;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        right: 1rem;
        width: calc(100% - 2rem);
    }

    .cookie-banner__inner {
        padding: 1.25rem;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════
   BLOG — LISTING PAGE
   ═══════════════════════════════════════════ */

/* Hero */
.blog-hero {
    padding: 10rem 0 3rem;
    text-align: center;
}

.blog-hero .section__title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
}

.blog-hero .section__desc {
    max-width: 500px;
    margin: 1.5rem auto 0;
}

/* Newsletter subscribe */
.blog-subscribe {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem 2.5rem;
    text-align: center;
}

.blog-subscribe__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-subscribe__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-subscribe__form {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.blog-subscribe__input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.blog-subscribe__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.blog-subscribe__input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.blog-subscribe__input:-webkit-autofill,
.blog-subscribe__input:-webkit-autofill:hover,
.blog-subscribe__input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px rgba(244, 93, 19, 0.08) inset;
    border-color: rgba(244, 93, 19, 0.3);
    transition: background-color 5000s ease-in-out 0s;
}

.blog-subscribe__btn {
    padding: 0.75rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px var(--color-primary-glow);
    white-space: nowrap;
}

.blog-subscribe__btn:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 6px 32px rgba(244, 93, 19, 0.4);
    transform: translateY(-2px);
}

.blog-subscribe__btn:active {
    transform: scale(0.97);
}

.blog-subscribe__success {
    display: none;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

.blog-subscribe__success.is-visible {
    display: block;
    animation: fade-up 0.4s ease;
}

@media (max-width: 520px) {
    .blog-subscribe {
        padding: 1.5rem;
    }

    .blog-subscribe__form {
        flex-direction: column;
    }

    .blog-subscribe__btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

@media (max-width: 420px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog card */
.blog-card {
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 93, 19, 0.3);
}

.blog-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(244, 93, 19, 0.06));
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

.blog-card__img-placeholder svg {
    opacity: 0.4;
}

.blog-card__img-placeholder span {
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.blog-card__date {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.blog-card__tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 93, 19, 0.2);
    background: rgba(244, 93, 19, 0.06);
}

.blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap 0.25s;
}

.blog-card__link:hover {
    gap: 0.75rem;
}

.blog-card__link svg {
    transition: transform 0.25s;
}

.blog-card__link:hover svg {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   BLOG — ARTICLE PAGE
   ═══════════════════════════════════════════ */

/* Back link */
.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.25s, gap 0.25s;
    margin-bottom: 2rem;
}

.blog-back:hover {
    color: var(--color-primary);
}

.blog-back svg {
    transition: transform 0.25s;
}

.blog-back:hover svg {
    transform: translateX(-3px);
}

/* Article hero */
.blog-article-hero {
    padding: 8rem 0 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 93, 19, 0.2);
    background: rgba(244, 93, 19, 0.06);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.blog-article-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.blog-article-hero__title .gradient {
    background: linear-gradient(135deg, #fff 10%, var(--color-primary) 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-article-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.875rem;
}

.blog-article-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-article-hero__meta-item svg {
    opacity: 0.5;
}

/* Article featured image */
.blog-article-featured {
    max-width: 900px;
    margin: 2.5rem auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-article-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-article-featured__placeholder {
    width: 100%;
    aspect-ratio: 21 / 9;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(244, 93, 19, 0.06));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.2);
}

.blog-article-featured__placeholder svg {
    opacity: 0.3;
}

.blog-article-featured__placeholder span {
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Article prose content */
.blog-article-content {
    max-width: 720px;
    margin: 3.5rem auto 0;
}

.blog-article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.blog-article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-article-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.blog-article-content p strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: none;
}

.blog-article-content li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.blog-article-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.6;
}

.blog-article-content blockquote {
    border-left: 3px solid var(--color-primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(244, 93, 19, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-article-content blockquote p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 0;
}

.blog-article-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.blog-article-content a:hover {
    color: var(--color-primary-hover);
}

/* Inline image placeholder in articles */
.blog-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(244, 93, 19, 0.06));
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.blog-img-placeholder svg {
    opacity: 0.3;
}

.blog-img-placeholder span {
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Article share / tags bar */
.blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 3rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-article-tags__item {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s, color 0.2s;
}

.blog-article-tags__item:hover {
    border-color: rgba(244, 93, 19, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Article CTA */
.blog-article-cta {
    margin: 3rem 0 4rem;
    padding: 2.5rem;
    text-align: center;
}

.blog-article-cta__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-article-cta__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-article-cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-article-hero {
        padding: 7rem 0 2rem;
    }

    .blog-article-hero__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .blog-article-content h2 {
        font-size: 1.5rem;
    }

    .blog-article-cta {
        padding: 2rem 1.5rem;
    }

    .blog-hero {
        padding: 8rem 0 2rem;
    }
}

@media (max-width: 480px) {
    .blog-article-hero__meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-article-cta__buttons {
        flex-direction: column;
        width: 100%;
    }

    .blog-article-cta__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}