/* ════════════════════════════════════════════════════════════
   PRAXISBUDDY — Design System v2
   Dark, cinematic, editorial. Apple-level precision.
   ════════════════════════════════════════════════════════════ */

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --bg-0:       #080808;
  --bg-1:       #0e0e0e;
  --bg-2:       #141414;
  --bg-3:       #1c1c1c;
  --bg-light:   #f5f5f0;
  --bg-light-2: #eeeeea;

  --text-1:     #ffffff;
  --text-2:     #999999;
  --text-3:     #555555;
  --text-dark:  #111111;
  --text-dark-2:#555555;

  --accent:     #FFDC5E;
  --accent-2:   #FFB020;
  --accent-dim: rgba(255, 220, 94, 0.08);
  --accent-glow:0 0 60px rgba(255, 220, 94, 0.15);

  --border:     rgba(255,255,255,0.06);
  --border-2:   rgba(255,255,255,0.10);
  --border-dark:rgba(0,0,0,0.10);

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;

  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease2: cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.6);
  --shadow-card: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, .syne      { font-family: 'Syne', sans-serif; font-weight: 800; }
h2, h3, .serif { font-family: 'DM Serif Display', Georgia, serif; }
em             { font-style: italic; }

h1 { font-size: clamp(3rem, 7vw, 6.5rem); line-height: 0.95; letter-spacing: -0.03em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.05; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 400; letter-spacing: -0.01em; }

p  { color: var(--text-2); line-height: 1.75; font-size: clamp(0.95rem, 1.3vw, 1.075rem); }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--border);
  padding: 1rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-1);
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.65; }
.nav__cta {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.55em 1.3em;
  background: var(--accent);
  color: #111;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.nav__cta:hover { background: var(--accent-2); transform: scale(1.02); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.8em 1.8em;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-align: center;
  letter-spacing: 0.01em;
}
.btn--accent {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 176, 32, 0.3);
}
.btn--ghost {
  background: transparent;
  border-color: var(--border-2);
  color: var(--text-2);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--text-1);
}
.btn--full { width: 100%; display: block; }
.btn--lg   { font-size: 1rem; padding: 0.95em 2em; }

/* ── Inputs ────────────────────────────────────────────────── */
.input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  color: var(--text-1);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,220,94,0.12);
}
.input::placeholder { color: var(--text-3); }

.input--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.input--dark:focus {
  border-color: var(--accent);
}

.input--textarea { resize: vertical; min-height: 88px; line-height: 1.6; }

select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select.input--dark option { background: #1c1c1c; color: #fff; }

/* ── Form utils ────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-2);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-note  { font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 0.75rem; }
.form-note a { text-decoration: underline; color: rgba(255,255,255,0.4); }

.form-feedback {
  display: none;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border-radius: var(--r-sm);
}
.form-feedback.success { display: block; background: rgba(0,220,130,0.12); color: #00dc82; border: 1px solid rgba(0,220,130,0.2); }
.form-feedback.error   { display: block; background: rgba(255,80,80,0.12);  color: #ff6b6b; border: 1px solid rgba(255,80,80,0.2); }

/* ── Section labels ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.section-label--dark { color: #999; }

.section-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 1rem;
}
.section-headline--dark { color: var(--text-dark); }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
}
.hero__glow--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,220,94,0.1) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: glow-drift-1 12s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,140,0,0.06) 0%, transparent 70%);
  bottom: 0; right: -100px;
  animation: glow-drift-2 15s ease-in-out infinite alternate;
}
@keyframes glow-drift-1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(60px, 40px); }
}
@keyframes glow-drift-2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-40px, -30px); }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 9999px;
  padding: 0.4em 1em;
  margin-bottom: 2rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: #00dc82;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,220,130,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px rgba(0,220,130,0.8); }
  50%       { box-shadow: 0 0 16px rgba(0,220,130,1), 0 0 32px rgba(0,220,130,0.4); }
}
.hero__headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.hero__headline em {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__form-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.hero__form-row .input { flex: 1 1 160px; }
.hero__note {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ── App Card (hero) ───────────────────────────────────────── */
.hero__visual { display: flex; justify-content: center; align-items: center; perspective: 1200px; }

.app-card {
  background: rgba(20,20,20,0.95);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  box-shadow: var(--shadow-card);
  animation: card-float 7s ease-in-out infinite;
  backdrop-filter: blur(20px);
}
@keyframes card-float {
  0%, 100% { transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(0px); }
  50%       { transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(-12px); }
}
.app-card__header {
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.app-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-card__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-1);
}
.app-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  padding-left: 2.2rem;
}
.app-days span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-align: center;
}
.app-card__body { padding: 0.75rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.app-row {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  gap: 0;
}
.app-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c, #333);
  color: var(--tc, #fff);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-shifts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.2rem;
}
.app-shift {
  font-size: 0.6rem;
  font-weight: 600;
  text-align: center;
  padding: 0.25em 0;
  border-radius: 4px;
  letter-spacing: 0.01em;
}
.app-shift--morning { background: rgba(255,220,94,0.14); color: #FFDC5E; }
.app-shift--late    { background: rgba(147,112,255,0.14); color: #9b7fff; }
.app-shift--full    { background: rgba(0,220,130,0.12);   color: #00dc82; }
.app-shift--off     { background: transparent; color: var(--text-3); }

.app-card__footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #00dc82;
}
.app-status-dot {
  width: 5px; height: 5px;
  background: #00dc82;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,220,130,0.8);
}
.app-approve {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4em 1em;
  background: var(--accent);
  color: #111;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.app-approve:hover { background: var(--accent-2); }

/* ── Tags ──────────────────────────────────────────────────── */
.app-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2em 0.65em;
  border-radius: 4px;
}
.app-tag--ai   { background: rgba(147,112,255,0.18); color: #a78bfa; }
.app-tag--ok   { background: rgba(0,220,130,0.12); color: #00dc82; }
.app-tag--live { background: rgba(255,220,94,0.14); color: var(--accent); }

/* ── Hero scroll hint ──────────────────────────────────────── */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ════════════════════════════════════════════════════════════
   TICKER
   ════════════════════════════════════════════════════════════ */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.9rem 0;
  background: var(--bg-1);
}
.ticker__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  padding: 0 1.5rem;
}
.ticker__sep {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ════════════════════════════════════════════════════════════
   PROBLEMS
   ════════════════════════════════════════════════════════════ */
.section {
  padding: 7rem 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pain-card {
  padding: 2.5rem 2rem;
  background: var(--bg-1);
  position: relative;
  transition: background 0.3s;
}
.pain-card:hover { background: var(--bg-2); }
.pain-card__num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--bg-3);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}
.pain-card:hover .pain-card__num { color: var(--accent); }
.pain-card h3 {
  font-size: 1.15rem;
  color: var(--text-1);
  margin-bottom: 0.75rem;
}
.pain-card p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  color: var(--text-2);
}
.pain-card blockquote {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-3);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   FEATURE SECTIONS
   ════════════════════════════════════════════════════════════ */
.feature-section {
  padding: 7rem 0;
  background: var(--bg-0);
}
.feature-section--light {
  background: var(--bg-light);
}
.feature-section--gradient {
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,176,32,0.07) 0%, transparent 70%), var(--bg-0);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.feature--right .feature__content { order: 2; }
.feature--right .feature__visual  { order: 1; }

.feature__content { display: flex; flex-direction: column; }
.feature__headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 1.25rem;
}
.feature__headline--dark  { color: var(--text-dark); }
.feature__headline em     { color: var(--accent); font-style: italic; }
.feature__headline--dark em { color: var(--text-dark); }

.feature__body {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: 0.9rem;
  line-height: 1.8;
}
.feature__body--dark { color: #666; }

.feature__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.feature__list li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 1.2rem;
  position: relative;
}
.feature__list--dark li { color: #666; }
.feature__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* ── Feature cards ─────────────────────────────────────────── */
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature-card--light {
  background: #fff;
  border-color: var(--border-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.feature-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.feature-card__header--light {
  background: var(--bg-light-2);
  border-bottom-color: var(--border-dark);
}
.feature-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
}
.feature-card__label--dark { color: #555; }

.feature-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
}
.feature-card__footer--light {
  background: var(--bg-light-2);
  border-top-color: var(--border-dark);
}
.feature-card__meta      { font-size: 0.72rem; color: var(--text-3); }
.feature-card__meta--dark{ font-size: 0.72rem; color: #999; }

.btn-card {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4em 1em;
  background: var(--accent);
  color: #111;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-card:hover { background: var(--accent-2); transform: scale(1.02); }
.btn-card--dark {
  background: #111;
  color: #fff;
}
.btn-card--dark:hover { background: #222; }

/* ── Week grid ─────────────────────────────────────────────── */
.week-grid { padding: 0.75rem 1.25rem; }
.week-grid__head {
  display: grid;
  grid-template-columns: 2rem repeat(5, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.week-grid__head span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-align: center;
}
.week-grid__row {
  display: grid;
  grid-template-columns: 2rem repeat(5, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}
.week-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c, #333);
  color: var(--tc, #fff);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.week-block {
  font-size: 0.62rem;
  font-weight: 600;
  text-align: center;
  padding: 0.3em 0.1em;
  border-radius: 4px;
  letter-spacing: 0.01em;
}
.week-block--morning { background: rgba(255,220,94,0.14); color: #FFDC5E; }
.week-block--late    { background: rgba(147,112,255,0.14); color: #9b7fff; }
.week-block--full    { background: rgba(0,220,130,0.12);   color: #00dc82; }
.week-block--off     { background: transparent; color: var(--text-3); }

/* ── Stats grid (time tracking) ────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat-box {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stat-box:nth-child(2n) { border-right: none; }
.stat-box:nth-child(n+3) { border-bottom: none; }
.stat-box__num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-box__label { font-size: 0.72rem; color: #999; font-weight: 500; }

/* ── Time bars ─────────────────────────────────────────────── */
.timebar-list { padding: 0.75rem 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.timebar { display: flex; align-items: center; gap: 0.75rem; }
.timebar__name  { font-size: 0.78rem; font-weight: 500; color: #555; width: 3.5rem; flex-shrink: 0; }
.timebar__bar   { flex: 1; height: 6px; background: #eee; border-radius: 9999px; overflow: hidden; }
.timebar__fill  { height: 100%; background: #111; border-radius: 9999px; transition: width 1s var(--ease); }
.timebar__fill--warn { background: var(--accent-2); }
.timebar__hours { font-size: 0.72rem; font-weight: 600; color: #777; width: 3rem; text-align: right; flex-shrink: 0; }

/* ── Candidates ────────────────────────────────────────────── */
.candidate-list { padding: 0.9rem 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.candidate {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.2s, background 0.2s;
}
.candidate:hover { border-color: var(--border-2); background: var(--bg-3); }
.candidate--top  { border-color: rgba(255,220,94,0.3); background: rgba(255,220,94,0.04); }
.cand-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c);
  color: var(--tc);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cand-info { flex: 1; display: flex; flex-direction: column; }
.cand-name { font-size: 0.85rem; font-weight: 500; color: var(--text-1); }
.cand-meta { font-size: 0.72rem; color: var(--text-3); }
.cand-match { text-align: right; flex-shrink: 0; }
.cand-pct   { display: block; font-size: 0.9rem; font-weight: 700; color: #00dc82; }
.cand-label { font-size: 0.65rem; color: var(--text-3); }

/* ════════════════════════════════════════════════════════════
   METRICS
   ════════════════════════════════════════════════════════════ */
.metrics-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric {
  padding: 2rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.metric:last-child { border-right: none; }
.metric__num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.metric__label {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   STEPS
   ════════════════════════════════════════════════════════════ */
.steps-section {
  padding: 7rem 0;
  background: var(--bg-light);
}
.steps-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 4rem;
}
.step { padding: 0 1rem; }
.step__num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
}
.step__connector {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, #ccc, transparent);
  align-self: center;
  margin: 0 1rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 7rem 0;
  background: var(--bg-0);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.pricing-card {
  background: var(--bg-1);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.pricing-card:hover { background: var(--bg-2); }
.pricing-card--featured {
  background: var(--bg-2);
}
.pricing-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  background: var(--accent);
  padding: 0.2em 0.8em;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.pricing-card__top {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.pricing-tier {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.25rem;
}
.pricing-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--text-1);
  line-height: 1;
}
.pricing-period { font-size: 0.85rem; color: var(--text-3); }
.pricing-sub    { font-size: 0.82rem; color: var(--text-3); margin-top: 0.15rem; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 1.3rem;
  position: relative;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ════════════════════════════════════════════════════════════
   CTA / FORM
   ════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 8rem 0;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.cta-section__glow {
  position: absolute;
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,220,94,0.08) 0%, transparent 70%);
  top: -100px; left: -200px;
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.cta-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 1rem;
}
.cta-headline em { color: var(--accent); }
.cta-body {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.cta-perks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cta-perks li {
  font-size: 0.9rem;
  color: var(--text-2);
  padding-left: 1.3rem;
  position: relative;
}
.cta-perks li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.78rem;
}
.cta-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: #040404;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__logo {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.6;
}
.footer__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.footer__nav a {
  font-size: 0.82rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text-1); }
.footer__bottom { padding-top: 1.25rem; }
.footer__bottom p { font-size: 0.75rem; color: var(--text-3); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner   { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero__visual  { display: none; }
  .hero__form-row { flex-direction: column; }
  .hero__form-row .input { flex: none; }
  .feature       { grid-template-columns: 1fr; gap: 3rem; }
  .feature--right .feature__content { order: 0; }
  .feature--right .feature__visual  { order: 0; }
  .metrics-grid  { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(3) { border-right: 1px solid var(--border); }
  .metric:nth-child(n+3) { border-top: 1px solid var(--border); }
  .steps-track   { grid-template-columns: 1fr; gap: 2rem; }
  .step__connector { width: 40px; height: 1px; background: linear-gradient(to right, #ccc, transparent); margin: 0; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .cta-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .pain-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .hero { padding: 7rem 0 4rem; }
  .feature-section, .section, .steps-section,
  .pricing-section, .metrics-section { padding: 5rem 0; }
  .cta-section { padding: 5rem 0; }
  .cta-form-wrap { padding: 1.75rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .nav__cta { display: none; }
}
