/* === CORAZON THEME === */
:root {
  --bg: #FAF6F1;
  --surface: #F2EAE1;
  --fg: #1A100A;
  --fg-muted: #7A6A5A;
  --accent: #C84B23;
  --accent-light: #F0A88C;
  --accent-pale: #FDECEA;
  --border: #E2D6CA;
  --heart: #E8634B;
}

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

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

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

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #FAF6F1 0%, #F5EDE4 50%, #FAEEE8 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(232, 99, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  background: var(--accent-pale);
  padding: 6px 14px;
  border-radius: 100px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero-headline .line {
  display: block;
}

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

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* === MANIFESTO === */
.manifesto {
  background: #1A100A;
  color: #F5EDE4;
  padding: 100px 40px;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.manifesto-mark {
  padding-top: 8px;
}

.big-quote {
  font-family: 'Lora', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--heart);
  font-style: italic;
}

.manifesto-lead {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}

.manifesto-text p:last-child {
  color: #C8B8A8;
  font-size: 1rem;
  line-height: 1.75;
}

/* === FEATURES === */
.features {
  padding: 100px 40px;
  background: var(--bg);
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.features-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 75, 35, 0.1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Lora', serif;
}

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

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 40px;
  background: #F5EDE4;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
}

.step-num {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  opacity: 0.5;
}

.step-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-body p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.step-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-left: 40px;
}

/* === CLOSING === */
.closing {
  padding: 120px 40px;
  text-align: center;
  background: linear-gradient(180deg, #FAF6F1 0%, #F8E8E2 100%);
}

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

.closing h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 48px;
}

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

/* === FOOTER === */
.footer {
  background: #1A100A;
  color: #C8B8A8;
  padding: 48px 40px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #F5EDE4;
}

.footer-tagline {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-note {
  font-size: 0.8rem;
  opacity: 0.5;
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .manifesto { padding: 72px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 16px; }
  .big-quote { font-size: 4rem; }
  .features { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 72px 24px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .step-num { font-size: 2.5rem; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-num { font-size: 2rem; }
  .step-divider { display: none; }
}