/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F4EFE6;
  --bg-warm: #EDE6D9;
  --bg-dark: #1A1714;
  --fg: #1A1714;
  --fg-muted: #6B6256;
  --fg-faint: #A89F93;
  --accent: #C8512A;
  --accent-light: #E8D5CC;
  --white: #FFFFFF;
  --green: #3D7A5C;
  --green-light: #D1E8D8;
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
  border-bottom: 1px solid rgba(26,23,20,0.08);
  background: rgba(244,239,230,0.88);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(26,23,20,0.12);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px var(--green-light); }
  50% { box-shadow: 0 0 0 4px var(--green-light); }
}

/* === HERO === */
.hero {
  padding: 80px 24px 64px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-headline-wrap {
  margin-bottom: 48px;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.hl-line {
  display: block;
}

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

.hero-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.hero-desc p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 0.9rem !important;
  font-weight: 500;
  color: var(--fg) !important;
  margin-top: 16px;
}

/* === BROWSER MOCKUP === */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.browser-frame {
  background: var(--bg-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,23,20,0.18), 0 4px 12px rgba(26,23,20,0.1);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: #2A2620;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28C840; }

.browser-content {
  padding: 20px;
}

.mockup-inner {
  background: #F8F3EA;
  border-radius: 6px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-section { display: flex; gap: 8px; align-items: stretch; }
.mock-hero { flex-direction: column; gap: 6px; }
.mock-features { gap: 8px; }

.mock-h1 {
  height: 20px;
  width: 70%;
  background: var(--fg);
  border-radius: 3px;
}

.mock-p {
  height: 10px;
  width: 90%;
  background: #C4B8AA;
  border-radius: 3px;
}

.mock-cta {
  height: 22px;
  width: 90px;
  background: var(--accent);
  border-radius: 4px;
  margin-top: 4px;
}

.mock-card {
  flex: 1;
  height: 50px;
  background: var(--white);
  border-radius: 5px;
  border: 1px solid rgba(26,23,20,0.08);
  position: relative;
  overflow: hidden;
}

.mock-card::after {
  content: '';
  position: absolute;
  top: 33%;
  left: 20%;
  right: 20%;
  height: 6px;
  background: #E8E0D5;
  border-radius: 2px;
}

.mock-cta-row { justify-content: center; margin-top: 4px; }
.mock-cta-2 {
  height: 18px;
  width: 60px;
  background: #D4CBC0;
  border-radius: 4px;
}

.browser-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-size: 0.72rem;
  color: var(--fg-faint);
}

.browser-name {
  font-family: monospace;
}

.browser-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-weight: 500;
}

.browser-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* === HERO STATS === */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(26,23,20,0.1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2px;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--fg-faint);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26,23,20,0.08);
  flex-shrink: 0;
}

/* === PROOF === */
.proof {
  padding: 40px 24px;
  border-top: 1px solid rgba(26,23,20,0.08);
  border-bottom: 1px solid rgba(26,23,20,0.08);
  background: var(--bg-warm);
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.proof-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.proof-types {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.proof-type {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(26,23,20,0.1);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
}

.pt-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
}

/* === PROCESS === */
.process {
  padding: 96px 24px;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.section-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--fg);
  line-height: 1.1;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-tag {
  display: block;
  text-align: center;
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  padding: 32px;
  border: 1px solid rgba(26,23,20,0.1);
  border-radius: 12px;
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(26,23,20,0.12);
  line-height: 1;
}

.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}

.step-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}

.step-connector {
  width: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(26,23,20,0.12);
}

/* === PRICING === */
.pricing {
  padding: 80px 24px 96px;
  background: var(--bg-dark);
  color: var(--white);
}

.pricing .section-header { margin-bottom: 48px; }
.pricing .section-tag { color: #C8A98E; }
.pricing .section-headline { color: var(--white); }

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card-primary {
  background: #2A2620;
  border-color: rgba(200,169,142,0.3);
}

.pricing-card-addon {
  background: #1F1C18;
}

.pc-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pc-label-addon {
  color: #C8A98E;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pc-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.pc-period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.pc-features-addon li {
  color: rgba(255,255,255,0.5);
}

.pc-features li svg {
  flex-shrink: 0;
  color: var(--green);
}

.pc-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* === MANIFESTO === */
.manifesto {
  padding: 96px 24px;
}

.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.manifesto-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.5;
  text-align: left;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,23,20,0.08);
}

.manifesto-text-mid {
  font-weight: 400;
  color: var(--fg);
  font-size: clamp(1.3rem, 3.2vw, 1.7rem);
}

.manifesto-text-loud {
  font-weight: 400;
  color: var(--accent);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
}

.manifesto-text strong {
  font-weight: 600;
  color: var(--fg);
}

.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.m-tag {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
}

/* === CLOSING === */
.closing {
  padding: 80px 24px 96px;
  background: var(--accent);
  color: var(--white);
}

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

.closing-headline {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.closing-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.cta-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cta-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.cta-email-address {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.cta-email-address:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
}

/* === FOOTER === */
.footer {
  padding: 28px 24px;
  border-top: 1px solid rgba(26,23,20,0.08);
}

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

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.footer-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-faint);
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--fg-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-sep {
  color: rgba(26,23,20,0.25);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-body-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .steps {
    flex-direction: column;
    gap: 12px;
  }

  .step-connector {
    width: 100%;
    height: 1px;
  }

  .step-connector::after {
    width: 100%;
    height: 1px;
  }

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

  .hero-stats {
    flex-direction: column;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-meta {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 56px 20px 48px;
  }

  .proof-types {
    gap: 6px;
  }

  .proof-type {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}