:root {
  --bg: #F5F0EA;
  --bg-alt: #EDE8DF;
  --fg: #1A1714;
  --fg-muted: #6B6560;
  --accent: #C8602A;
  --accent-light: #E8835A;
  --stone: #8B8680;
  --border: #D4CFC8;
  --card: #FFFFFF;
  --mockup-bg: #2C2A27;
  --mockup-surface: #3A3835;
  --mockup-text: #A8A49F;
}

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

html { scroll-behavior: smooth; }

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

/* ── Layout ── */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 100px 0; }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--fg);
  color: #FFF;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,96,42,0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,96,42,0.15) 0%, transparent 70%);
  bottom: 50px;
  left: 200px;
}

.hero .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.eyebrow-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,96,42,0.4);
  padding: 6px 14px;
  border-radius: 2px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-attributes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.attr {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.attr-icon {
  color: var(--accent);
  font-size: 8px;
  flex-shrink: 0;
}

/* Mockup */
.hero-visual {
  position: relative;
  z-index: 2;
}

.site-mockup {
  background: var(--mockup-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transform-origin: left center;
}

.mockup-header {
  background: rgba(255,255,255,0.05);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }

.mockup-url {
  margin-left: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}

.mockup-body { padding: 16px; }

.mockup-hero-img {
  background: linear-gradient(135deg, #3D6B4A 0%, #5A8A63 50%, #7AB384 100%);
  height: 160px;
  border-radius: 6px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.mockup-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.04) 20px,
    rgba(255,255,255,0.04) 40px
  );
}

.mockup-content { display: flex; flex-direction: column; gap: 10px; }

.mockup-h1 {
  height: 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  width: 65%;
}
.mockup-h2 {
  height: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  width: 85%;
}
.mockup-h3 {
  height: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  width: 75%;
}
.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.mockup-card {
  height: 60px;
  background: var(--mockup-surface);
  border-radius: 4px;
}
.mockup-cta {
  height: 32px;
  background: var(--accent);
  border-radius: 4px;
  width: 40%;
  margin-top: 8px;
}

/* ── Problem ── */
.problem { background: var(--bg); }

.problem-statement { margin-bottom: 64px; }

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

.problem h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 600px;
}

.problem-body {
  font-size: 17px;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.7;
}

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

.stat {
  background: var(--card);
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.5;
}

/* ── Solution ── */
.solution { background: var(--bg-alt); }

.solution-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.solution-label, .how-label, .testimonials-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.solution-header h2, .how-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
}

.solution-sub {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
}

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

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

.solution-card:hover {
  transform: translateY(-2px);
}

.card-icon {
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}

/* ── How ── */
.how { background: var(--fg); color: #FFF; }

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

.how-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
}

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

.step {
  padding: 32px;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  align-self: center;
  margin: 0 -10px;
}

/* ── Testimonials ── */
.testimonials { background: var(--bg); }

.testimonials-label {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: -16px;
  display: block;
  opacity: 0.3;
}

blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 24px;
  font-style: italic;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.author-role {
  font-size: 12px;
  color: var(--stone);
}

/* ── Closing ── */
.closing {
  background: var(--accent);
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.closing .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing-content p {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-offer {
  background: rgba(0,0,0,0.15);
  padding: 24px;
  border-radius: 4px;
}

.offer-detail {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 12px;
}

.offer-price {
  font-size: 22px;
  font-weight: 600;
}

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

.closing-shape {
  width: 240px;
  height: 240px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  position: relative;
}

.closing-shape::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}

.closing-shape::after {
  content: 'SF';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 300;
  opacity: 0.2;
}

/* ── Footer ── */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.4);
  padding: 48px 0;
}

.footer .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-meta p {
  font-size: 13px;
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .section-inner { padding: 0 24px; }
  section { padding: 72px 0; }

  .hero .section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { display: none; }

  .problem-stats {
    grid-template-columns: 1fr;
  }

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

  .how-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }

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

  .closing .section-inner {
    grid-template-columns: 1fr;
  }

  .closing-aside { display: none; }

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

  .footer-meta p { text-align: center; }
}

@media (max-width: 600px) {
  .hero-attributes { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
}
