/* ─────────────────────────────────────────────
   Bizzy Bee — Agent Funnel (Direct flow landing)
   Design system: high-contrast bold + warm
   ───────────────────────────────────────────── */

:root {
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --paper: #F5EFE2;
  --paper-2: #EDE4D0;
  --honey: #FFB800;
  --honey-2: #F59E0B;
  --honey-deep: #C77A00;
  --cream: #FFF7E6;
  --rule: rgba(10, 10, 10, 0.14);
  --muted: rgba(10, 10, 10, 0.58);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans: 'Inter Tight', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button { font-family: inherit; }
a { color: inherit; }

/* tel/sms links — preserve typography, add subtle hover */
.tel {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.15s ease;
}
.tel:hover { opacity: 0.7; }
.tel--honey { color: var(--honey); border-bottom-color: var(--honey); }
.tel--dark { color: var(--honey); border-bottom-color: rgba(255, 184, 0, 0.4); opacity: 0.9; }
.tel--dark:hover { opacity: 1; }

.reversal__cta {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin: -4px -8px;
  padding: 4px 8px;
  border-radius: 12px;
}
.reversal__cta:hover {
  background: rgba(255, 184, 0, 0.06);
  transform: translateY(-1px);
}
.reversal__cta:active { transform: translateY(0); }

/* typography utilities */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* hex 'bee' icon shape */
.hex-logo {
  width: 36px;
  height: 36px;
  background: var(--honey);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.02em;
}

/* punchy button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  border: none;
  background: var(--honey);
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  box-shadow: 0 2px 0 var(--ink);
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 0 4px 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 0 1px 0 var(--ink); }

/* ── Top bar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.topbar__tagline {
  font-size: 9px;
  color: var(--muted);
}
.topbar__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__nav a {
  text-decoration: none;
  color: var(--muted);
}
.topbar__nav .btn {
  padding: 10px 18px;
  font-size: 13px;
}

/* ── Hero ── */
.hero {
  padding: 56px 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero__eyebrow {
  margin-bottom: 24px;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-size: clamp(56px, 7.5vw, 108px);
  margin: 0 0 28px 0;
}
.hero__headline span.line {
  display: block;
}
.hero__headline .hl {
  background: var(--honey);
  padding: 0 0.15em;
  margin-left: -0.05em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero__sub {
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  max-width: 480px;
  margin: 20px 20px 28px 0;
  padding: 0 50px 0 0;
}
.hero__right {
  padding: 68px 0 0;
}
.hero__image {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--rule);
  background: var(--paper-2);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* phone capture pill */
.phone-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  padding: 8px;
  border-radius: 999px;
  max-width: 460px;
}
.phone-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--paper);
  padding: 12px 18px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}
.phone-form input::placeholder {
  color: rgba(245, 239, 226, 0.5);
}
.phone-form .btn {
  padding: 12px 20px;
}
.phone-success {
  background: var(--honey);
  color: var(--ink);
  padding: 16px;
  border-radius: 999px;
  max-width: 460px;
  font-weight: 700;
  text-align: center;
}
.phone-hint {
  margin-top: 12px;
  color: var(--muted);
}

/* ── Marquee stat strip ── */
.marquee {
  background: var(--ink);
  color: var(--honey);
  padding: 18px 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  border-top: 1px solid rgba(255, 184, 0, 0.2);
  border-bottom: 1px solid rgba(255, 184, 0, 0.2);
}
.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Pain → solve grid ── */
.pain {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--rule);
  background: var(--rule);
}
.pain__cell {
  background: var(--paper);
  padding: 40px 32px;
}
.pain__crossed {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 22px;
  margin-bottom: 16px;
  font-style: italic;
}
.pain__bold {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-size: 34px;
}

/* ── Offer Stack ── */
.offer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 24px;
}
.offer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.offer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.offer__eyebrow {
  color: var(--honey);
  margin-bottom: 20px;
}
.offer__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: 64px;
  margin: 0;
}
.offer__title em {
  color: var(--honey);
  font-style: normal;
}
.offer__kicker {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(245, 239, 226, 0.7);
  margin-top: 20px;
}
.offer__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(245, 239, 226, 0.15);
}
.offer__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(245, 239, 226, 0.15);
  align-items: baseline;
}
.offer__num {
  color: var(--honey);
}
.offer__row-t {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-size: 30px;
  margin-bottom: 6px;
}
.offer__row-d {
  color: rgba(245, 239, 226, 0.7);
  font-size: 15px;
  line-height: 1.45;
}

/* ── Social proof ── */
.proof {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.proof__eyebrow {
  margin-bottom: 40px;
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.proof__card {
  margin: 0;
  padding: 28px;
  background: var(--paper-2);
  border-radius: 18px;
}
.proof__mark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 40px;
  color: var(--honey-deep);
  line-height: 0;
  margin-bottom: 12px;
}
.proof__q {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.proof__cap {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}
.proof__name {
  font-weight: 700;
  color: var(--ink);
}

/* ── Risk reversal + final CTA ── */
.reversal {
  background: var(--honey);
  color: var(--ink);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.reversal__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.reversal__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.reversal__eyebrow {
  margin-bottom: 20px;
}
.reversal__headline {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(48px, 6vw, 88px);
  margin: 0;
}
.reversal__headline em { font-style: italic; }
.reversal__sub {
  font-size: 19px;
  line-height: 1.4;
  margin-top: 24px;
  max-width: 560px;
  font-weight: 500;
}
.reversal__card {
  background: var(--ink);
  color: var(--paper);
  padding: 32px;
  border-radius: 24px;
}
.reversal__tag {
  color: var(--honey);
  margin-bottom: 16px;
}
.reversal__word {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: 56px;
  margin-bottom: 20px;
}
.reversal__number {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 24px;
}
.reversal__number b {
  font-weight: 700;
  color: var(--honey);
}
.reversal__rule {
  height: 1px;
  background: rgba(245, 239, 226, 0.15);
  margin: 20px 0;
  border: 0;
}
.reversal__hint {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 12px;
}
.reversal__form {
  display: flex;
  gap: 8px;
}
.reversal__form input {
  flex: 1;
  background: rgba(245, 239, 226, 0.08);
  border: 1px solid rgba(245, 239, 226, 0.2);
  color: var(--paper);
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  border-radius: 999px;
  font-family: inherit;
}
.reversal__form input::placeholder {
  color: rgba(245, 239, 226, 0.4);
}
.reversal__form .btn {
  padding: 10px 18px;
  font-size: 13px;
}
.reversal__done {
  color: var(--honey);
  font-weight: 700;
}

/* ── Dan signoff ── */
.signoff {
  background: var(--paper);
  padding: 80px 24px;
  border-top: 1px solid var(--rule);
}
.signoff__inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}
.signoff__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.signoff__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.signoff__eyebrow {
  margin-bottom: 16px;
}
.signoff__quote {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.signoff__byline {
  font-size: 15px;
  color: var(--muted);
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 24px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__headline {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.9;
  font-size: 72px;
  max-width: 800px;
}
.footer__headline em {
  color: var(--honey);
  font-style: normal;
}
.footer__rule {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(245, 239, 226, 0.15);
  padding-top: 24px;
}
.footer__meta {
  opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero__right { padding: 0; }
  .hero__sub { padding-right: 0; max-width: 100%; }
  .pain__grid { grid-template-columns: 1fr; }
  .offer__grid { grid-template-columns: 1fr; gap: 32px; }
  .offer__title { font-size: 48px; }
  .proof__grid { grid-template-columns: 1fr; }
  .reversal__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__headline { font-size: 48px; }
  .signoff__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .topbar__nav a { display: none; }

  .marquee { font-size: 24px; }
  .marquee__track { animation-duration: 14s; }

  /* stack the hero phone capture so the long CTA doesn't blow out vertical height */
  .phone-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
  }
  .phone-form input {
    padding: 12px 16px;
    text-align: center;
  }
  .phone-form .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 14px;
  }

  .offer__row { grid-template-columns: 56px 1fr; gap: 16px; }
  .offer__row-t { font-size: 24px; }
  .proof__card { padding: 20px; }
  .reversal__card { padding: 24px; }
  .reversal__word { font-size: 44px; }
}
