:root {
  --bg: #F7F3ED;
  --fg: #1A1A2E;
  --accent: #D4633B;
  --accent-warm: #E8845A;
  --muted: #8A8A9A;
  --card-bg: #FFFFFF;
  --card-border: rgba(26, 26, 46, 0.08);
  --step-line: rgba(26, 26, 46, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta 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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 40px 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212, 99, 59, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

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

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 16px;
}

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

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
}

/* Invite Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.invite-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.12), 0 4px 16px rgba(26, 26, 46, 0.06);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.invite-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

.invite-card-step {
  display: grid;
  grid-template-columns: 36px 60px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.step-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.step-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

.invite-card-divider {
  height: 1px;
  background: var(--step-line);
  margin: 0;
}

.invite-card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--step-line);
  text-align: center;
}

.invite-rendez {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
}

/* Background elements */
.hero-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.bg-circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,99,59,0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.bg-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,99,59,0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.bg-circle-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26,26,46,0.04) 0%, transparent 70%);
  top: 40%;
  left: 50%;
}

/* ─── STEPS SECTION ─────────────────────────────────────── */
.steps-section {
  background: var(--card-bg);
  padding: 100px 40px;
}

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

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-item {
  text-align: center;
  padding: 0 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

.step-number {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.step-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.step-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 32px;
  color: var(--step-line);
}

.steps-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.result-arrow {
  color: var(--accent);
}

.result-card {
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
}

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

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

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

.feature-card {
  background: var(--card-bg);
  padding: 36px 32px;
  border: 1px solid var(--card-border);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(212, 99, 59, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── MANIFESTO ─────────────────────────────────────────── */
.manifesto-section {
  background: var(--fg);
  padding: 100px 40px;
}

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

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-style: italic;
  font-weight: 400;
  color: var(--bg);
  line-height: 1.4;
  margin-bottom: 60px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.manifesto-stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(247, 243, 237, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.manifesto-body {
  font-size: 17px;
  color: rgba(247, 243, 237, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ─── CLOSING ───────────────────────────────────────────── */
.closing-section {
  background: linear-gradient(160deg, #F0EAE2 0%, var(--bg) 100%);
  padding: 120px 40px;
  text-align: center;
}

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

.closing-orb {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--accent) 0%, var(--accent-warm) 50%, transparent 70%);
  border-radius: 50%;
  margin: 0 auto 48px;
  opacity: 0.8;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}

.closing-cta {
  display: inline-block;
  margin-bottom: 40px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s;
}
.closing-cta:hover {
  background: #c0552e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,99,59,.3);
}

.closing-product {
  display: inline-block;
}

.closing-brand {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  color: var(--accent);
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 40px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  font-size: 13px;
  color: var(--muted);
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 80px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 36px; }
  .hero-desc { font-size: 16px; }

  .steps-section, .features-section, .manifesto-section, .closing-section, .footer { padding: 60px 24px; }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .step-connector { display: none; }

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

  .manifesto-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-num { font-size: 48px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}