:root {
  --bg: #fbf7f1;
  --ink: #201816;
  --muted: #72645f;
  --card: #fffdfa;
  --accent: #d96f47;
  --accent-dark: #9f3f25;
  --line: #eadfd7;
  --soft: #f4e6dc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }
nav { max-width: 1120px; margin: 0 auto; padding: 24px; display: flex; justify-content: space-between; align-items: center; }
.brand { font-weight: 800; letter-spacing: -0.03em; }
.nav-cta { color: var(--accent-dark); font-weight: 700; }
.hero { min-height: 92vh; background: radial-gradient(circle at 80% 10%, #f1c5ae 0, transparent 28%), var(--bg); }
.hero-grid { max-width: 1120px; margin: 0 auto; padding: 72px 24px 96px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.eyebrow { text-transform: uppercase; font-size: 13px; letter-spacing: .16em; color: var(--accent-dark); font-weight: 800; }
h1 { font-size: clamp(44px, 7vw, 82px); line-height: .92; letter-spacing: -0.07em; margin: 12px 0 24px; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1; letter-spacing: -0.055em; margin: 8px 0 18px; }
h3 { margin-bottom: 8px; letter-spacing: -0.025em; }
.subtitle { font-size: 21px; line-height: 1.45; color: var(--muted); max-width: 680px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button, button { border: 0; border-radius: 999px; padding: 15px 22px; font-weight: 800; cursor: pointer; font-size: 15px; }
.primary { background: var(--ink); color: white; box-shadow: 0 12px 30px rgba(32,24,22,.16); }
.secondary { background: var(--soft); color: var(--ink); }
.microcopy { color: var(--muted); font-size: 14px; margin-top: 18px; }
.phone-card { justify-self: center; width: min(360px, 100%); background: #16110f; border-radius: 38px; padding: 14px; box-shadow: 0 24px 80px rgba(32,24,22,.22); transform: rotate(2deg); }
.phone-top { width: 90px; height: 5px; background: #4a403c; border-radius: 99px; margin: 5px auto 14px; }
.app-screen { background: var(--card); min-height: 560px; border-radius: 28px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.pill { display: inline-flex; width: fit-content; background: var(--soft); color: var(--accent-dark); border-radius: 999px; padding: 7px 11px; font-weight: 800; font-size: 13px; }
.outfit-card { background: #f9efe8; border: 1px solid var(--line); border-radius: 24px; padding: 20px; margin-top: auto; }
.clothes { font-size: 46px; letter-spacing: 7px; margin-bottom: 22px; }
.ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.section { max-width: 1120px; margin: 0 auto; padding: 88px 24px; }
.steps, .result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article, .result-grid article, .form-card { background: var(--card); border: 1px solid var(--line); border-radius: 28px; padding: 24px; box-shadow: 0 10px 34px rgba(32,24,22,.05); }
.steps span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; font-weight: 900; }
.steps p, .result-grid p, .demo-copy p, .validation li { color: var(--muted); line-height: 1.55; }
.demo { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: start; }
.form-card { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 800; }
input, select { width: 100%; border: 1px solid var(--line); background: white; border-radius: 16px; padding: 15px 14px; font-size: 16px; }
small { color: var(--muted); font-weight: 500; }
.full { width: 100%; }
.preview { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 10px; }
.preview img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; border: 1px solid var(--line); }
.results { grid-column: 1 / -1; margin-top: 30px; }
.result-grid article button { background: var(--soft); color: var(--accent-dark); margin-top: 12px; }
.validation { padding-top: 20px; }
ul { padding-left: 22px; }
@media (max-width: 860px) {
  .hero-grid, .demo { grid-template-columns: 1fr; }
  .steps, .result-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 36px; }
  .phone-card { transform: none; }
}
