:root {
  --bg: #161412;
  --bg-2: #1e1b17;
  --bg-3: #252119;
  --fg: #f0ede6;
  --fg-muted: #8a8479;
  --fg-dim: #5a5650;
  --accent: #C87941;
  --accent-2: #e8924a;
  --accent-dim: rgba(200, 121, 65, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --border-accent: rgba(200, 121, 65, 0.25);
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  padding: 100px 48px 80px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-dim); }
  50% { box-shadow: 0 0 0 6px var(--accent-dim); }
}

.hero__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* Hero screen mock */
.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero__screen {
  width: 100%;
  max-width: 460px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--border-accent);
}

.hero__screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.hero__screen-dots {
  display: flex;
  gap: 5px;
}

.hero__screen-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg-dim);
}

.hero__screen-dots span:first-child { background: #ff5f57; }
.hero__screen-dots span:nth-child(2) { background: #ffbd2e; }
.hero__screen-dots span:nth-child(3) { background: #28ca41; }

.hero__screen-title {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.hero__screen-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__deal-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  border-left: 3px solid var(--accent);
}

.hero__deal-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 12px;
}

.hero__deal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.hero__badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
}

.hero__badge--green { background: rgba(40, 200, 80, 0.15); color: #4ddf7a; }
.hero__badge--amber { background: rgba(200, 121, 65, 0.2); color: var(--accent-2); }
.hero__badge--copper { background: var(--accent-dim); color: var(--accent-2); }

.hero__deal-progress {
  height: 4px;
  background: var(--bg);
  border-radius: 2px;
  margin: 12px 0;
  overflow: hidden;
}

.hero__deal-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.hero__deal-status {
  font-size: 0.72rem;
  color: var(--accent-2);
  font-weight: 500;
}

.hero__activity {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__activity-line {
  display: flex;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--fg-dim);
  padding: 6px 8px;
  border-radius: 4px;
}

.hero__activity-line--active {
  background: var(--accent-dim);
  color: var(--fg);
}

.hero__activity-time {
  color: var(--fg-dim);
  min-width: 52px;
  font-variant-numeric: tabular-nums;
}

/* STATS */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
}

.stats__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stats__item {
  padding: 0 40px;
}

.stats__item:first-child { padding-left: 0; }

.stats__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.stats__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.stats__caption {
  max-width: 1100px;
  margin: 20px auto 0;
  font-size: 0.72rem;
  color: var(--fg-dim);
}

/* FEATURES */
.features {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.features__header {
  margin-bottom: 64px;
}

.features__overline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.features__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.features__card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}

.features__card:hover {
  background: var(--bg-2);
}

.features__card-icon {
  margin-bottom: 20px;
}

.features__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.features__card-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PLAYBOOK */
.playbook {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

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

.playbook__overline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.playbook__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}

.playbook__sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.playbook__steps {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.playbook__step {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: start;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.playbook__step:last-child { border-bottom: none; }

.playbook__step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent-dim);
  line-height: 1;
  padding-top: 4px;
}

.playbook__step-content {
  padding: 4px 0;
}

.playbook__step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
}

.playbook__step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.playbook__step-arrow {
  width: 24px;
  height: 24px;
  margin-top: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12h8M16 8l4 4-4 4' stroke='%235a5650' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}

/* OBJECTIONS */
.objections {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.objections__header {
  margin-bottom: 64px;
}

.objections__overline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.objections__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  max-width: 600px;
}

.objections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.objections__item {
  background: var(--bg-2);
  padding: 40px 36px;
}

.objections__q {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.4;
}

.objections__a {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}

.closing__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing__body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.closing__stripe {
  margin-top: 56px;
  padding: 20px 40px;
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  background: var(--accent-dim);
  display: inline-block;
}

.closing__stripe-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-2);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

.footer__meta {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 64px 24px 56px;
    gap: 48px;
  }

  .hero__visual {
    justify-content: flex-start;
  }

  .hero__screen {
    max-width: 100%;
  }

  .stats {
    padding: 48px 24px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats__divider {
    display: none;
  }

  .stats__item {
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
  }

  .features {
    padding: 64px 24px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .playbook {
    padding: 64px 24px;
  }

  .playbook__step {
    grid-template-columns: 60px 1fr;
  }

  .playbook__step-arrow {
    display: none;
  }

  .objections {
    padding: 64px 24px;
  }

  .objections__grid {
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 64px 24px;
  }

  .footer {
    padding: 32px 24px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 2rem;
  }

  .stats__number {
    font-size: 2.2rem;
  }

  .features__card {
    padding: 28px 20px;
  }

  .objections__item {
    padding: 28px 20px;
  }
}