/* =====================
   DETACHOS — Warm. Honest. Built different.
   ===================== */

:root {
  --bg: #faf7f4;
  --bg-warm: #f5ede6;
  --surface: #ffffff;
  --rose: #c4967a;
  --rose-light: #e8d5cb;
  --rose-dark: #a07860;
  --fg: #1a1612;
  --fg-muted: #6b5e54;
  --fg-light: #9b8b80;
  --border: #e8ddd5;
  --ink: #2d2420;
}

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

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, var(--rose-light) 0%, transparent 65%);
  opacity: 0.35;
  pointer-events: none;
}

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

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 42ch;
}

.hero-tagline-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tag-pill {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-dark);
  border: 1px solid var(--rose-light);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  background: transparent;
}

/* Hero Orb */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-layer {
  position: absolute;
  border-radius: 50%;
}

.orb-1 {
  width: 340px;
  height: 340px;
  border: 1px solid var(--rose-light);
  animation: orbPulse 6s ease-in-out infinite;
}

.orb-2 {
  width: 240px;
  height: 240px;
  border: 1px solid rgba(196, 150, 122, 0.4);
  animation: orbPulse 6s ease-in-out infinite 1.5s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(196, 150, 122, 0.25);
  animation: orbPulse 6s ease-in-out infinite 3s;
}

.orb-core {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-core svg {
  width: 60px;
  height: 60px;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero-bottom-rule {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0 4rem;
  width: 100%;
}

.hero-bottom-rule::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  background: var(--bg);
  padding: 8rem 4rem;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  border-left: 3px solid var(--rose);
  padding-left: 2rem;
}

.manifesto-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

.manifesto-body em {
  font-style: italic;
  color: var(--fg);
}

.manifesto-body--muted {
  color: var(--fg-light);
}

/* FEATURES */
.features {
  background: var(--bg-warm);
  padding: 8rem 4rem;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 40px rgba(196, 150, 122, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* VOICE */
.voice {
  background: var(--bg);
  padding: 8rem 4rem;
}

.voice-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.voice-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.voice-col {
  padding: 2.5rem;
  border-radius: 16px;
}

.voice-col--old {
  background: #f0ebe6;
  border: 1px solid var(--border);
}

.voice-col--new {
  background: var(--ink);
  border: 1px solid var(--ink);
}

.voice-col-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

.voice-col--old .voice-col-label { color: var(--fg-light); }
.voice-col--new .voice-col-label { color: var(--rose-light); }

.voice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.voice-list li {
  font-size: 0.9rem;
  line-height: 1.55;
}

.voice-col--old .voice-list li { color: var(--fg-muted); }
.voice-col--new .voice-list li { color: #e8ddd5; }

.voice-statement {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 65ch;
}

.voice-statement em { font-style: italic; color: var(--fg); }

/* CLOSING */
.closing {
  background: var(--bg-warm);
  padding: 8rem 4rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.closing-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-circle-outer {
  width: 140px;
  height: 140px;
  border: 1px solid var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbPulse 5s ease-in-out infinite;
}

.closing-circle-mid {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(196, 150, 122, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-circle-inner {
  width: 60px;
  height: 60px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-circle-inner svg { width: 36px; height: 36px; }

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 50ch;
}

.closing-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: var(--rose);
  color: #fff;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.closing-cta:hover {
  background: var(--rose-dark);
}

/* FOOTER */
.footer {
  background: var(--ink);
  padding: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #f0e8e1;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-light);
  margin-top: 0.25rem;
}

.footer-note {
  font-size: 0.75rem;
  color: #5a4f48;
  margin-top: 0.5rem;
}

/* PRICING */
.pricing {
  background: var(--bg);
  padding: 8rem 4rem;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.pricing-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 40px rgba(196, 150, 122, 0.1);
}

.pricing-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 8px 48px rgba(45, 36, 32, 0.25);
}

.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-tier-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}

.pricing-card--featured .pricing-tier-label {
  color: var(--rose-light);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.pricing-card--featured .pricing-amount {
  color: #f0e8e1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--fg-light);
}

.pricing-card--featured .pricing-period {
  color: #9b8b80;
}

.pricing-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.pricing-card--featured .pricing-tagline {
  color: #9b8b80;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.pricing-card--featured .pricing-features li {
  color: #d5c9c0;
}

.pricing-features svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
}

.pricing-cta--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.pricing-cta--outline:hover {
  background: var(--bg-warm);
  border-color: var(--rose);
}

.pricing-cta--filled {
  background: var(--rose);
  color: #fff;
}

.pricing-cta--filled:hover {
  background: var(--rose-dark);
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-light);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 2rem 3rem;
  }

  .hero-right { display: none; }

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

  .voice-comparison {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .hero-inner,
  .manifesto,
  .features,
  .voice,
  .closing,
  .pricing,
  .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

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