/* ============================================================
   Ziora — Modern Design System
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* ---------- Variables ---------- */
:root {
    --bg: #06060e;
    --bg-subtle: #0a0a16;
    --surface: #0c0c1d;
    --surface-2: #131328;
    --glass: rgba(12, 12, 29, 0.6);
    --glass-dense: rgba(12, 12, 29, 0.85);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(99, 102, 241, 0.3);

    --text: #eaeaef;
    --text-2: #8b8ba6;
    --text-3: #5c5c76;

    --accent: #6366f1;
    --accent-light: #818cf8;
    --cyan: #22d3ee;
    --violet: #a78bfa;
    --emerald: #34d399;

    --gradient-brand: linear-gradient(
        135deg,
        #6366f1 0%,
        #8b5cf6 50%,
        #06b6d4 100%
    );
    --gradient-text: linear-gradient(to right, #c7d2fe, #a78bfa, #22d3ee);
    --gradient-glow: radial-gradient(
        ellipse,
        rgba(99, 102, 241, 0.08) 0%,
        transparent 70%
    );

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.12);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-full: 9999px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
ul,
ol {
    list-style: none;
}

/* ---------- Layout ---------- */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 100px 0;
    position: relative;
}
.section-sm {
    padding: 60px 0;
}
.section-gap {
    padding-top: 100px;
}

.section-glow::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: 0;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 6, 14, 0.75);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    transition:
        background 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}
.header.scrolled {
    background: rgba(6, 6, 14, 0.95);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.4);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    height: 36px;
}
.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-links,
.header .menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link,
.header .menu a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    border-radius: var(--radius-xs);
    transition:
        color 0.25s var(--ease),
        background 0.25s var(--ease);
}
.nav-link:hover,
.nav-link.active,
.header .menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}
.nav-cta,
.header .menu a:last-child {
    margin-left: 12px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border-radius: var(--radius-full);
    transition:
        background 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}
.nav-cta:hover,
.header .menu a:last-child:hover {
    background: var(--accent-light);
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.35);
}
.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-xs);
    transition: border-color 0.25s var(--ease);
}
.mobile-toggle:hover {
    border-color: var(--border-hover);
}
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 6, 14, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
}
.mobile-menu.open {
    display: block;
}
.mobile-menu a {
    display: block;
    padding: 14px 0;
    color: var(--text-2);
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s var(--ease);
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu a:hover {
    color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.035) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    mask-image: radial-gradient(
        ellipse 70% 55% at 50% 35%,
        black 20%,
        transparent 100%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 70% 55% at 50% 35%,
        black 20%,
        transparent 100%
    );
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 500px;
    background: radial-gradient(
        ellipse,
        rgba(99, 102, 241, 0.07) 0%,
        rgba(139, 92, 246, 0.04) 30%,
        transparent 70%
    );
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.hero-center {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-light);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--text-2);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 40px;
}
.hero-center .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-center .hero-actions {
    justify-content: center;
}

/* ---------- Typography ---------- */
.h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.muted,
.text-muted {
    color: var(--text-2);
}
.text-sm {
    font-size: 14px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-header p {
    color: var(--text-2);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-top: 16px;
}

.systems-header {
    margin-bottom: 72px;
}
.systems-graphic {
    position: relative;
    width: min(560px, 100%);
    height: 280px;
    margin: 52px auto 0;
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(99, 102, 241, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 18% 22%,
            rgba(34, 211, 238, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 82% 72%,
            rgba(52, 211, 153, 0.1),
            transparent 30%
        ),
        linear-gradient(180deg, rgba(12, 12, 29, 0.72), rgba(6, 6, 14, 0.88));
    box-shadow:
        var(--shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    isolation: isolate;
}
.systems-graphic::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(
        circle at center,
        black 0%,
        transparent 72%
    );
    opacity: 0.55;
    z-index: -1;
}
.systems-graphic::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(
        from 90deg,
        transparent,
        rgba(99, 102, 241, 0.1),
        rgba(34, 211, 238, 0.1),
        transparent 42%
    );
    animation: systems-rotate 18s linear infinite;
    z-index: -2;
}
.systems-orbit {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(129, 140, 248, 0.22);
    border-radius: 999px;
    transform: translate(-50%, -50%);
}
.orbit-one {
    width: 330px;
    height: 150px;
    animation: systems-orbit-pulse 4s ease-in-out infinite;
}
.orbit-two {
    width: 390px;
    height: 190px;
    transform: translate(-50%, -50%) rotate(-18deg);
    border-color: rgba(34, 211, 238, 0.16);
    animation: systems-orbit-pulse 4s 0.8s ease-in-out infinite;
}
.systems-core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    gap: 5px;
    width: 132px;
    height: 132px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.92),
        rgba(139, 92, 246, 0.82),
        rgba(6, 182, 212, 0.72)
    );
    box-shadow: 0 0 42px rgba(99, 102, 241, 0.34);
    animation: systems-core-float 5s ease-in-out infinite;
}
.systems-core span {
    font-size: 44px;
    font-weight: 900;
    line-height: 0.9;
    color: #fff;
    letter-spacing: -0.08em;
}
.systems-core small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.systems-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-full);
    color: var(--text);
    background: rgba(12, 12, 29, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
    animation: systems-node-float 4.8s ease-in-out infinite;
}
.systems-node span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 16px currentColor;
}
.systems-node strong {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.node-media {
    top: 62px;
    left: 72px;
}
.node-events {
    top: 58px;
    right: 78px;
    animation-delay: 0.55s;
}
.node-events span {
    background: var(--violet);
}
.node-podcast {
    left: 92px;
    bottom: 62px;
    animation-delay: 1.1s;
}
.node-podcast span {
    background: var(--emerald);
}
.node-ai {
    right: 96px;
    bottom: 60px;
    animation-delay: 1.65s;
}
.node-ai span {
    background: var(--accent-light);
}
.systems-signal {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
    opacity: 0;
}
.signal-one {
    animation: systems-signal-one 3.8s ease-in-out infinite;
}
.signal-two {
    animation: systems-signal-two 3.8s 1.25s ease-in-out infinite;
}
.signal-three {
    animation: systems-signal-three 3.8s 2.5s ease-in-out infinite;
}

.page-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-2);
    max-width: 900px;
}

/* ---------- Badge ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}

/* ---------- Grid ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ---------- Cards ---------- */
.card {
    display: block;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    color: var(--text);
    transition:
        transform 0.4s var(--ease),
        border-color 0.4s var(--ease),
        box-shadow 0.4s var(--ease);
}
.card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--surface);
    margin-bottom: 18px;
}
.card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}
.card p {
    margin: 0;
    color: var(--text-2);
    line-height: 1.7;
    font-size: 15px;
}

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 24px;
}

/* Feature cards with icon */
.feature-card {
    display: block;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    color: var(--text);
    transition:
        transform 0.4s var(--ease),
        border-color 0.4s var(--ease),
        box-shadow 0.4s var(--ease);
}
.feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.feature-card .card-icon {
    margin-bottom: 20px;
}
.feature-card h3 {
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-2);
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition:
        background 0.25s var(--ease),
        box-shadow 0.3s var(--ease),
        transform 0.25s var(--ease);
    white-space: nowrap;
}
.btn:hover {
    background: var(--accent-light);
    box-shadow: 0 0 28px rgba(99, 102, 241, 0.35);
    transform: translateY(-1px);
}
.btn.alt,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition:
        background 0.25s var(--ease),
        border-color 0.25s var(--ease),
        transform 0.25s var(--ease);
}
.btn.alt:hover,
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
    transform: translateY(-1px);
}
.btn-sm {
    padding: 9px 18px;
    font-size: 13px;
}

/* ---------- Stats ---------- */
.stats {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: border-color 0.3s var(--ease);
}
.stat:hover {
    border-color: var(--border-hover);
}
.stat .num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat .label {
    color: var(--text);
    font-weight: 600;
    margin-top: 12px;
}
.stat .desc {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

/* ---------- Timeline ---------- */
.timeline {
    position: relative;
    padding: 24px 0 10px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--cyan));
    border-radius: 2px;
}
.t-item {
    position: relative;
    padding: 0 0 28px 72px;
    opacity: 0;
    transform: translateX(-16px);
    transition: all 0.6s ease;
}
.t-item:last-child {
    padding-bottom: 0;
}
.t-item::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 14px rgba(99, 102, 241, 0.35);
}
.reveal-left.show .timeline .t-item {
    opacity: 1;
    transform: translateX(0);
}
.reveal-left.show .timeline .t-item:nth-child(1) {
    transition-delay: 0.05s;
}
.reveal-left.show .timeline .t-item:nth-child(2) {
    transition-delay: 0.15s;
}
.reveal-left.show .timeline .t-item:nth-child(3) {
    transition-delay: 0.25s;
}
.reveal-left.show .timeline .t-item:nth-child(4) {
    transition-delay: 0.35s;
}
.t-year {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.t-title {
    color: var(--text);
    font-weight: 600;
    margin-top: 6px;
}
.t-desc {
    color: var(--text-2);
    margin-top: 6px;
    line-height: 1.65;
}

/* ---------- Bars ---------- */
.bars {
    display: grid;
    gap: 16px;
}
.bar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px;
    transition: border-color 0.3s var(--ease);
}
.bar:hover {
    border-color: var(--border-hover);
}
.bar-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
}
.bar-top strong {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.bar-track {
    position: relative;
    height: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: 14px;
}
.bar-track::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    opacity: 0;
    transform: translateX(-100%);
}
.reveal-zoom.show .bar-track::before {
    animation: bar-track-sheen 1.6s ease-out forwards;
}
.bar-fill {
    position: relative;
    height: 100%;
    width: 0;
    overflow: hidden;
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
    box-shadow: 0 0 0 rgba(99, 102, 241, 0);
    transition:
        width 1.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.8s var(--ease-out);
}
.bar-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.45),
        transparent
    );
    transform: translateX(-120%);
}
.bar-fill.is-filled {
    box-shadow: 0 0 22px rgba(99, 102, 241, 0.35);
}
.bar-fill.is-filled::after {
    animation: bar-fill-sheen 1.1s 0.25s ease-out forwards;
}
.reveal-zoom.show .bar:nth-child(2) .bar-fill {
    transition-delay: 0.1s;
}
.reveal-zoom.show .bar:nth-child(3) .bar-fill {
    transition-delay: 0.2s;
}
.reveal-zoom.show .bar:nth-child(4) .bar-fill {
    transition-delay: 0.3s;
}
@keyframes bar-track-sheen {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}
@keyframes bar-fill-sheen {
    to {
        transform: translateX(120%);
    }
}
.bar-desc {
    margin-top: 10px;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Mini Cards / Steps ---------- */
.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mini-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px;
}
.mini-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.mini-card p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}
.mini-card ul {
    margin: 12px 0 0;
    padding-left: 18px;
    list-style: disc;
    color: var(--text-2);
    line-height: 1.7;
}
.mini-card li {
    margin-bottom: 4px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.step {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px;
    transition: border-color 0.3s var(--ease);
}
.step:hover {
    border-color: var(--border-hover);
}
.step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.18);
    color: var(--accent-light);
    font-weight: 700;
    font-size: 14px;
}
.step h3 {
    margin: 12px 0 8px;
    font-size: 16px;
}
.step p {
    margin: 0;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.65;
}

/* ---------- FAQ ---------- */
.faq {
    max-width: 920px;
}
.faq details {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: border-color 0.3s var(--ease);
}
.faq details[open] {
    border-color: var(--border-hover);
}
.faq summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    color: var(--text);
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq .answer {
    margin-top: 12px;
    color: var(--text-2);
    line-height: 1.75;
}

/* ---------- Logos ---------- */
.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.logo-pill {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-2);
    border-radius: var(--radius-full);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
}

/* ---------- Blog ---------- */
.blog-hero {
    padding-bottom: 48px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.blog-card {
    overflow: hidden;
    padding: 0;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition:
        transform 0.4s var(--ease),
        border-color 0.4s var(--ease),
        box-shadow 0.4s var(--ease);
}
.blog-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--surface);
}
.blog-card-content {
    padding: 22px;
}
.blog-card-content h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 10px;
}
.blog-card-content a {
    color: var(--text);
}
.blog-card .blog-meta {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 10px;
}
.blog-excerpt {
    margin: 0;
    color: var(--text-2);
    line-height: 1.65;
    font-size: 14px;
}

/* Blog placeholder */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.blog-empty-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}
.blog-empty h3 {
    margin-bottom: 10px;
}
.blog-empty p {
    color: var(--text-2);
    max-width: 400px;
    margin: 0 auto;
}

/* ---------- CTA Section ---------- */
.cta {
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(
        ellipse,
        rgba(99, 102, 241, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.cta .h2 {
    position: relative;
    z-index: 1;
}
.cta .btn {
    position: relative;
    z-index: 1;
    margin-top: 28px;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin: 22px 0;
}
.note {
    color: var(--text-3);
    font-size: 14px;
    margin-top: 10px;
}

/* ---------- Booking ---------- */
.booking-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    margin-top: 24px;
}
.booking-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.booking-card h2 {
    margin-bottom: 8px;
}
.booking-form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 13px 16px;
    font: inherit;
    font-size: 14px;
    transition:
        border-color 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--text-3);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.booking-form textarea {
    resize: vertical;
}
.booking-btn {
    width: fit-content;
}
.booking-status {
    margin-top: 8px;
    font-size: 14px;
}
.booking-side {
    display: grid;
    gap: 16px;
    align-content: start;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.contact-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-2);
    line-height: 1.6;
}
.contact-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    font-size: 18px;
}

/* ---------- Hero Split (service pages) ---------- */
.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}
.hero-art img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
}

/* ---------- About ---------- */
.about-image {
    width: 100%;
    border-radius: var(--radius);
    margin: 32px 0;
    border: 1px solid var(--border);
}
.about-content {
    max-width: 900px;
}
.about-content p {
    color: var(--text-2);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.value-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.3s var(--ease);
}
.value-card:hover {
    border-color: var(--border-hover);
}
.value-card .card-icon {
    margin-bottom: 16px;
}
.value-card h3 {
    margin-bottom: 8px;
}
.value-card p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.65;
}

/* ---------- Service Detail ---------- */
.service-content {
    max-width: 720px;
    margin: 0 auto;
}
.service-content p {
    color: var(--text-2);
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.service-content p:first-child {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 400;
}
.service-content p:last-child {
    margin-bottom: 0;
    color: var(--text);
    font-weight: 500;
}
.service-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.service-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
}

/* CTA Section (service pages) */
.cta-section {
    text-align: center;
    padding: 80px 0;
    position: relative;
}
.cta-section::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    background: radial-gradient(
        ellipse,
        rgba(99, 102, 241, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.cta-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}
.cta-section .btn {
    position: relative;
}

/* ---------- Footer ---------- */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
    background: var(--bg);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}
.footer-brand-section {
}
.footer-brand-section .logo {
    height: 30px;
    margin-bottom: 14px;
}
.footer-brand-section p {
    color: var(--text-3);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    padding: 5px 0;
    color: var(--text-3);
    font-size: 14px;
    transition: color 0.2s var(--ease);
}
.footer-col a:hover {
    color: var(--text);
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-3);
    font-size: 13px;
}
.footer-bottom a {
    color: var(--text-3);
    transition: color 0.2s var(--ease);
}
.footer-bottom a:hover {
    color: var(--text-2);
}

/* Legacy footer compat */
.footer .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    color: var(--text-3);
    font-size: 14px;
}
.footer .menu a {
    margin-left: 18px;
    color: var(--text-3);
    font-size: 14px;
    transition: color 0.2s var(--ease);
}
.footer .menu a:hover {
    color: var(--text-2);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-logo {
    height: 32px;
}
.footer-tag,
.footer-meta p {
    color: var(--text-3);
    line-height: 1.5;
    margin: 0;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-links a {
    color: var(--text-2);
    font-size: 14px;
    transition: color 0.2s var(--ease);
}
.footer-links a:hover {
    color: var(--text);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}
@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.25);
    }
}
@keyframes systems-rotate {
    to {
        transform: rotate(360deg);
    }
}
@keyframes systems-orbit-pulse {
    0%,
    100% {
        opacity: 0.55;
        filter: drop-shadow(0 0 0 rgba(99, 102, 241, 0));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 14px rgba(99, 102, 241, 0.28));
    }
}
@keyframes systems-core-float {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-7px);
    }
}
@keyframes systems-node-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes systems-signal-one {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(0, 0) scale(0.65);
    }
    20%,
    70% {
        opacity: 0.85;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(-154px, -62px) scale(1);
    }
}
@keyframes systems-signal-two {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(0, 0) scale(0.65);
    }
    20%,
    70% {
        opacity: 0.85;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(158px, -62px) scale(1);
    }
}
@keyframes systems-signal-three {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(0, 0) scale(0.65);
    }
    20%,
    70% {
        opacity: 0.85;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(148px, 66px) scale(1);
    }
}

.fade {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.9s var(--ease) forwards;
}
.d1 {
    animation-delay: 0.1s;
}
.d2 {
    animation-delay: 0.2s;
}
.d3 {
    animation-delay: 0.3s;
}
.d4 {
    animation-delay: 0.4s;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal-left.show {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal-zoom.show {
    opacity: 1;
    transform: scale(1);
}

.card-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.card-reveal.show {
    opacity: 1;
    transform: translateY(0);
}
.grid .card-reveal:nth-child(2) {
    transition-delay: 0.1s;
}
.grid .card-reveal:nth-child(3) {
    transition-delay: 0.2s;
}
.grid .card-reveal:nth-child(4) {
    transition-delay: 0.3s;
}

/* Gradient divider */
.divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.25),
        transparent
    );
    border: none;
    margin: 0;
}

/* ---------- Chat Widget ---------- */
.ziora-chat-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9998;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    padding: 14px 20px;
    font-weight: 700;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
    transition:
        background 0.25s var(--ease),
        box-shadow 0.25s var(--ease),
        transform 0.25s var(--ease);
}
.ziora-chat-btn:hover {
    background: var(--accent-light);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.45);
    transform: translateY(-2px);
}
.ziora-chat {
    position: fixed;
    right: 20px;
    bottom: 78px;
    width: 360px;
    max-height: 70vh;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: none;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.ziora-chat.open {
    display: flex;
}
.ziora-chat-head {
    padding: 14px 18px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    font-size: 15px;
}
.ziora-chat-actions {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}
.ziora-action-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s var(--ease);
}
.ziora-action-btn:hover {
    background: var(--accent-light);
}
.ziora-chat-log {
    padding: 14px;
    overflow: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ziora-msg {
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    line-height: 1.5;
}
.ziora-msg.user {
    background: var(--accent);
    color: #fff;
    align-self: flex-end;
    max-width: 85%;
    border-radius: var(--radius-sm) var(--radius-sm) 2px var(--radius-sm);
}
.ziora-msg.bot {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    align-self: flex-start;
    max-width: 90%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) 2px;
}
.ziora-msg p {
    margin: 0 0 8px;
    line-height: 1.55;
}
.ziora-msg p:last-child {
    margin-bottom: 0;
}
.ziora-msg ul {
    margin: 6px 0 10px 18px;
    padding: 0;
    list-style: disc;
}
.ziora-msg li {
    margin: 0 0 4px;
}
.ziora-msg h2,
.ziora-msg h3,
.ziora-msg h4 {
    margin: 4px 0 8px;
    font-size: 15px;
    color: #f8fafc;
}
.ziora-msg code {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 12px;
}
.ziora-msg a {
    color: var(--accent-light);
}
.ziora-chat-form {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.ziora-chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text);
    padding: 10px 12px;
    font: inherit;
    font-size: 14px;
    transition: border-color 0.2s var(--ease);
}
.ziora-chat-input:focus {
    outline: none;
    border-color: var(--accent);
}
.ziora-chat-send {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-xs);
    padding: 10px 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s var(--ease);
}
.ziora-chat-send:hover {
    background: var(--accent-light);
}
.ziora-book-form {
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .grid-4,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .header .menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero {
        padding: 130px 0 60px;
    }
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }
    .section {
        padding: 64px 0;
    }
    .systems-graphic {
        height: 250px;
        margin-top: 40px;
        border-radius: 24px;
    }
    .orbit-one {
        width: 260px;
        height: 130px;
    }
    .orbit-two {
        width: 310px;
        height: 160px;
    }
    .systems-core {
        width: 108px;
        height: 108px;
    }
    .systems-core span {
        font-size: 36px;
    }
    .systems-node {
        padding: 8px 10px;
    }
    .node-media,
    .node-podcast {
        left: 22px;
    }
    .node-events,
    .node-ai {
        right: 22px;
    }
    .section-gap {
        padding-top: 64px;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .booking-row {
        grid-template-columns: 1fr;
    }
    .hero-split {
        grid-template-columns: 1fr;
    }
    .mini-grid {
        grid-template-columns: 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .service-images {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stats {
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: 120px 0 48px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn,
    .hero-actions .btn-outline,
    .hero-actions .btn.alt {
        width: 100%;
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .footer-row,
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links {
        justify-content: flex-start;
    }
}
