*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --white: #FFFFFF;
    --beige: #F5F1E8;
    --beige-mid: #EDE8DA;
    --black: #0A0A0A;
    --charcoal: #2B2B2B;
    --muted: #6B6560;
    --muted-light: #9B948C;
    --gold: #D4AF37;
    --gold-light: #C8A97E;
    --gold-pale: #F0E6C8;
    --gold-dim: rgba(212, 175, 55, 0.12);
    --border: rgba(43, 35, 20, 0.10);
    --border-strong: rgba(43, 35, 20, 0.18);
    --w: #FFFFFF;
     --b: #F5F1E8;
     --bm: #EDE8DA;
     --blk: #0A0A0A;
     --ch: #2B2B2B;
     --mt: #6B6560;
     --ml: #9B948C;
     --g: #D4AF37;
     --gl: #C8A97E;
     --gp: #F0E6C8;
     --gg: rgba(212, 175, 55, 0.16);
     --br: rgba(43, 35, 20, 0.09);
     --brs: rgba(43, 35, 20, 0.16);
     --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: 'Geist', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    --font-mono: 'Geist Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 2px;
}

/* ══ HEADER ══ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    border-color: var(--border);
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.logo span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 3px;
    margin-bottom: 2px;
}

nav {
    display: flex;
    gap: 36px;
    align-items: center;
}

nav a {
    font-size: 13px;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.02em;
    opacity: 0.65;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 1;
}

nav a.active {
    opacity: 1;
    font-weight: 500;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-ghost {
    font-size: 13px;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
    opacity: 0.65;
    transition: opacity 0.2s;
}

.btn-ghost:hover {
    opacity: 1;
}

.btn-gold {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    background: var(--gold-pale);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
}

.btn-gold:hover {
    background: #eed89a;
}

/* ══ ANIMATIONS ══ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

.fade-up.d1 {
    transition-delay: 0.08s;
}

.fade-up.d2 {
    transition-delay: 0.16s;
}

.fade-up.d3 {
    transition-delay: 0.24s;
}

.fade-up.d4 {
    transition-delay: 0.32s;
}

.fade-up.d5 {
    transition-delay: 0.40s;
}

.eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    display: block;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 0 48px;
}

/* ══════════════════════════════
   HERO — COMMAND TERMINAL STYLE
══════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 100px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 60% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 5% 90%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Command prompt header */
.cmd-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-family: var(--font-mono);
}

.cmd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cmd-dot.red {
    background: #FF5F57;
}

.cmd-dot.yellow {
    background: #FEBC2E;
}

.cmd-dot.green {
    background: #28C840;
}

.cmd-label {
    margin-left: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.06em;
}

.hero-h1 {
    font-size: clamp(48px, 6.5vw, 88px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--black);
    margin-bottom: 0;
}

.hero-h1 em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    color: rgba(33, 32, 32, 0.45);
    display: block;
    line-height: 1.05;
}

.hero-h1 .gold {
    color: var(--gold);
    font-style: normal;
}

.hero-sub {
    margin-top: 36px;
    font-size: 17px;
    font-weight: 300;
    color: rgba(20, 18, 18, 0.45);
    line-height: 1.75;
    max-width: 480px;
    letter-spacing: 0.01em;
}

.hero-pillars {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 48px;
}

.hero-pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.3s;
}

.hero-pillar:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.pillar-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.pillar-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(3, 3, 3, 0.8);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.pillar-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.35);
    line-height: 1.6;
}

/* Right side — terminal preview */
.hero-right {
    position: relative;
}

.terminal {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: #161616;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.t-dot.r {
    background: #FF5F57;
}

.t-dot.y {
    background: #FEBC2E;
}

.t-dot.g {
    background: #28C840;
}

.terminal-title {
    margin-left: 8px;
    font-size: 12px;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}

.terminal-body {
    padding: 28px 28px 32px;
    font-family: var(--font-mono);
}

.t-line {
    font-size: 13px;
    line-height: 1.9;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.t-prompt {
    color: var(--gold);
    flex-shrink: 0;
}

.t-cmd {
    color: rgba(255, 255, 255, 0.75);
}

.t-comment {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

.t-output {
    font-size: 12.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    padding-left: 20px;
    margin-bottom: 4px;
}

.t-output.success {
    color: #6fdc8c;
}

.t-output.gold {
    color: var(--gold);
}

.t-output.dim {
    color: rgba(255, 255, 255, 0.2);
}

.t-spacer {
    height: 12px;
}

.t-cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: var(--gold);
    border-radius: 1px;
    animation: blink 1.1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* Feature count strip */
.hero-count-strip {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    display: flex;
}

.count-cell {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.count-cell.lit {
    background: var(--gold);
}

/* ══════════════════════════════
   COMMAND BAR SECTION
══════════════════════════════ */
.command-section {
    background: var(--beige);
    padding: 100px 48px;
}

.command-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.command-text {}

.command-text h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
}

.command-text h2 em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--charcoal);
}

.command-text p {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    max-width: 440px;
}

.cmd-mockup {
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(10, 10, 10, 0.3);
}

.cmd-mockup-bar {
    background: #111;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cmd-mockup-input {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.6);
}

.cmd-k {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
}

.cmd-results {
    padding: 8px;
}

.cmd-result-item {
    padding: 10px 12px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: default;
    transition: background 0.15s;
}

.cmd-result-item:hover,
.cmd-result-item.active {
    background: rgba(212, 175, 55, 0.08);
}

.cmd-result-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.cmd-result-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.cmd-result-label span {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 8px;
}

.cmd-result-shortcut {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
}

.cmd-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 6px 4px;
}

/* ══════════════════════════════
   FEATURE GRID — 15 FEATURES
══════════════════════════════ */
.features-section {
    padding: 120px 48px;
    max-width: 1280px;
    margin: 0 auto;
}

.features-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.features-header h2 {
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--black);
}

.features-header h2 em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--charcoal);
}

.features-header p {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
}

/* Nav tabs */
.feature-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.f-tab {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    background: none;
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-display);
    white-space: nowrap;
}

.f-tab:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--charcoal);
}

.f-tab.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* The actual grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    background: var(--white);
    overflow: hidden;
    cursor: default;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: none;
}

.feature-card.visible-card {
    display: block;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(20, 15, 5, 0.08);
}

/* Card header bar */
.fcard-header {
    padding: 24px 24px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.fcard-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.fcard-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--beige);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s;
}

.feature-card:hover .fcard-icon {
    background: var(--gold-pale);
    border-color: rgba(212, 175, 55, 0.3);
}

.fcard-meta {}

.fcard-num {
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 2px;
}

.fcard-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--black);
    line-height: 1.2;
}

.fcard-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-light);
    background: var(--beige);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Card body */
.fcard-body {
    padding: 20px 24px 24px;
}

.fcard-desc {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.fcard-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fcard-bullets li {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--charcoal);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.fcard-bullets li::before {
    content: '·';
    color: var(--gold);
    font-size: 18px;
    line-height: 0.9;
    flex-shrink: 0;
    font-weight: 700;
}

/* Featured card — takes 2 columns */
.feature-card.featured {
    grid-column: span 2;
}

.feature-card.featured .fcard-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.feature-card.featured .fcard-visual {
    background: var(--black);
    border-radius: 10px;
    padding: 20px;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fvis-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.fvis-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.4));
}

.fvis-bar.w90::after {
    width: 90%;
}

.fvis-bar.w70::after {
    width: 70%;
}

.fvis-bar.w55::after {
    width: 55%;
}

.fvis-bar.w80::after {
    width: 80%;
}

.fvis-label {
    font-size: 10px;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.fvis-row {
    margin-bottom: 12px;
}

/* AI Card spotlight */
.feature-card.ai-card .fcard-header {
    background: linear-gradient(135deg, #0a0a0a, #120f05);
    border-bottom-color: rgba(212, 175, 55, 0.15);
}

.feature-card.ai-card .fcard-num {
    color: var(--gold);
}

.feature-card.ai-card .fcard-name {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card.ai-card .fcard-icon {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
}

.feature-card.ai-card .fcard-tag {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
    color: var(--gold);
}

.feature-card.ai-card .fcard-body {
    background: #0d0d0d;
}

.feature-card.ai-card .fcard-desc {
    color: rgba(255, 255, 255, 0.4);
}

.feature-card.ai-card .fcard-bullets li {
    color: rgba(255, 255, 255, 0.6);
}

.feature-card.ai-card {
    border-color: rgba(212, 175, 55, 0.2);
}

/* AI chat bubbles */
.ai-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.ai-bubble {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.55;
    max-width: 90%;
}

.ai-bubble.user {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.65);
    margin-left: auto;
    border-radius: 10px 10px 2px 10px;
}

.ai-bubble.assistant {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px 10px 10px 2px;
}

.ai-bubble.assistant strong {
    color: var(--gold);
    font-weight: 500;
}

/* ══════════════════════════════
   SIGNALS SECTION
══════════════════════════════ */
.signals-section {
    background: var(--black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.signals-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.signals-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.signals-inner .eyebrow {
    color: rgba(212, 175, 55, 0.65);
}

.signals-inner h2 {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1.1;
    max-width: 520px;
    margin-bottom: 16px;
}

.signals-inner h2 em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.signals-inner .sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 64px;
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.signal-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 28px 28px 32px;
    transition: background 0.3s, border-color 0.3s;
}

.signal-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
}

.signal-val {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.signal-val span {
    color: var(--gold);
}

.signal-label {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin-bottom: 20px;
}

.signal-trend {
    height: 36px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.sig-bar {
    flex: 1;
    border-radius: 2px;
    background: rgba(212, 175, 55, 0.15);
    transition: height 0.3s;
}

.sig-bar.hi {
    background: var(--gold);
}

.sig-bar.mid {
    background: rgba(212, 175, 55, 0.5);
}

/* ══════════════════════════════
   CONTEXTUAL AI SECTION
══════════════════════════════ */
.contextual-section {
    padding: 140px 48px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contextual-text h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
}

.contextual-text h2 em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
}

.contextual-text p {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 0;
}

.contextual-features {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contextual-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6;
}

.contextual-features li .cf-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--gold-pale);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 1px;
}

/* In-flow AI mockup */
.contextual-mockup {
    background: var(--beige);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(10, 10, 10, 0.09);
}

.ctm-header {
    background: var(--white);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.ctm-breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ctm-breadcrumb span {
    color: var(--black);
    font-weight: 500;
}

.ctm-sep {
    opacity: 0.3;
}

.ctm-body {
    padding: 24px;
}

.ctm-record {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 16px 18px;
    margin-bottom: 12px;
}

.ctm-record-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-bottom: 6px;
}

.ctm-record-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.ctm-record-sub {
    font-size: 12px;
    color: var(--muted-light);
}

.ctm-ai-bar {
    background: linear-gradient(135deg, #0f0f0f, #1a1505);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ctm-ai-dot {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.ctm-ai-text {
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

.ctm-ai-text strong {
    color: var(--gold);
    font-weight: 500;
}

/* ══════════════════════════════
   READABLE BY DESIGN
══════════════════════════════ */
.readability-section {
    background: var(--beige);
    padding: 120px 48px;
}

.readability-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.readability-inner h2 {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 14px;
}

.readability-inner h2 em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
}

.readability-inner p {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 56px;
}

.surfaces-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Light surface */
.surface-light {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.surface-dark {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 32px;
}

.surf-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.surf-label.light {
    color: var(--muted-light);
}

.surf-label.dark {
    color: rgba(255, 255, 255, 0.3);
}

.surf-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid;
}

.surface-light .surf-row {
    border-color: var(--border);
}

.surface-dark .surf-row {
    border-color: rgba(255, 255, 255, 0.05);
}

.surf-row:last-child {
    border-bottom: none;
}

.surf-name {
    font-size: 13px;
    font-weight: 400;
}

.surface-light .surf-name {
    color: var(--charcoal);
}

.surface-dark .surf-name {
    color: rgba(255, 255, 255, 0.65);
}

.surf-val {
    font-family: var(--font-mono);
    font-size: 12px;
}

.surface-light .surf-val {
    color: var(--muted);
}

.surface-dark .surf-val {
    color: rgba(255, 255, 255, 0.35);
}

.surf-badge {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
}

.badge-green-l {
    background: #e7f5ec;
    color: #2e7d4f;
}

.badge-green-d {
    background: rgba(110, 220, 140, 0.12);
    color: #6fdc8c;
}

.badge-gold-l {
    background: var(--gold-pale);
    color: #8a6500;
}

.badge-gold-d {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.badge-red-l {
    background: #fdecea;
    color: #c62828;
}

.badge-red-d {
    background: rgba(255, 100, 80, 0.1);
    color: #ff8a80;
}

/* ══════════════════════════════
   PLAN COMPARISON
══════════════════════════════ */
.pricing-section {
    padding: 140px 48px;
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-header h2 {
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 14px;
}

.pricing-header h2 em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--charcoal);
}

.pricing-header p {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto;
}

/* Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}

.billing-toggle span {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}

.toggle-track {
    width: 44px;
    height: 24px;
    background: var(--black);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: left 0.2s;
}

.toggle-track.active .toggle-thumb {
    left: 23px;
}

.billing-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3px 9px;
    border-radius: 20px;
}

/* Plan cards row */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.plan-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 52px rgba(20, 15, 5, 0.09);
}

.plan-card.popular {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(160deg, var(--white), #fdf9ee);
}

.plan-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
}

.plan-tier {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-bottom: 12px;
}

.plan-price-big {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-price-big sup {
    font-size: 22px;
    vertical-align: super;
    font-weight: 500;
}

.plan-price-big.custom-price {
    font-size: 36px;
}

.plan-sub {
    font-size: 13px;
    color: var(--muted-light);
    margin-bottom: 28px;
}

.plan-cta {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.2s;
}

.plan-cta.primary {
    background: var(--black);
    color: var(--white);
}

.plan-cta.primary:hover {
    background: var(--charcoal);
}

.plan-cta.outline {
    border: 1px solid var(--border-strong);
    color: var(--charcoal);
}

.plan-cta.outline:hover {
    background: var(--beige);
}

/* Comparison table */
.compare-table {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.compare-table th {
    background: var(--beige);
    padding: 18px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-light);
    border-bottom: 1px solid var(--border);
}

.compare-table th:not(:first-child) {
    text-align: center;
}

.compare-table th.col-pro {
    background: #fdf9ee;
    color: var(--charcoal);
}

.compare-table td {
    padding: 16px 24px;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--charcoal);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td {
    background: rgba(245, 241, 232, 0.5);
}

.compare-table td:not(:first-child) {
    text-align: center;
}

.compare-table td.col-pro {
    background: rgba(253, 249, 238, 0.5);
}

.check {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
}

.dash {
    color: rgba(43, 43, 43, 0.2);
    font-size: 14px;
}

.optional {
    font-size: 11px;
    color: var(--muted-light);
    font-style: italic;
}

.table-section-header td {
    background: var(--beige) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--muted-light) !important;
    padding: 10px 24px !important;
    border-bottom: 1px solid var(--border) !important;
}

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.features-cta {
    background: var(--black);
    padding: 140px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.features-cta h2 {
    font-size: clamp(32px, 5vw, 68px);
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 18px;
    position: relative;
}

.features-cta h2 em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
}

.features-cta p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 44px;
    position: relative;
}

.cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
}

.cta-a {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    background: var(--gold-pale);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 13px 28px;
    border-radius: 7px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s;
}

.cta-a:hover {
    background: #eed89a;
}

.cta-b {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    padding: 13px 0;
}

.cta-b:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
    background: var(--black);
    padding: 80px 48px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 3px;
}

.footer-tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    max-width: 240px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col ul li a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-wordmark {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    user-select: none;
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    text-align: right;
    line-height: 1.9;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    nav {
        display: none;
    }

    .hero-inner,
    .command-inner,
    .contextual-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card.featured {
        grid-column: span 1;
    }

    .feature-card.featured .fcard-body {
        grid-template-columns: 1fr;
    }

    .signals-grid {
        grid-template-columns: 1fr 1fr;
    }

    .surfaces-row {
        grid-template-columns: 1fr;
    }

    .features-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto 48px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .compare-table {
        font-size: 12px;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 14px;
    }
}

@media (max-width: 640px) {
    header {
        padding: 0 24px;
    }

    .hero,
    .command-section,
    .features-section,
    .readability-section,
    .pricing-section,
    .features-cta,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .divider {
        margin: 0 24px;
    }

    .signals-inner,
    .contextual-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .signals-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .feature-tabs {
        gap: 4px;
    }

    .f-tab {
        font-size: 11px;
        padding: 6px 10px;
    }
}



 /* FOOTER */
 footer {
     background: var(--blk);
     padding: 80px 56px 56px
 }

 .ftop {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
     gap: 48px;
     padding-bottom: 72px;
     border-bottom: 1px solid rgba(255, 255, 255, .07)
 }

 .flw {
     font-size: 17px;
     font-weight: 600;
     letter-spacing: .2em;
     text-transform: uppercase;
     color: var(--w);
     display: flex;
     align-items: center;
     gap: 5px;
     margin-bottom: 16px
 }

 .fld {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--g)
 }

 .fab {
     font-size: 13px;
     font-weight: 300;
     color: rgba(255, 255, 255, .38);
     line-height: 1.75;
     max-width: 280px
 }

 .fct {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, .3);
     margin-bottom: 20px
 }

 .flinks {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px
 }

 .flinks a {
     font-size: 13px;
     font-weight: 300;
     color: rgba(255, 255, 255, .5);
     text-decoration: none;
     transition: color .2s
 }

 .flinks a:hover {
     color: rgba(255, 255, 255, .85)
 }

 .fbot {
     padding-top: 56px;
     display: flex;
     align-items: flex-end;
     justify-content: space-between
 }

 .fwm {
     font-size: clamp(56px, 10vw, 140px);
     font-weight: 700;
     letter-spacing: -.04em;
     color: rgba(255, 255, 255, .04);
     line-height: 1;
     user-select: none
 }

 .fleg {
     font-size: 12px;
     color: rgba(255, 255, 255, .22);
     text-align: right;
     line-height: 1.9
 }

 /* UTILS */
 .div {
     height: 1px;
     background: var(--br);
     margin: 0 56px
 }

 .fu {
     opacity: 0;
     transform: translateY(26px);
     transition: opacity .8s var(--ease), transform .8s var(--ease)
 }

 .fu.v {
     opacity: 1;
     transform: translateY(0)
 }

 .fu.d1 {
     transition-delay: .1s
 }

 .fu.d2 {
     transition-delay: .2s
 }

 .fu.d3 {
     transition-delay: .3s
 }

 .fu.d4 {
     transition-delay: .4s
 }

 @keyframes spin {
     to {
         transform: rotate(360deg)
     }
 }

  /* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
 @media(max-width:1100px) {

    

     .ftop {
         grid-template-columns: 1fr 1fr
     }
  }
    

 @media(max-width:680px) {

    
     footer {
         padding-left: 24px !important;
         padding-right: 24px !important
     }

     .div {
         margin: 0 24px
     }

   

     .ftop {
         grid-template-columns: 1fr
     }

     .fwm {
         font-size: 48px
     }

     
     .fcta-btns {
         flex-direction: column;
         align-items: center
     }

 }


