/**
 * Shipyard - Unique Design System
 * Anti-pattern: Warm tones, organic shapes, brutalist typography
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Unique color palette: Warm cream + Electric accents */
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-tertiary: #18181b;
    --bg-card: #1c1c1f;

    --text-primary: #fafaf9;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Accent: Warm coral/orange instead of typical blue */
    --accent: #ff6b35;
    --accent-light: #ff8c5a;
    --accent-dark: #e55a2b;
    --accent-glow: rgba(255, 107, 53, 0.4);

    /* Secondary accent: Electric lime */
    --highlight: #c4f82a;
    --highlight-glow: rgba(196, 248, 42, 0.3);
    --accent-secondary: #c4f82a;

    /* Neutrals */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Spacing */
    --section-gap: 140px;
    --container-width: 1200px;

    /* Effects */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    font-size: 16px;
}

/* Smooth scroll only for non-touch devices to avoid iOS bugs */
@media (hover: hover) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== Cursor Glow Effect ==================== */
/* REMOVED */

/* ==================== Typography Utilities ==================== */
.text-highlight {
    color: var(--highlight);
    position: relative;
}

.text-strike {
    position: relative;
    color: var(--text-muted);
}

.text-strike::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: rotate(-2deg);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn--primary {
    background: var(--accent);
    color: #000;
}

.btn--primary:hover {
    background: var(--accent-light);
}

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

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 107, 53, 0.05);
}

.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }

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

.btn--secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

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

.btn--ghost:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.btn i {
    font-size: 0.9em;
}

.btn--primary i {
    color: inherit;
}

.btn__arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ==================== Status Dot ==================== */
.status-dot {
    width: 8px;
    height: 8px;
    background: var(--highlight);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--highlight-glow);
}

.status-dot--sm {
    width: 6px;
    height: 6px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* ==================== Badge ==================== */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
}

/* ==================== Header / Navigation ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease, padding 0.3s ease;
}

.header.no-transition {
    transition: none !important;
}

.header.scrolled {
    background: rgba(10, 10, 11, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo__icon {
    position: relative;
    width: 32px;
    height: 32px;
}

.logo__cube {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 8px;
    transform: rotate(45deg) scale(0.7);
    transition: var(--transition);
}

.logo:hover .logo__cube {
    transform: rotate(45deg) scale(0.75);
}

.logo__arrow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    font-weight: 700;
    z-index: 1;
}

.logo__text {
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav__center {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav__link-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav__link:hover .nav__link-num {
    color: var(--accent);
    opacity: 1;
}

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

.nav__login {
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav__login:hover {
    color: var(--text-primary);
}

/* Dropdown Menu */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.nav__dropdown-trigger:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav__dropdown-trigger i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav__dropdown:hover .nav__dropdown-trigger i {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(20, 20, 22, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.nav__dropdown-label {
    padding: 8px 12px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__dropdown-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav__dropdown-item i {
    width: 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav__dropdown-item:hover i {
    color: var(--accent);
}

.nav__dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    padding: 100px 24px 40px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu__link {
    padding: 16px 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

.mobile-menu__link--muted {
    color: var(--text-muted);
    font-size: 1rem;
}

.mobile-menu__divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.mobile-menu .btn {
    margin-top: 16px;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 53, 0.15), transparent);
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 53, 0.1);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.hero__orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(196, 248, 42, 0.08);
    bottom: 10%;
    left: -5%;
    animation-delay: -7s;
}

.hero__orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 53, 0.12);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero__status-version {
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.hero__status-new {
    background: var(--accent);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.hero__title {
    margin-bottom: 32px;
}

.hero__title-line {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.hero__title-line--accent {
    color: var(--accent);
}

.hero__title-line--strike {
    position: relative;
    display: inline-block;
    color: var(--text-muted);
}

.hero__title-line--strike::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 6px;
    background: var(--accent);
    transform: rotate(-2deg);
    border-radius: 3px;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.7;
}

.hero__subtitle em {
    color: var(--text-primary);
    font-style: normal;
    font-weight: 500;
}

/* Hero Actions */
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero__input-group {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4px;
    transition: var(--transition);
}

.hero__input-group:hover {
    border-color: var(--border-hover);
}

.hero__input-prefix {
    padding: 0 12px;
    font-family: var(--font-mono);
    color: var(--accent);
}

.hero__input {
    background: transparent;
    border: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-primary);
    padding: 12px 0;
    width: 200px;
    outline: none;
}

.hero__input-btn {
    padding: 10px 14px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.hero__input-btn:hover {
    color: var(--text-primary);
}

.hero__or {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero__link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__link:hover {
    color: var(--accent);
}

.hero__link span {
    transition: transform var(--transition-fast);
}

.hero__link:hover span {
    transform: translate(2px, -2px);
}

/* Hero Tech Stack - Animated Carousel */
.hero__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero__stack-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.hero__stack-track {
    display: flex;
    gap: 16px;
    animation: scrollStack 25s linear infinite;
    width: max-content;
}

.hero__stack-track:hover {
    animation-play-state: paused;
}

@keyframes scrollStack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stack-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 90px;
    transition: var(--transition);
    cursor: default;
}

.stack-card:hover {
    border-color: var(--accent);
    background: rgba(255, 107, 53, 0.05);
}

.stack-card i {
    font-size: 1.8rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.stack-card:hover i {
    color: var(--accent);
}

.stack-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stack-card__go {
    font-family: var(--font-mono);
    font-size: 1.4rem !important;
    font-weight: 700;
    color: var(--text-secondary) !important;
}

.stack-card:hover .stack-card__go {
    color: var(--accent) !important;
}

.hero__stack-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating Metrics - REMOVED, replaced with stats bar */

/* ==================== Stats Bar ==================== */
.stats-bar {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

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

.stat-item__value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    line-height: 1;
    display: inline;
}

.stat-item__unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-left: 2px;
}

.stat-item__label {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-item__divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--border-hover), transparent);
}

/* ==================== Manifesto Section ==================== */
.manifesto {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.manifesto__content {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.manifesto__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

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

.manifesto__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.manifesto__text strong {
    color: var(--text-primary);
}

/* Bento Grid */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.bento__item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.bento__item--large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 40px;
}

.bento__item--wide {
    grid-column: span 2;
}

.bento__item--accent {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.2);
}

.bento__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.bento__icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
}

.bento__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
    margin-bottom: 16px;
}

.bento__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.bento__text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.bento__visual {
    margin-top: 32px;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.bento__badges {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.bento__quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.bento__author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.bento__author-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Code styling */
.code-line {
    margin-bottom: 8px;
}

.code-line:last-child {
    margin-bottom: 0;
}

.code-prompt {
    color: var(--accent);
    margin-right: 8px;
}

.code-line--success {
    color: var(--highlight);
}

.code-dim {
    color: var(--text-muted);
}

.code-success {
    color: var(--highlight);
}

/* ==================== How Section ==================== */
.how {
    padding: var(--section-gap) 0;
    border-bottom: 1px solid var(--border);
}

.how__header {
    text-align: center;
    margin-bottom: 80px;
}

.how__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    position: relative;
    padding-bottom: 60px;
}

.step:last-child {
    padding-bottom: 0;
}

.step__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    color: var(--accent);
}

.step__content {
    padding-top: 8px;
}

.step__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step__text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.step__visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.step__code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.8;
}

.step__line {
    position: absolute;
    left: 32px;
    top: 80px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--border-hover), transparent);
}

/* Graph visualization */
.step__graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 12px;
}

.graph-bar {
    flex: 1;
    height: var(--height);
    background: var(--accent);
    border-radius: 4px 4px 0 0;
    opacity: 0.6;
    transition: var(--transition);
}

.graph-bar--peak {
    background: var(--highlight);
    opacity: 1;
}

.step__graph-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==================== Pricing Section ==================== */
.pricing {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing__header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

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

.price-card--featured {
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-card) 50%);
    box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.2), 0 8px 32px rgba(255, 107, 53, 0.15);
}

.price-card--featured:hover {
    border-color: rgba(255, 107, 53, 0.5);
}

.price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-card__header {
    margin-bottom: 24px;
}

.price-card__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.price-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-card__price {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.price-card__period {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-card__features {
    margin-bottom: 32px;
}

.price-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-card__features li i {
    color: var(--highlight);
    font-size: 0.8rem;
}

/* ==================== CTA Section ==================== */
.cta {
    padding: var(--section-gap) 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 107, 53, 0.1), transparent);
}

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

.cta__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

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

.cta__note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==================== Blog Section (Homepage) ==================== */
.blog-section {
    padding: var(--section-gap) 0;
    border-bottom: 1px solid var(--border);
}

.blog-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 12px 0 16px;
    line-height: 1.2;
}

.blog-section__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 24px;
}

.blog-section__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.blog-section__all:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(4px);
}

.blog-section__all i {
    transition: transform 0.3s ease;
}

.blog-section__all:hover i {
    transform: translateX(4px);
}

/* Blog Grid Layout */
.blog-section__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

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

/* Blog Item - Hero (Featured) */
.blog-item--hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-item--hero:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.blog-item--hero .blog-item__link {
    display: block;
    text-decoration: none;
}

.blog-item--hero .blog-item__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-item--hero .blog-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-item--hero:hover .blog-item__image img {
    transform: scale(1.08);
}

.blog-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.blog-item--hero .blog-item__content {
    padding: 28px;
}

.blog-item__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-item__tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.blog-item__tag--engineering {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.blog-item__tag--product {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.blog-item__tag--tutorial {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.blog-item__tag--featured {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.blog-item--hero .blog-item__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-item--hero:hover .blog-item__title {
    color: var(--accent);
}

.blog-item__excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-item__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.blog-item__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-item__author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    border: 2px solid var(--border);
}

.blog-item__author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.blog-item__author-info {
    display: flex;
    flex-direction: column;
}

.blog-item__author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.blog-item__author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-item__meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-item__meta i {
    margin-right: 4px;
    opacity: 0.7;
}

.blog-item__arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: white;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.blog-item--hero:hover .blog-item__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Blog Item - Compact (Side posts) */
.blog-item--compact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: visible;
    transition: var(--transition);
    position: relative;
}

.blog-item--compact:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.blog-item--compact .blog-item__link {
    display: flex;
    gap: 16px;
    text-decoration: none;
}

.blog-item--compact .blog-item__image {
    width: 120px;
    min-width: 120px;
    height: 100px;
    overflow: hidden;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.blog-item--compact .blog-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-item--compact:hover .blog-item__image img {
    transform: scale(1.1);
}

.blog-item--compact .blog-item__content {
    padding: 16px 16px 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.blog-item--compact .blog-item__tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    font-size: 0.65rem;
    border-radius: 20px;
    align-self: flex-start;
}

/* Ensure color modifiers work in compact cards */
.blog-item--compact .blog-item__tag--engineering {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.blog-item--compact .blog-item__tag--product {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.blog-item--compact .blog-item__tag--tutorial {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.blog-item--compact .blog-item__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.blog-item--compact:hover .blog-item__title {
    color: var(--accent);
}

.blog-item--compact .blog-item__meta {
    font-size: 0.75rem;
    gap: 12px;
}

/* Blog Newsletter CTA */
.blog-section__cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.blog-section__cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-section__cta-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #ff8f5a 100%);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: white;
}

.blog-section__cta-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.blog-section__cta-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-section__cta-form {
    display: flex;
    gap: 12px;
}

.blog-section__cta-input {
    width: 280px;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.blog-section__cta-input:focus {
    outline: none;
    border-color: var(--accent);
}

.blog-section__cta-input::placeholder {
    color: var(--text-muted);
}

/* ==================== Blog Post Page ==================== */
.post__header {
    padding: 140px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(59, 130, 246, 0.2), transparent 50%);
}

.post__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.post__back:hover {
    color: var(--accent);
}

.post__meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.post__category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
}

.post__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 24px;
}

.post__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.post__author-header {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.post__author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.25rem;
}

.post__author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.post__author-header > div {
    text-align: left;
}

.post__author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.post__author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.post__image {
    margin-bottom: 60px;
}

.post__image img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    display: block;
}

.container--narrow {
    max-width: 720px;
}

.post__body {
    padding-bottom: 60px;
}

.post__lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.post__body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 20px;
}

.post__body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.post__body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.post__body ul, .post__body ol {
    margin: 24px 0;
    padding-left: 24px;
}

.post__body li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.post__body a {
    color: var(--accent);
}

.post__body a:hover {
    text-decoration: underline;
}

.post__body blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    background: var(--bg-card);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post__body blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.post__body blockquote cite {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

.post__body pre {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 32px 0;
    overflow-x: auto;
}

.post__body code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

.post__stat {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.post__stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.post__stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.post__tag {
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.post__tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.post__author-bio {
    padding: 60px 0;
}

.author-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.author-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}

.author-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-card__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-card__role {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.author-card__bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.author-card__social {
    display: flex;
    gap: 12px;
}

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

.author-card__social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.post__share {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.post__share-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.post__share-buttons {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.post__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 11;
}

.post__share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(99, 102, 241, 0.1);
}

button.post__share-btn {
    -webkit-appearance: none;
    appearance: none;
}

.related-posts {
    padding: 80px 0;
    overflow: hidden;
}

.related-posts__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
}

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

.related-posts .blog-card {
    overflow: hidden;
}

/* ==================== Blog Page Styles ==================== */
.blog-section.section {
    padding: 60px 0 120px;
}

/* Blog Cards for Blog List Page */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: visible;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    position: relative;
}

.blog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.blog-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Category badge - inline in meta section */
.blog-card__category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Color variants for blog card categories - matching .blog-item__tag style */
.blog-card__category--engineering,
.blog-card__category[data-category="engineering"] {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.blog-card__category--product,
.blog-card__category[data-category="product"] {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.blog-card__category--tutorial,
.blog-card__category[data-category="tutorial"] {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.blog-card__category--company,
.blog-card__category[data-category="company"] {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.blog-card__content {
    padding: 24px;
}

.blog-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
    color: var(--accent);
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.blog-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.blog-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.blog-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card__author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.blog-featured {
    margin-bottom: 48px;
}

.blog-featured .blog-card--featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-featured .blog-card--featured .blog-card__image {
    height: 100%;
    min-height: 380px;
    border-radius: 0;
}

.blog-featured .blog-card--featured .blog-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    background: var(--bg-card);
}

.blog-featured .blog-card--featured .blog-card__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.blog-featured .blog-card--featured .blog-card__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.blog-featured .blog-card--featured .blog-card__author {
    margin-top: 24px;
}

.blog-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.blog-filter {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.blog-filter:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.blog-filter--active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

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

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
}

.blog-pagination__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.blog-pagination__btn:hover:not(.blog-pagination__btn--disabled) {
    border-color: var(--accent);
    color: var(--accent);
}

.blog-pagination__btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-pagination__current {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.blog-newsletter__content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.blog-newsletter__content p {
    color: var(--text-secondary);
}

.blog-newsletter__form {
    display: flex;
    gap: 12px;
}

.blog-newsletter__input {
    padding: 14px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    min-width: 280px;
}

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

.blog-newsletter__input:focus {
    outline: none;
    border-color: var(--accent);
}

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

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer__brand {
    max-width: 250px;
}

.footer__tagline {
    color: var(--text-muted);
    margin: 16px 0 24px;
    font-size: 0.95rem;
}

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

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

.footer__social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer__links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer__links ul li {
    margin-bottom: 12px;
}

.footer__links ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer__links ul li a:hover {
    color: var(--text-primary);
}

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

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__credit {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__credit a {
    color: var(--accent);
    font-weight: 500;
}

.footer__credit a:hover {
    text-decoration: underline;
}

.footer__status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== Responsive ==================== */

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal - only for main page */
[data-reveal] {
    opacity: 1;
    transform: none;
}

/* ==================== Subpage Hero ==================== */
.hero--subpage {
    min-height: auto;
    padding: 180px 24px 100px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero--subpage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 24px;
}

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

.hero--subpage .hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero--subpage .hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero__glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ==================== Bento Features Grid ==================== */
.bento--features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento--features .bento__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento--features .bento__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento--features .bento__item:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.bento--features .bento__item:hover::before {
    opacity: 1;
}

.bento--features .bento__item--large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
}

.bento--features .bento__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 1.4rem;
    color: var(--accent);
}

.bento--features .bento__icon--lg {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
}

.bento--features .bento__title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.bento--features .bento__text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.bento--features .bento__item--accent {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-card) 100%);
    border-color: rgba(255, 107, 53, 0.15);
}

.bento--features .bento__item--dark {
    background: var(--bg-primary);
    border-color: var(--border);
}

.bento__stat {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.bento__stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent);
    line-height: 1;
}

.bento__stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bento__code {
    display: block;
    margin-top: 20px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent);
}

/* Code Preview Block */
.code-preview {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 32px;
}

.code-preview__header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.code-preview__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.5;
}

.code-preview__dot:first-child { background: #ff5f57; opacity: 1; }
.code-preview__dot:nth-child(2) { background: #febc2e; opacity: 1; }
.code-preview__dot:nth-child(3) { background: #28c840; opacity: 1; }

.code-preview code {
    display: block;
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.code-preview__success {
    color: var(--highlight);
}

/* ==================== CTA Box ==================== */
.section--cta {
    padding: 100px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.cta-box {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(196, 248, 42, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-box__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-box__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-box__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== Enhanced Pricing Cards ==================== */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
}

.pricing-card--featured {
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-card) 50%);
    box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.2), 0 8px 32px rgba(255, 107, 53, 0.15);
}

.pricing-card__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-card__header {
    margin-bottom: 24px;
}

.pricing-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-card__price {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.pricing-card__amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    line-height: 1;
}

.pricing-card__period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-card__features {
    margin-bottom: 32px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 248, 42, 0.15);
    border-radius: 50%;
    color: var(--highlight);
    font-size: 0.7rem;
}

/* ==================== Section Header ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 8px;
}

/* ==================== FAQ Section ==================== */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.section--faq {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item__question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-item__answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== Timeline / Changelog ==================== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

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

.timeline-item {
    position: relative;
    padding-left: 72px;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item__dot {
    position: absolute;
    left: 16px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--bg-primary);
    border: 3px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item__date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.timeline-item__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.timeline-item__tag--feature {
    background: rgba(196, 248, 42, 0.15);
    color: var(--highlight);
}

.timeline-item__tag--improvement {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.timeline-item__tag--fix {
    background: rgba(113, 113, 122, 0.2);
    color: var(--text-secondary);
}

.timeline-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-item__text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== Roadmap Kanban ==================== */
.roadmap-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roadmap-column {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.roadmap-column__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.roadmap-column__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.roadmap-column__dot--progress { background: var(--accent); }
.roadmap-column__dot--planned { background: var(--text-muted); }
.roadmap-column__dot--done { background: var(--highlight); }

.roadmap-column__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.roadmap-column__count {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 2px 8px;
    border-radius: 10px;
}

/* ==================== Changelog Page ==================== */
.page-header--changelog {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.changelog-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

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

.changelog-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.changelog-stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.changelog-section {
    padding: 80px 0 120px;
}

.changelog-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.changelog-filter {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 100px;
    
    display: flex;
    align-items: center;
    gap: 8px;
}

.changelog-filter:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.changelog-filter--active {
    color: var(--bg-primary);
    background: var(--accent);
    border-color: var(--accent);
}

.changelog-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.changelog-month {
    margin-bottom: 24px;
    margin-top: 48px;
}

.changelog-month:first-child {
    margin-top: 0;
}

.changelog-month__title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-left: 48px;
}

.changelog-entry {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.changelog-entry__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px;
    flex-shrink: 0;
}

.changelog-entry__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    position: relative;
    z-index: 1;
}

.changelog-entry__dot--feature {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.changelog-entry__dot--improvement {
    background: var(--highlight);
    border-color: var(--highlight);
    box-shadow: 0 0 12px var(--highlight-glow);
}

.changelog-entry__dot--fix {
    background: #60a5fa;
    border-color: #60a5fa;
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
}

.changelog-entry__line {
    width: 2px;
    flex: 1;
    background: var(--border);
    margin-top: 8px;
}

.changelog-entry__content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
}

.changelog-entry__content:hover {
    border-color: var(--border-hover);
}

.changelog-entry__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.changelog-entry__date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.changelog-entry__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.changelog-entry__tag--feature {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.changelog-entry__tag--improvement {
    background: rgba(196, 248, 42, 0.15);
    color: var(--highlight);
}

.changelog-entry__tag--fix {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}

.changelog-entry__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.changelog-entry__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.changelog-entry__text:last-child {
    margin-bottom: 0;
}

.changelog-entry__details {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.changelog-entry__code {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
}

.changelog-entry__code code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--highlight);
}

.changelog-entry__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.changelog-entry__link:hover {
    color: var(--accent-light);
}

.changelog-entry__link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.changelog-entry__link:hover i {
    transform: translateX(4px);
}

.changelog-entry__metrics {
    display: flex;
    gap: 24px;
    margin-top: 4px;
}

.changelog-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.changelog-metric__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight);
    font-family: var(--font-mono);
}

.changelog-metric__label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.changelog-entry__features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.changelog-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.changelog-feature i {
    color: var(--highlight);
    font-size: 0.75rem;
}

.changelog-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.changelog-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.changelog-cta .btn {
    margin: 0 8px;
}

/* Changelog responsive */

/* ==================== Roadmap Page ==================== */
.roadmap-section {
    padding: 60px 0 120px;
}

/* Timeline */
.roadmap-timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
    z-index: 0;
}

.roadmap-timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.roadmap-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
}

.roadmap-timeline__item--past .roadmap-timeline__dot {
    background: var(--text-muted);
    border-color: var(--text-muted);
}

.roadmap-timeline__item--current .roadmap-timeline__dot {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    animation: pulse 2s infinite;
}

.roadmap-timeline__label {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.roadmap-timeline__item--current .roadmap-timeline__label {
    color: var(--accent);
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--accent-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 20px var(--accent-glow); }
}

/* Board */
.roadmap-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roadmap-column {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.roadmap-column__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.roadmap-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
}

.roadmap-status i {
    font-size: 0.75rem;
}

.roadmap-status--progress {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.roadmap-status--planned {
    background: rgba(113, 113, 122, 0.15);
    color: var(--text-secondary);
}

.roadmap-status--done {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.roadmap-column__count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Items */
.roadmap-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 12px;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-item--done {
    opacity: 0.7;
}

.roadmap-item--done:hover {
    opacity: 1;
}

.roadmap-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.roadmap-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 100px;
}

.roadmap-badge--high {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.roadmap-badge--medium {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.roadmap-badge--low {
    background: rgba(113, 113, 122, 0.15);
    color: var(--text-muted);
}

.roadmap-item__category {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.roadmap-item__date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.roadmap-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.roadmap-item__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.roadmap-item__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roadmap-item__eta,
.roadmap-item__votes {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.roadmap-item__eta i,
.roadmap-item__votes i {
    font-size: 0.7rem;
    color: var(--accent);
}

.roadmap-item__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.roadmap-item__link:hover {
    color: var(--accent-light);
}

.roadmap-item__link i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.roadmap-item__link:hover i {
    transform: translateX(4px);
}

/* CTA */
.roadmap-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    margin-top: 48px;
}

.roadmap-cta__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.roadmap-cta__icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.roadmap-cta__content {
    flex: 1;
}

.roadmap-cta__content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.roadmap-cta__content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Roadmap responsive */

/* ==================== Docs Page ==================== */
.page-header--docs {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.docs-search {
    max-width: 500px;
    margin: 32px auto 0;
    position: relative;
    display: flex;
    align-items: center;
}

.docs-search i {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    font-size: 1rem;
}

.docs-search__input {
    width: 100%;
    padding: 16px 80px 16px 50px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    outline: none;
    
}

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

.docs-search__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.docs-search__shortcut {
    position: absolute;
    right: 16px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.docs-section {
    padding: 60px 0 120px;
}

.docs-quickstart {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
}

.docs-quickstart__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 16px;
}

.docs-quickstart__content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.docs-quickstart__content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.docs-quickstart__code {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.docs-quickstart__code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.docs-quickstart__code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-hover);
}

.docs-quickstart__code-dot:nth-child(1) { background: #ff5f57; }
.docs-quickstart__code-dot:nth-child(2) { background: #febc2e; }
.docs-quickstart__code-dot:nth-child(3) { background: #28c840; }

.docs-quickstart__code-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.docs-quickstart__code pre {
    padding: 20px;
    margin: 0;
    overflow-x: auto;
}

.docs-quickstart__code code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-secondary);
    transition: opacity 0.15s ease;
}

.code-comment { color: var(--text-muted); }
.code-prompt { color: var(--accent); font-weight: 600; }
.code-success { color: var(--highlight); }

.docs-quickstart__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.docs-quickstart__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    
}

.docs-quickstart__link:hover {
    border-color: var(--accent);
}

.docs-quickstart__link--active {
    border-color: var(--accent);
    background: rgba(255, 107, 53, 0.1);
}

.docs-quickstart__link i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.docs-quickstart__link:hover i,
.docs-quickstart__link--active i {
    color: var(--accent);
}

.docs-quickstart__link span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.docs-categories__title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.docs-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
}

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

.docs-card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-card) 100%);
    border-color: rgba(255, 107, 53, 0.2);
}

.docs-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.docs-card__content {
    flex: 1;
}

.docs-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.docs-card__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.docs-card__count {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.docs-card__links {
    list-style: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.docs-card__links li {
    margin-bottom: 8px;
}

.docs-card__links li:last-child {
    margin-bottom: 0;
}

.docs-card__links a {
    font-size: 0.9rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.docs-card__links a:hover {
    color: var(--accent-light);
}

.docs-card__links a::before {
    content: '→';
    font-size: 0.8rem;
}

.docs-card__arrow {
    color: var(--text-muted);
    font-size: 0.9rem;
    align-self: center;
    transition: var(--transition);
}

.docs-card:hover .docs-card__arrow {
    color: var(--accent);
    transform: translateX(4px);
}

.docs-help {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.docs-help__card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.docs-help__card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.docs-help__card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.docs-help__card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Docs responsive */

/* ==================== API Page ==================== */
.page-header--api {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.api-header-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.api-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #22c55e;
}

.api-header-badge__dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.api-section {
    padding: 60px 0 120px;
}

.api-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
}

.api-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.api-nav h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
    margin-top: 24px;
}

.api-nav h4:first-child {
    margin-top: 0;
}

.api-nav ul {
    list-style: none;
}

.api-nav li {
    margin-bottom: 4px;
}

.api-nav a {
    display: block;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    
}

.api-nav a:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.api-nav a.active {
    color: var(--accent);
    background: rgba(255, 107, 53, 0.1);
}

.api-content {
    min-width: 0;
}

.api-block {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.api-block:last-of-type {
    border-bottom: none;
}

.api-block__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.api-block__text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.api-code-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.api-code-block--dark {
    background: var(--bg-primary);
}

.api-code-block__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.api-code-block__copy {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    
}

.api-code-block__copy:hover {
    color: var(--accent);
    background: var(--bg-secondary);
}

.api-code-block pre {
    padding: 16px 20px;
    margin: 0;
    overflow-x: auto;
}

.api-code-block code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.api-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.api-note i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 2px;
}

.api-note p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.api-table {
    overflow-x: auto;
    margin-bottom: 20px;
}

.api-table table {
    width: 100%;
    border-collapse: collapse;
}

.api-table th,
.api-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.api-table th {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--bg-secondary);
}

.api-table td {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.api-table tr:hover td {
    background: var(--bg-secondary);
}

.api-endpoint-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.api-endpoint-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.api-endpoint-card__header code {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.api-method {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.api-method--get {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.api-method--post {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.api-method--put {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.api-method--delete {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.api-endpoint-card__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.api-code-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.api-code-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    
}

.api-code-tab:hover {
    color: var(--text-primary);
}

.api-code-tab--active {
    color: var(--accent);
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--accent);
}

.api-endpoint-card__response {
    margin-top: 20px;
}

.api-response-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.api-response-code {
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.api-endpoint-card__params {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.api-endpoint-card__params h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.api-param {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.api-param:last-child {
    border-bottom: none;
}

.api-param code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.api-param__type {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: 2px 8px;
    border-radius: 4px;
}

.api-param__required {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
}

.api-param p {
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.api-cta {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    margin-top: 40px;
}

.api-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.api-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.api-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* API responsive */

/* ==================== CLI Page ==================== */
.page-header--cli {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.cli-install-box {
    max-width: 500px;
    margin: 32px auto 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cli-install-box__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.cli-install-box__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-hover);
}

.cli-install-box__dot:nth-child(1) { background: #ff5f57; }
.cli-install-box__dot:nth-child(2) { background: #febc2e; }
.cli-install-box__dot:nth-child(3) { background: #28c840; }

.cli-install-box__title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.cli-install-box__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.cli-install-box__content code {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-primary);
}

.cli-install-box__copy {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    padding: 8px 12px;
    cursor: pointer;
    
}

.cli-install-box__copy:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.cli-header-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cli-section {
    padding: 60px 0 120px;
}

.cli-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.cli-feature {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.cli-feature:hover {
    border-color: var(--border-hover);
}

.cli-feature__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: var(--accent);
}

.cli-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cli-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cli-commands__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.cli-command-group {
    margin-bottom: 48px;
}

.cli-command-group__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.cli-command-group__title i {
    color: var(--accent);
}

.cli-command-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    
}

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

.cli-command-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cli-command-card__name {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--highlight);
}

.cli-command-card__badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.cli-command-card__badge--primary {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.cli-command-card__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cli-command-card__example {
    margin-top: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cli-command-card__example pre {
    padding: 16px 20px;
    margin: 0;
    overflow-x: auto;
}

.cli-command-card__example code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.cli-command-card__options {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.cli-command-card__options h5 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cli-option {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 8px 0;
}

.cli-option code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    min-width: 120px;
    flex-shrink: 0;
}

.cli-option span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cli-command-card__subcommands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.cli-command-card__subcommands code {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.cli-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--bg-secondary) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    margin-top: 48px;
}

.cli-cta__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cli-cta__content p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.cli-cta__code {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 24px;
}

.cli-cta__code code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* CLI responsive */

/* ==================== Status Page ==================== */
.page-header--status {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.status-hero-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin: 32px auto 24px;
    padding: 24px 32px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-xl);
}

.status-hero-banner__icon {
    font-size: 2.5rem;
    color: #22c55e;
}

.status-hero-banner__content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 4px;
}

.status-hero-banner__content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.status-subscribe {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.status-section {
    padding: 60px 0 120px;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
}

.status-main {
    min-width: 0;
}

.status-services__title,
.status-incidents__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.status-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 16px;
}

.status-service-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.status-service-card__info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.status-service-card__info i {
    color: var(--text-muted);
    width: 20px;
}

.status-service-card__status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-service-card__status--operational {
    color: #22c55e;
}

.status-service-card__status--degraded {
    color: #fbbf24;
}

.status-service-card__status--down {
    color: #ef4444;
}

.status-service-card__uptime {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.uptime-bars {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
}

.uptime-bar {
    flex: 1;
    height: 28px;
    border-radius: 3px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.uptime-bar:hover {
    transform: scaleY(1.1);
}

.uptime-bar--up {
    background: #22c55e;
}

.uptime-bar--partial {
    background: #fbbf24;
}

.uptime-bar--down {
    background: #ef4444;
}

.uptime-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-incidents {
    margin-top: 48px;
}

.status-incident {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.status-incident:first-of-type {
    padding-top: 0;
}

.status-incident__date {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.status-incident__day {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.status-incident__year {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.status-incident__content {
    flex: 1;
}

.status-incident__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.status-incident__timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--border);
}

.status-incident__update {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.status-incident__update:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.status-incident__update::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 50%;
}

.status-incident__time {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-right: 12px;
}

.status-incident__badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 4px;
}

.status-incident__badge--resolved {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-incident__badge--monitoring {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.status-incident__badge--investigating {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.status-incident__update p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.5;
}

.status-incident--none .status-incident__content {
    display: flex;
    align-items: center;
}

.status-incident__none-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.status-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    margin-top: 52px; /* Align with first service card, not the title */
}

.status-metrics {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.status-metrics h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.status-metric__value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 4px;
}

.status-metric__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.status-regions {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.status-regions h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.status-regions__list {
    list-style: none;
}

.status-regions__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.status-regions__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.status-regions__list li span:last-child {
    margin-left: auto;
    font-size: 0.8rem;
    color: #22c55e;
}

/* Status responsive */

/* ==================== About Page ==================== */
.page-header--about {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.about-story {
    padding: 80px 0;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story__content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 24px;
}

.about-story__content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.about-story__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.about-story__card:hover {
    border-color: var(--border-hover);
}

.about-story__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: var(--accent);
}

.about-story__card-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.about-story__card-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.about-mission {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-mission__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-mission__content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 24px;
}

.about-mission__content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.about-mission__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-value {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.about-value__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--accent);
}

.about-value h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-value p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-team {
    padding: 80px 0;
}

.about-team__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.about-team__header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 16px;
}

.about-team__header p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

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

.team-card__avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--text-muted);
}

.team-card__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.team-card__bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.team-card__social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-card__social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    
}

.team-card__social a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.about-team__cta {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.about-team__cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-team__cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about-investors {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-investors__header {
    text-align: center;
    margin-bottom: 48px;
}

.about-investors__header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 16px;
}

.about-investors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.investor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.investor-card__logo {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.investor-card__logo svg {
    width: 100%;
    height: 100%;
}

.investor-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.investor-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.investor-card__type {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-investors__stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

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

.investor-stat__value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}

.investor-stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* About responsive */

/* ==================== Blog Page ==================== */
.page-header--blog {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.blog-category {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    
}

.blog-category:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.blog-category--active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.blog-section {
    padding: 60px 0 120px;
}

.blog-featured {
    margin-bottom: 48px;
}

.blog-card--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.blog-card--featured .blog-card__image {
    min-height: 400px;
}

.blog-card--featured .blog-card__content {
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card--featured .blog-card__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.blog-card--featured .blog-card__excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: visible;
    cursor: pointer;
    position: relative;
}

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

.blog-card__image {
    height: 200px;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-card__image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.3;
}

.blog-card__content {
    padding: 24px;
}

.blog-card__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-card__tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-card__tag--engineering {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.blog-card__tag--product {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.blog-card__tag--tutorial {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.blog-card__tag--company {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.blog-card__tag--featured {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.blog-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.blog-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-card__author-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--text-muted);
}

.blog-card__author-info {
    display: flex;
    flex-direction: column;
}

.blog-card__author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.blog-card__author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-card__meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card__meta i {
    margin-right: 4px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 64px;
}

.blog-pagination__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    
}

.blog-pagination__btn:hover:not(.blog-pagination__btn--disabled) {
    border-color: var(--accent);
    color: var(--accent);
}

.blog-pagination__btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-pagination__current {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.blog-newsletter__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.blog-newsletter__content p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.blog-newsletter__form {
    display: flex;
    gap: 12px;
}

.blog-newsletter__input {
    width: 300px;
    padding: 14px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-primary);
}

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

.blog-newsletter__input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Blog responsive */

/* ==================== Careers Page ==================== */
.page-header--careers {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.careers-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
}

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

.careers-stat__value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.careers-stat__label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.careers-perks-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.careers-perks-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.careers-perks-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 16px;
}

.careers-perks-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

.careers-perk {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.careers-perk:hover {
    border-color: var(--border-hover);
}

.careers-perk__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--accent);
}

.careers-perk h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.careers-perk p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.careers-jobs-section {
    padding: 80px 0 120px;
}

.careers-jobs-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px;
}

.careers-jobs-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 16px;
}

.careers-jobs-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.careers-jobs-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.careers-filter {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    
}

.careers-filter:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.careers-filter--active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.careers-jobs-list {
    max-width: 800px;
    margin: 0 auto 48px;
}

.job-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    text-decoration: none;
}

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

.job-card__department {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
}

.job-card__info {
    flex: 1;
}

.job-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.job-card__description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.job-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-card__tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    color: var(--text-muted);
}

.job-card__arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    flex-shrink: 0;
    
}

.job-card:hover .job-card__arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.careers-cta {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    max-width: 800px;
    margin: 0 auto;
}

.careers-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.careers-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Careers responsive */

/* ==================== Contact Page ==================== */
.page-header--contact {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.contact-section {
    padding: 60px 0 80px;
}

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

.contact-info__header {
    margin-bottom: 32px;
}

.contact-info__header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-info__header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

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

.contact-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent);
    flex-shrink: 0;
}

.contact-card__icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
}

.contact-card__content {
    flex: 1;
}

.contact-card__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-card__content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-card__content a {
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.contact-card__content a:hover {
    text-decoration: underline;
}

.contact-social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-social__links {
    display: flex;
    gap: 12px;
}

.contact-social__link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 1.1rem;
    
}

.contact-social__link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-form__note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.contact-form__note a {
    color: var(--accent);
    text-decoration: none;
}

.contact-form__note a:hover {
    text-decoration: underline;
}

.contact-faq {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-faq__header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 16px;
}

.contact-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item a {
    color: var(--accent);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Contact responsive */

/* ==================== Legal Pages ==================== */
.page-header--legal {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.legal-section {
    padding: 60px 0 120px;
}

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

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-nav {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.legal-nav h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav li {
    margin-bottom: 8px;
}

.legal-nav__link {
    display: block;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    
}

.legal-nav__link:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.legal-nav__link.active {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
}

.legal-sidebar__cta {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.legal-sidebar__cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content {
    max-width: 800px;
}

.legal-intro {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.legal-intro p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.legal-section__item {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.legal-section__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

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

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.legal-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.legal-content ul li strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-contact {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 16px;
}

.legal-contact p {
    margin-bottom: 8px;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

/* Legal responsive */

/* ==================== Security Page ==================== */
.page-header--security {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.security-badge i {
    color: var(--accent);
}

.security-features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.security-features-header {
    text-align: center;
    margin-bottom: 48px;
}

.security-features-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 16px;
}

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

.security-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.security-feature:hover {
    border-color: var(--border-hover);
}

.security-feature__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.security-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.security-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.security-details-section {
    padding: 80px 0;
}

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

.security-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.security-detail-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.security-detail-card__header i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: var(--accent);
}

.security-detail-card__header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.security-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-detail-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.security-detail-card ul li:last-child {
    border-bottom: none;
}

.security-detail-card ul li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
}

.security-report-section {
    padding: 0 0 120px;
}

.security-report-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.security-report-card__content i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.security-report-card__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.security-report-card__content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.security-report-card__content .btn i {
    color: #000;
}

.security-report-card__info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.security-report-card__info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.security-report-card__info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-report-card__info ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.security-report-card__info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Security responsive */

/* ==================== Disable Hover Animations on Subpages ==================== */
/* Add class "no-hover-animations" to body on subpages */
body.no-hover-animations .btn--primary:hover,
body.no-hover-animations .btn--outline:hover,
body.no-hover-animations .btn:hover .btn__arrow,
body.no-hover-animations .bento__item:hover,
body.no-hover-animations .price-card:hover,
body.no-hover-animations .pricing-card:hover,
body.no-hover-animations .feature-card:hover,
body.no-hover-animations .blog-card:hover,
body.no-hover-animations .job-card:hover,
body.no-hover-animations .contact-card:hover,
body.no-hover-animations .roadmap-card:hover,
body.no-hover-animations .changelog-entry__content:hover,
body.no-hover-animations .security-feature:hover,
body.no-hover-animations .about-story__card:hover,
body.no-hover-animations .team-card:hover,
body.no-hover-animations .careers-perk:hover,
body.no-hover-animations .cli-feature:hover,
body.no-hover-animations .cli-command-card:hover,
body.no-hover-animations .faq-item:hover,
body.no-hover-animations .stack-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

body.no-hover-animations .btn,
body.no-hover-animations .btn__arrow,
body.no-hover-animations .bento__item,
body.no-hover-animations .price-card,
body.no-hover-animations .pricing-card,
body.no-hover-animations .feature-card,
body.no-hover-animations .blog-card,
body.no-hover-animations .job-card,
body.no-hover-animations .contact-card,
body.no-hover-animations .roadmap-card,
body.no-hover-animations .changelog-entry__content,
body.no-hover-animations .security-feature,
body.no-hover-animations .about-story__card,
body.no-hover-animations .team-card,
body.no-hover-animations .careers-perk,
body.no-hover-animations .cli-feature,
body.no-hover-animations .cli-command-card,
body.no-hover-animations .faq-item,
body.no-hover-animations .stack-card {
    transition: none !important;
}

/* ==================== Auth Pages (Login/Signup) ==================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header--minimal {
    background: transparent;
    border-bottom: none;
}

.header--minimal .nav {
    justify-content: space-between;
}

.auth {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    position: relative;
}

.auth__container {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.auth__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
}

.auth__header {
    text-align: center;
    margin-bottom: 32px;
}

.auth__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth__subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.auth__social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.auth__social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth__social-btn:hover {
    border-color: var(--border-hover);
    background: var(--bg-tertiary);
}

.auth__social-btn i {
    font-size: 1.25rem;
}

.auth__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.auth__divider::before,
.auth__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth__divider span {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

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

.auth__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.auth__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.auth__input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

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

.auth__input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.auth__forgot {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
}

.auth__forgot:hover {
    text-decoration: underline;
}

.auth__footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth__footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.auth__footer a:hover {
    text-decoration: underline;
}

.auth__terms {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.auth__terms a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.auth__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Auth responsive */

/* ==================== Author Badge ==================== */
.author-badge {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.8rem;
}

.author-badge__label {
    padding: 6px 12px;
    background: var(--bg-secondary);
    color: var(--text-muted);
    border-radius: 4px 0 0 4px;
}

.author-badge__name {
    padding: 6px 12px;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
    border-radius: 0 4px 4px 0;
}


/* ==========================================================================
   RESPONSIVE DESIGN
   ==========================================================================
   Mobile-first approach with breakpoints:
   - Desktop: default styles (no media query)
   - Tablet: max-width 1024px
   - Mobile: max-width 768px  
   - Small Mobile: max-width 480px
   ========================================================================== */

/* --------------------------------------------------------------------------
   TABLET (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric-card--float {
        display: none;
    }

    .bento--features {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento--features .bento__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .roadmap-timeline {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .roadmap-timeline__item {
        padding: 0 20px;
    }

    .docs-quickstart {
        grid-template-columns: 1fr;
    }

    .docs-quickstart__links {
        grid-template-columns: repeat(3, 1fr);
    }

    .api-layout {
        grid-template-columns: 1fr;
    }

    .api-sidebar {
        position: static;
        display: none;
    }

    .cli-features {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .status-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

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

    .about-mission__values {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card--featured {
        grid-template-columns: 1fr;
    }

    .blog-card--featured .blog-card__content {
        padding: 32px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .legal-sidebar {
        position: static;
    }

    .legal-nav {
        display: none;
    }

    .security-features-grid,
    .security-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-report-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

}

/* --------------------------------------------------------------------------
   MOBILE (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Performance optimizations for mobile */
    .header.scrolled {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav__dropdown-menu {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .hero__orb {
        display: none;
    }

    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Fix scroll issues - remove overflow:hidden from sections */
    .cta,
    .pricing,
    .how,
    .bento-section,
    .blog-section,
    .hero--subpage {
        overflow: visible;
    }

    /* Disable hover transforms on mobile */
    .bento__item:hover,
    .price-card:hover,
    .blog-item--hero:hover {
        transform: none;
    }

    .container {
        padding: 0 16px;
        overflow-x: hidden;
    }

    .hero__stack {
        max-width: 100%;
    }

    .stack-card {
        padding: 12px 18px;
        min-width: 75px;
    }

    .stack-card i {
        font-size: 1.5rem;
    }

    .stats-bar__grid {
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat-item__divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .stat-item__value {
        font-size: 2.5rem;
    }

    :root {
        --section-gap: 100px;
    }

    .nav__center,
    .nav__end {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        overflow: hidden;
        background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(255, 107, 53, 0.15), transparent 60%);
    }

    .hero__gradient {
        background: radial-gradient(ellipse 120% 60% at 50% -10%, rgba(255, 107, 53, 0.2), transparent);
    }

    .hero__title-line {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero__subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 32px;
        padding: 0 16px;
        word-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .bento__item--large,
    .bento__item--wide {
        grid-column: span 1;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 32px 24px;
        padding-bottom: 32px;
        margin-bottom: 24px;
    }

    .step:last-child {
        margin-bottom: 0;
        padding-bottom: 32px;
    }

    .step__icon {
        margin: 0 auto 16px;
        background: linear-gradient(135deg, var(--accent), rgba(255, 107, 53, 0.6));
        border: none;
        color: #fff;
        box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    }

    .step__number {
        font-size: 2.5rem;
    }

    .step__line {
        display: none;
    }

    .step__visual {
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
        padding: 24px 20px;
    }

    .step__text {
        margin-bottom: 20px;
    }

    .step__content {
        padding-bottom: 8px;
    }

    .step__graph {
        height: 100px;
        margin-bottom: 12px;
    }

    .step__graph-label {
        display: block;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        text-align: center;
    }

    .footer__brand {
        grid-column: span 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .footer__brand .logo {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__column {
        text-align: center;
    }

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

    /* Blog Post Mobile */
    .post__header {
        padding: 120px 0 40px;
    }

    .post__meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .post__title {
        font-size: 1.75rem;
    }

    .post__subtitle {
        font-size: 1rem;
    }

    .post__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .post__stat {
        padding: 20px;
    }

    .post__stat-value {
        font-size: 2rem;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-card__social {
        justify-content: center;
    }

    .post__share-buttons {
        flex-wrap: wrap;
    }

    .related-posts__grid {
        grid-template-columns: 1fr;
    }

    /* Blog Page Mobile */
    .blog-featured .blog-card--featured {
        grid-template-columns: 1fr;
    }

    .blog-featured .blog-card--featured .blog-card__image {
        min-height: 220px;
    }

    .blog-featured .blog-card--featured .blog-card__content {
        padding: 24px;
    }

    .blog-featured .blog-card--featured .blog-card__title {
        font-size: 1.25rem;
    }

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

    .blog-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .blog-newsletter__form {
        flex-direction: column;
        width: 100%;
    }

    .blog-newsletter__input {
        min-width: auto;
        width: 100%;
    }

    .hero--subpage {
        padding: 140px 24px 60px;
    }

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

    .bento--features .bento__item--large {
        grid-column: span 1;
    }

    .cta-box {
        padding: 48px 24px;
        text-align: center;
    }

    .cta-box__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-box__actions .btn {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 250px;
        box-sizing: border-box;
    }

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

    /* Blog Section Mobile */
    .blog-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .blog-section__grid {
        grid-template-columns: 1fr;
    }

    .blog-item--hero .blog-item__image {
        height: 200px;
    }

    .blog-item--hero .blog-item__content {
        padding: 20px;
    }

    .blog-item--hero .blog-item__title {
        font-size: 1.25rem;
    }

    .blog-item__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .blog-item__arrow {
        display: none;
    }

    .blog-item--compact .blog-item__link {
        flex-direction: row;
    }

    .blog-item--compact .blog-item__image {
        width: 100px;
        min-width: 100px;
        height: 80px;
    }

    .blog-item--compact .blog-item__title {
        font-size: 0.85rem;
    }

    .blog-section__cta {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }

    .blog-section__cta-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .blog-section__cta-form {
        flex-direction: column;
        width: 100%;
    }

    .blog-section__cta-input {
        width: 100%;
    }

    .blog-section__cta-form .btn {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .roadmap-kanban {
        grid-template-columns: 1fr;
    }

    .changelog-stats {
        flex-direction: column;
        gap: 24px;
    }

    .changelog-stat__number {
        font-size: 2rem;
    }

    .changelog-filters {
        gap: 8px;
    }

    .changelog-filter {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .changelog-month__title {
        padding-left: 40px;
    }

    .changelog-entry {
        gap: 16px;
    }

    .changelog-entry__content {
        padding: 20px;
    }

    .changelog-entry__title {
        font-size: 1.1rem;
    }

    .changelog-entry__metrics {
        flex-direction: column;
        gap: 12px;
    }

    .changelog-cta .btn {
        display: block;
        margin: 8px auto;
        max-width: 200px;
    }

    .roadmap-timeline {
        display: none;
    }

    .roadmap-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

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

    .docs-card--featured {
        grid-column: span 1;
    }

    .docs-quickstart {
        padding: 20px;
        gap: 24px;
        overflow: hidden;
        max-width: 100%;
    }

    .docs-quickstart__content {
        min-width: 0;
        overflow: hidden;
    }

    .docs-quickstart__content h2 {
        font-size: 1.25rem;
    }

    .docs-quickstart__code {
        max-width: 100%;
    }

    .docs-quickstart__code pre {
        padding: 16px;
        font-size: 0.7rem;
        max-width: 100%;
    }

    .docs-quickstart__code code {
        font-size: 0.7rem;
        white-space: pre-wrap;
        word-wrap: break-word;
        word-break: break-word;
    }

    .docs-quickstart__links {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .docs-quickstart__link {
        padding: 12px 8px;
        gap: 4px;
    }

    .docs-quickstart__link i {
        font-size: 1.2rem;
    }

    .docs-quickstart__link span {
        font-size: 0.7rem;
    }

    .docs-card {
        padding: 16px;
        gap: 12px;
    }

    .docs-card__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .docs-card__title {
        font-size: 1rem;
    }

    .docs-card__text {
        font-size: 0.85rem;
    }

    .docs-help {
        grid-template-columns: 1fr;
    }

    .api-header-info {
        flex-direction: column;
    }

    .api-endpoint-card {
        padding: 16px;
    }

    .api-cta {
        padding: 32px 20px;
    }

    .api-cta__buttons {
        flex-direction: column;
    }

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

    .cli-cta {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }

    .cli-option {
        flex-direction: column;
        gap: 4px;
    }

    .cli-option code {
        min-width: auto;
    }

    .status-hero-banner {
        flex-direction: column;
        text-align: center;
    }

    .status-subscribe {
        flex-direction: column;
        align-items: center;
    }

    .status-sidebar {
        grid-template-columns: 1fr;
    }

    .status-incident {
        flex-direction: column;
        gap: 12px;
    }

    .status-incident__date {
        width: auto;
        text-align: left;
        display: flex;
        gap: 8px;
    }

    .about-story__visual {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-team__cta {
        padding: 32px 20px;
    }

    .about-investors__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-investors__stats {
        gap: 32px;
        flex-wrap: wrap;
    }

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

    .blog-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }

    .blog-newsletter__form {
        flex-direction: column;
        width: 100%;
    }

    .blog-newsletter__input {
        width: 100%;
    }

    .blog-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .careers-stats {
        flex-direction: column;
        gap: 24px;
    }

    .careers-perks-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        flex-direction: column;
        text-align: center;
    }

    .job-card__tags {
        justify-content: center;
    }

    .careers-cta {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-faq__grid {
        grid-template-columns: 1fr;
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }

    .security-badges {
        flex-direction: column;
        align-items: center;
    }

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

    .security-report-card {
        padding: 32px 24px;
    }

    /* Scroll to Top button - mobile */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

}

/* --------------------------------------------------------------------------
   SMALL MOBILE (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .auth__card {
        padding: 32px 24px;
    }

    .auth__title {
        font-size: 1.5rem;
    }

}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.error-page__content {
    text-align: center;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.error-page__code {
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.error-page__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.error-page__text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.error-page__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.error-page__links {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.error-page__links p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.error-page__links ul {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-page__links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.error-page__links a:hover {
    color: var(--accent);
}

.error-page__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ==========================================================================
   COMING SOON PAGE
   ========================================================================== */

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.coming-soon__content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.coming-soon__logo {
    margin-bottom: 48px;
    display: inline-flex;
}

.coming-soon__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.coming-soon__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
}

.coming-soon__countdown {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown__number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    line-height: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 8px;
}

.countdown__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown__launched {
    font-size: 1.5rem;
    color: var(--highlight);
}

.coming-soon__form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 40px;
}

.coming-soon__input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.coming-soon__input:focus {
    outline: none;
    border-color: var(--accent);
}

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

.coming-soon__social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.coming-soon__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.2s;
}

.coming-soon__social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.coming-soon__glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ==========================================================================
   MAINTENANCE PAGE
   ========================================================================== */

.maintenance {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.maintenance__content {
    text-align: center;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.maintenance__logo {
    margin-bottom: 32px;
    display: inline-flex;
}

.maintenance__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--bg-primary);
    animation: pulse 2s ease-in-out infinite;
}

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

.maintenance__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.maintenance__text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.maintenance__status {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.maintenance__status-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.maintenance__status-item i {
    color: var(--accent);
}

.maintenance__progress {
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.maintenance__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
    border-radius: 3px;
    animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.maintenance__progress-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.maintenance__contact {
    margin-bottom: 32px;
}

.maintenance__contact p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.maintenance__social {
    margin-bottom: 32px;
}

.maintenance__social p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.maintenance__social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.maintenance__social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.2s;
}

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

.maintenance__footer {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.maintenance__status-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.maintenance__status-link:hover {
    color: var(--accent);
}

.maintenance__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Responsive for special pages */
@media (max-width: 640px) {
    .coming-soon__countdown {
        gap: 12px;
    }

    .countdown__item {
        min-width: 60px;
    }

    .countdown__number {
        padding: 12px 14px;
    }

    .coming-soon__form {
        flex-direction: column;
    }

    .error-page__actions {
        flex-direction: column;
    }

    .error-page__actions .btn {
        width: 100%;
    }
}

/* ==================== Scroll to Top Button ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Extra small screens (iPhone SE, small Android) */
@media (max-width: 375px) {
    .hero__subtitle {
        font-size: 0.85rem;
        padding: 0 12px;
    }

    .hero__title-line {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }
}

/* ==================== iOS Safari & Android Optimizations ==================== */
/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Disable all hover effects on touch devices */
    .btn:hover,
    .bento__item:hover,
    .price-card:hover,
    .blog-card:hover,
    .blog-item--hero:hover,
    .nav__link:hover,
    .footer__links a:hover {
        transform: none;
    }

    /* Ensure badges are always visible - keep colored style */
    .blog-card__category {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    /* Color variants for touch devices */
    .blog-card__category--engineering,
    .blog-card__category[data-category="engineering"] {
        background: rgba(59, 130, 246, 0.25);
        color: #3b82f6;
    }

    .blog-card__category--product,
    .blog-card__category[data-category="product"] {
        background: rgba(34, 197, 94, 0.25);
        color: #22c55e;
    }

    .blog-card__category--tutorial,
    .blog-card__category[data-category="tutorial"] {
        background: rgba(168, 85, 247, 0.25);
        color: #a855f7;
    }

    .blog-card__category--company,
    .blog-card__category[data-category="company"] {
        background: rgba(255, 107, 53, 0.25);
        color: var(--accent);
    }

    /* Fix tap delay */
    a, button, input, select, textarea {
        touch-action: manipulation;
    }

    /* Prevent text selection on buttons */
    .btn {
        -webkit-user-select: none;
        user-select: none;
    }

    /* Smooth scrolling for iOS */
    .container {
        -webkit-overflow-scrolling: touch;
    }

    /* Fix position:fixed issues on iOS */
    .header {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .scroll-top {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Prevent iOS zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* Safari-specific fixes */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari only */
    .hero__subtitle {
        -webkit-text-size-adjust: 100%;
    }

    /* Fix 100vh issue on iOS Safari */
    .hero {
        min-height: -webkit-fill-available;
    }
}
