:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #6b6b6b;
  --line: rgba(10, 10, 10, 0.12);
  --line-strong: rgba(10, 10, 10, 0.9);
  --radius: 22px;
  --max: 1120px;
  --ink-on-dark: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a:not(.btn):hover { color: var(--fg); }
@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--fg); color: #fff; }
.btn-primary:hover { background: #262626; }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--fg); color: #fff; }
.btn-light { background: #fff; color: var(--fg); }
.btn-light:hover { background: #eaeaea; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---- Type ---- */
.eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3 { margin: 0; font-weight: 900; letter-spacing: -0.03em; line-height: 1.04; }
h1 { font-size: clamp(40px, 7vw, 76px); }
h2 { font-size: clamp(30px, 4.4vw, 46px); }
h3 { font-size: 20px; }
p { margin: 0; }
.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  font-weight: 500;
  max-width: 46ch;
}

/* ---- Hero ---- */
.hero {
  padding: 88px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 64px; }
}
.hero-copy .lead { margin-top: 20px; }
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.mirror {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--fg);
  background: #111;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.35);
}
.mirror img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mirror-live {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mirror-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b30;
}

/* ---- Sections ---- */
section { padding: 88px 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 0; }

.section-dark {
  background: var(--fg);
  color: #fff;
}
.section-dark .eyebrow { color: rgba(255,255,255,0.5); }
.section-dark .lead { color: rgba(255,255,255,0.65); }

/* ---- Features ---- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature {
  background: var(--bg);
  padding: 32px 26px;
}
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 15px; }
@media (max-width: 920px) {
  .features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
}

/* ---- Looks grid ---- */
.looks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .looks-grid { grid-template-columns: repeat(2, 1fr); }
}
.look {
  text-align: center;
}
.look-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.look-photo img { width: 100%; height: 100%; object-fit: cover; }
.look span { font-weight: 700; font-size: 15px; }

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 920px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.plan-name { font-weight: 700; font-size: 15px; color: var(--muted); }
.plan-price { font-size: 34px; font-weight: 900; letter-spacing: -0.02em; }
.plan-price span { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan-seconds { font-size: 14px; color: var(--muted); font-weight: 600; }
.plan .btn { justify-content: center; margin-top: auto; }

/* ---- FAQ ---- */
.faq { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  flex: none;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  padding: 0 0 22px;
  color: var(--muted);
  max-width: 60ch;
}

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
}
.cta-band h2 { margin: 0 auto 28px; max-width: 16ch; }
.cta-band .hero-actions { justify-content: center; }

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 14px; font-weight: 600; color: var(--muted); }
.foot-links a:hover { color: var(--fg); }
.foot-copy { font-size: 13px; color: var(--muted); }

/* ---- Legal pages ---- */
.legal {
  padding: 64px 0 100px;
}
.legal-header { margin-bottom: 40px; }
.legal-header .updated { color: var(--muted); font-weight: 600; font-size: 14px; margin-top: 10px; display: block; }
.legal-body { max-width: 720px; }
.legal-body h2 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; letter-spacing: -0.01em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: #2b2b2b; font-size: 16px; line-height: 1.7; }
.legal-body ul { padding-left: 20px; margin: 12px 0; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { text-decoration: underline; text-underline-offset: 2px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}
.back-link:hover { color: var(--fg); }
