/* BrandKit Theme */
:root {
  --bg: #FAF7F2;
  --fg: #1A1A1A;
  --accent: #C4744A;
  --accent-light: rgba(196, 116, 74, 0.12);
  --muted: #6B6560;
  --border: #E8E2DA;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(26, 26, 26, 0.06);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* HERO */
.hero {
  padding: 80px 48px 120px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 20px; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
}
.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
}
.sub {
  font-size: 14px;
  color: var(--muted);
}
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--accent);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}

/* KIT MOCKUP */
.hero-visual { display: flex; justify-content: center; }
.kit-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow);
}
.kit-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 20px;
}
.kit-items { display: flex; flex-direction: column; gap: 8px; }
.kit-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
}
.kit-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.kit-price {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--fg);
}
.kit-price span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

/* PROBLEM */
.problem {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 48px;
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  max-width: 640px;
  margin-bottom: 48px;
  color: var(--bg);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
}
.problem-card p { font-size: 15px; line-height: 1.7; color: rgba(250,247,242,0.8); }
.problem-conclusion {
  font-size: 15px;
  color: rgba(250,247,242,0.5);
  max-width: 560px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}

/* SOLUTION */
.solution { padding: 80px 48px; }
.solution-inner { max-width: 1100px; margin: 0 auto; }
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.solution h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 20px;
}
.solution-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature { display: flex; flex-direction: column; gap: 10px; }
.feature h3 { font-size: 15px; font-weight: 600; }
.feature p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WHAT'S INSIDE */
.whatsinside {
  background: var(--white);
  padding: 80px 48px;
}
.whatsinside-inner { max-width: 1100px; margin: 0 auto; }
.whatsinside h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  margin: 16px 0 48px;
}
.kit-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.kit-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.kit-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.kit-col li { font-size: 15px; color: var(--fg); display: flex; align-items: center; gap: 10px; }
.kit-col li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.pricing-tier {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.pricing-tier.featured {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.tier-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--accent);
}
.featured .tier-name { color: rgba(255,255,255,0.8); }
.tier-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.pricing-tier p { font-size: 14px; color: var(--muted); }
.featured p { color: rgba(255,255,255,0.8); }

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-quote { position: relative; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
}
.manifesto-body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 600;
  margin-bottom: 20px;
}
.manifesto-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.manifesto-vision {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  font-size: 15px !important;
  color: var(--fg) !important;
}

/* FOOTER */
footer {
  background: var(--fg);
  color: var(--bg);
  padding: 64px 48px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(250,247,242,0.5);
  max-width: 280px;
  line-height: 1.6;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(250,247,242,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(250,247,242,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero, .problem, .solution, .whatsinside, .manifesto { padding: 56px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { text-align: center; }
  .lede { max-width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr 1fr; }
  .kit-contents { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-wave { display: none; }
  .hero { padding-bottom: 56px; }
  .whatsinside { background: var(--white); }
}