/* ============================================================
   WhisperCore Product Page — Premium Styles
   ============================================================ */

/* Hero */
.wc-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 64px;
}

.wc-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 860px;
}

/* ========================================
   FEATURES — Bento Grid
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 142, 255, 0.02), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(79, 142, 255, 0.1), rgba(79, 142, 255, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.25rem;
    position: relative;
}

.feature-card__icon svg {
    width: 20px;
    height: 20px;
}

.feature-card__icon--cyan {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.03));
    color: var(--accent2);
}

.feature-card__icon--green {
    background: linear-gradient(135deg, rgba(0, 230, 138, 0.1), rgba(0, 230, 138, 0.03));
    color: var(--success);
}

.feature-card__icon--warm {
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.1), rgba(255, 184, 77, 0.03));
    color: var(--warning);
}

.feature-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    position: relative;
}

.feature-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
    position: relative;
}

/* ========================================
   BETA SIGNUP — Dramatic Box
   ======================================== */
.section--beta {
    padding-top: 4rem;
}

.beta-box {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 5rem 2rem;
    overflow: hidden;
}

.beta-box__content {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
}

.beta-box__desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.beta-form__group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.beta-form__input {
    flex: 1;
    font-family: var(--font);
    font-size: 0.9375rem;
    padding: 0.875rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    outline: none;
    transition: all 0.25s;
}

.beta-form__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79, 142, 255, 0.1);
}

.beta-form__input::placeholder {
    color: var(--text-dim);
}

.beta-form__note {
    font-size: 0.6875rem;
    color: var(--text-dim);
    letter-spacing: 0.01em;
}

.beta-form__spinner {
    display: inline-flex;
    align-items: center;
}

/* Result states */
.beta-result--success,
.beta-result--error {
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.beta-result--success {
    background: rgba(0, 230, 138, 0.04);
    border: 1px solid rgba(0, 230, 138, 0.12);
}

.beta-result--success svg {
    margin: 0 auto 1rem;
}

.beta-result--success h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--success);
}

.beta-result--success p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 300;
}

.beta-result--error {
    background: rgba(255, 71, 71, 0.04);
    border: 1px solid rgba(255, 71, 71, 0.12);
    color: #ff7171;
}

/* ========================================
   DOCS PAGE
   ======================================== */
.docs-hero {
    padding-top: calc(64px + 4rem);
}

.docs-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.docs-sidebar {
    position: sticky;
    top: 96px;
    height: fit-content;
}

.docs-sidebar__title {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.docs-sidebar__link {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-dim);
    padding: 0.375rem 0;
    padding-left: 1rem;
    transition: all 0.2s;
    border-left: 1.5px solid transparent;
}

.docs-sidebar__link:hover,
.docs-sidebar__link--active {
    color: var(--text);
    border-left-color: var(--accent);
}

.docs-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 4rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

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

.docs-content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 2rem 0 0.5rem;
    letter-spacing: -0.01em;
}

.docs-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.docs-content code {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    background: rgba(79, 142, 255, 0.06);
    color: var(--accent2);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

.docs-content pre {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.docs-content pre code {
    background: none;
    padding: 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.docs-content ol,
.docs-content ul {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.docs-content li {
    margin-bottom: 0.125rem;
}

/* ========================================
   SYSTEM REQUIREMENTS — Side-by-side Cards
   ======================================== */
.wc-requirements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.wc-req-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    transition: all 0.4s var(--ease);
}

.wc-req-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.wc-req-card--recommended {
    border-color: rgba(79, 142, 255, 0.2);
    background: linear-gradient(180deg, rgba(79, 142, 255, 0.03) 0%, var(--bg-card) 100%);
}

.wc-req-badge {
    position: absolute;
    top: -0.6rem;
    right: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: var(--bg-card);
    border: 1px solid rgba(79, 142, 255, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.wc-req-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.wc-req-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wc-req-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.wc-req-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wc-req-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wc-req-value {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
}

.wc-req-card--recommended .wc-req-value {
    color: var(--text);
}

/* ========================================
   SUPPORTED FORMATS — Badge Grid
   ======================================== */
.wc-formats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.wc-format-group__title {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
}

.wc-format-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wc-format-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.25s var(--ease);
}

.wc-format-badge:hover {
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.wc-format-badge--output {
    border-color: rgba(0, 230, 138, 0.12);
    color: var(--success);
    background: rgba(0, 230, 138, 0.03);
}

.wc-format-badge--output:hover {
    border-color: rgba(0, 230, 138, 0.25);
    color: var(--success);
}

/* ========================================
   FAQ — Accordion
   ======================================== */
.wc-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wc-faq-item {
    border-bottom: 1px solid var(--border);
}

.wc-faq-item:first-child {
    border-top: 1px solid var(--border);
}

.wc-faq-question {
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem 0;
    cursor: pointer;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.wc-faq-question::-webkit-details-marker {
    display: none;
}

.wc-faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-dim);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 1rem;
}

.wc-faq-item[open] .wc-faq-question::after {
    content: '−';
    color: var(--accent);
    transform: rotate(180deg);
}

.wc-faq-question:hover {
    color: var(--accent);
}

.wc-faq-answer {
    padding: 0 0 1.25rem;
}

.wc-faq-answer p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

/* ========================================
   SECTION SUB-NAV
   ======================================== */
.wc-subnav {
    position: sticky;
    top: 64px;
    z-index: 90;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.wc-subnav__inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.wc-subnav__inner::-webkit-scrollbar {
    display: none;
}

.wc-subnav__link {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.wc-subnav__link:hover {
    color: var(--text-muted);
}

.wc-subnav__link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ========================================
   PRODUCT PREVIEW — Window Frame
   ======================================== */
.wc-window {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.wc-window__bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #0c0e12;
    border-bottom: 1px solid var(--border);
}

.wc-window__dots {
    display: flex;
    gap: 6px;
}

.wc-window__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-hover);
}

.wc-window__dot--red {
    background: #ff5f57;
}

.wc-window__dot--yellow {
    background: #febc2e;
}

.wc-window__dot--green {
    background: #28c840;
}

.wc-window__title {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.wc-window__body {
    background: #0d0f12;
    padding: 0;
}

/* ========================================
   MOCK GUI
   ======================================== */
.wc-mock {
    display: flex;
    min-height: 380px;
    font-family: 'Segoe UI Variable', 'Inter', sans-serif;
}

.wc-mock__sidebar {
    width: 260px;
    background: #111318;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.wc-mock__logo {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wc-mock__drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    border: 1px dashed rgba(79, 142, 255, 0.2);
    border-radius: 8px;
    background: rgba(79, 142, 255, 0.02);
    color: rgba(79, 142, 255, 0.5);
    text-align: center;
}

.wc-mock__drop span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.wc-mock__drop small {
    font-size: 0.625rem;
    color: var(--text-dim);
}

.wc-mock__settings {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.wc-mock__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wc-mock__field label {
    font-size: 0.625rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wc-mock__select {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 0.4rem 0.625rem;
}

.wc-mock__btn {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border-radius: 6px;
    padding: 0.6rem;
    text-align: center;
    margin-top: auto;
}

.wc-mock__main {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.wc-mock__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wc-mock__file {
    font-size: 0.8125rem;
    color: var(--text);
    font-weight: 500;
}

.wc-mock__badge {
    font-family: var(--font-mono);
    font-size: 0.5625rem;
    color: var(--accent);
    background: rgba(79, 142, 255, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
    animation: mock-pulse 2s ease-in-out infinite;
}

@keyframes mock-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.wc-mock__progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
}

.wc-mock__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #00d4ff);
    border-radius: 4px;
    transition: width 0.5s;
}

.wc-mock__progress-info {
    font-size: 0.625rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

.wc-mock__transcript {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wc-mock__line {
    font-size: 0.75rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.wc-mock__line--dim {
    opacity: 0.4;
}

.wc-mock__time {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: var(--text-dim);
    margin-right: 0.375rem;
}

.wc-mock__speaker {
    font-weight: 600;
    margin-right: 0.25rem;
}

.wc-mock__speaker--1 {
    color: #4f8eff;
}

.wc-mock__speaker--2 {
    color: #00d68f;
}

/* ========================================
   GETTING STARTED — Quickstart
   ======================================== */
.wc-quickstart {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wc-quickstart__step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.wc-quickstart__step:last-child {
    border-bottom: none;
}

.wc-quickstart__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(79, 142, 255, 0.06);
    border: 1px solid rgba(79, 142, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
}

.wc-quickstart__content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.wc-quickstart__content p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ========================================
   HOW IT WORKS — 3-Step Flow
   ======================================== */
.wc-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.wc-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.wc-step__number {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.wc-step__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(79, 142, 255, 0.08), rgba(79, 142, 255, 0.02));
    border: 1px solid rgba(79, 142, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s var(--ease);
}

.wc-step:hover .wc-step__icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(79, 142, 255, 0.15);
}

.wc-step__icon svg {
    width: 24px;
    height: 24px;
}

.wc-step__icon--accent {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.02));
    border-color: rgba(0, 212, 255, 0.12);
    color: var(--accent2);
}

.wc-step__icon--success {
    background: linear-gradient(135deg, rgba(0, 230, 138, 0.08), rgba(0, 230, 138, 0.02));
    border-color: rgba(0, 230, 138, 0.12);
    color: var(--success);
}

.wc-step__title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.wc-step__desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
}

.wc-step__connector {
    display: flex;
    align-items: center;
    padding-top: 3.5rem;
    color: var(--border-hover);
    flex-shrink: 0;
    width: 48px;
}

.wc-step__connector svg {
    width: 40px;
    height: 12px;
}

/* ========================================
   MODEL COMPARISON TABLE
   ======================================== */
.wc-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.wc-model-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.wc-model-table thead {
    background: var(--bg-elevated);
}

.wc-model-table th {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.wc-model-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-weight: 400;
    white-space: nowrap;
}

.wc-model-table tbody tr:last-child td {
    border-bottom: none;
}

.wc-model-table tbody tr {
    transition: background 0.2s;
}

.wc-model-table tbody tr:hover {
    background: rgba(79, 142, 255, 0.02);
}

.wc-model-table code {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    background: rgba(79, 142, 255, 0.06);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.wc-model-table__recommended {
    background: rgba(79, 142, 255, 0.03) !important;
}

.wc-model-table__recommended td {
    color: var(--text);
}

.wc-rec-tag {
    font-family: var(--font-mono);
    font-size: 0.5625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: rgba(79, 142, 255, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Mini bar charts */
.wc-bar {
    display: inline-block;
    height: 6px;
    border-radius: 3px;
    background: var(--accent);
    vertical-align: middle;
}

/* ========================================
   GUI PREVIEW & GALLERY
   ======================================== */
.wc-window__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
    transition: transform 0.4s ease;
}

.wc-gallery {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.wc-gallery__item {
    flex: 1;
    max-width: 300px;
}

.wc-gallery__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.wc-window--mini {
    transform: scale(1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: zoom-in;
}

.wc-window--mini:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.wc-window--mini .wc-window__bar {
    padding: 0.5rem;
}

.wc-window--mini .wc-window__dot {
    width: 8px;
    height: 8px;
}


/* ========================================
   PERFORMANCE STATS
   ======================================== */
.wc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.wc-stat-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.wc-stat-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.wc-stat-row {
    margin-bottom: 1rem;
}

.wc-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.wc-stat-label--accent {
    color: var(--accent);
    font-weight: 600;
}

.wc-stat-bar-bg {
    background: rgba(255, 255, 255, 0.05);
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
}

.wc-stat-bar {
    height: 100%;
    background: var(--text-muted);
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 24px;
    padding-right: 0.5rem;
    text-align: right;
    white-space: nowrap;
}

.wc-stat-bar--accent {
    background: var(--accent);
    color: var(--bg);
}

.wc-stat-values {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1rem;
}

.wc-stat-value-group {
    text-align: center;
}

.wc-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}

.wc-stat-sub {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.wc-stat-card__desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* ========================================
   RESPONSIVE
   ======================================== */
.verify-box {
    max-width: 460px;
    margin: calc(64px + 8rem) auto 8rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.verify-box__spinner {
    margin: 1.5rem auto;
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .docs-container {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        display: none;
    }

    .beta-form__group {
        flex-direction: column;
    }

    .wc-hero {
        min-height: 75vh;
    }

    .wc-requirements {
        grid-template-columns: 1fr;
    }

    .wc-formats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wc-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .wc-step {
        max-width: 100%;
    }

    .wc-step__connector {
        padding-top: 0;
        padding: 0.75rem 0;
        transform: rotate(90deg);
    }

    .wc-model-table th:nth-child(n+5),
    .wc-model-table td:nth-child(n+5) {
        display: none;
    }

    .wc-mock__sidebar {
        display: none;
    }

    .wc-subnav__link {
        padding: 0.625rem 0.75rem;
        font-size: 0.625rem;
    }

    .wc-gallery {
        flex-direction: column;
        align-items: center;
    }

    .wc-gallery__item {
        max-width: 100%;
    }

    .wc-stats-grid {
        grid-template-columns: 1fr;
    }

    .wc-stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .wc-hero__content {
        padding: 2rem 1rem;
    }

    .wc-hero .section__title,
    .wc-hero .hero__title {
        font-size: 2rem;
    }

    .wc-step__icon {
        width: 44px;
        height: 44px;
    }

    .wc-quickstart__step {
        gap: 0.75rem;
    }
}/* ========================================
   PRICING
   ======================================== */
.wc-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .wc-pricing {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.wc-pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s var(--ease);
}

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

.wc-pricing-card--popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(79, 142, 255, 0.03) 0%, var(--bg-card) 100%);
    box-shadow: 0 0 40px rgba(79, 142, 255, 0.05);
}

.wc-pricing-header {
    margin-bottom: 2rem;
}

.wc-pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wc-pricing-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.wc-price {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.wc-price-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0;
}

.wc-pricing-features {
    margin-bottom: 2.5rem;
    flex: 1;
}

.wc-pricing-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wc-pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.wc-pricing-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--success);
    margin-top: 3px;
}

.wc-pricing-item--dim {
    color: var(--text-dim);
}
