/* ============================================
   SECRETU Landing Page — Styles
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #E8713A;
    --orange-light: #F2994A;
    --orange-dark: #C45A2A;
    --orange-glow: rgba(232, 113, 58, 0.15);
    --orange-glow-strong: rgba(232, 113, 58, 0.3);

    --bg: #0A0A0B;
    --bg-elevated: #111113;
    --bg-card: #161618;
    --bg-card-hover: #1C1C1F;
    --bg-terminal: #0D0D0F;

    --text: #EEEEF0;
    --text-secondary: #8A8A8E;
    --text-muted: #555558;

    --border: #222225;
    --border-light: #2A2A2E;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

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

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

img { max-width: 100%; }

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

/* --- Section Labels & Titles --- */
.section-label {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 60px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, #FFBD59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--orange);
    color: #fff;
    white-space: nowrap;
}

.btn:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(232, 113, 58, 0.25);
}

.btn--ghost {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text);
}

.btn--ghost:hover {
    background: var(--bg-card);
    border-color: var(--text-muted);
    box-shadow: none;
    transform: translateY(-1px);
}

.btn--sm { padding: 8px 20px; font-size: 14px; }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

.btn--glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.btn--glow {
    box-shadow: 0 0 20px rgba(232, 113, 58, 0.3), 0 0 60px rgba(232, 113, 58, 0.1);
    animation: btnGlowPulse 3s ease-in-out infinite;
}

@keyframes btnGlowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(232, 113, 58, 0.3), 0 0 60px rgba(232, 113, 58, 0.1); }
    50% { box-shadow: 0 0 30px rgba(232, 113, 58, 0.5), 0 0 80px rgba(232, 113, 58, 0.2); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 34, 37, 0.5);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav__logo {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text);
    transition: var(--transition);
    flex-shrink: 0;
}

.nav__logo-bracket {
    color: var(--orange);
    font-weight: 400;
}

.nav__logo:hover { color: var(--orange); }

.nav__links {
    display: flex;
    gap: 36px;
    margin-left: auto;
    margin-right: 24px;
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: var(--transition);
}

.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(20px);
    padding: 100px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 16px 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-of-type {
    border-bottom: none;
    margin-top: 16px;
}

.mobile-menu a:hover { color: var(--text); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 34, 37, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 34, 37, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--orange-glow);
    border: 1px solid rgba(232, 113, 58, 0.2);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--orange-light);
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 113, 58, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(232, 113, 58, 0); }
}

.hero__title {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 36px;
}

.hero__subtitle--center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__content--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title--huge {
    font-size: clamp(40px, 7vw, 72px);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__actions--center {
    justify-content: center;
}

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

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero__stat-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
}

.hero__stat-plus,
.hero__stat-unit {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
}

.hero__stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Terminal */
.hero__visual {
    display: flex;
    justify-content: flex-end;
}

.hero__terminal {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 20px 70px rgba(0,0,0,0.5),
        0 0 100px var(--orange-glow);
}

/* Terminal shared */
.terminal__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.terminal__dots {
    display: flex;
    gap: 7px;
}

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

.terminal__dots span:nth-child(1) { background: #FF5F57; }
.terminal__dots span:nth-child(2) { background: #FEBC2E; }
.terminal__dots span:nth-child(3) { background: #28C840; }

.terminal__title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    margin-left: auto;
}

.terminal__body {
    background: var(--bg-terminal);
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.8;
    min-height: 200px;
}

/* FIXED height terminal — text scrolls up, old lines disappear */
.terminal__body--fixed {
    height: 340px;
    min-height: 340px;
    max-height: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.terminal__body--fixed .terminal__lines-wrap {
    display: flex;
    flex-direction: column;
}

.terminal__line {
    white-space: pre-wrap;
    word-break: break-all;
}

.terminal__line--fade-in {
    animation: lineFade 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes lineFade {
    from { opacity: 0; transform: translateY(8px); filter: blur(1px); }
    to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.t-prompt { color: var(--orange); font-weight: 700; }
.t-cmd { color: var(--text); }
.t-comment { color: var(--text-muted); }
.t-success { color: #28C840; }
.t-error { color: #FF5F57; }
.t-warn { color: #FEBC2E; }
.t-info { color: var(--orange-light); }
.t-dim { color: var(--text-muted); }
.t-file { color: #8AB4F8; }
.t-bold { font-weight: 700; }

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    animation: float 3s ease-in-out infinite;
}

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

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
    padding: 140px 0;
    position: relative;
}

.problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.problem__text h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.problem__text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.problem__card {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem__card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateX(4px);
}

.problem__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    opacity: 0;
    transition: var(--transition);
}

.problem__card:hover::before { opacity: 1; }

.problem__card-icon {
    color: var(--orange);
    margin-bottom: 12px;
}

.problem__card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.problem__card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem__card-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.problem__card-tag--critical {
    background: rgba(255, 95, 87, 0.1);
    color: #FF5F57;
    border: 1px solid rgba(255, 95, 87, 0.2);
}

.problem__card-tag--high {
    background: rgba(254, 188, 46, 0.1);
    color: #FEBC2E;
    border: 1px solid rgba(254, 188, 46, 0.2);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 140px 0;
    position: relative;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    padding: 36px 32px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    background: var(--bg-card-hover);
    border-color: rgba(232, 113, 58, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px var(--orange-glow);
}

.feature__number {
    font-family: var(--font-mono);
    font-size: 64px;
    font-weight: 900;
    color: var(--bg-elevated);
    position: absolute;
    top: -8px;
    right: 16px;
    line-height: 1;
    -webkit-text-stroke: 1px var(--border);
    transition: var(--transition);
}

.feature:hover .feature__number {
    -webkit-text-stroke: 1px rgba(232, 113, 58, 0.15);
    color: rgba(232, 113, 58, 0.05);
}

.feature__icon {
    color: var(--orange);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature__terminal {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 13px;
}

.feature__terminal code {
    color: var(--text-secondary);
}

/* ============================================
   COMMANDS SECTION
   ============================================ */
.commands {
    padding: 140px 0;
    position: relative;
}

.commands__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cmd-group {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.cmd-group:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.cmd-group__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.cmd-group__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--orange-glow);
    border: 1px solid rgba(232, 113, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.cmd-group__header h3 {
    font-size: 16px;
    font-weight: 700;
}

.cmd-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmd-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.cmd-item:hover {
    border-color: rgba(232, 113, 58, 0.2);
}

.cmd-item code {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--orange-light);
    font-weight: 500;
}

.cmd-item span {
    font-size: 12px;
    color: var(--text-muted);
}

.commands__cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   HOW IT WORKS (kept for docs, removed from landing)
   ============================================ */
.how {
    padding: 140px 0;
    position: relative;
}

.how__steps {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how__step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.how__step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange-glow);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 800;
    color: var(--orange);
}

.how__step-content {
    flex: 1;
    padding-bottom: 8px;
}

.how__step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.how__step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.how__step-code {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-secondary);
}

.how__step-code code { flex: 1; }

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.copy-btn:hover { color: var(--orange); background: var(--orange-glow); }
.copy-btn--light:hover { color: var(--orange-light); }

.how__step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    margin-left: 23px;
    opacity: 0.3;
}

/* ============================================
   DEMO
   ============================================ */
.demo {
    padding: 140px 0;
    position: relative;
}

.demo__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.demo__terminal {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 30px 80px rgba(0,0,0,0.5),
        0 0 120px var(--orange-glow);
}

.demo__terminal .terminal__body--fixed {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
}

.demo__placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* ============================================
   LANGUAGES
   ============================================ */
.languages {
    padding: 140px 0;
}

.languages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lang-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.lang-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    color: var(--text);
    transform: translateY(-2px);
}

.lang-card__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--orange-glow);
    border: 1px solid rgba(232, 113, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 800;
    color: var(--orange);
    flex-shrink: 0;
}

/* ============================================
   INSTALL / CTA
   ============================================ */
.install {
    padding: 140px 0;
}

.install__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.install__inner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    pointer-events: none;
}

.install__octopus {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.octopus-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--orange-glow-strong) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.octopus-art {
    position: relative;
    width: 200px;
    height: 200px;
}

.install__content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.install__content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.install__code {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.install__code-bar {
    padding: 10px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}

.install__code-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-terminal);
    font-family: var(--font-mono);
    font-size: 15px;
}

.install__code-body code { flex: 1; }

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

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder {
    padding: 120px 0;
    position: relative;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.4;
}

.founder__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.founder__photo-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.founder__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    filter: grayscale(30%);
    transition: var(--transition-slow);
}

.founder__photo-wrap:hover .founder__photo {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.founder__photo-border {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light), #FFBD59, var(--orange));
    z-index: 1;
    animation: founderBorderSpin 8s linear infinite;
}

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

.founder__photo-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 113, 58, 0.2) 0%, transparent 70%);
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

.founder__label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.founder__name {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.founder__bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder__quote {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
    margin-bottom: 20px;
}

.founder__quote svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.founder__quote span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.founder__social {
    display: flex;
    gap: 12px;
}

.founder__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
}

.founder__social a:hover {
    color: var(--orange);
    border-color: var(--orange);
    background: rgba(232, 113, 58, 0.1);
}

/* ============================================
   BETA SIGNUP SECTION
   ============================================ */
.beta {
    padding: 140px 0;
    position: relative;
}

.beta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.4;
}

.beta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.beta__inner--centered {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 48px;
}

.beta__inner--centered .beta__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.beta__inner--centered .beta__form {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.beta__inner--centered .beta__meta {
    justify-content: center;
}

.beta__inner--centered .beta__success {
    justify-content: center;
}

.beta__glow {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 113, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: betaGlowPulse 6s ease-in-out infinite;
}

@keyframes betaGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.beta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(232, 113, 58, 0.1);
    border: 1px solid rgba(232, 113, 58, 0.2);
    position: relative;
}

.beta__badge-pulse {
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    border: 1px solid var(--orange);
    animation: betaBadgePulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes betaBadgePulse {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.3); }
}

.beta__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.beta__subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.beta__form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.beta__input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.beta__input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.beta__input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text);
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: var(--transition);
}

.beta__input::placeholder {
    color: var(--text-muted);
}

.beta__input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 113, 58, 0.15);
}

.beta__input:focus ~ .beta__input-icon,
.beta__input-wrap:focus-within .beta__input-icon {
    color: var(--orange);
}

.beta__submit {
    white-space: nowrap;
    position: relative;
    min-width: 160px;
}

.beta__submit-loading,
.beta__submit-done {
    display: none;
    align-items: center;
    justify-content: center;
}

.beta__submit.loading .beta__submit-text { display: none; }
.beta__submit.loading .beta__submit-loading {
    display: flex;
    animation: betaSpin 1s linear infinite;
}

.beta__submit.done .beta__submit-text { display: none; }
.beta__submit.done .beta__submit-loading { display: none; }
.beta__submit.done .beta__submit-done { display: flex; }
.beta__submit.done {
    background: #28C840;
    pointer-events: none;
}

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

.beta__success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(40, 200, 64, 0.08);
    border: 1px solid rgba(40, 200, 64, 0.2);
    border-radius: var(--radius);
    font-size: 14px;
    color: #28C840;
    margin-bottom: 16px;
    animation: betaSuccessFadeIn 0.5s ease;
}

.beta__success.show {
    display: flex;
}

@keyframes betaSuccessFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.beta__error {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 95, 87, 0.08);
    border: 1px solid rgba(255, 95, 87, 0.2);
    border-radius: var(--radius);
    font-size: 14px;
    color: #FF5F57;
    margin-bottom: 16px;
    animation: betaErrorFadeIn 0.3s ease;
}

.beta__error.show {
    display: flex;
}

@keyframes betaErrorFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.beta__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.beta__avatars {
    display: flex;
}

.beta__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg-card);
    margin-right: -8px;
    position: relative;
}

.beta__avatar:last-child {
    margin-right: 0;
}

.beta__counter {
    font-size: 14px;
    color: var(--text-muted);
}

.beta__counter strong {
    color: var(--text);
    font-weight: 600;
}

/* Beta perks list */
.beta__perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.beta__inner--centered .beta__perks {
    align-items: center;
}

.beta__perk {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.beta__perk svg {
    flex-shrink: 0;
}

/* Nav beta link glow */
.nav__link--beta {
    color: var(--orange) !important;
    position: relative;
}

.nav__link--beta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
    opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    margin-bottom: 60px;
}

.footer__brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 300px;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    gap: 64px;
}

.footer__col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    padding: 4px 0;
    transition: var(--transition);
}

.footer__col a:hover { color: var(--text); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__socials a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer__socials a:hover { color: var(--orange); }

.footer__mit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer__mit svg {
    color: var(--orange);
    opacity: 0.7;
}

.footer__mit:hover {
    border-color: var(--orange);
    color: var(--text);
}

/* ============================================
   PIXEL OCTOPUS (CSS Art)
   ============================================ */
.pixel-octopus {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    gap: 1px;
    width: 100%;
    height: 100%;
}

.pixel-octopus .px {
    border-radius: 2px;
    aspect-ratio: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   DOCS PAGE STYLES — redesigned
   ============================================ */

/* Docs hero with gradient bg */
.docs-hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.docs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, var(--orange-glow) 0%, transparent 70%),
        linear-gradient(180deg, transparent 60%, rgba(232, 113, 58, 0.03) 100%);
    pointer-events: none;
}

.docs-hero .container {
    position: relative;
}

.docs-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.docs-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* Docs search bar (visual, non-functional placeholder) */
.docs-search {
    margin-top: 28px;
    max-width: 440px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
    font-family: var(--font-sans);
}

.docs-search svg {
    flex-shrink: 0;
    opacity: 0.5;
}

/* Layout */
.docs-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    padding: 48px 0 140px;
    align-items: start;
}

/* Sidebar */
.docs-sidebar {
    position: sticky;
    top: 80px;
    padding: 16px 0;
    border-right: 1px solid var(--border);
}

.docs-sidebar-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 0 16px 12px;
    margin-bottom: 4px;
}

.docs-sidebar a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border-left: 2px solid transparent;
    transition: var(--transition);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.docs-sidebar a:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
}

.docs-sidebar a.active {
    color: var(--orange-light);
    border-left-color: var(--orange);
    background: var(--orange-glow);
    font-weight: 600;
}

/* Content */
.docs-content {
    max-width: 780px;
    min-width: 0;
}

/* Section headings with orange accent */
.docs-content h2 {
    font-size: 26px;
    font-weight: 800;
    margin-top: 56px;
    margin-bottom: 8px;
    padding-top: 32px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
    scroll-margin-top: 90px;
}

.docs-content h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 28px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.docs-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
}

/* Section description below h2 */
.docs-section-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.docs-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--text);
}

.docs-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.docs-content p code {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--orange-light);
    background: var(--orange-glow);
    padding: 2px 7px;
    border-radius: 4px;
}

.docs-content ul {
    padding-left: 0;
    margin-bottom: 20px;
    list-style: none;
}

.docs-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.docs-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* Code blocks */
.docs-code {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    overflow-x: auto;
    position: relative;
    transition: border-color 0.2s;
}

.docs-code:hover {
    border-color: rgba(232, 113, 58, 0.2);
}

.docs-code code {
    flex: 1;
    white-space: nowrap;
}

.docs-code .copy-btn {
    opacity: 0;
    transition: opacity 0.2s;
}

.docs-code:hover .copy-btn {
    opacity: 1;
}

/* Info callout box */
.docs-callout {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: var(--orange-glow);
    border: 1px solid rgba(232, 113, 58, 0.15);
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.docs-callout strong {
    color: var(--orange-light);
}

/* Table */
.docs-table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.docs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.docs-table th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    color: var(--orange-light);
    background: var(--bg-card);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
}

.docs-table td {
    padding: 11px 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.docs-table tr:last-child td {
    border-bottom: none;
}

.docs-table tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

.docs-table code {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--orange-light);
    background: var(--orange-glow);
    padding: 2px 7px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Back to top button (docs) */
.docs-back-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.docs-back-top:hover {
    color: var(--text);
    border-color: var(--border-light);
}

/* ============================================
   SCAN LINE OVERLAY (CRT retro effect)
   ============================================ */
.scanline-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    opacity: 0.4;
}

/* ============================================
   FLOATING PARTICLES CANVAS
   ============================================ */
.particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ============================================
   HERO TERMINAL — static SECRETU logo inside macOS frame
   ============================================ */
.hero__terminal--static {
    width: 100%;
    max-width: 560px;
}

.terminal__body--logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 36px;
    min-height: auto;
    position: relative;
}

.terminal__body--logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, var(--orange-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero__ascii {
    font-family: var(--font-mono);
    font-size: clamp(7px, 1vw, 11px);
    line-height: 1.15;
    color: var(--orange);
    white-space: pre;
    margin: 0;
    position: relative;
    text-shadow: 0 0 20px rgba(232, 113, 58, 0.4);
    display: block;
}

.hero__ascii-sub {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 20px;
    letter-spacing: 1px;
    position: relative;
}

.hero__ascii-mobile {
    display: none;
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 6px;
    background: linear-gradient(180deg, #F2B060 0%, #E8713A 50%, #C45A2A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown {
    padding: 140px 0;
    position: relative;
}

.countdown__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.countdown__glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 113, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.countdown__desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    margin-top: -40px;
}

.countdown__desc strong {
    color: var(--orange-light);
}

.countdown__timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.countdown__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown__num {
    font-family: var(--font-mono);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    min-width: 100px;
    text-align: center;
    background: linear-gradient(180deg, var(--text) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown__label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown__sep {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 300;
    color: var(--orange);
    opacity: 0.4;
    padding-bottom: 28px;
    animation: colonPulse 1s ease-in-out infinite;
}

@keyframes colonPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0; }
}

.countdown__cta {
    margin: 0 auto;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: 140px 0;
    position: relative;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit {
    padding: 36px 32px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit:hover {
    background: var(--bg-card-hover);
    border-color: rgba(232, 113, 58, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px var(--orange-glow);
}

.benefit__icon {
    color: var(--orange);
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.benefit__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-mono);
    background: var(--orange-glow);
    color: var(--orange);
    border: 1px solid rgba(232, 113, 58, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ROADMAP SECTION
   ============================================ */
.roadmap {
    padding: 140px 0;
    position: relative;
}

.roadmap__timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.roadmap__timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--border), var(--border));
}

.roadmap__phase {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 24px 0;
    position: relative;
}

.roadmap__phase-marker {
    flex-shrink: 0;
    width: 32px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
    position: relative;
    z-index: 2;
}

.roadmap__phase-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.roadmap__phase--active .roadmap__phase-dot {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 12px rgba(232, 113, 58, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

.roadmap__phase-content {
    flex: 1;
    padding: 24px 28px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.roadmap__phase--active .roadmap__phase-content {
    border-color: rgba(232, 113, 58, 0.3);
    box-shadow: 0 0 30px var(--orange-glow);
}

.roadmap__phase-content:hover {
    background: var(--bg-card-hover);
}

.roadmap__phase-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--orange-glow);
    border: 1px solid rgba(232, 113, 58, 0.15);
}

.roadmap__phase-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.roadmap__phase-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.roadmap__phase-date {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   SECTION CTA — reusable call-to-action blocks
   ============================================ */
.section-cta {
    text-align: center;
    margin-top: 56px;
}

.section-cta__hint {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    margin-top: 12px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 140px 0;
    position: relative;
}

.pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: -30px;
    margin-bottom: 60px;
}

.pricing__toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.pricing__toggle-label--active {
    color: var(--text);
}

.pricing__switch {
    position: relative;
    width: 52px;
    height: 28px;
    border-radius: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.pricing__switch:hover {
    border-color: var(--orange);
}

.pricing__switch-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(232, 113, 58, 0.4);
}

.pricing__switch.active .pricing__switch-knob {
    left: 27px;
}

.pricing__switch.active {
    background: var(--orange-glow);
    border-color: var(--orange);
}

.pricing__toggle-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: #28C840;
    background: rgba(40, 200, 64, 0.1);
    border: 1px solid rgba(40, 200, 64, 0.2);
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing__card {
    padding: 36px 32px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing__card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing__card--popular {
    border-color: rgba(232, 113, 58, 0.4);
    box-shadow: 0 0 40px var(--orange-glow), 0 20px 60px rgba(0,0,0,0.3);
}

.pricing__card--popular:hover {
    border-color: var(--orange);
    box-shadow: 0 0 60px var(--orange-glow-strong), 0 20px 60px rgba(0,0,0,0.3);
}

.pricing__popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 6px 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing__card--popular .pricing__card-header {
    margin-top: 24px;
}

.pricing__card-header {
    margin-bottom: 24px;
}

.pricing__card-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing__card-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing__card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.pricing__price-amount {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    transition: var(--transition);
}

.pricing__price-period {
    font-size: 15px;
    color: var(--text-muted);
}

.pricing__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.pricing__card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing__card-features li svg {
    flex-shrink: 0;
}

.pricing__feature--disabled {
    color: var(--text-muted) !important;
    opacity: 0.5;
}

.pricing__card-btn {
    margin-top: auto;
}

/* Carousel arrows — hidden on desktop */
.pricing__arrow {
    display: none;
}

/* Yearly pricing save labels */
.pricing__price-save {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: #28C840;
    margin-left: 8px;
}

/* ============================================
   SECTION DIVIDERS — animated gradient line
   ============================================ */
.problem, .features, .countdown, .benefits, .roadmap, .pricing, .demo, .languages, .install, .beta, .founder {
    position: relative;
}

.problem::before, .features::before, .countdown::before, .benefits::before, .roadmap::before, .pricing::before, .demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.4;
}

/* ============================================
   CYBER MONSTERS — always visible on sides
   Bigger, scarier, with continuous bounce
   ============================================ */
.cyber-monster {
    position: fixed;
    z-index: 60;
    pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(232, 113, 58, 0.4))
            drop-shadow(0 0 40px rgba(232, 113, 58, 0.15));
    will-change: transform;
}

.cyber-monster svg {
    width: 130px;
    height: auto;
    display: block;
}

.monster-body {
    transform-origin: center bottom;
}

/* Left monster — peeks from left edge */
.cyber-monster--left {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    animation: monsterIdleL 4s ease-in-out infinite;
}

/* Right monster — peeks from right edge, mirrored */
.cyber-monster--right {
    right: -20px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    animation: monsterIdleR 4.5s ease-in-out infinite;
}

/* Idle bobbing */
@keyframes monsterIdleL {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-52%) rotate(1deg); }
    75% { transform: translateY(-48%) rotate(-1deg); }
}

@keyframes monsterIdleR {
    0%, 100% { transform: translateY(-50%) scaleX(-1) rotate(0deg); }
    30% { transform: translateY(-48%) scaleX(-1) rotate(-1deg); }
    70% { transform: translateY(-52%) scaleX(-1) rotate(1deg); }
}

/* === SCROLL STATE: tongues out + cloud trail + wobble === */

/* Monster tongue — hidden by default */
.monster-tongue {
    opacity: 0;
    transition: opacity 0.15s ease;
}

/* Show tongue + wobble + cloud when scrolling */
.cyber-monster.scrolling .monster-tongue {
    opacity: 1;
}

.cyber-monster.scrolling .monster-body {
    animation: monsterWobble 0.25s ease-in-out infinite alternate;
}

@keyframes monsterWobble {
    0% { transform: rotate(-2deg) translateX(-1px); }
    100% { transform: rotate(2deg) translateX(1px); }
}

/* Cloud / dust trail behind monster while scrolling */
.monster-body {
    position: relative;
}

.monster-body::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(ellipse,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(232, 113, 58, 0.08) 40%,
        transparent 70%
    );
    filter: blur(6px);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
    transition: all 0.2s ease;
}

.cyber-monster.scrolling .monster-body::after {
    width: 90px;
    height: 35px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    animation: cloudPuff 0.4s ease-in-out infinite alternate;
}

@keyframes cloudPuff {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.85); filter: blur(5px); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.25); filter: blur(8px); }
}

/* Eye pupils — positioned via JS for cursor tracking */
.eye-pupil {
    transition: x 0.12s ease-out, y 0.12s ease-out;
}

/* Eye glow pulse */
.cyber-monster .eye-pupil {
    animation: eyePulse 1.5s ease-in-out infinite alternate;
}

@keyframes eyePulse {
    from { opacity: 0.85; }
    to { opacity: 1; filter: brightness(1.8); }
}

/* ============================================
   MONSTER SPEECH BUBBLE — "HACK YOU!"
   ============================================ */
.monster-bubble {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0) rotate(-5deg);
    background: #fff;
    color: #0A0A0B;
    font-family: var(--font-mono);
    font-weight: 900;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 14px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
    z-index: 70;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.monster-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

.monster-bubble.show {
    transform: translateX(-50%) scale(1) rotate(-2deg);
    opacity: 1;
}

/* Bubble for right monster (flipped) */
.cyber-monster--right .monster-bubble {
    transform: translateX(-50%) scale(0) rotate(5deg) scaleX(-1);
}

.cyber-monster--right .monster-bubble.show {
    transform: translateX(-50%) scale(1) rotate(2deg) scaleX(-1);
}

/* Hide monsters on small screens */
@media (max-width: 1100px) {
    .cyber-monster svg { width: 90px; }
    .cyber-monster--left { left: -25px; }
    .cyber-monster--right { right: -25px; }
    .monster-bubble { font-size: 12px; padding: 7px 14px; }
}

@media (max-width: 768px) {
    .cyber-monster { display: none; }
    .scanline-overlay { display: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle { margin: 0 auto 36px; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual { justify-content: center; }
    .hero__terminal--static { max-width: 520px; }

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

    .features__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .countdown__timer {
        gap: 10px;
    }

    .countdown__num {
        min-width: 70px;
    }

    .beta__inner--centered {
        padding: 40px 32px;
    }

    .founder__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .founder__photo-wrap {
        margin: 0 auto;
        width: 160px;
        height: 160px;
    }

    .founder__quote {
        text-align: left;
    }

    .founder__social {
        justify-content: center;
    }

    .beta__inner--centered {
        padding: 40px 32px;
    }

    .install__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }

    .install__octopus {
        margin: 0 auto;
        width: 200px;
        height: 200px;
    }

    .octopus-art {
        width: 150px;
        height: 150px;
    }

    .install__links { justify-content: center; }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .docs-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .docs-sidebar {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 0;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        margin-bottom: 32px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .docs-sidebar::-webkit-scrollbar { display: none; }

    .docs-sidebar-title { display: none; }

    .docs-sidebar a {
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 0;
        padding: 10px 14px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .docs-sidebar a.active {
        border-bottom-color: var(--orange);
        border-left-color: transparent;
        background: transparent;
    }
}

@media (max-width: 768px) {
    .nav__links, .nav .btn--sm { display: none; }
    .nav__burger { display: flex; }

    .hero {
        padding: 90px 0 40px;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero__title {
        font-size: 32px;
        letter-spacing: -0.03em;
        margin-bottom: 16px;
    }
    .hero__title--huge {
        font-size: 34px;
    }
    .hero__subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
    }
    .hero__badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 20px;
    }
    .hero__actions {
        margin-bottom: 36px;
        gap: 12px;
    }
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
    .hero__stat {
        text-align: center;
    }
    .hero__stat-num {
        font-size: 24px;
    }
    .hero__stat-label {
        font-size: 11px;
        margin-top: 2px;
    }
    .hero__stat-divider {
        display: none;
    }
    .hero__stat-plus, .hero__stat-unit {
        font-size: 16px;
    }

    .hero__scroll-hint { display: none; }

    /* On mobile: hide ASCII art, show large text */
    .hero__ascii { display: none; }
    .hero__ascii-mobile { display: block; }
    .terminal__body--logo { padding: 28px 16px 24px; }

    /* Docs mobile */
    .docs-hero { padding: 100px 0 40px; }
    .docs-hero h1 { font-size: 32px; }
    .docs-hero p { font-size: 15px; }
    .docs-search { max-width: 100%; }

    .docs-content h2 { font-size: 22px; margin-top: 40px; padding-top: 24px; }
    .docs-content h3 { font-size: 16px; }

    .docs-code { font-size: 12px; padding: 12px 14px; }

    .docs-table-wrap { font-size: 13px; }
    .docs-table th, .docs-table td { padding: 9px 12px; }
    .docs-table code { font-size: 11px; }

    .section-title { margin-bottom: 40px; }

    .pricing__carousel {
        overflow: hidden;
        position: relative;
    }

    .pricing__grid {
        display: flex;
        overflow: hidden;
        gap: 0;
        padding: 0;
    }

    .pricing__card {
        min-width: 100%;
        flex-shrink: 0;
        padding: 28px 24px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pricing__card--popular {
        order: 0;
    }

    .pricing__price-amount {
        font-size: 40px;
    }

    .pricing__toggle {
        margin-bottom: 40px;
    }

    .pricing__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: var(--transition);
    }

    .pricing__arrow:hover, .pricing__arrow:active {
        background: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.8);
    }

    .pricing__arrow--left {
        left: 8px;
    }

    .pricing__arrow--right {
        right: 8px;
    }

    .pricing__arrow[disabled] {
        opacity: 0.15;
        pointer-events: none;
    }

    .problem, .features, .countdown, .benefits, .roadmap, .pricing, .how, .demo, .languages, .install, .beta, .founder {
        padding: 80px 0;
    }

    .beta__inner--centered {
        padding: 28px 20px;
    }

    .beta__form {
        flex-direction: column;
    }

    .beta__submit {
        width: 100%;
        justify-content: center;
    }

    .beta__meta {
        flex-direction: column;
        gap: 8px;
    }

    .beta__perks {
        align-items: flex-start;
        text-align: left;
    }

    .countdown__timer {
        gap: 6px;
    }

    .countdown__num {
        font-size: 36px;
        min-width: 60px;
    }

    .countdown__sep {
        font-size: 32px;
        padding-bottom: 20px;
    }

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

    .benefit {
        padding: 24px 20px;
    }

    .roadmap__phase {
        gap: 16px;
    }

    .roadmap__phase-content {
        padding: 16px 20px;
    }

    .founder__inner {
        gap: 24px;
    }

    .founder__photo-wrap {
        width: 140px;
        height: 140px;
    }

    .founder__bio { font-size: 14px; }

    .terminal__body--fixed {
        height: 280px;
        min-height: 280px;
        max-height: 280px;
        font-size: 10px;
        padding: 14px;
        line-height: 1.6;
    }

    .demo__terminal .terminal__body--fixed {
        height: 320px;
        min-height: 320px;
        max-height: 320px;
    }

    .languages__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .lang-card {
        padding: 14px 16px;
        font-size: 13px;
    }

    .lang-card__icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .footer__links {
        flex-direction: column;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .install__inner {
        padding: 24px;
        gap: 32px;
    }

    .install__octopus {
        width: 160px;
        height: 160px;
    }

    .octopus-art {
        width: 120px;
        height: 120px;
    }

    .cmd-item code {
        font-size: 11px;
        word-break: break-all;
    }

    .docs-hero {
        padding: 100px 0 40px;
    }

    .docs-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero {
        padding: 70px 0 30px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    .hero__title {
        font-size: 26px;
        line-height: 1.1;
    }
    .hero__title--huge {
        font-size: 28px;
    }
    .hero__subtitle {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .hero__badge { font-size: 10px; padding: 4px 10px; gap: 6px; margin-bottom: 16px; }
    .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 28px; }
    .btn--lg { width: 100%; justify-content: center; padding: 12px 24px; font-size: 14px; }

    .hero__stats { gap: 16px; }
    .hero__stat-num { font-size: 20px; }
    .hero__stat-plus, .hero__stat-unit { font-size: 13px; }
    .hero__stat-label { font-size: 10px; }

    .countdown__num {
        font-size: 28px;
        min-width: 50px;
    }
    .countdown__sep {
        font-size: 24px;
        padding-bottom: 16px;
    }
    .countdown__label {
        font-size: 10px;
    }
    .countdown__desc {
        font-size: 14px;
    }

    .roadmap__timeline::before {
        left: 11px;
    }
    .roadmap__phase {
        gap: 12px;
    }
    .roadmap__phase-marker {
        width: 24px;
    }
    .roadmap__phase-dot {
        width: 12px;
        height: 12px;
    }
    .roadmap__phase-content h3 {
        font-size: 17px;
    }
    .roadmap__phase-content p {
        font-size: 13px;
    }

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

    .section-title { font-size: 28px; }

    .feature {
        padding: 24px 20px;
    }

    .feature__number {
        font-size: 48px;
    }

    .cmd-group {
        padding: 20px;
    }

    .install__links {
        flex-direction: column;
    }

    .footer__octopus {
        width: 96px;
        height: 96px;
    }

    .footer__links {
        gap: 24px;
    }
}
