/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Clean Color System */
:root {
    --yellow-primary: #ffc244;
    --yellow-dark: #ffb319;
    --green-primary: #00a082;
    --green-dark: #008b6f;
    --green-soft: #e3f6ef;
    --green-tint: #c8ede2;
    --orange-primary: #ff6900;
    --orange-dark: #e55a00;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --white: #ffffff;
    --black: #000000;

    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-light: var(--gray-500);

    --border-light: var(--gray-200);
    --border-medium: var(--gray-300);
    --border: var(--border-light);

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --primary-color: var(--green-primary);
    --background-alt: var(--gray-50);
    --error: #ef4444;
}

/* Base Typography */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

h1 { font-size: 3rem; line-height: 1.1; font-weight: 800; }
h2 { font-size: 2.25rem; line-height: 1.2; }
h3 { font-size: 1.875rem; line-height: 1.3; }
h4 { font-size: 1.5rem; line-height: 1.4; }
h5 { font-size: 1.25rem; line-height: 1.5; }
h6 { font-size: 1.125rem; line-height: 1.5; }

p { margin-bottom: 1rem; }

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

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

/* Responsive Containers */
@media (min-width: 640px) {
    .container, .container-wide { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .container, .container-wide { padding: 0 3rem; }
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}

.btn-primary:hover {
    background-color: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-primary);
    border-color: var(--border-medium);
}

.btn-secondary:hover {
    background-color: var(--gray-50);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-medium);
}

.btn-outline:hover {
    background-color: var(--gray-50);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    background-color: var(--yellow-primary);
    border-bottom: 1px solid rgba(255, 194, 68, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    position: relative;
}

.logo {
    text-decoration: none;
    display: block;
}

.logo svg {
    height: 50px;
    width: auto;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: 0.025em;
    margin-top: -1.2rem;
    margin-left: -1rem;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(17, 24, 39, 0.15);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(17, 24, 39, 0.25);
}

.nav-toggle-bar {
    width: 1.4rem;
    height: 2px;
    background: var(--gray-800);
    border-radius: 1rem;
    align-self: center;
}

.nav-links {
    display: none;
    gap: 2rem;
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    left: 0;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .nav-toggle { display: none; }

    .nav-links {
        display: flex;
        position: static;
        padding: 0;
        box-shadow: none;
        flex-direction: row;
        align-items: center;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Section */
.hero {
    padding: 7rem 0 4rem;
    background-color: var(--yellow-primary);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.35);
    color: var(--gray-900);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.hero h1 {
    font-size: 2.65rem;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(17, 24, 39, 0.78);
    margin-bottom: 1.9rem;
}

.hero-checklist {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin: 0 0 2.4rem;
    padding: 0;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: rgba(31, 41, 55, 0.88);
}

.hero-checklist li span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.16);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    min-width: 170px;
}

.hero-visual {
    width: min(100%, 420px);
    margin: 0 auto;
}

/* Neo4j-Style Knowledge Graph */
.graph-diagram {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Connection paths with staggered fade-in */
.graph-edge {
    stroke: #cbd5e1;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    opacity: 0;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-edge 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--delay, 0.1s);
}

.graph-edge--secondary {
    stroke-width: 1.5;
    stroke: #e2e8f0;
}

.graph-edge--tertiary {
    stroke-width: 1.2;
    stroke: #f1f5f9;
}

/* Neo4j-style nodes */
.neo-node {
    cursor: pointer;
    transform-origin: center;
    opacity: 0;
    animation: neo-node-appear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--delay, 0.2s);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.neo-node:hover {
    transform: scale(1.1);
}

.neo-node-bg {
    fill: #ffffff;
    stroke-width: 1.5;
    stroke: #e5e7eb;
    filter: url(#neo-shadow);
    transition: all 0.3s ease;
}

.neo-node:hover .neo-node-bg {
    stroke-width: 2;
    filter: url(#neo-shadow) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Central node - largest and most prominent */
.neo-node--central .neo-node-bg {
    fill: var(--green-primary);
    stroke: var(--green-dark);
}

.neo-node--central .neo-node-label,
.neo-node--central .neo-node-sublabel {
    fill: #ffffff;
}

/* Primary nodes - large */
.neo-node--primary .neo-node-bg {
    stroke-width: 1.5;
}

/* Secondary nodes - medium */
.neo-node--secondary .neo-node-bg {
    stroke-width: 1;
}

/* Tertiary nodes - small */
.neo-node--tertiary .neo-node-bg {
    stroke-width: 1;
}

/* Color variations */
.neo-node--teal .neo-node-bg {
    fill: #e0f2fe;
    stroke: #0ea5e9;
}

.neo-node--teal .neo-node-label {
    fill: #0c4a6e;
}

.neo-node--green .neo-node-bg {
    fill: #d1fae5;
    stroke: #10b981;
}

.neo-node--green .neo-node-label {
    fill: #064e3b;
}

.neo-node--orange .neo-node-bg {
    fill: #fed7aa;
    stroke: #f97316;
}

.neo-node--orange .neo-node-label {
    fill: #7c2d12;
}

/* Edge labels on relationship arrows */
.edge-label {
    font-size: 7px;
    font-weight: 500;
    text-anchor: middle;
    fill: var(--gray-500);
    pointer-events: none;
    opacity: 0;
    letter-spacing: 0.3px;
    animation: fade-in-up 0.5s ease forwards;
    animation-delay: calc(var(--delay, 0.2s) + 0.4s);
}

/* Text labels */
.neo-node-label {
    font-size: 11px;
    font-weight: 600;
    text-anchor: middle;
    dominant-baseline: central;
    fill: var(--gray-900);
    pointer-events: none;
    opacity: 0;
    animation: fade-in-up 0.5s ease forwards;
    animation-delay: calc(var(--delay, 0.2s) + 0.2s);
}

.neo-node-label--small {
    font-size: 9px;
}

.neo-node-label--tiny {
    font-size: 8px;
    font-weight: 600;
}

.neo-node-sublabel {
    font-size: 9px;
    font-weight: 500;
    text-anchor: middle;
    dominant-baseline: central;
    fill: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    opacity: 0;
    animation: fade-in-up 0.5s ease forwards;
    animation-delay: calc(var(--delay, 0.2s) + 0.3s);
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 340px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6.2rem 0 3.6rem;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .neo-node,
    .neo-node-label,
    .neo-node-sublabel,
    .graph-edge,
    .edge-label {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
    }
}

/* Animation Keyframes */
@keyframes draw-edge {
    from {
        opacity: 0;
        stroke-dashoffset: 1000;
    }
    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes neo-node-appear {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    60% {
        transform: scale(1.08);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-gray {
    background-color: var(--gray-50);
}

.section-highlight {
    background-color: var(--green-soft);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-cta .btn {
    min-width: 220px;
}

/* Grid Systems */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

@media (min-width: 768px) {
    .grid { gap: 3rem; }
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background-color: var(--green-soft);
    color: var(--green-dark);
    font-weight: 600;
}

.card-icon--accent {
    background-color: var(--green-soft);
    color: var(--green-dark);
}

.card-icon--solid {
    background-color: var(--green-primary);
    color: var(--white);
}

.card-icon--numeric {
    font-size: 1.25rem;
    font-weight: 700;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-note {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
}

.card-note-title {
    font-weight: 600;
    color: var(--text-primary);
}

.card-note-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.code-block {
    background-color: var(--gray-100);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.6;
    border: 1px solid var(--border-light);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--green-primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--green-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-period {
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--green-primary);
    font-weight: bold;
}

.pricing-note {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    background-color: var(--green-soft);
    border: 1px solid var(--green-tint);
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-note-line {
    display: block;
}

.pricing-note--muted {
    background-color: var(--gray-50);
    border-color: var(--border-light);
}

.pricing-note-line + .pricing-note-line {
    margin-top: 0.5rem;
}

/* Demo Section */
.demo {
    background-color: var(--gray-50);
}

.demo-container {
    max-width: 900px;
    margin: 0 auto;
}

.demo-input {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.demo-textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.demo-textarea:focus {
    outline: none;
    border-color: var(--green-primary);
}

.demo-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.demo-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background-color: var(--white);
    min-width: 200px;
}

.demo-results {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.demo-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.tab-btn.active {
    color: var(--green-primary);
    border-bottom: 2px solid var(--green-primary);
}

.demo-results-body {
    padding: 2rem;
    min-height: 300px;
    position: relative;
}

.demo-tab-content {
    display: none;
}

.demo-tab-content.active {
    display: block;
}

.demo-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 3px solid rgba(16, 185, 129, 0.2);
    border-top-color: var(--green-primary);
    animation: spin 0.8s linear infinite;
}

.placeholder {
    text-align: center;
    color: var(--text-secondary);
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--background-alt);
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-tagline {
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-highlights li {
        justify-content: center;
        text-align: left;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        width: min(100%, 340px);
    }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .pricing-card.featured {
        transform: none;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .section { padding: 3rem 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual,
    .kg-orbit,
    .kg-orbit-item::before,
    .kg-orbit-item::after,
    .kg-orbit-item .kg-node,
    .kg-node--core,
    .kg-link::before,
    .kg-link::after {
        animation: none !important;
    }

    .hero-visual { transform: none !important; opacity: 1 !important; }
    .kg-orbit { transform: rotate(0deg) !important; opacity: 1 !important; }
    .kg-orbit-item::before { transform: scaleX(1) !important; opacity: 1 !important; }
    .kg-orbit-item::after { transform: translateX(0) scale(1) !important; opacity: 1 !important; }
    .kg-orbit-item .kg-node { transform: translateY(-50%) !important; opacity: 1 !important; }
    .kg-node--core { transform: translate(-50%, -50%) !important; opacity: 1 !important; }
    .kg-link::before { transform: scaleX(1) !important; opacity: 1 !important; }
    .kg-link::after { transform: translateY(-50%) scale(1) !important; opacity: 1 !important; }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.hidden {
    display: none !important;
}

/* Curve Dividers - Exact Glovo Style */
.curve-divider {
    position: relative;
    height: 74px;
    overflow: hidden;
    line-height: 0;
    --curve-fill: var(--yellow-primary);
}

.curve-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 74px;
}

.curve-divider .shape-fill {
    fill: var(--curve-fill);
}

.curve-divider--flip svg {
    transform: scaleY(-1);
}

.curve-divider--white {
    --curve-fill: var(--white);
}

.curve-divider--green {
    --curve-fill: var(--green-soft);
}

.curve-divider--gray {
    --curve-fill: var(--gray-50);
}

.curve-divider--footer-bg {
    background-color: var(--gray-900);
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

@keyframes spin {
    to { transform: rotate(360deg); }
}
