:root {
    --bg-color: #0c0807;
    --surface-color: #1a1210;
    --accent-color: #8d6e63;
    --accent-light: #d7ccc8;
    --text-primary: #f5ebe0;
    --text-secondary: #d5bdaf;
    --gold: #c6a664;
    --glass: rgba(26, 18, 16, 0.7);
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

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

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo .dot {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-cta {
    background: linear-gradient(135deg, var(--gold), #a18146);
    color: #111;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(198, 166, 100, 0.3);
}

/* --- Hero Sequence --- */
.hero-seq__container {
    position: relative;
    height: 300vh; /* For scrolling effects if needed */
    background: var(--bg-color);
}

.hero-seq__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-seq__group1, 
.hero-seq__group2 {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
}

/* Image Fallbacks */
.download_card-bg {
    background: linear-gradient(135deg, #1a1210, #2a1b16);
}

.download_card-gradient {
    display: none; /* Hide if 404 */
}

.hero-seq__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 166, 100, 0.1);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-seq__headline {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
}

.hero-seq__headline-accent {
    background: linear-gradient(to right, var(--gold), #f28b5a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-seq__subheadline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.hero-seq__group2-headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.hero-seq__group2-body {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-seq__group2-accent {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-seq__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: black;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hero-seq__cta:hover {
    transform: translateY(-5px) scale(1.02);
}

.hero-seq__canvas-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
}

.hero-seq__canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble-bg {
    position: absolute;
    background: radial-gradient(circle at center, var(--accent-color), transparent);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    animation: floating 15s infinite ease-in-out;
}

@keyframes floating {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -50px); }
}

/* --- SprichKlartext Features Section --- */
.section_features {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-primary);
}

.features_header {
    text-align: center;
    margin-bottom: 4rem;
}

.features_label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features_headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.features_carousel_wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.features_carousel {
    width: 100%;
}

.features_track {
    display: grid;
    grid-template-columns: repeat(4, 350px);
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    padding: 1rem 0;
    box-sizing: border-box;
}

.feature-card {
    scroll-snap-align: center;
    background-color: var(--surface-color);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    width: 350px;
}

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

/* Color thematic overlays matching "Organic Warm" */
.feature-card--orange { background: linear-gradient(145deg, #2a1b16 0%, var(--surface-color) 100%); }
.feature-card--purple { background: linear-gradient(145deg, #2b231c 0%, var(--surface-color) 100%); }
.feature-card--blue   { background: linear-gradient(145deg, #1c1f24 0%, var(--surface-color) 100%); }

.feature-card_illustration {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}
.feature-card--orange .feature-card_illustration:before {
    content: "";
    opacity: .6;
    mix-blend-mode: screen;
    z-index: 0;
    background-image: url(images/orange_clouds.jpeg);
    background-position: top;
    background-size: cover;
    animation: 20s ease-in-out infinite alternate card-bg-zoom;
    position: absolute;
    inset: -20px;
    -webkit-mask-image: linear-gradient(#0000 0%, #000 100%);
    mask-image: linear-gradient(#0000 0%, #000 100%);
}

.feature-card--blue .feature-card_illustration:before {
    content: "";
    opacity: .6;
    mix-blend-mode: screen;
    z-index: 0;
    background-image: url(images/blue_nebula.png);
    background-position: top;
    background-size: cover;
    animation: 25s ease-in-out infinite alternate card-bg-zoom;
    position: absolute;
    inset: -20px;
    -webkit-mask-image: linear-gradient(#0000 0%, #000 100%);
    mask-image: linear-gradient(#0000 0%, #000 100%);
}

.feature-card--purple .feature-card_illustration:before {
    content: "";
    opacity: .7;
    mix-blend-mode: screen;
    z-index: 0;
    background-image: url(images/purple_aurora.png);
    background-position: top;
    background-size: cover;
    animation: 15s ease-in-out infinite alternate card-bg-pan;
    position: absolute;
    inset: -20px;
    -webkit-mask-image: linear-gradient(#0000 0%, #000 100%);
    mask-image: linear-gradient(#0000 0%, #000 100%);
}

.feature-card--grey .feature-card_illustration:before {
    content: "";
    opacity: .5;
    mix-blend-mode: screen;
    z-index: 0;
    background-image: url(images/northern_lights.jpeg);
    background-position: top;
    background-size: cover;
    animation: 22s ease-in-out infinite alternate card-bg-pan;
    position: absolute;
    inset: -20px;
    -webkit-mask-image: linear-gradient(#0000 0%, #000 100%);
    mask-image: linear-gradient(#0000 0%, #000 100%);
}
.feature-card_content {
    padding: 2rem;
    flex: 1;
}

.feature-card_icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card_title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card_title--orange { color: #f28b5a; }
.feature-card_title--purple { color: #d4a373; }
.feature-card_title--blue   { color: #c6a664; }

.feature-card_desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Feature 1: Shortcut Illustration */
.illustration_shortcut {
    position: relative;
    text-align: center;
}
.shortcut_keys {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}
.shortcut_key {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5), inset 0 2px 0 rgba(255,255,255,0.1);
}
.shortcut_plus { font-weight: bold; color: var(--text-secondary); }
.shortcut_pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 2px solid #ef6a42;
    opacity: 0;
    animation: shortcut-pulse 3s infinite;
}
.shortcut_pulse-ring--2 {
    animation-delay: 1.5s;
}
@keyframes shortcut-pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}
.shortcut_label {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ef6a42;
}

/* Feature 2: Offline Illustration */
.illustration_offline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.offline_wifi-icon {
    position: relative;
    opacity: 0.3;
}
.offline_pill {
    background: #111;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.offline_label { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.offline_toggle { width: 44px; height: 24px; border-radius: 12px; background: #333; position: relative; padding: 2px; }
.offline_toggle-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--text-secondary); position: absolute; left: 2px; transition: 0.3s; }

/* Feature 3: Deutsch Illustration */
.illustration_deutsch { 
    width: 100%; 
    height: 100%; 
    position: relative; 
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
}
.deutsch_floating-words {
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
    mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
}
.de-word {
    position: absolute;
    color: var(--text-secondary);
    font-weight: 700;
    opacity: 0.08;
    font-size: 1.2rem;
    animation: de-floating 15s infinite linear;
}
/* Randomize words roughly */
.de-word-1 { top: 15%; left: 10%; animation-duration: 25s; }
.de-word-2 { top: 55%; left: 75%; animation-duration: 22s; font-size: 1rem;}
.de-word-3 { top: 35%; left: 45%; animation-duration: 28s; font-size: 1.5rem;}
.de-word-4 { top: 85%; left: 15%; animation-duration: 20s; }
.de-word-5 { top: 25%; left: 85%; animation-duration: 24s; font-size: 0.9rem;}
.de-word-6 { top: 5%; left: 35%; animation-duration: 27s; }
.de-word-7 { top: 65%; left: 55%; animation-duration: 21s; }
.de-word-8 { top: 25%; left: 90%; animation-duration: 29s; font-size: 0.8rem;}

@keyframes de-floating {
    0% { transform: translateY(50px); opacity: 0; }
    50% { opacity: 0.15; }
    100% { transform: translateY(-50px); opacity: 0; }
}

.deutsch_text-badge {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2;
}
.deutsch_text-de { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.deutsch_text-accuracy { font-size: 0.65rem; color: #60A5FA; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Feature 4: Matrix Privacy */
.matrix_bg {
    position: absolute; inset: 0;
    pointer-events: none; opacity: 0.15;
}
.matrix_col {
    position: absolute;
    top: -100%;
    color: #34d399;
    font-family: monospace;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.2;
    animation: matrix-fall var(--duration) linear infinite;
    animation-delay: var(--delay);
}
@keyframes matrix-fall {
    0% { top: -100%; opacity: 1; }
    100% { top: 100%; opacity: 0.2; }
}
@keyframes data-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Secondary Features */
.features_secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.secondary-feature {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s;
}

.secondary-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.secondary-feature_icon {
    width: 48px;
    height: 48px;
    background: rgba(198, 166, 100, 0.1);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.secondary-feature_title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.secondary-feature_desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.features_dots {
    display: none;
}

.features_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.features_dot--active {
    background: var(--gold);
}

@media (max-width: 1024px) {
    .features_track {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .features_track {
        grid-template-columns: 1fr;
    }
}

/* --- Comparison --- */
.comparison {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-color), var(--surface-color));
}

.comp-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.stat-vs {
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.3;
}

/* --- Animations --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-aos].active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes glow {
    0%, 100% { filter: blur(40px) brightness(1); }
    50% { filter: blur(60px) brightness(1.3); }
}

.bubble-bg {
    animation: floating 15s infinite ease-in-out, glow 8s infinite alternate;
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .comp-stats { flex-direction: column; gap: 2rem; }
}

/* --- Vapour Text Section --- */
.vapour_text_container {
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    display: flex;
    position: relative
}

#vapourTextCanvas {
    pointer-events: none;
    width: 100%;
    height: 100%
}

/* --- Denglisch Section --- */
.section_denglisch {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.denglisch_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.denglisch_header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.denglisch_label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.denglisch_headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.denglisch_desc {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
}

.denglisch_card {
    height: 400px;
    background: var(--surface-color);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.illustration_denglisch {
    width: 100%;
    height: 100%;
    position: relative;
}

.denglisch-thought {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(var(--dx, 0), var(--dy, 0));
    width: 300px;
    z-index: 2;
    transition: transform 0.5s ease;
}

.thought-cloud {
    background: rgba(45, 28, 24, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.thought-cloud__text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.4;
    display: block;
}

.thought-tail {
    position: absolute;
    bottom: -20px;
    left: 30px;
}

.thought-dot {
    background: rgba(45, 28, 24, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 5px;
}

.thought-dot--lg { width: 15px; height: 15px; }
.thought-dot--sm { width: 8px; height: 8px; margin-left: -5px; }

/* --- Agentic / Vibecoder Section --- */
.section_agentic {
    padding: 100px 0;
    margin-bottom: 50px;
}

.agentic_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .agentic_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .agentic_features {
        align-items: center;
    }
}

.agentic_label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.agentic_headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.agentic_subline {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.agentic_features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.agentic_feature {
    display: flex;
    gap: 1.5rem;
}

.agentic_feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.agentic_feature-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.agentic_terminal {
    background: #0d0d0d;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    position: relative;
    max-width: 100%;
    height: auto;
}

.terminal_animated {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    color: #fffc;
    max-width: 100%;
    margin-top: 2px;
    margin-left: 0;
    line-height: 1.3;
    overflow: hidden;
}

.terminal_chrome {
    background: #1a1a1a;
    padding: 12px 18px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
}

.window_controls {
    display: flex;
    gap: 8px;
}

.window_controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window_controls span:nth-child(1) { background: #ff5f56; }
.window_controls span:nth-child(2) { background: #ffbd2e; }
.window_controls span:nth-child(3) { background: #27c93f; }

.terminal_body {
    padding: 25px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a9b1d6;
    min-height: 300px;
    overflow: hidden;
}

.terminal_mascot_container {
    white-space: pre;
    color: #7aa2f7;
}

.terminal_dim { color: #565f89; }
.terminal_white { color: #c0caf5; }

/* Terminal Prompt & Animations */
.terminal_prompt_container {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.terminal_prompt--visible {
    opacity: 1;
}

.terminal_prompt_caret {
    color: var(--gold);
    animation: blink 1s step-end infinite;
}

.terminal_line {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-bottom: 4px;
}

.terminal_line--visible {
    opacity: 1;
    transform: translateY(0);
}

.terminal_spacer {
    height: 12px;
}

.terminal_action_read { color: #7aa2f7; font-weight: 600; margin-right: 8px; }
.terminal_action_create { color: #73daca; font-weight: 600; margin-right: 8px; }

@keyframes blink {
    50% { opacity: 0; }
}

/* Syntax Highlighting */
.syntax_keyword { color: #bb9af7; font-weight: 600; }
.syntax_function { color: #7aa2f7; }
.syntax_string { color: #9ece6a; }
.syntax_tag { color: #f7768e; }
.syntax_attr { color: #e0af68; }
.syntax_bracket { color: #89ddff; }
.syntax_comment { color: #565f89; font-style: italic; }
.syntax_const { color: #ff9e64; }
.syntax_text { color: #c0caf5; }



/* Custom AOS extensions */
[data-aos].active.fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* --- Integrations & Orbit --- */
.section_integrations {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.integrations_header {
    text-align: center;
    margin-bottom: 6rem;
}

.integrations_label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.integrations_headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.gmail-orbit-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

.gmail-orbit-container {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: orbit-rotate 60s linear infinite;
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gmail-orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin: -24px;
    transform-origin: center;
    transform: rotate(var(--orbit-angle)) translate(300px) rotate(calc(-1 * var(--orbit-angle)));
}

.gmail-orbit-item img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gmail-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.gmail-orbit-pill-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 20;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy)));
}

.gmail-compose-frame {
    width: 380px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.gmail_compose-header {
    background: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.gmail_compose-field {
    padding: 8px 15px;
    border-bottom: 1px solid #2d2d2d;
    font-size: 13px;
    color: #888;
}

.gmail_field-value {
    color: #eee;
    margin-left: 10px;
}

.gmail_compose-body {
    padding: 20px;
    min-height: 200px;
    color: #ccc;
    font-size: 14px;
}

.gmail_typing {
    border-left: 2px solid var(--gold);
    padding-left: 10px;
}

.gmail_cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: var(--gold);
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* --- Speed Section --- */
.section_speed {
    padding: 120px 0;
    background: #0c0807;
}

.speed_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.speed_card {
    background: #1a1210;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.speed_card--fast {
    background: linear-gradient(135deg, #2a1b16, #1a1210);
    border-color: rgba(239, 106, 66, 0.2);
}

.speed_card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.speed_card-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.speed_card-wpm {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.speed_animation-wrapper {
    height: 80px;
    position: relative;
    overflow: hidden;
}

.speed_marquee {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.speed_marquee--fast {
    animation-duration: 5s;
    color: var(--text-primary);
}

.speed_marquee-text {
    font-size: 1.2rem;
    white-space: nowrap;
    padding-right: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Download Section --- */
.section_download {
    padding: 100px 0;
    text-align: center;
}

.download_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .download_grid { grid-template-columns: 1fr; }
}

.download_card {
    background: #1a1210;
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
}

.download_card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.download_card-gradient {
    object-fit: cover;
    opacity: 0.1;
}

.download_card-content {
    position: relative;
    z-index: 2;
}

.download_card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.download_card-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.download_card-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.download_card-mockup {
    position: absolute;
    right: 30px;
    bottom: 156px;
    width: 250px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.download_card-actions {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.btn-solid-white {
    background: white;
    color: black;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 700;
    text-decoration: none;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 1200px) {
    .container { max-width: 100%; }
    h1 { font-size: 4rem; }
}

/* --- Global Animations & States --- */
[data-aos], 
.hero-seq__group1,
.feature-card,
.section_integrations,
.section_speed {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0);
}

.hero-seq__group1 {
    transition-delay: 0.2s;
}
