:root {
  --bg: #F8F5EE;
  --surface: #FFFFFF;
  --text: #0D0D0D;
  --text-muted: #6B6860;
  --teal: #0B525B;
  --teal-light: #E8F3F5;
  --amber: #D4620A;
  --amber-light: #FDF0E8;
  --near-black: #0D0D0D;
  --border: #E0DDD6;
  --card-shadow: 0 4px 24px rgba(13, 13, 13, 0.06);
}

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

/* ─── HERO ─────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--near-black);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 320px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.hero-card-main {
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

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

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

.card-dots span:first-child { background: #FF5F57; }
.card-dots span:nth-child(2) { background: #FFBD2E; }
.card-dots span:last-child { background: #28C840; }

.card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.metric-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--near-black);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-value.teal {
  color: var(--teal);
}

.metric-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  flex: 1;
}

.bar {
  flex: 1;
  height: 100%;
  background: var(--teal-light);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

.bar.active {
  background: var(--teal);
}

.chart-label {
  font-size: 11px;
  color: var(--text-muted);
  width: 60px;
  text-align: right;
}

/* Badge */
.hero-badge {
  position: absolute;
  bottom: -24px;
  right: -32px;
  background: var(--amber);
  color: white;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212, 98, 10, 0.35);
  z-index: 3;
}

.badge-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 10px;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.4;
}

/* Platforms */
.hero-platforms {
  position: absolute;
  top: -20px;
  left: -48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--card-shadow);
  z-index: 4;
}

.platform-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.platform-icons {
  display: flex;
  gap: 8px;
}

.p-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--near-black);
  background: var(--bg);
  border-radius: 6px;
  padding: 5px 8px;
}

/* Big BG number */
.hero-bg-number {
  position: absolute;
  bottom: -60px;
  left: -20px;
  font-family: 'Fraunces', serif;
  font-size: 200px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ─── PROOF ──────────────────────────── */
.proof {
  padding: 100px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.proof-header {
  margin-bottom: 64px;
}

.proof-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--near-black);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.proof-stat {}

.proof-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.proof-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonial */
.proof-testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 40px;
}

.proof-testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--near-black);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-credit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.credit-avatar {
  flex-shrink: 0;
}

.testimonial-credit strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--near-black);
}

.testimonial-credit span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.playbook-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.playbook-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.playbook-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--near-black);
  margin-bottom: 16px;
}

.playbook-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,13,13,0.08);
}

.featured-card {
  border-color: var(--teal);
  background: linear-gradient(135deg, #F0F7F8 0%, #FFFFFF 60%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

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

.service-card h3 {
  font-size: 22px;
  color: var(--near-black);
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags li {
  font-size: 11px;
  font-weight: 500;
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
}

/* ─── MANIFESTO ──────────────────────── */
.manifesto {
  background: var(--near-black);
  color: white;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.manifesto-inner.reverse {
  background: rgba(255,255,255,0.03);
}

.manifesto-inner:last-child {
  border-bottom: none;
}

.manifesto-number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
}

.manifesto-content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: white;
  margin-bottom: 20px;
}

.manifesto-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 680px;
}

/* ─── CLOSING / PRICING ──────────────── */
.closing {
  padding: 100px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.closing-inner > h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--near-black);
  margin-bottom: 48px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}

.pricing-card.featured {
  background: var(--near-black);
  border-color: var(--near-black);
  color: white;
}

.pricing-card.featured .pricing-tier,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-features li {
  color: white;
}

.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.7); }

.featured-ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--amber);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--near-black);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-price span {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.5;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

.pricing-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

a.pricing-cta-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--near-black);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s;
}
a.pricing-cta-btn:hover { color: var(--amber); }

a.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--near-black);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
a.hero-cta:hover { background: #1a1a1a; }

.closing-statement {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.closing-statement p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── FOOTER ──────────────────────────── */
.footer {
  background: var(--near-black);
  color: white;
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 14px;
  color: white;
}

.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .hero-card-stack { margin: 0 auto; }

  .proof-grid,
  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-inner,
  .proof-inner,
  .playbook-inner,
  .manifesto-inner,
  .closing-inner,
  .footer-inner,
  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-bg-number { display: none; }
  .hero-badge { right: -8px; }

  .proof-stat .proof-number,
  .pricing-price {
    font-size: 48px;
  }
}