/* Clothby — landing styles. Dark Luxe / Gold (matches the app redesign). */
:root {
  --bg: #0F0E0D;
  --surface: #1B1815;
  --elevated: #26211A;
  --gold: #C9A96A;
  --gold-light: #E6CE9B;
  --gold-deep: #A9884F;
  --ink: #F4ECDD;
  --muted: #A79C8B;
  --like: #E0A45E;
  --border: rgba(255, 255, 255, 0.09);
  --radius: 22px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.08; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--gold); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 15px;
  cursor: pointer; border: 1.5px solid transparent; transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: #211B12; box-shadow: 0 12px 30px rgba(201, 169, 106, .30);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 24px;
  max-width: var(--max); margin: 0 auto; padding: 18px 24px;
  background: rgba(15, 14, 13, .82); backdrop-filter: blur(12px);
}
.brand { font-family: 'Fraunces', serif; font-weight: 700; font-size: 24px; letter-spacing: -.5px; }
.brand::after { content: "."; color: var(--gold); }
.nav-links { margin-left: auto; display: flex; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }

/* ---- hero ---- */
.hero {
  max-width: var(--max); margin: 0 auto; padding: 40px 24px 60px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-block; background: var(--elevated); color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; border: 1px solid var(--border);
}
.hero h1 { font-size: clamp(44px, 6vw, 72px); letter-spacing: -1.5px; }
.lead { font-size: 19px; color: var(--muted); margin: 20px 0 28px; max-width: 30ch; }
.lead strong { color: var(--ink); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.proof { margin-top: 22px; color: var(--muted); font-size: 14px; }

/* ---- phone mockup ---- */
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-visual::before {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,106,.22), transparent 68%); top: 8%; right: 2%; z-index: 0;
}
.phone {
  position: relative; z-index: 1; width: 300px; background: #141210;
  border-radius: 42px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
  padding: 20px 18px 18px; overflow: hidden;
}
.phone-notch { width: 46px; height: 6px; background: #2A2420; border-radius: 4px; margin: 0 auto 12px; }
.phone-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px; }
.phone-sub { font-size: 9px; letter-spacing: 1.5px; color: var(--muted); margin-top: 2px; }
.swipe-stack, .demo-stack { position: relative; height: 340px; margin: 12px 0; }

.swipe-card {
  position: absolute; inset: 0; background: #141210; border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px; overflow: hidden; box-shadow: 0 12px 26px rgba(0,0,0,.45);
  transition: transform .35s ease, opacity .35s ease; will-change: transform;
}
.swipe-card .photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.swipe-card .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,8,.92) 4%, rgba(10,9,8,.35) 34%, rgba(10,9,8,0) 60%); }
.swipe-card .tag {
  position: absolute; top: 14px; right: 14px; background: rgba(20,16,12,.66); color: var(--gold);
  font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(6px);
  border: 1px solid rgba(201,169,106,.3);
}
.swipe-card .meta { position: absolute; left: 16px; right: 16px; bottom: 16px; }
.swipe-card .meta .title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 19px; color: var(--ink); }
.swipe-card .why { font-size: 12.5px; color: #D8CDBB; margin-top: 3px; }
.swipe-card .stamp {
  position: absolute; top: 22px; font-size: 20px; font-weight: 800; letter-spacing: 1px;
  padding: 6px 14px; border-radius: 12px; opacity: 0; transition: opacity .1s; z-index: 3;
}
.swipe-card .stamp.yes { left: 16px; color: var(--gold); border: 3px solid var(--gold); transform: rotate(-12deg); }
.swipe-card .stamp.no { right: 16px; color: #c9756a; border: 3px solid #c9756a; transform: rotate(12deg); }

.swipe-controls { display: flex; justify-content: center; gap: 22px; margin-top: 6px; }
.swipe-btn {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--border); background: var(--elevated);
  font-size: 22px; cursor: pointer; transition: transform .15s ease; line-height: 1; color: var(--muted);
}
.swipe-btn:hover { transform: scale(1.08); }
.swipe-btn.like {
  color: #211B12; border: none;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  box-shadow: 0 6px 18px rgba(201,169,106,.4);
}

/* ---- strip ---- */
.strip { max-width: 780px; margin: 20px auto; padding: 0 24px; text-align: center; }
.strip p { font-family: 'Fraunces', serif; font-size: clamp(22px, 3vw, 30px); color: var(--ink); }
.strip-accent { color: var(--gold); margin-top: 6px; }

/* ---- sections ---- */
.section { max-width: var(--max); margin: 0 auto; padding: 70px 24px; }
.section-alt { background: #16130F; max-width: none; }
.section-alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(30px, 4vw, 42px); text-align: center; letter-spacing: -.5px; }
.section-sub { text-align: center; color: var(--muted); margin-top: 10px; }

/* ---- steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep)); color: #211B12;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 20px;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---- features ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform .18s ease, border-color .18s ease; }
.feature:hover { transform: translateY(-4px); border-color: rgba(201,169,106,.35); }
.fi { font-size: 28px; margin-bottom: 10px; }
.feature h3 { font-size: 19px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---- demo ---- */
.demo { max-width: 320px; margin: 34px auto 0; }
.demo .demo-stack { height: 360px; }
.demo-hint { text-align: center; color: var(--muted); margin-top: 12px; font-size: 14px; }

/* ---- waitlist ---- */
.section-cta { text-align: center; }
.wait-form { display: flex; gap: 10px; justify-content: center; margin: 28px auto 0; max-width: 440px; flex-wrap: wrap; }
.wait-form input {
  flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 999px; border: 1.5px solid var(--border);
  font-family: inherit; font-size: 15px; background: var(--surface); color: var(--ink);
}
.wait-form input::placeholder { color: var(--muted); }
.wait-form input:focus { outline: none; border-color: var(--gold); }
.wait-msg { margin-top: 16px; font-weight: 600; min-height: 22px; }
.wait-msg.ok { color: var(--gold); }
.wait-msg.err { color: #d18576; }
.wait-consent { margin-top: 14px; font-size: 13px; color: var(--muted); }
.wait-consent a { color: var(--gold); font-weight: 600; }

/* ---- faq ---- */
.faq { max-width: 760px; margin: 36px auto 0; }
.faq details { border-bottom: 1px solid var(--border); padding: 18px 4px; }
.faq summary { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 24px; font-family: 'Manrope'; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: 10px; font-size: 15.5px; }

/* ---- legal page ---- */
.legal { max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; }
.legal h1 { font-size: clamp(34px, 5vw, 46px); }
.legal h2 { font-size: 22px; margin: 32px 0 8px; }
.legal p { color: var(--muted); margin-top: 8px; }
.legal a { color: var(--gold); font-weight: 600; }
.legal-date { color: var(--muted); font-size: 14px; }
.legal-note { font-size: 14px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 18px; margin-top: 28px; }

/* ---- footer ---- */
.footer { background: #0A0908; color: var(--ink); text-align: center; padding: 56px 24px; border-top: 1px solid var(--border); }
.footer-brand { font-family: 'Fraunces', serif; font-weight: 700; font-size: 28px; }
.footer-brand::after { content: "."; color: var(--gold); }
.footer p { color: var(--muted); margin-top: 8px; }
.footer-badges { display: flex; gap: 10px; justify-content: center; margin: 22px 0 18px; flex-wrap: wrap; }
.badge { border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 22px; justify-content: center; }
.footer-links a { color: var(--gold); font-weight: 600; font-size: 14px; }
.footer-fine { font-size: 12px; color: #6E6559; margin-top: 22px; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 20px; }
  .hero-cta, .eyebrow { justify-content: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; }
  .steps, .features { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
