:root {
  --bg: #F7F4EF;
  --bg-alt: #EDE8DF;
  --fg: #1A1A2E;
  --fg-muted: #5A5A72;
  --accent: #C95A3B;
  --accent-dark: #A34828;
  --surface: #FFFFFF;
  --border: #D8D0C4;
}

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

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

/* ——— NAV ——— */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ——— HERO ——— */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 100px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  gap: 40px;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.proof-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 100px;
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 280px;
  background: #1A1A2E;
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(26,26,46,0.3);
}
.phone-header {
  padding: 12px 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.phone-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-avatar {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.contact-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}
.contact-status {
  display: block;
  font-size: 0.65rem;
  color: #4ade80;
}
.phone-messages {
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 220px;
}
.msg { display: flex; flex-direction: column; gap: 2px; }
.msg.received { align-items: flex-start; }
.msg.sent { align-items: flex-end; }
.bubble {
  max-width: 200px;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 0.72rem;
  line-height: 1.4;
}
.received .bubble {
  background: #2D2D44;
  color: white;
  border-bottom-left-radius: 4px;
}
.sent .bubble {
  background: var(--accent);
  color: white;
  border-bottom-right-radius: 4px;
}
.time {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  padding: 0 4px;
}
.phone-input {
  padding: 10px 8px 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: #2D2D44;
  border-radius: 16px;
}
.typing-indicator span {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ——— SECTIONS ——— */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 20px;
}
.section-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.65;
}

/* ——— WHAT WE DO ——— */
.whatwedo {
  background: var(--surface);
  padding: 80px 48px;
}
.whatwedo .section-eyebrow,
.whatwedo .section-headline,
.whatwedo .section-body {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.whatwedo .section-body { margin-bottom: 52px; }
.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.wd-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wd-card--primary {
  background: var(--fg);
  border-color: var(--fg);
}
.wd-card--primary h3,
.wd-card--primary p { color: white; }
.wd-card--primary .wd-icon svg { stroke: #F7A88C; }
.wd-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.wd-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.wd-icon {
  margin-bottom: 16px;
  color: var(--accent);
}
.wd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ——— USE CASES ——— */
.usecases {
  background: var(--bg-alt);
  padding: 80px 48px;
}
.usecases .section-headline,
.usecases .section-body {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.usecases .section-body { margin-bottom: 48px; }
.usecases-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.uc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.uc-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.uc-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.uc-item p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

/* ——— PRICING ——— */
.pricing {
  background: var(--surface);
  padding: 80px 48px;
}
.pricing .section-headline {
  max-width: 1280px;
  margin: 0 auto 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto 24px;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.price-card--featured {
  border-color: var(--accent);
  background: var(--fg);
}
.price-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.price-tier {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.price-card--featured .price-tier,
.price-card--featured .price-features li {
  color: rgba(255,255,255,0.7);
}
.price-card--featured .price-badge,
.price-card--featured .price-range {
  color: white;
}
.price-range {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
}
.price-period {
  font-size: 1rem;
  font-weight: 400;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.price-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.price-card--featured .price-features li::before {
  color: #F7A88C;
}
.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* ——— WHY NOW ——— */
.whynow {
  background: var(--fg);
  padding: 80px 48px;
}
.whynow-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.whynow .section-eyebrow { color: #F7A88C; }
.whynow-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
}
.whynow-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 16px;
}
.whynow-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-block {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
.stat-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}

/* ——— CLOSING ——— */
.closing {
  background: var(--bg);
  padding: 100px 48px;
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}
.cta-item {
  font-size: 0.95rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.cta-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ——— FOOTER ——— */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(90,90,114,0.6);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .hero-visual { display: none; }
  .whatwedo-grid { grid-template-columns: 1fr 1fr; }
  .usecases-list { grid-template-columns: 1fr 1fr; }
  .whynow-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
}
@media (max-width: 600px) {
  .whatwedo-grid { grid-template-columns: 1fr; }
  .usecases-list { grid-template-columns: 1fr; }
  .hero-proof { gap: 24px; }
  .hero-headline { font-size: 2rem; }
}