/* Netefor — landing page */
:root {
  --bg: #0e0f11;
  --surface: #16181d;
  --surface-2: #1e2028;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f1f5f9;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.12);
  --success: #22c55e;
  --danger: #ef4444;
  --info: #3b82f6;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 10px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 15, 17, 0.8);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  position: relative;
  display: inline-grid;
  place-items: center;
}
.brand-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
.brand-dot-tail {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted-2);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.08s ease, background 0.15s, border-color 0.15s, color 0.15s;
  font-family: var(--sans);
  background: transparent;
  color: var(--text);
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #0e0f11;
  font-weight: 600;
}
.btn-primary:hover { background: #fbbf43; }
.btn-ghost {
  color: var(--muted-2);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-lg { padding: 14px 22px; font-size: 15px; }

.kbd {
  font-family: var(--mono);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  color: var(--muted-2);
  background: rgba(255,255,255,0.03);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

h1.hero-title {
  font-family: var(--sans);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 20px 0 20px;
  text-wrap: balance;
}
h1.hero-title .accent { color: var(--accent); }
h1.hero-title .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
}

.hero-sub {
  font-size: 18px;
  color: var(--muted-2);
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.hero-trust span::before {
  content: "✓";
  color: var(--success);
  margin-right: 6px;
}

/* Hero right: timer card */
.timer-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, #131519 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(245, 158, 11, 0.04);
}
.timer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.timer-project {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.timer-project strong {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.01em;
  text-transform: none;
  margin-top: 4px;
  font-weight: 500;
}
.timer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--success);
  padding: 5px 10px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.08);
  border-radius: 999px;
}
.timer-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  animation: pulse 1.6s ease-in-out infinite;
}

.timer-display {
  font-family: var(--mono);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 12px 0 4px;
}
.timer-display .ms {
  font-size: 0.42em;
  color: var(--muted);
  letter-spacing: -0.02em;
}
.timer-display .sep {
  color: var(--muted);
  font-weight: 400;
  animation: blink 1s steps(2) infinite;
}

.timer-value {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.timer-value strong {
  color: var(--accent);
  font-weight: 500;
}

.timer-bar {
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}
.timer-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #fbbf43);
  width: 37%;
  animation: barGrow 12s linear infinite;
}

.timer-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.timer-btn {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}
.timer-btn:hover { background: #252731; }
.timer-btn.pause {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
.timer-btn svg { width: 12px; height: 12px; }

.timer-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px dashed var(--border);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.timer-footer strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

/* Hero variant: terminal (v2) */
.hero-inner.v-terminal .timer-card {
  padding: 0;
  background: #0b0c0e;
  font-family: var(--mono);
  border-color: rgba(255,255,255,0.1);
}
.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #131519;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.terminal-head .d {
  width: 10px; height: 10px; border-radius: 50%;
  background: #3b3f48;
}
.terminal-head .label {
  margin-left: 12px;
  font-size: 11px;
  color: var(--muted);
}
.terminal-body {
  padding: 20px 22px;
  font-size: 13px;
  line-height: 1.7;
  color: #cbd5e1;
  min-height: 340px;
}
.terminal-body .prompt { color: var(--accent); }
.terminal-body .arg { color: var(--info); }
.terminal-body .comment { color: var(--muted); }
.terminal-body .ok { color: var(--success); }
.terminal-body .val { color: var(--text); }
.terminal-body .big-timer {
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
  padding: 14px 0 8px;
  font-variant-numeric: tabular-nums;
}
.cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--accent);
  vertical-align: middle;
  animation: blink 1s steps(2) infinite;
  margin-left: 2px;
}

/* Hero variant: big typography (v3) */
.hero-inner.v-big {
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}
.hero-inner.v-big .timer-card {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-inner.v-big .timer-display { font-size: 48px; margin: 0; }
.hero-inner.v-big .hero-sub { max-width: 640px; font-size: 19px; }
.hero-inner.v-big h1.hero-title { font-size: clamp(52px, 7vw, 96px); }

.hero-inner.v-big .big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-inner.v-big .big-stat .k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-inner.v-big .big-stat .v {
  font-family: var(--mono);
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

/* ========== SECTION BASICS ========== */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-sub {
  color: var(--muted-2);
  font-size: 17px;
  margin: 0;
  text-wrap: pretty;
}

/* ========== FEATURES ========== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 32px 28px;
  transition: background 0.2s;
}
.feature:hover { background: #181b21; }
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-icon svg { width: 18px; height: 18px; }
.feature h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.feature p {
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ========== DASHBOARD MOCKUP ========== */
.dash-wrap {
  margin-top: 64px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(245,158,11,0.08), transparent 50%);
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
}
.dash-wrap::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.6), transparent);
}
.dash {
  background: #0b0c0e;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 540px;
}
.dash-sidebar {
  border-right: 1px solid var(--border);
  padding: 18px 14px;
  background: #0e0f11;
}
.dash-side-title {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  margin-top: 14px;
}
.dash-side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted-2);
  margin: 2px 0;
}
.dash-side-item .sq {
  width: 14px; height: 14px;
  border: 1px solid var(--border-strong);
  border-radius: 3px;
}
.dash-side-item.active {
  color: var(--text);
  background: var(--surface-2);
}
.dash-side-item.active .sq {
  background: var(--accent);
  border-color: var(--accent);
}
.dash-side-item .count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

.dash-main {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-top h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.dash-top .crumbs {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.dash-top .crumbs span { color: var(--muted-2); }

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.kpi .k {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kpi .v {
  font-family: var(--mono);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.kpi .delta {
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 4px;
}
.kpi .delta.up { color: var(--success); }
.kpi .delta.down { color: var(--danger); }

.chart-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  flex: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.chart-head h5 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}
.chart-head .legend {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}
.chart-head .legend span::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: 0px;
}
.chart-head .legend .h::before { background: var(--accent); }
.chart-head .legend .v::before { background: var(--info); }

.chart {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 6px;
  align-items: end;
  height: 150px;
}
.chart .col {
  display: flex;
  flex-direction: column-reverse;
  gap: 3px;
  height: 100%;
}
.chart .bar {
  width: 100%;
  border-radius: 2px 2px 0 0;
}
.chart .bar.hours { background: var(--accent); }
.chart .bar.value { background: var(--info); opacity: 0.6; }
.chart-axis {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 6px;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  text-align: center;
}

.live-sessions {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.live-sessions-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.live-sessions-head h5 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}
.live-sessions-head .badge {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--success);
  padding: 3px 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-sessions-head .badge .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--success);
  animation: pulse 1.6s ease-in-out infinite;
}

.session-row {
  display: grid;
  grid-template-columns: 28px 1fr 120px 80px;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px dashed var(--border);
  font-size: 13px;
}
.session-row:first-of-type { border-top: none; }
.avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--mono);
  font-size: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
}
.session-row .proj { color: var(--muted-2); font-size: 12px; }
.session-row .proj strong { color: var(--text); font-weight: 500; display: block; font-size: 13px; }
.session-row .time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.session-row .live {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
}
.session-row .live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  animation: pulse 1.6s ease-in-out infinite;
}

/* ========== HOW IT WORKS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.step h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 40px 0 8px;
}
.step p {
  color: var(--muted-2);
  font-size: 14px;
  margin: 0 0 18px;
  min-height: 42px;
}
.step-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  min-height: 64px;
  display: flex;
  align-items: center;
}

/* ========== SCENARIOS ========== */
.scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.scenario {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.scenario .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.scenario h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.scenario .quote {
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
  text-wrap: pretty;
}
.scenario .metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.scenario .metric .k {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.scenario .metric .v {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--text);
  margin-top: 2px;
  letter-spacing: -0.02em;
}
.scenario .metric .v.accent { color: var(--accent); }
.scenario .metric .v.success { color: var(--success); }

/* ========== PRICING ========== */
.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 0 auto 40px;
  font-family: var(--mono);
  font-size: 13px;
}
.pricing-toggle-wrap {
  text-align: center;
  margin-top: -24px;
  margin-bottom: 48px;
}
.pricing-toggle button {
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-2);
  border: none;
  font-family: var(--mono);
  font-size: 13px;
  transition: all 0.15s;
}
.pricing-toggle button.active {
  background: var(--accent);
  color: #0e0f11;
  font-weight: 600;
}
.pricing-toggle .save {
  margin-left: 6px;
  font-size: 10px;
  color: var(--success);
  padding: 2px 6px;
  background: rgba(34,197,94,0.1);
  border-radius: 4px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,158,11,0.06), var(--surface) 30%);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px -20px rgba(245,158,11,0.25);
}
.plan-tag {
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  color: #0e0f11;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.plan-name {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--mono);
}
.plan-price .amount {
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.plan-price .period { color: var(--muted); font-size: 14px; }
.plan-annual-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: -10px;
}
.plan-annual-note strong { color: var(--success); }
.plan-limit {
  font-size: 14px;
  color: var(--muted-2);
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.plan-limit strong { color: var(--text); font-weight: 500; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--muted-2);
  flex: 1;
}
.plan ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plan ul li::before {
  content: "+";
  color: var(--accent);
  font-family: var(--mono);
  flex-shrink: 0;
  line-height: 1.4;
}
.plan .btn { width: 100%; justify-content: center; }

/* ========== FAQ ========== */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--accent);
  font-size: 20px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 4px 22px;
  max-width: 640px;
}

/* ========== CTA ========== */
.cta-section {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(245,158,11,0.12), transparent 70%),
    var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 40% 50% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 40% 50% at 50% 50%, black 30%, transparent 80%);
  opacity: 0.4;
}
.cta-section .container { position: relative; }
.cta-section h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 720px;
  text-wrap: balance;
}
.cta-section p {
  color: var(--muted-2);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta-section .hero-ctas { justify-content: center; }

/* ========== FOOTER ========== */
.footer {
  padding: 48px 0 32px;
  color: var(--muted);
  font-size: 13px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-col h6 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  margin: 0 0 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a:hover { color: var(--text); }
.footer-bot {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
}

/* ========== ANIMATIONS ========== */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
@keyframes barGrow {
  0% { width: 0%; }
  100% { width: 100%; }
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ========== TWEAKS PANEL ========== */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 16px 18px;
  min-width: 260px;
  font-family: var(--mono);
  font-size: 12px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.6);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h6 {
  margin: 0 0 12px;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tweaks-row {
  margin-bottom: 14px;
}
.tweaks-row:last-child { margin-bottom: 0; }
.tweaks-row label {
  display: block;
  color: var(--muted-2);
  margin-bottom: 6px;
  font-size: 11px;
}
.tweaks-row .opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.tweaks-row .opts button {
  padding: 7px 8px;
  background: var(--surface-2);
  color: var(--muted-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
}
.tweaks-row .opts button.active {
  background: var(--accent);
  color: #0e0f11;
  border-color: var(--accent);
}
.tweaks-row .colors {
  display: flex;
  gap: 6px;
}
.tweaks-row .colors button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  padding: 0;
  cursor: pointer;
}
.tweaks-row .colors button.active {
  border-color: var(--text);
}

/* ========== CONTACT STRIP (index.html) ========== */
.contact-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(245,158,11,0.03), transparent);
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-strip-text { flex: 1 1 320px; min-width: 280px; }
.contact-strip-text h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.contact-strip-text p {
  color: var(--muted-2);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
.contact-strip-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ========== CONTACT FORM ========== */
.contact-wrap {
  max-width: 720px;
}
.contact-form {
  display: grid;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 8px;
}
.contact-form .form-row {
  display: grid;
  gap: 8px;
}
.contact-form label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #1a1c23;
}
.contact-form textarea {
  min-height: 120px;
  line-height: 1.5;
}
.contact-form .cf-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form .form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact-form button[type="submit"][disabled] {
  opacity: 0.7;
  cursor: wait;
}
.contact-form[data-state="success"] button[type="submit"] {
  background: var(--success);
  color: #0e0f11;
}
.cf-status {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  min-height: 1.2em;
}
.cf-status[data-state="error"] { color: var(--danger); }
.cf-status[data-state="success"] { color: var(--success); }
.cf-status[data-state="sending"] { color: var(--muted-2); }

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  background: rgba(255,255,255,0.01);
}
.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.contact-meta-item a {
  color: var(--text);
  font-weight: 500;
}
.contact-meta-item a:hover { color: var(--accent); }
.contact-meta-item.muted {
  color: var(--muted-2);
  font-size: 13px;
}
.contact-meta-item.muted strong {
  color: var(--text);
  font-weight: 500;
}
.cm-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent-soft);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--accent);
  display: grid;
  place-items: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-inner.v-big .big-stats { grid-template-columns: 1fr; gap: 14px; }
  .section { padding: 64px 0; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .scenarios { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .dash { grid-template-columns: 1fr; min-height: auto; }
  .dash-sidebar { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .timer-display { font-size: 52px; }
  .tweaks-panel { right: 12px; bottom: 12px; left: 12px; }
  .contact-form { padding: 20px; }
  .contact-meta { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 18px; }
}
