/* ===== TOKENS ===== */
:root {
  --amber: #E8773C;
  --amber-dark: #C45E28;
  --navy: #1A1F3D;
  --navy-light: #252B4A;
  --bg: #FAF6F0;
  --bg-dark: #F0EAE0;
  --text: #1A1F3D;
  --text-muted: #6B6F8A;
  --white: #FFFFFF;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'DM Serif Display', serif; line-height: 1.1; font-weight: 400; }

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(232, 119, 60, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(6rem, 12vw, 12rem);
  color: var(--amber);
  line-height: 1;
  display: block;
  letter-spacing: -0.05em;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  line-height: 1.4;
  max-width: 160px;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-block;
  background: rgba(232, 119, 60, 0.15);
  border: 1px solid rgba(232, 119, 60, 0.4);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.65;
}

.hero-pillars {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.pillar { padding-right: 2rem; }
.pillar-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--amber);
  line-height: 1.1;
}
.pillar-desc {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  line-height: 1.3;
}
.pillar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 0 2rem;
}

/* Hero Visual */
.hero-visual {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.visual-block { flex: 1; }

.vb-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}

.vb-scene {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

/* BEFORE scene */
.before-scene {
  background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.storefront {
  width: 70%;
  height: 60%;
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.storefront::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 15%;
  right: 15%;
  height: 3px;
  background: #E8773C;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(232,119,60,0.6), 0 0 24px rgba(232,119,60,0.3);
}

.storefront::after {
  content: 'OPEN';
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #E8773C;
  text-shadow: 0 0 8px rgba(232,119,60,0.8);
}

.no-web-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(232, 60, 60, 0.15);
  border: 1px solid rgba(232, 60, 60, 0.3);
  color: #ff8080;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
}

.visual-arrow { flex-shrink: 0; }

/* AFTER scene - website mockup */
.after-scene {
  background: var(--white);
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.site-mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: #f9f9f9;
}

.site-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}

.site-logo-placeholder {
  width: 48px;
  height: 20px;
  background: var(--amber);
  border-radius: 4px;
  opacity: 0.9;
}

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

.nav-dot {
  width: 20px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
}

.site-hero-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.site-headline-placeholder {
  height: 14px;
  background: var(--navy);
  border-radius: 3px;
  width: 75%;
  margin-bottom: 0.5rem;
}

.site-sub-placeholder {
  height: 8px;
  background: #ccc;
  border-radius: 3px;
  width: 55%;
  margin-bottom: 0.75rem;
}

.site-cta-placeholder {
  height: 28px;
  background: var(--amber);
  border-radius: 6px;
  width: 100px;
}

.site-info-bar {
  display: flex;
  gap: 6px;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}

.info-chip {
  height: 20px;
  flex: 1;
  background: var(--amber);
  opacity: 0.15;
  border-radius: 4px;
}

.info-chip:last-child { opacity: 0.08; }

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--bg);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

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

.manifesto-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: 2rem;
  max-width: 640px;
}

.manifesto-body {
  max-width: 600px;
  margin-bottom: 4rem;
}

.manifesto-body p {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.manifesto-body p:last-child {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--amber);
  font-style: italic;
  margin-bottom: 0;
}

.manifesto-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(26, 31, 61, 0.1);
  padding-top: 3rem;
  max-width: 640px;
}

.m-stat {}

.m-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.m-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.manifesto-decoration { pointer-events: none; }

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 119, 60, 0.08);
}

.deco-1 { width: 400px; height: 400px; bottom: -150px; right: -80px; }
.deco-2 { width: 250px; height: 250px; bottom: -80px; right: 60px; }
.deco-3 { width: 120px; height: 120px; bottom: 40px; right: 200px; }

/* ===== FEATURES ===== */
.features {
  background: var(--navy);
  padding: 8rem 2rem;
}

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

.features .section-label { color: var(--amber); }

.features-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 4rem;
  max-width: 600px;
  line-height: 1.15;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--navy-light); }

.fc-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(232, 119, 60, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.fc-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.fc-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.features-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  border-left: 3px solid var(--amber);
  padding-left: 1.5rem;
  max-width: 500px;
}

/* ===== PROOF ===== */
.proof {
  background: var(--bg);
  padding: 8rem 2rem;
}

.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.proof-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 31, 61, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(26, 31, 61, 0.06);
}

.pc-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 31, 61, 0.08);
}

.pc-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--navy);
  line-height: 1;
}

.pc-per {
  font-size: 1rem;
  color: var(--text-muted);
}

.pc-list { list-style: none; }

.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(26, 31, 61, 0.05);
}

.pc-item:last-of-type { border-bottom: none; }

.pc-item--check::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(232, 119, 60, 0.1);
  border: 1.5px solid var(--amber);
  flex-shrink: 0;
  margin-top: 0.1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23E8773C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.pc-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: 8px;
  line-height: 1.5;
}

.pc-addons {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(26, 31, 61, 0.1);
  padding-top: 1.25rem;
}

.addon-header {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26, 31, 61, 0.05);
  font-size: 0.875rem;
}

.addon-row:last-child { border-bottom: none; }

.addon-name { color: var(--text); }

.addon-price {
  font-weight: 600;
  color: var(--amber);
  font-family: 'Outfit', sans-serif;
}

/* Proof right */
.proof-why {
  margin-bottom: 3rem;
}

.why-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.why-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 119, 60, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-point p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  padding-top: 0.5rem;
}

.proof-numbers {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--navy);
  border-radius: 16px;
}

.pn-item { text-align: center; flex: 1; }

.pn-val {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pn-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--navy);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 119, 60, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { max-width: 800px; margin: 0 auto; position: relative; }

.closing-badge {
  display: inline-block;
  background: rgba(232, 119, 60, 0.15);
  border: 1px solid rgba(232, 119, 60, 0.3);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.closing-headline {
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.closing-body {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.closing-cta {}

.cta-block {
  display: inline-block;
  padding: 2rem 3rem;
  border: 1.5px solid rgba(232, 119, 60, 0.3);
  border-radius: 16px;
  background: rgba(232, 119, 60, 0.05);
}

.cta-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.cta-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(26, 31, 61, 0.08);
}

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

.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stat { flex-direction: row; align-items: baseline; gap: 1.5rem; }
  .stat-number { font-size: 5rem; }
  .hero-visual { flex-direction: column; }
  .visual-arrow { transform: rotate(90deg); }
  .manifesto-stat-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .proof-numbers { flex-direction: column; gap: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-meta { text-align: center; }
}