:root {
    --bg: #0a0a0b;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --accent: #5e1bff;
    --accent-glow: rgba(94, 27, 255, 0.4);
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

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

.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

h1 {
    font-size: 4.5rem;
    max-width: 800px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.trust-badge {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    margin-right: 1.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px var(--accent-glow);
}

.btn-secondary {
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text);
    transition: background 0.2s;
}

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

.hero-visual {
    margin-top: 5rem;
    width: 100%;
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
}

.mockup {
    max-width: 700px;
    margin: 0 auto;
    padding: 0.5rem;
}

.mockup-header {
    padding: 10px;
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.red { background: #ff5f57; }
.yellow { background: #ffbd2e; }
.green { background: #28c840; }

.mockup-content {
    background: #000;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.waveform {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 40px;
    margin-bottom: 2rem;
}

.waveform span {
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: 4px;
    animation: wave 1.2s infinite ease-in-out;
}

.waveform span:nth-child(2) { animation-delay: 0.1s; height: 30px; }
.waveform span:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.waveform span:nth-child(4) { animation-delay: 0.3s; height: 40px; }
.waveform span:nth-child(5) { animation-delay: 0.4s; height: 25px; }

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 35px; }
}

.transcription-text {
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.section-badge {
    background: var(--accent-glow);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.features {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: left;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

.comparison {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    padding: 2rem;
}

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

th, td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

footer {
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .footer-content { flex-direction: column; gap: 1rem; }
}
