:root {
    --bg-color: #0a0e27;
    --bg-secondary: #1a1f3a;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-color: #6366f1;
    --accent-secondary: #ec4899;
    --accent-tertiary: #06b6d4;
    --accent-glow: rgba(99, 102, 241, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-hover-bg: rgba(255, 255, 255, 0.08);
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --gradient-text: linear-gradient(90deg, #818cf8 0%, #c084fc 100%, #f472b6 100%);
    --gradient-light: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(30px);
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.8) 100%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--accent-color));
}

.brand-name {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -1px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: white !important;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-primary) !important;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
    pointer-events: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.btn-secondary:hover::before {
    transform: translateX(100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 120px 5% 0;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
    min-width: 400px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #a5b4fc;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge span {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    font-weight: 800;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 100%;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    flex: 0.9;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 300px;
}

.ecosystem-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 50px rgba(99, 102, 241, 0.4));
    animation: float 10s ease-in-out infinite;
    object-fit: contain;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(1deg);
    }
}

/* Mission Statement Section */
.mission-statement {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
}
.mission-box {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    backdrop-filter: blur(10px);
}
.branding-quote {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
    position: relative;
    font-style: italic;
}
.branding-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 48%;
    font-size: 5rem;
    opacity: 0.1;
    color: var(--primary);
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}
.mission-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}
.mission-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Price calculator styles */
.price-calculator {
    margin: 2rem 0 3rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}
.price-calculator .inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.price-calculator label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.price-calculator input[type="number"] {
    width: 140px;
    max-width: 320px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    color: var(--text-primary);
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 140ms ease;
    -webkit-appearance: none;
    appearance: none;
}
.price-calculator input[type="number"]::placeholder {
    color: var(--text-secondary);
}
.price-calculator input[type="number"]:focus {
    outline: none;
    border-color: rgba(99,102,241,0.9);
    box-shadow: 0 14px 40px rgba(99,102,241,0.09), inset 0 2px 6px rgba(255,255,255,0.02);
    transform: translateY(-1px);
}

/* Improve small layout spacing */
.price-calculator .row {
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}
.price-calculator label {
    min-width: 160px;
}
.price-calculator .options {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.price-calculator .result {
    padding: 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(6,182,212,0.03));
    border: 1px solid rgba(99,102,241,0.08);
}
.price-calculator .result h4 {
    margin-bottom: 0.5rem;
}
.price-calculator .result .amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}
.price-calculator .note {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Mobile specific: stack labels and inputs for comfortable touch targets */
@media (max-width: 860px) {
    .price-calculator .row {
        flex-direction: column;
        align-items: stretch;
    }
    .price-calculator label {
        min-width: auto;
        width: 100%;
        margin-bottom: 6px;
        color: var(--text-secondary);
    }
    .price-calculator input[type="number"] {
        width: 100%;
        max-width: none;
        font-size: 1rem;
        padding: 1rem;
    }
    .price-calculator .options {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }
    .price-calculator { padding: 1rem; }
}

/* Preset buttons layout */
.price-calculator .inputs > div:first-child {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.price-calculator .inputs > div:first-child .btn-secondary,
.price-calculator .inputs > div:first-child .btn-primary {
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    font-size: 0.95rem;
}

@media (max-width: 860px) {
    .price-calculator .inputs > div:first-child {
        flex-direction: column;
    }
    .price-calculator .inputs > div:first-child .btn-secondary,
    .price-calculator .inputs > div:first-child .btn-primary {
        width: 100%;
        text-align: center;
    }
    .price-calculator .result { order: -1; margin-bottom: 12px; }
}

/* Make pricing table easier to read on small screens by stacking rows */
@media (max-width: 720px) {
    .price-table { min-width: 0; }
    .price-table thead { display: none; }
    .price-table, .price-table tbody, .price-table tr, .price-table td {
        display: block;
        width: 100%;
    }
    .price-table tr { margin-bottom: 1rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 0.75rem; }
    .price-table td {
        padding: 0.5rem 0;
        text-align: left;
        border: none;
    }
    .price-table td:first-child { font-weight: 700; color: var(--text-primary); }
    .price-table td:last-child { margin-top: 6px; }
    .price-badge { display: inline-block; margin-top: 6px; }
}

/* Increase button touch targets on very small screens */
@media (max-width: 480px) {
    .btn-primary, .btn-secondary { padding: 0.95rem 1rem; font-size: 1rem; }
    .pricing-card { padding: 1.75rem; }
}

@media (max-width: 860px) {
    .price-calculator { grid-template-columns: 1fr; }
}
.mission-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .branding-quote { font-size: 1.4rem; }
    .mission-box { padding: 2rem 1.5rem; }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(odd) {
    background: transparent;
}

section:nth-child(even) {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.4) 0%, transparent 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Ecosystem Flow Section */
.flow-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.flow-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.flow-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-light);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.flow-step:hover::before {
    opacity: 1;
}

.flow-step:hover {
    background: var(--card-hover-bg);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
}

.flow-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.flow-step h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.flow-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.flow-step.visible {
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Products Section */
.product-card {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 10rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:nth-child(even) {
    flex-direction: row-reverse;
}

.product-img-wrapper {
    flex: 1;
    position: relative;
}

.product-img-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
}

.product-display-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.product-display-img:hover {
    transform: scale(1.03) translateY(-10px) rotate(-0.5deg);
    box-shadow: 0 40px 80px -20px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.4);
}

.product-info {
    flex: 1;
}

.info-tag {
    color: var(--accent-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.product-info h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-info p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.feature-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-pill {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
    pointer-events: none;
}

.feature-pill:hover {
    border-color: var(--accent-secondary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -8px rgba(99, 102, 241, 0.2);
}

.feature-pill:hover::before {
    transform: translateX(100%);
}

/* Technology Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.tech-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 3rem;
    border-radius: 40px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0;
    transition: opacity 0.6s;
    z-index: -1;
    border-radius: 40px;
}

.tech-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 1px;
    background: var(--gradient-1);
    opacity: 0;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    transition: opacity 0.6s;
    z-index: -1;
}

.tech-card:hover {
    transform: translateY(-20px);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-icon {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    display: inline-block;
}

.tech-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.tech-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Single vs Multi Gateway Mini Diagram */
.gateway-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0 0 2.5rem;
}

.gateway-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    padding: 1.4rem 1.2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gateway-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 12px 30px -14px rgba(99, 102, 241, 0.45);
}

.gateway-panel.featured {
    border-color: rgba(6, 182, 212, 0.55);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.14), rgba(99, 102, 241, 0.12));
}

.gateway-panel h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.gateway-panel p {
    color: var(--text-secondary);
    margin-bottom: 0.9rem;
    font-size: 0.98rem;
}

.gateway-flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gateway-flow .feature-pill {
    margin: 0;
    padding: 0.35rem 0.75rem;
    font-size: 0.86rem;
}

.gateway-flow i {
    color: var(--accent-tertiary);
    font-size: 0.85rem;
    animation: gatewayArrowPulse 1.4s ease-in-out infinite;
    opacity: 0.85;
}

.gateway-flow i:nth-of-type(2) {
    animation-delay: 0.35s;
}

@keyframes gatewayArrowPulse {
    0%,
    100% {
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(3px) scale(1.1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gateway-flow i {
        animation: none;
    }
}

/* CTA */
.cta {
    padding: 12rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 60%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 40%, rgba(236, 72, 153, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cta-glass {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.08));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 60px;
    padding: 8rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px -20px rgba(99, 102, 241, 0.3);
    animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta h2 {
    font-size: 4rem;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    padding: 8rem 0 4rem;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, #020203 0%, #0a0a0b 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    opacity: 0.5;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    max-width: 300px;
    transition: color 0.3s;
}

.footer-brand:hover p {
    color: var(--text-primary);
}

.footer-links h5 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.footer-links {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-links:hover {
    transform: translateX(5px);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent-secondary);
    transition: height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 15px;
}

.footer-links a:hover::before {
    height: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.footer-bottom:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: slideInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Responsive Improvements */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 3.8rem;
    }

    .hero-visual {
        height: auto;
    }

    .ecosystem-image {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 968px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(3, 3, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 140px 5% 80px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 4rem;
        order: 1;
    }

    .hero-visual {
        width: 100%;
        order: 2;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .flow-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-card {
        flex-direction: column !important;
        text-align: center;
        gap: 3rem;
        margin-bottom: 6rem;
    }

    .product-info h3 {
        font-size: 2.2rem;
    }

    .feature-pill-list {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.6rem;
        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .flow-container {
        grid-template-columns: 1fr;
    }

    .flow-step {
        padding: 2rem;
    }

    .product-info h3 {
        font-size: 1.8rem;
    }

    .product-card {
        margin-bottom: 4rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-card {
        padding: 2.5rem 2rem;
    }

    .gateway-compare {
        grid-template-columns: 1fr;
    }

    .gateway-panel {
        padding: 1.2rem 1rem;
    }

    .gateway-flow {
        gap: 0.4rem;
    }

    .gateway-flow .feature-pill {
        font-size: 0.8rem;
    }

    .cta-glass {
        padding: 4rem 2rem;
        border-radius: 40px;
    }

    .cta h2 {
        font-size: 2.2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 2rem;
        font-size: 0.8rem;
    }
}

/* Scenario Gallery Styles */
.scenario-gallery {
    margin-top: 2rem;
}
.scenario-gallery .gallery-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.scenario-gallery .gallery-item {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.scenario-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.gallery-caption {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
}

@media (max-width: 900px) {
    .scenario-gallery .gallery-row {
        flex-direction: column;
    }
    .scenario-gallery img {
        height: 220px;
    }
}

/* Scenario Cards (responsive, neat layout) */
.scenario-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.scenario-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s cubic-bezier(0.2,0.9,0.2,1), box-shadow 0.28s;
}
.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6,182,212,0.08);
}
.scenario-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.scenario-content, .scenario-content-special {
    padding: 1rem 1rem 1.2rem;
}
.scenario-content-special {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 200px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(6, 182, 212, 0.05));
}
.scenario-content-special .tech-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}
.scenario-card h4 {
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
}
.scenario-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .scenario-card img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .scenario-card img {
        height: 160px;
    }
    .scenario-content, .scenario-content-special {
        padding: 0.85rem 0.9rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 3rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.05));
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.3);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-header .price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-header .currency {
    font-size: 1.1rem;
    vertical-align: super;
}

.pricing-header .period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #4ade80;
    font-size: 1.1rem;
}

.price-table-wrapper {
    overflow-x: auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 5rem;
    backdrop-filter: blur(10px);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-primary);
    min-width: 600px;
}

.price-table th, .price-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.price-table th {
    color: var(--accent-tertiary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-badge {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #a5b4fc;
    font-weight: 600;
}

.pricing-footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
        margin: 2rem 0;
    }
}
