/* ===== TOKENS ===== */
:root {
  --bg: #FDFCF9;
  --bg-warm: #F5F0E8;
  --fg: #1A1714;
  --fg-muted: #6B6560;
  --accent: #E85D04;
  --accent-light: #FDE8D8;
  --navy: #1D1B18;
  --border: #E8E3DB;
  --card: #FFFFFF;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 32px;
  background: rgba(253, 252, 249, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 20px;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  margin-bottom: 36px;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.28);
  cursor: pointer;
}
.hero-cta:hover {
  background: #d44f03;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}
.hero-cta:active {
  transform: translateY(0);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.3;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.design-preview {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-height: 420px;
}
.preview-label {
  position: absolute;
  top: -28px;
  left: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.preview-card {
  position: absolute;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(26, 23, 20, 0.08);
  padding: 20px;
}
.pc-1 {
  width: 240px;
  top: 20px;
  left: 0;
  border-top: 3px solid var(--accent);
}
.pc-bar {
  width: 60px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 12px;
}
.pc-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 10px;
}
.pc-cta {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
}
.pc-2 {
  width: 160px;
  top: 60px;
  right: 0;
}
.pc-img {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-light) 0%, #f5c9a0 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.pc-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.pc-3 {
  width: 200px;
  bottom: 20px;
  left: 20px;
}
.pc-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 10px;
}
.pc-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
}
.pc-line-sm {
  width: 75%;
}

/* ===== WHAT SECTION ===== */
.what-section {
  padding: 80px 32px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.what-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.what-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.what-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.what-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.what-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 80px 32px 100px;
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 600px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 4px 20px rgba(26, 23, 20, 0.06);
  transform: translateY(-2px);
}
.fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}
.fc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.fc-desc {
  font-size: 0.855rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 80px 32px 100px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-header {
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 23, 20, 0.10);
  border-color: var(--accent);
}
.pc-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(232, 93, 4, 0.12);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pc-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pc-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.pc-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pc-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pc-features li {
  font-size: 0.85rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pc-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 32px;
}

/* ===== CLOSING ===== */
.closing-section {
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  pointer-events: none;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 20px;
  position: relative;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
}
.closing-target {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  position: relative;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.footer-dot { color: var(--border); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .what-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof {
    gap: 16px;
  }
  .hero {
    padding: 60px 24px 80px;
  }
  .site-nav { padding: 0 24px; }
  .what-section, .features-section, .pricing-section, .closing-section {
    padding: 60px 24px;
  }
}
@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  .pricing-card {
    padding: 24px;
  }
}