﻿/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Brand palette */
    --color-primary: #48A6D0;
    --color-primary-hover: #3D94BB;
    --color-primary-active: #327C9D;
    --color-accent: #69B9DA;
    --color-background: #F8FAFC;
    --color-secondary: #FFFFFF;
    --color-text: #1F2937;
    --color-success: #16A34A;
    --color-warning: #F59E0B;
    --color-danger: #EF4444;

    /* Colors */
    --color-bg-light: var(--color-background);
    --color-bg-white: var(--color-secondary);
    --color-bg-dark: #111827;
    --color-forest-green: var(--color-primary);
    --color-forest-green-hover: var(--color-primary-hover);
    --color-forest-green-light: #eaf4fa;
    --color-text-dark: var(--color-text);
    --color-text-muted: #4b5563;
    --color-text-light: var(--color-background);
    --color-border: #e5e7eb;
    --color-border-hover: #cbd5e1;
    --color-accent-orange: var(--color-accent);
    --color-accent-blue: var(--color-primary);
    --color-accent-purple: var(--color-accent);
    --color-accent-green: var(--color-success);

    /* Gradients */
    --color-gradient-glow: radial-gradient(
        circle at center,
        rgba(72, 166, 208, 0.08) 0%,
        rgba(72, 166, 208, 0.02) 40%,
        transparent 70%
    );
    --gradient-playground: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    --gradient-calder: radial-gradient(
        circle,
        rgba(255, 107, 0, 0.4) 0%,
        rgba(255, 107, 0, 0.1) 50%,
        rgba(255, 107, 0, 0) 70%
    );
    --gradient-aspen: radial-gradient(
        circle,
        rgba(0, 102, 255, 0.4) 0%,
        rgba(0, 102, 255, 0.1) 50%,
        rgba(0, 102, 255, 0) 70%
    );
    --gradient-willow: radial-gradient(
        circle,
        rgba(138, 43, 226, 0.4) 0%,
        rgba(138, 43, 226, 0.1) 50%,
        rgba(138, 43, 226, 0) 70%
    );

    /* Typography */
    --font-serif: Helvetica, Arial, sans-serif;

    --font-sans: Helvetica, Arial, sans-serif;

    --font-mono: Helvetica, Arial, sans-serif;

    /* Shadow & Transitions */
    --shadow-sm: 0 2px 8px rgba(72, 166, 208, 0.06);
    --shadow-md: 0 12px 30px rgba(72, 166, 208, 0.1);
    --shadow-lg: 0 22px 60px rgba(72, 166, 208, 0.14);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography elements */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
}

p {
    line-height: 1.6;
    color: var(--color-text-muted);
}

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

/* Common Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    background-color: var(--color-forest-green-light);
    color: var(--color-forest-green);
    border: 1px solid rgba(72, 166, 208, 0.1);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.badge-dark {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Highlight Styling */
.highlight-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-forest-green);
}

.highlight-serif-white {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--color-forest-green);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-forest-green-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-forest-green);
    color: var(--color-forest-green);
}

.btn-outline:hover {
    background-color: var(--color-forest-green-light);
    transform: translateY(-1px);
}

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

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

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

.btn-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.btn-link:hover {
    color: var(--color-forest-green);
}

/* ==========================================================================
   ANNOUNCEMENT & HEADER
   ========================================================================== */
.announcement-banner {
    background-color: var(--color-forest-green);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

.announcement-banner a {
    display: block;
    transition: opacity var(--transition-fast);
}

.announcement-banner a:hover {
    opacity: 0.9;
}

/* Main Header */
.main-header {
    position: sticky;
    top: 0;
    background-color: rgba(246, 245, 242, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: background-color var(--transition-fast);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Navigation items */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-text-dark);
}

/* Dropdown styling */
.nav-item.dropdown {
    position: relative;
}

.dropdown-trigger {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.dropdown-trigger .arrow {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-trigger {
    color: var(--color-text-dark);
}

.dropdown:hover .dropdown-trigger .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

/* Header actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-dot-anim {
    animation: logoGlow 4s infinite alternate;
}

@keyframes logoGlow {
    0% {
        fill: #48A6D0;
        filter: drop-shadow(0 0 1px #48A6D0);
    }

    100% {
        fill: #3D94BB;
        filter: drop-shadow(0 0 8px #69B9DA);
    }
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: all var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 112px;
    /* banner + navbar */
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--color-bg-light);
    z-index: 999;
    overflow: hidden;
    transition: height var(--transition-medium);
    border-bottom: 0 solid var(--color-border);
}

.mobile-nav-overlay.active {
    height: calc(100vh - 112px);
    border-bottom-width: 1px;
}

.mobile-menu-content {
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-content a {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.mobile-menu-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 10px 0;
}

/* ==========================================================================
   HERO SECTION & PLAYGROUND
   ========================================================================== */
.hero-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(72, 166, 208, 0.12) 0%, rgba(72, 166, 208, 0.04) 36%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: flex-end;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.badge-hero {
    animation: pulseBadge 2s infinite alternate;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.03);
        box-shadow: 0 0 8px rgba(72, 166, 208, 0.15);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    line-height: 1.1;
}

.hero-desc {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.6;
    color: var(--color-text-muted);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Playground Card styling */
.playground-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
    border: 1px solid rgba(72, 166, 208, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.playground-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 24px 0;
}

.playground-tabs {
    display: flex;
    gap: 8px;
}

.playground-tab {
    background: none;
    border: none;
    padding: 14px 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    position: relative;
    transition: color var(--transition-fast);
}

.playground-tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.playground-tab.active {
    color: var(--color-primary);
    font-weight: 600;
}

.playground-tab.active::after {
    transform: scaleX(1);
}

.playground-content {
    padding: 32px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* TTS Playground Content */
.tts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tts-editor {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tts-editor label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-forest-green);
    text-transform: uppercase;
}

.tts-editor textarea {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    border: 1px solid rgba(72, 166, 208, 0.12);
    background: var(--color-bg-white);
    padding: 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-text-dark);
    resize: none;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: inset 0 2px 6px rgba(72, 166, 208, 0.04);
}

.tts-editor textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(72, 166, 208, 0.08);
}

.tts-controls {
    display: flex;
    gap: 16px;
}

/* Select wrapper styling */
.select-wrapper {
    position: relative;
    flex: 1;
}

.select-wrapper select {
    width: 100%;
    padding: 10px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(72, 166, 208, 0.12);
    background: var(--color-bg-white);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    outline: none;
    cursor: pointer;
    appearance: none;
}

.select-wrapper::after {
    content: "â–¼";
    font-size: 9px;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
}

/* Play button style */
.play-icon {
    margin-left: 8px;
    transition: transform var(--transition-fast);
}

.btn:hover .play-icon {
    transform: scale(1.1);
}

.tts-output-panel {
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    border: 1px solid rgba(72, 166, 208, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    box-shadow: var(--shadow-sm);
}

.audio-waveform-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-top: 16px;
}

.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.waveform .bar {
    display: inline-block;
    width: 3px;
    height: 15%;
    background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
    border-radius: 3px;
    transition: height var(--transition-fast);
}

.waveform.playing .bar {
    animation: wavePulse 1.2s ease-in-out infinite alternate;
}

/* Stagger animations for wave bars */
.waveform.playing .bar:nth-child(2n) {
    animation-delay: 0.15s;
}

.waveform.playing .bar:nth-child(3n) {
    animation-delay: 0.3s;
}

.waveform.playing .bar:nth-child(4n) {
    animation-delay: 0.45s;
}

.waveform.playing .bar:nth-child(5n) {
    animation-delay: 0.05s;
}

@keyframes wavePulse {
    0% {
        height: 15%;
    }

    100% {
        height: 90%;
    }
}

.audio-player-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.audio-transcript {
    font-family: var(--font-sans);
    font-size: 14px;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Realtime API Orb panel styling */
.realtime-api-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.api-interactive {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 32px;
    min-height: 280px;
}

.voice-orbs-container {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.voice-orb-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.voice-orb-wrapper:hover {
    transform: translateY(-4px);
}

.voice-orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.orb-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.4);
    transition: transform var(--transition-medium);
}

/* Individual Orbs */
.calder-orb .orb-inner {
    background: radial-gradient(circle at 30% 30%, #ffa800 0%, #ff5c00 100%);
}

.calder-orb .orb-glow {
    background: var(--gradient-calder);
}

.aspen-orb .orb-inner {
    background: radial-gradient(circle at 30% 30%, #0094ff 0%, #0047ff 100%);
}

.aspen-orb .orb-glow {
    background: var(--gradient-aspen);
}

.willow-orb .orb-inner {
    background: radial-gradient(circle at 30% 30%, #d946ef 0%, #8b5cf6 100%);
}

.willow-orb .orb-glow {
    background: var(--gradient-willow);
}

/* Active Orb State */
.voice-orb-wrapper.active .orb-glow {
    opacity: 1;
}

.voice-orb-wrapper.active .orb-inner {
    animation: orbPulsate 2s infinite ease-in-out alternate;
    transform: scale(1.1);
}

@keyframes orbPulsate {
    0% {
        transform: scale(1.05) rotate(0deg);
    }

    100% {
        transform: scale(1.2) rotate(180deg);
        filter: hue-rotate(15deg);
    }
}

.orb-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-dark);
}

.orb-sub {
    font-size: 11px;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.api-demo-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.api-demo-details h3 {
    font-size: 20px;
    color: var(--color-text-dark);
}

.api-demo-details p {
    font-size: 14px;
}

/* Console Styling */
.console-box {
    background-color: var(--color-bg-dark);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.console-header {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.console-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.console-header .dot.red {
    background-color: #ff5f56;
}

.console-header .dot.yellow {
    background-color: #ffbd2e;
}

.console-header .dot.green {
    background-color: #27c93f;
}

.console-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 6px;
}

.console-code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    padding: 16px;
    margin: 0;
    line-height: 1.5;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* STT Tab Content styling */
.stt-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
}

.stt-mic-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
}

.mic-button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--color-forest-green);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: background-color var(--transition-fast);
}

.mic-button:hover {
    background-color: var(--color-forest-green-hover);
}

.mic-pulse {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--color-forest-green);
    opacity: 0.4;
    z-index: 1;
    transform: scale(1);
    transition: transform var(--transition-medium);
}

.stt-container.recording .mic-pulse {
    animation: micGlow 1.5s infinite ease-out;
}

@keyframes micGlow {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.mic-status {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 16px;
    font-weight: 500;
}

.stt-transcript-box {
    padding: 20px;
    min-height: 120px;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}

.stt-transcript-box span.placeholder-text {
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-mono);
}

/* Cursor blink for STT transcription */
.cursor {
    animation: blinkCursor 0.8s step-end infinite;
    font-weight: 700;
}

@keyframes blinkCursor {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* LLM Routing Tab styling */
.router-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.router-rules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.router-rules h4,
.router-playground h4 {
    font-size: 15px;
    font-family: var(--font-mono);
    color: var(--color-forest-green);
}

.rule-tabs {
    display: flex;
    gap: 6px;
}

.rule-tab {
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--color-text-muted);
}

.rule-tab.active {
    background-color: var(--color-forest-green);
    border-color: var(--color-forest-green);
    color: #fff;
}

.rule-code-box {
    flex-grow: 1;
}

.router-playground {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.mock-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 160px;
    overflow-y: auto;
    padding: 8px 0;
}

.chat-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
}

.chat-message.user {
    align-self: flex-end;
    background-color: var(--color-border);
    color: var(--color-text-dark);
    border-bottom-right-radius: 2px;
}

.chat-message.bot {
    align-self: flex-start;
    background-color: var(--color-forest-green-light);
    color: var(--color-forest-green);
    border-bottom-left-radius: 2px;
    position: relative;
}

.chat-meta {
    display: block;
    font-size: 9px;
    font-family: var(--font-mono);
    margin-top: 4px;
    color: var(--color-text-muted);
}

.chat-input-wrapper {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.chat-input-wrapper input {
    flex-grow: 1;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid var(--color-border);
    font-size: 13px;
    outline: none;
}

.chat-input-wrapper input:focus {
    border-color: var(--color-forest-green);
}

/* ==========================================================================
   USE CASES BANNER
   ========================================================================== */
.use-cases-section {
    background-color: var(--color-forest-green);
    color: #fff;
    padding: 80px 0;
}

.use-cases-header {
    text-align: center;
    margin-bottom: 48px;
}

.use-cases-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 24px;
}

.use-cases-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.use-case-tab {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.use-case-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.use-case-tab.active {
    background: #fff;
    color: var(--color-forest-green);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.use-case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    animation: fadeIn 0.4s ease-out;
}

.use-case-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.metric-value {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-mono);
}

.use-case-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.use-case-right h3 {
    font-size: 32px;
}

.use-case-right p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.use-case-right .btn {
    align-self: flex-start;
    margin-top: 10px;
}

/* ==========================================================================
   COST & PRICING COMPARISON
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
}

.section-title-wrap {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 56px;
}

.section-title-wrap h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 15px;
}

.pricing-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.pricing-card h3 {
    font-size: 18px;
    font-family: var(--font-mono);
    color: var(--color-text-muted);
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    height: 280px;
    max-width: 700px;
    margin: 0 auto 48px;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-muted);
    height: 100%;
    padding-bottom: 24px;
    /* Align with label row */
}

.chart-bars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    height: 100%;
    border-left: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 0 16px;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.bar-container {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.bar {
    width: 100%;
    height: 0%;
    /* Animated to style height by JS */
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-competitor {
    background-color: var(--color-border-hover);
}

.bar-pekci {
    background-color: var(--color-forest-green);
}

.bar-value {
    position: absolute;
    top: -24px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.bar-pekci .bar-value {
    color: var(--color-forest-green);
    font-weight: 700;
}

.bar-label {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 10px;
    white-space: nowrap;
}

.font-bold {
    font-weight: 700;
    color: var(--color-forest-green);
}

.pricing-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pricing-summary p {
    font-size: 15px;
}

/* ==========================================================================
   FEATURES SECTION (REALTIME TTS GRID)
   ========================================================================== */
.features-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.features-grid-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}

.features-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-left h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.features-intro {
    font-size: 15px;
    margin-bottom: 16px;
}

/* Quality ELO benchmark styling */
.quality-elo-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
}

.quality-elo-card h4 {
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.elo-ranking {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.elo-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 12px;
}

.elo-name {
    font-size: 11px;
    font-weight: 600;
}

.elo-bar-wrap {
    background-color: rgba(0, 0, 0, 0.05);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.elo-bar {
    height: 100%;
    border-radius: 4px;
}

.elo-bar.green {
    background-color: var(--color-forest-green);
}

.elo-bar.gray {
    background-color: var(--color-text-muted);
}

.elo-score {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
}

/* 3x2 Grid on the right */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-light);
    padding: 24px;
    border-radius: 16px;
    transition: all var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.feature-card p {
    font-size: 13px;
    line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.testimonials-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    max-width: 550px;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background-color: var(--color-forest-green-light);
    border-color: var(--color-forest-green);
    color: var(--color-forest-green);
}

.testimonials-slider-container {
    width: 100%;
    margin-bottom: 24px;
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    transition: transform var(--transition-medium);
    width: max-content;
    /* Dynamically sized */
}

.testimonial-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 36px;
    width: 420px;
    /* Fixed width for standard scroll */
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    transition: border-color var(--transition-fast);
}

.testimonial-card:hover {
    border-color: var(--color-border-hover);
}

.test-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    position: relative;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: #1a1f1a;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.author-company {
    font-size: 11px;
    color: var(--color-text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.dot-btn {
    background-color: var(--color-border);
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-fast);
}

.dot-btn.active {
    background-color: var(--color-forest-green);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   REALTIME API SECTION
   ========================================================================== */
.realtime-api-details-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-border);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.api-demo-panel {
    display: flex;
    justify-content: center;
}

.mock-voice-console {
    width: 100%;
    background-color: var(--color-bg-dark);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.console-head {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.pulsing-recording-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent-orange);
    animation: recPulse 1s infinite alternate;
}

@keyframes recPulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.logs-timestamp {
    margin-left: auto;
    color: var(--color-accent-orange);
}

.console-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 240px;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
}

.chat-bubble.left {
    align-self: flex-start;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom-left-radius: 2px;
}

.chat-bubble.right {
    align-self: flex-end;
    background-color: rgba(72, 166, 208, 0.3);
    border: 1px solid rgba(72, 166, 208, 0.4);
    border-bottom-right-radius: 2px;
}

.bubble-speaker {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.console-status-row {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    display: flex;
    gap: 12px;
}

.status-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.03);
    padding: 4px 8px;
    border-radius: 4px;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* ==========================================================================
   REALTIME ROUTER SECTION
   ========================================================================== */
.router-section {
    padding: 100px 0;
    border-top: 1px solid var(--color-border);
}

.router-details-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.router-details-left h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.model-traffic-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    margin-top: 12px;
    box-shadow: var(--shadow-sm);
}

.model-traffic-card h4 {
    font-size: 13px;
    font-family: var(--font-mono);
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.traffic-meter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.traffic-meter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.traffic-meter .model-name {
    font-size: 11px;
    font-weight: 600;
    width: 110px;
}

.meter-bar-wrap {
    flex-grow: 1;
    background-color: var(--color-bg-light);
    height: 18px;
    border-radius: 9px;
    overflow: hidden;
}

.meter-bar {
    background-color: var(--color-forest-green);
    height: 100%;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    border-radius: 9px;
    transition: width 1s ease-out;
}

.traffic-meter:nth-child(2) .meter-bar {
    background-color: var(--color-text-muted);
}

.traffic-meter:nth-child(3) .meter-bar {
    background-color: var(--color-border-hover);
    color: var(--color-text-dark);
}

/* Code Editor Card styling */
.code-editor-card {
    background-color: var(--color-bg-dark);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.editor-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.editor-tabs {
    display: flex;
}

.editor-tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.editor-tab:hover {
    color: rgba(255, 255, 255, 0.85);
}

.editor-tab.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom-color: var(--color-forest-green);
}

.editor-body {
    padding: 0;
}

.editor-code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    padding: 24px;
    overflow-x: auto;
}

/* ==========================================================================
   REALTIME STT SECTION
   ========================================================================== */
.stt-details-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-border);
}

.stt-visual-panel {
    display: flex;
    justify-content: center;
}

.nature-overlay-container {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0a2e1a 0%, #48A6D0 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble-overlay {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-text-dark);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    border-bottom-left-radius: 2px;
}

.bubble-overlay.float-1 {
    top: 40px;
    left: 30px;
    animation: floatOverlay 6s infinite ease-in-out alternate;
}

.bubble-overlay.float-2 {
    bottom: 60px;
    right: 35px;
    animation: floatOverlay 6s infinite ease-in-out alternate-reverse;
}

@keyframes floatOverlay {
    0% {
        transform: translateY(0);
    }

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

.stt-live-wave {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stt-live-wave span {
    width: 4px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    animation: pulseHeight 1.5s infinite ease-in-out alternate;
}

.stt-live-wave span:nth-child(2) {
    animation-delay: 0.15s;
}

.stt-live-wave span:nth-child(3) {
    animation-delay: 0.3s;
}

.stt-live-wave span:nth-child(4) {
    animation-delay: 0.45s;
}

.stt-live-wave span:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes pulseHeight {
    0% {
        height: 10px;
        opacity: 0.3;
    }

    100% {
        height: 40px;
        opacity: 1;
    }
}

.stt-details-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stt-details-right h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

/* ==========================================================================
   SECURITY SECTION
   ========================================================================== */
.security-section {
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 100px 0;
}

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

.security-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.security-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.security-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.compliance-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: all var(--transition-fast);
}

.badge-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(72, 166, 208, 0.3);
}

.badge-card span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   COMPARISON TABLE SECTION
   ========================================================================== */
.comparison-section {
    padding: 100px 0;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.comparison-table th {
    font-weight: 600;
    color: var(--color-text-muted);
}

.comparison-table td.feature-name {
    font-weight: 500;
    color: var(--color-text-dark);
}

.comparison-table td.check {
    color: var(--color-forest-green);
    font-weight: 600;
}

/* Column highlighting */
.comparison-table .active-col {
    background-color: rgba(72, 166, 208, 0.02);
    border-left: 1px solid rgba(72, 166, 208, 0.05);
    border-right: 1px solid rgba(72, 166, 208, 0.05);
}

.comparison-table th.active-col {
    color: var(--color-forest-green);
    font-weight: 700;
    border-bottom: 2px solid var(--color-forest-green);
}

.comparison-table td.cost-highlight {
    font-weight: 700;
    color: var(--color-forest-green);
}

/* ==========================================================================
   PRICING PLANS (Inworld Style) - Added for index.html
   ========================================================================== */
.pricing-offer-banner {
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(72, 166, 208, 0.06);
    border: 1px solid rgba(72, 166, 208, 0.15);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pricing-offer-banner .offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-forest-green);
    white-space: nowrap;
}

.pricing-offer-banner .offer-badge svg {
    width: 14px;
    height: 14px;
}

.pricing-offer-banner .offer-text {
    font-size: 14px;
    color: var(--color-text-dark);
}

.pricing-offer-banner .offer-text strong {
    font-weight: 600;
}

.billing-toggle-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.billing-toggle {
    display: inline-flex;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    padding: 3px;
}

.billing-toggle button {
    padding: 8px 16px;
    border-radius: 9999px;
    border: none;
    background: none;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--color-text-muted);
    white-space: nowrap;
}

.billing-toggle button.active {
    background-color: var(--color-text-dark);
    color: #fff;
}

.billing-toggle button .save-badge {
    color: var(--color-forest-green);
    font-weight: 600;
}

.billing-toggle button.active .save-badge {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding-top: 32px;
}

.pricing-card-wrapper {
    display: flex;
    flex-direction: column;
}

.pricing-plan-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
}

.pricing-plan-card:hover {
    border-color: var(--color-forest-green);
    box-shadow: 0 8px 24px rgba(72, 166, 208, 0.08);
}

.pricing-plan-card.popular {
    border-color: var(--color-forest-green);
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.pricing-plan-card.popular .card-hover-overlay {
    opacity: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.02) 100%
    );
}

.popular-badge {
    background-color: var(--color-text-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: block;
    text-align: left;
    font-family: var(--font-mono);
}

.card-hover-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0;
}

.pricing-plan-card:hover .card-hover-overlay {
    opacity: 1;
    background: linear-gradient(
        180deg,
        rgba(72, 166, 208, 0.03) 0%,
        transparent 100%
    );
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.card-content .card-subtitle {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 2px;
    line-height: 1.3;
}

.card-content .card-price {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 8px;
    min-height: 24px;
}

.pricing-rows {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    padding: 1px 0;
}

.pricing-row .row-label {
    font-size: 12px;
    color: var(--color-text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.pricing-row .row-value {
    font-size: 12px;
    color: var(--color-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-row .row-value .strikethrough {
    font-size: 11px;
    text-decoration: line-through;
    color: rgba(92, 98, 92, 0.3);
}

.pricing-row .row-value .link {
    color: var(--color-text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.card-btn-wrap {
    margin-top: auto;
    padding-top: 16px;
}

.card-btn-wrap .btn {
    width: 100%;
    font-size: 12px;
}

.features-list-wrap {
    padding-top: 16px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 12px;
    line-height: 1.3;
    color: var(--color-text-dark);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li .check-icon {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-forest-green);
}

.features-list li .x-icon {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-text-muted);
    opacity: 0.4;
}

.features-list li.muted {
    color: var(--color-text-muted);
}

.features-list li strong {
    font-weight: 600;
}

.features-list .inherit-text {
    color: var(--color-text-muted);
    font-size: 12px;
}

.show-yearly {
    display: none;
}

.billing-yearly .show-monthly {
    display: none;
}

.billing-yearly .show-yearly {
    display: inline;
}

@media (max-width: 1200px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding-top: 24px;
    }

    .billing-toggle-wrapper {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   CALL TO ACTION & FOOTER
   ========================================================================== */
.cta-section {
    padding: 60px 0 100px;
}

.cta-card {
    background-color: var(--color-forest-green);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    padding: 64px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 60%
    );
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: #fff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* Main Footer styling */
.main-footer {
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.5;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-col h4 {
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    font-size: 13px;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--color-forest-green);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 48px 0 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--color-forest-green);
}

/* ==========================================================================
   pekci HERO SECTION
   ========================================================================== */
.pekci-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #07121e;
}

.pekci-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center;
    z-index: 0;
}

.pekci-hero-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 1.25rem;
}

.pekci-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pekci-nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pekci-nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pekci-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.pekci-dropdown {
    position: relative;
    display: inline-flex;
}

.pekci-dropdown-trigger {
    cursor: pointer;
}

.pekci-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 6px 0;
    z-index: 1000;
    margin-top: 4px;
}

.pekci-dropdown:hover .pekci-dropdown-menu {
    display: block;
}

.pekci-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-family: var(--font-sans);
    white-space: nowrap;
    transition: background 0.15s ease;
}

.pekci-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pekci-logo {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
}

.pekci-brand {
    font-family: var(--font-sans);
    color: #000000;
    font-size: 36px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pekci-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    margin-left: 0.75rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.2rem;
}

.pekci-menu-toggle span {
    display: block;
    width: 1rem;
    height: 1px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pekci-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.pekci-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.pekci-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.pekci-join-desktop {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.pekci-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.85rem;
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pekci-mobile-menu.is-open {
    display: flex;
}

.pekci-mobile-menu a {
    color: #ffffff;
    font-size: 0.95rem;
    text-decoration: none;
}

.pekci-mobile-cta {
    display: inline-flex;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-weight: 600;
}

.pekci-mobile-spacer {
    flex: 1;
    display: block;
}

.pekci-main-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 0.25rem;
}

.pekci-copy {
    max-width: 44rem;
}

.pekci-heading {
    font-family: 'Askan Light', serif;
    color: #ffffff;
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 0.9rem;
    max-width: 42rem;
}

.pekci-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 32rem;
    margin-bottom: 1rem;
}

.pekci-email-form {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 34rem;
    padding: 0.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pekci-email-form input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 0.75rem 0.85rem;
}

.pekci-email-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.pekci-email-form button {
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.pekci-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 32rem;
    margin-bottom: 1rem;
}



.pekci-mobile-pills,
.pekci-feature-column {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pekci-feature-column {
    display: none;
}

.pekci-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 0.75rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 640px) {
    .pekci-hero-content {
        padding: 1.25rem 2.5rem 2rem;
    }

    .pekci-join-desktop {
        display: inline-flex;
    }

    .pekci-heading {
        font-size: clamp(2.8rem, 5vw, 4.2rem);
    }

    .pekci-subtitle {
        font-size: 1rem;
    }

    .pekci-email-form button {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }

    .pekci-feature-column {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        flex-direction: column;
        gap: 0.8rem;
        margin-left: auto;
        margin-top: auto;
    }
}

@media (min-width: 768px) {
    .pekci-video {
        object-position: right center;
    }

    .pekci-main-content {
        flex: 1;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 0.75rem;
    }

    .pekci-mobile-pills {
        display: none;
    }
}

@media (min-width: 1024px) {
    .pekci-video {
        object-position: center center;
    }

    .pekci-hero-content {
        padding: 1.5rem 3rem 2.6rem;
    }

    .pekci-heading {
        font-size: clamp(3.5rem, 4.5vw, 5.25rem);
    }

    .pekci-subtitle {
        font-size: 1.08rem;
        max-width: 34rem;
    }
}

/* ==========================================================================
   RESPONSIVENESS & MEDIA QUERIES
   ========================================================================== */

/* Tablet & Smaller Devices */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: flex-start;
    }

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

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

    .hero-desc {
        text-align: center;
    }

    .tts-container,
    .realtime-api-container,
    .router-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .use-case-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile & Smaller Devices */
@media (max-width: 768px) {
    .nav-links,
    .nav-actions .btn-outline,
    .nav-actions .btn-primary,
    .nav-actions .btn-link {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .announcement-banner {
        font-size: 11px;
    }

    .playground-content {
        padding: 16px;
    }

    .playground-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
    }

    .tts-controls {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .chart-bars {
        gap: 8px;
        padding: 0 4px;
    }

    .bar-label {
        font-size: 9px;
    }

    .compliance-badges {
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ==========================================================================
   VIDEO HERO SECTION (New Header)
   ========================================================================== */
.video-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 115%;
    height: 115%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(72, 166, 208, 0.68) 0%, rgba(72, 166, 208, 0.36) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Navigation */
.video-nav {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 16px 120px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -1.44px;
    color: var(--color-secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu-item {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.2px;
    color: var(--color-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}

.nav-menu-item:hover {
    opacity: 0.8;
}

.chevron-down {
    width: 16px;
    height: 16px;
}

.features-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 40px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.2px;
    color: var(--color-secondary);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-signup:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 101px;
    height: 40px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.2px;
    color: var(--color-secondary);
    background: var(--color-accent);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-login:hover {
    opacity: 0.9;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-top: -50px;
    padding: 0 120px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
}

.badge-dark-star {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 14px;
}

.badge-dark-star svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.badge-light-text {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-headline {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 80px;
    letter-spacing: -4.8px;
    line-height: 1;
    color: var(--color-secondary);
    margin: 0 0 34px 0;
    text-align: center;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.4px;
    color: rgba(255, 255, 255, 0.86);
    max-width: 736px;
    width: 542px;
    margin: 0 auto 44px;
    text-align: center;
    line-height: 1.5;
}

/* Search Box */
.search-box {
    width: 100%;
    max-width: 728px;
    background: rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 16px;
    min-height: 200px;
}

.search-box-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-credits {
    display: flex;
    align-items: center;
    gap: 8px;
}

.credit-text {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    color: #fff;
}

.upgrade-btn {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: var(--color-success);
    color: var(--color-secondary);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
}

.search-powered {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    color: #fff;
}

.search-powered svg {
    width: 14px;
    height: 14px;
}

.search-input-area {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-family: var(--font-sans);
    font-size: 16px;
    color: #000;
    background: transparent;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.search-submit-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.search-submit-btn svg {
    color: var(--color-secondary);
}

.search-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-secondary);
    border: none;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.action-btn svg {
    width: 14px;
    height: 14px;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.char-counter {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .video-nav {
        padding: 16px 24px;
    }
    .nav-menu {
        display: none;
    }
    .hero-content {
        padding: 0 24px;
    }
    .hero-headline {
        font-size: 48px;
        letter-spacing: -2.88px;
    }
    .hero-subtitle {
        width: 100%;
        font-size: 16px;
    }
    .search-box {
        max-width: 100%;
    }
    .nav-buttons {
        gap: 4px;
    }
    .btn-signup,
    .btn-login {
        width: auto;
        padding: 0 12px;
        font-size: 14px;
    }
}

