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

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --ink: #1A1714;
  --ink-light: #3D3830;
  --ink-muted: #7A7060;
  --orange: #E8572A;
  --orange-dark: #C4401A;
  --orange-pale: #FDF0EB;
  --divider: #E8E0D4;
  --card-bg: #FFFDF9;
}

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

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

/* === TYPOGRAPHY === */
.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 3rem;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--divider);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand { flex: 1; }

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 3rem 4rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,87,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

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

.hero-accent {
  color: var(--ink);
  font-weight: 600;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 420px;
  line-height: 1.65;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

/* Card stack illustration */
.card-stack {
  position: relative;
  width: 280px;
  height: 170px;
  margin-bottom: 1rem;
}

.card {
  position: absolute;
  width: 260px;
  height: 160px;
  border-radius: 8px;
}

.card-back {
  top: 20px;
  left: 30px;
  background: var(--divider);
  transform: rotate(-6deg);
  box-shadow: 0 4px 20px rgba(26,23,20,0.08);
}

.card-middle {
  top: 12px;
  left: 18px;
  background: var(--cream);
  border: 1px solid var(--divider);
  transform: rotate(-3deg);
  box-shadow: 0 4px 20px rgba(26,23,20,0.1);
}

.card-front {
  top: 0;
  left: 0;
  background: var(--warm-white);
  border: 1px solid var(--divider);
  box-shadow: 0 8px 40px rgba(26,23,20,0.15);
}

.card-side {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Front card content */
.bc-front-content {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-logo-mark {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.bc-divider {
  height: 1px;
  background: var(--orange);
  width: 100%;
  margin: 8px 0;
}

.bc-divider.thin { height: 0.5px; background: var(--divider); }

.bc-text-block { margin: 4px 0; }

.bc-name {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.bc-role {
  font-size: 0.6rem;
  color: var(--ink-muted);
  font-weight: 400;
  margin-top: 2px;
}

.bc-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bc-contact span {
  font-size: 0.5rem;
  color: var(--ink-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Screen mockup */
.screen-mockup {
  width: 300px;
}

.screen-bezel {
  background: var(--ink);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(26,23,20,0.25);
}

.screen-screen {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--divider);
}

.site-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
}

.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav span {
  font-size: 0.5rem;
  color: var(--ink-muted);
}

.site-hero-content { padding: 8px 0; }

.site-h1 {
  height: 14px;
  width: 70%;
  background: var(--ink);
  border-radius: 3px;
  margin-bottom: 8px;
  opacity: 0.7;
}

.site-p {
  height: 6px;
  width: 90%;
  background: var(--divider);
  border-radius: 3px;
  margin-bottom: 4px;
}

.site-p:last-of-type { width: 60%; }

.site-cta {
  height: 14px;
  width: 40px;
  background: var(--orange);
  border-radius: 4px;
  margin-top: 8px;
}

.site-grid-dots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 8px 0 0;
}

.site-grid-dots::before,
.site-grid-dots::after { content: ''; display: block; height: 40px; }

/* === BUNDLE === */
.bundle {
  padding: 6rem 3rem;
  background: var(--warm-white);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.bundle-inner { max-width: 1000px; margin: 0 auto; }

.bundle-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.bundle-item {
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2.5rem;
}

.bundle-icon {
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.bundle-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.bundle-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bundle-features li {
  font-size: 0.9rem;
  color: var(--ink-light);
  padding-left: 1.25rem;
  position: relative;
}

.bundle-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.bundle-plus {
  display: flex;
  align-items: center;
  padding-top: 5rem;
  color: var(--orange);
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--divider);
}

.bundle-price {
  font-size: 1rem;
  color: var(--ink-muted);
}

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

.bundle-price-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* === WHO FOR IT === */
.whoforit {
  padding: 6rem 3rem;
  background: var(--cream);
}

.whoforit-inner { max-width: 1000px; margin: 0 auto; }

.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.persona {
  padding: 2rem;
  border-left: 2px solid var(--orange);
  padding-left: 1.5rem;
}

.persona-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--divider);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.persona-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}

.persona-desc {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 6rem 3rem;
  background: var(--ink);
  color: var(--warm-white);
}

.howitworks-inner { max-width: 1000px; margin: 0 auto; }

.howitworks .section-label { color: var(--orange); }
.howitworks .section-headline { color: var(--warm-white); }

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.step {
  padding: 2rem;
  position: relative;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.step:last-child { border-top: 2px solid var(--orange); }

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 3rem;
  background: var(--cream);
}

.manifesto-inner { max-width: 800px; margin: 0 auto; }

.manifesto-quote {
  margin-bottom: 3rem;
  padding-left: 2rem;
  border-left: 3px solid var(--orange);
}

.manifesto-quote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}

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

.manifesto-body p {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.8;
}

/* === CLOSING === */
.closing {
  padding: 8rem 3rem;
  background: var(--orange-pale);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.closing-headline em {
  font-style: italic;
  color: var(--orange);
}

.closing-body {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-muted);
}

.dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

/* === FOOTER === */
.footer {
  padding: 2.5rem 3rem;
  background: var(--ink);
  color: rgba(255,255,255,0.4);
}

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

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.25rem;
  display: block;
}

.footer-desc {
  font-size: 0.8rem;
}

.footer-meta p {
  font-size: 0.75rem;
  text-align: right;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 4rem 2rem; }
  .bundle-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .bundle-plus { display: none; }
  .personas { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .nav { padding: 1rem 1.5rem; }
  .nav-tagline { display: none; }
  .section-headline { font-size: clamp(2rem, 7vw, 3rem); }
  .closing-detail { flex-direction: column; gap: 0.5rem; }
  .dot-sep { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; }
  .footer-meta p { text-align: center; }
}

@media (max-width: 480px) {
  .hero, .bundle, .whoforit, .howitworks, .manifesto, .closing { padding: 3rem 1.5rem; }
  .bundle-price-amount { font-size: 2.2rem; }
}