/* ============================================================
   Fitted Closet — Landing page styles
   Editorial luxe: black + white + champagne gold.
   Mobile-first, photo-forward.
   ============================================================ */

@import url('tokens.css');

:root {
  --site-max: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 10vw, 128px);

  /* Density modifier (set by Tweaks) */
  --d-mult: 1;

  /* Accent — overridden by Tweaks */
  --accent: var(--fitted-black);
  --accent-fg: var(--fitted-white);
  --accent-soft: rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-text);
  color: var(--fitted-black);
  background: var(--fitted-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Mobile/Desktop visibility helpers */
.desktop-only { display: flex; }
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: flex !important; }
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.site { overflow-x: clip; }

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

.section {
  padding: var(--section-y) 0;
}

.eyebrow {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  transition: transform 180ms var(--ease-spring),
              background-color 180ms,
              color 180ms,
              box-shadow 180ms;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn.primary {
  background: var(--fitted-black);
  color: var(--fitted-white);
}
.btn.primary:hover { background: #1a1a1a; transform: translateY(-1px); }
.btn.gold {
  background: var(--fitted-gold);
  color: var(--fitted-black);
  box-shadow: var(--shadow-gold);
}
.btn.gold:hover { background: var(--fitted-gold-deep); color: #fff; transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  color: var(--fitted-black);
  border: 1px solid var(--gray-200);
}
.btn.ghost:hover { background: var(--gray-50); }
.btn.inverse {
  background: var(--fitted-white);
  color: var(--fitted-black);
}
.btn.inverse:hover { background: #f5f5f5; transform: translateY(-1px); }

.btn.sm { height: 44px; padding: 0 18px; font-size: 15px; }
.btn.xs { height: 36px; padding: 0 14px; font-size: 14px; border-radius: 9999px; }

.btn .arrow {
  display: inline-block;
  transition: transform 220ms var(--ease-spring);
}
.btn:hover .arrow { transform: translateX(3px); }

/* App Store badge */
.appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 22px 0 18px;
  border-radius: var(--r-pill);
  background: var(--fitted-black);
  color: var(--fitted-white);
  transition: transform 180ms var(--ease-spring);
  cursor: pointer;
}
.appstore:hover { transform: translateY(-1px); }
.appstore svg { width: 24px; height: 24px; flex: 0 0 24px; }
.appstore .label { line-height: 1.05; }
.appstore .label .top { font-size: 10px; letter-spacing: 0.04em; opacity: 0.8; display: block; }
.appstore .label .bot { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; display: block; }
.appstore.inverse { background: #fff; color: #000; border: 1px solid var(--gray-200); }

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* ---------- Build Closet — frictionless add methods ---------- */
.methods {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .methods { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .methods {
    grid-template-columns: repeat(6, 1fr);
  }
  /* Feature row: first card spans 2x and is taller (the camera/snap hero) */
  .methods .method.feature { grid-column: span 3; grid-row: span 2; }
  .methods .method:not(.feature) { grid-column: span 3; }
}
@media (min-width: 1180px) {
  .methods .method.feature { grid-column: span 2; grid-row: span 2; }
  .methods .method:not(.feature) { grid-column: span 2; }
}

.method {
  position: relative;
  background: var(--gray-25);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.2vw, 28px);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 220ms var(--ease-spring), box-shadow 220ms;
}
.method:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.method.dark {
  background: var(--fitted-black);
  color: #fff;
  border-color: transparent;
}
.method.dark .m-eyebrow { color: var(--fitted-gold); }
.method.dark .m-body { color: rgba(255,255,255,0.65); }
.method.dark .m-icon {
  background: rgba(201,169,98,0.15);
  color: var(--fitted-gold);
}

.method .m-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--gray-150);
  color: var(--fitted-black);
  display: flex; align-items: center; justify-content: center;
}
.method .m-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.method h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.1;
}
.method .m-body {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.45;
}
.method.feature h3 {
  font-size: clamp(26px, 2.6vw, 32px);
}
.method.feature .m-body { font-size: 15px; }

.method .m-visual {
  margin-top: auto;
  padding-top: 12px;
}
.method.feature .m-visual {
  height: 200px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.method.feature .m-visual .frame {
  width: 60%;
  aspect-ratio: 9 / 12;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--gray-150);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.method.feature .m-visual .frame img {
  max-width: 78%; max-height: 78%; object-fit: contain;
}
.method.feature .m-visual .corner {
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid var(--fitted-gold);
}
.method.feature .m-visual .corner.tl { top: 18%; left: 18%; border-right: 0; border-bottom: 0; }
.method.feature .m-visual .corner.tr { top: 18%; right: 18%; border-left: 0; border-bottom: 0; }
.method.feature .m-visual .corner.bl { bottom: 18%; left: 18%; border-right: 0; border-top: 0; }
.method.feature .m-visual .corner.br { bottom: 18%; right: 18%; border-left: 0; border-top: 0; }

/* Search-to-add mini */
.m-search {
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
}
.m-search .q { flex: 1; }
.m-search .k {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 6px;
  background: var(--gray-100);
  border-radius: 4px;
  color: var(--gray-600);
}

/* Barcode mini */
.m-barcode {
  height: 38px;
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
  padding: 0 16px;
}
.m-barcode i {
  display: inline-block;
  background: var(--fitted-black);
  border-radius: 1px;
  height: 60%;
}

/* Email/Gmail mini */
.m-email {
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
}
.m-email .from {
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.m-email .subj {
  font-weight: 600;
  color: var(--fitted-black);
  font-size: 13px;
  margin: 2px 0 4px;
}
.m-email .pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px;
  background: rgba(201,169,98,0.12);
  color: var(--fitted-gold-deep);
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Import mini */
.m-import {
  display: flex; gap: 4px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: 10px;
}
.m-import .tile {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--gray-100);
  overflow: hidden;
  position: relative;
}
.m-import .tile img { width: 100%; height: 100%; object-fit: cover; }
.m-import .tile .chk {
  position: absolute;
  top: 4px; right: 4px;
  width: 14px; height: 14px;
  background: var(--fitted-gold);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: #000;
  font-weight: 800;
}

/* ============================================================
   BUILD CLOSET V2 — phone with Add to Closet sheet + floating chips
   ============================================================ */

.bc-section { background: var(--gray-25); }

.bc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}
@media (min-width: 900px) {
  .bc-grid { grid-template-columns: 1fr 1fr; }
}

.bc-text h2 {
  margin: 16px 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1;
  text-wrap: balance;
}
.bc-text h2 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--fitted-gold-deep);
}
.bc-text p {
  margin: 0 0 28px;
  color: var(--gray-700);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  max-width: 480px;
}
.bc-text p strong {
  color: var(--fitted-black);
  font-weight: 700;
}

.bc-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
  margin-top: 12px;
  max-width: 520px;
}
.bc-icon {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; color: var(--gray-700); font-weight: 600;
  width: 76px; text-align: center; line-height: 1.2;
}
.bc-icon .ic {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-150);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--fitted-black);
}

/* Stage / phone visual */
.bc-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1.1;
  margin: 0 auto;
}
.bc-stage .swirl {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bc-stage .phone {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  max-width: 280px;
  z-index: 2;
}
.bc-chip {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px rgba(0,0,0,0.14), inset 0 -3px 6px rgba(0,0,0,0.06);
  z-index: 3;
  background: #fff;
  animation: bc-float 5s ease-in-out infinite;
}
.bc-chip svg { width: 30px; height: 30px; }
.bc-chip.c1 { top: 4%; right: 2%;   background: linear-gradient(135deg, #FFE9C0, #F5D38A); color: #8a5a00; animation-delay: 0s; }
.bc-chip.c2 { top: 28%; left: -2%;  background: linear-gradient(135deg, #DCE9FF, #B6D0FF); color: #1a4cb8; animation-delay: 0.6s; }
.bc-chip.c3 { top: 50%; right: -4%; background: #fff; color: #000; animation-delay: 1.2s; }
.bc-chip.c4 { bottom: 14%; left: 4%; background: linear-gradient(135deg, #D5F0CF, #ADD9A3); color: #1c5e2a; animation-delay: 1.8s; }
.bc-chip.c5 { bottom: 4%; right: 6%; background: linear-gradient(135deg, #ECDAFF, #C7A8FF); color: #5a23a8; animation-delay: 2.4s; }

@keyframes bc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Add-to-Closet phone screen */
.scr-add {
  width: 100%; height: 100%;
  padding: 50px 0 0;
  background: linear-gradient(180deg, #F2EEE4 0%, #E8E2D2 100%);
  position: relative;
  display: flex;
  flex-direction: column;
}
.scr-add .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 8px;
}
.scr-add .top-bar .upg {
  font-size: 10px;
  background: rgba(0,122,255,0.12);
  color: var(--accent-blue);
  padding: 5px 10px;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
}
.scr-add .top-bar .gear {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700);
}
.scr-add .neckworth-head {
  text-align: center;
  padding: 6px 16px 14px;
}
.scr-add .neckworth-head .l {
  font-size: 12px;
  color: var(--gray-600);
  display: inline-flex; align-items: center; gap: 4px;
}
.scr-add .neckworth-head .v {
  margin-top: 2px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--fitted-black);
}
.scr-add .sheet {
  margin-top: auto;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 12px 16px 24px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.05);
  flex: 1;
  display: flex; flex-direction: column;
}
.scr-add .sheet-handle {
  width: 36px; height: 4px;
  background: var(--gray-200);
  border-radius: 9999px;
  margin: 0 auto 14px;
}
.scr-add .sheet-title {
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.scr-add .sheet-sub {
  text-align: center;
  margin-top: 4px;
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.35;
}
.scr-add .opts {
  margin-top: 14px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.scr-add .opt {
  height: 38px;
  border-radius: 9999px;
  border: 1px solid var(--gray-150);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fitted-black);
}
.scr-add .opt.on {
  background: #000;
  color: #fff;
  border-color: #000;
}
.scr-add .opt .gi {
  width: 14px; height: 14px;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   COMMUNITY V2 — two overlapping phones + emoji + toast
   ============================================================ */
.comm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}
@media (min-width: 900px) {
  .comm-grid { grid-template-columns: 1fr 1fr; }
}

.comm-text h2 {
  margin: 16px 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1;
  text-wrap: balance;
}
.comm-text p {
  margin: 0 0 28px;
  color: var(--gray-700);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  max-width: 480px;
}
.comm-text p strong { color: var(--fitted-black); font-weight: 700; }

.feat-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  margin-top: 8px;
  max-width: 520px;
}
@media (min-width: 600px) { .feat-chips { grid-template-columns: repeat(4, 1fr); } }
.feat-chip { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.feat-chip .icn {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.feat-chip .icn.lilac { background: #E5DBFF; color: #6D28D9; }
.feat-chip .icn.pink  { background: #FECDD3; color: #BE123C; }
.feat-chip .icn.mint  { background: #C9F0CF; color: #166534; }
.feat-chip .icn.butter { background: #FEF3C7; color: #92400E; }
.feat-chip h4 { margin: 0; font-size: 13px; font-weight: 700; color: var(--fitted-black); }
.feat-chip p { margin: 0; font-size: 12px; color: var(--gray-600); line-height: 1.4; max-width: none; }

.comm-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 0.95;
  margin: 0 auto;
}
.comm-stage .swirl { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.comm-phone {
  position: absolute;
  background: #0a0a0a;
  border-radius: 28px;
  padding: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18), inset 0 0 0 1.5px #2a2a2a;
}
.comm-phone .pscreen {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  width: 100%; height: 100%;
}
.comm-phone.a { left: 4%; top: 2%; width: 56%; aspect-ratio: 9/19; z-index: 2; }
.comm-phone.b { right: 0; top: 14%; width: 50%; aspect-ratio: 9/19; z-index: 1; }

.comm-emoji {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
  z-index: 4;
  animation: bc-float 4.5s ease-in-out infinite;
}
.comm-emoji.e1 { background: #FFDADA; top: 18%;  left: -2%; animation-delay: 0s; }
.comm-emoji.e2 { background: #FFE2D9; top: 56%;  left: 28%; animation-delay: 0.8s; }
.comm-emoji.e3 { background: #FFCFCF; top: 26%;  left: 50%; animation-delay: 1.6s; }

.comm-chip {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
  z-index: 3;
  animation: bc-float 5s ease-in-out infinite;
}
.comm-chip.c1 { top: 2%; right: 6%; background: #DDD6FE; color: #5b21b6; animation-delay: 0.3s; }
.comm-chip.c2 { bottom: 10%; right: 2%; background: #DBEAFE; color: #1d4ed8; animation-delay: 1.4s; }

.comm-toast {
  position: absolute;
  bottom: 0%; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 9999px;
  padding: 10px 18px 10px 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  z-index: 5;
}
.comm-toast .av {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.comm-toast .ck {
  margin-left: 4px;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green);
}

/* Mini phone — FitPic post screen */
.fp {
  padding: 32px 10px 12px;
  display: flex; flex-direction: column;
  height: 100%;
  background: #fff;
}
.fp-head { display: flex; align-items: center; gap: 8px; padding: 0 4px 8px; }
.fp-head .av { width: 24px; height: 24px; border-radius: 50%; overflow: hidden; }
.fp-head .av img { width: 100%; height: 100%; object-fit: cover; }
.fp-head .n { font-size: 11px; font-weight: 600; flex: 1; }
.fp-head .t { font-size: 9px; color: var(--gray-500); }

.fp-img {
  flex: 1;
  background-color: #ccc;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
}
.fp-react {
  display: flex; gap: 4px;
  padding: 8px 4px 0;
  font-size: 9px;
  align-items: center;
}
.fp-react .r {
  display: flex; align-items: center; gap: 2px;
  padding: 3px 6px;
  border-radius: 9999px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}
.fp-comment {
  margin-top: 8px;
  display: flex; gap: 6px;
  align-items: flex-start;
  padding: 0 4px;
  font-size: 9px;
}
.fp-comment .av {
  width: 18px; height: 18px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 18px;
}
.fp-comment .av img { width: 100%; height: 100%; object-fit: cover; }
.fp-comment .body .n { font-weight: 700; font-size: 9px; }
.fp-comment .body .x { color: var(--gray-600); font-size: 9px; }
.fp-comment .body .t { color: var(--gray-400); font-size: 8px; margin-top: 1px; }

/* Mini phone — Discover screen */
.dc {
  padding: 32px 10px 12px;
  background: #fff;
  height: 100%;
  display: flex; flex-direction: column;
}
.dc h6 {
  margin: 0 4px 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.dc-search {
  background: var(--gray-100);
  border-radius: 9999px;
  padding: 5px 10px;
  font-size: 9px;
  color: var(--gray-500);
  display: flex; align-items: center; gap: 4px;
  margin: 0 4px 10px;
}
.dc-stories { display: flex; gap: 8px; padding: 0 4px 10px; }
.dc-stories .st { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.dc-stories .st .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--fitted-black);
}
.dc-stories .st .av img { width: 100%; height: 100%; object-fit: cover; }
.dc-stories .st .n { font-size: 8px; color: var(--gray-700); }
.dc-tabs {
  display: flex; gap: 12px; padding: 0 4px 6px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 9px; font-weight: 600;
}
.dc-tabs .on { color: var(--fitted-black); position: relative; padding-bottom: 4px; }
.dc-tabs .on::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--fitted-black);
  border-radius: 2px;
}
.dc-tabs .off { color: var(--gray-400); }
.dc-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 0 4px;
  flex: 1;
}
.dc-grid .t {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* ============================================================
   PARTNERS marquee
   ============================================================ */
.partners {
  padding: clamp(40px, 5vw, 56px) 0;
  border-top: 1px solid var(--gray-150);
  border-bottom: 1px solid var(--gray-150);
  background: #fff;
  overflow: hidden;
}
.partners .h {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.marq {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marq-track {
  display: flex;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
  flex-shrink: 0;
  padding-right: clamp(48px, 6vw, 88px);
  animation: m-scroll 28s linear infinite;
}
.marq:hover .marq-track { animation-play-state: paused; }
.marq-track .logo {
  flex: 0 0 auto;
  height: 44px;
  display: flex; align-items: center; gap: 10px;
  color: var(--gray-600);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  filter: grayscale(1);
  opacity: 0.85;
  transition: opacity 200ms, filter 200ms;
}
.marq-track .logo:hover { opacity: 1; filter: grayscale(0); }
.marq-track .logo .mk {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  color: #fff;
  flex: 0 0 28px;
}
.marq-track .logo.aw .mk { background: linear-gradient(135deg, #ff6900, #ff9500); }
.marq-track .logo.po .mk { background: #841414; }
.marq-track .logo.tr .mk { background: #1a1a1a; }
.marq-track .logo.so .mk { background: linear-gradient(135deg, #9945ff, #14f195); color: #1a1a1a; }
@keyframes m-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, background-color 200ms;
}
.nav.scrolled {
  border-bottom-color: var(--gray-150);
  background: rgba(255, 255, 255, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fitted-black);
}
.nav-brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav-brand img.wordmark { width: auto; height: 44.928px; border-radius: 0; }
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}
.nav-links a { transition: color 150ms; }
.nav-links a:hover { color: var(--fitted-black); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-login {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 12px;
}
.nav-login:hover { color: var(--fitted-black); }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-login { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0 var(--section-y);
}
.hero-grid {
  display: grid;
  gap: clamp(32px, 6vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 9999px;
  background: var(--gray-50);
  border: 1px solid var(--gray-150);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.18);
  margin-left: 4px;
}

.hero h1 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.96;
  color: var(--fitted-black);
  text-wrap: balance;
}
.hero h1 em {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fitted-gold-deep);
}
.hero-sub {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
  color: var(--gray-600);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 32px 0 0;
}
.hero-meta {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  color: var(--gray-600);
  font-size: 13px;
}
.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fitted-black);
  font-weight: 600;
}
.hero-stars .stars { color: var(--fitted-gold); letter-spacing: 1px; }

.hero-avatars {
  display: inline-flex;
}
.hero-avatars img {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}
.hero-avatars img:first-child { margin-left: 0; }

/* Hero visual — collage */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.4;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.hv-photo {
  position: absolute;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-100);
}
.hv-photo img { width: 100%; height: 100%; object-fit: cover; }
.hv-photo.a { top: 4%; left: 0; width: 62%; height: 72%; transform: rotate(-2deg); }
.hv-photo.b { bottom: 0; right: 0; width: 56%; height: 56%; transform: rotate(3deg); }

.hv-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12), 0 1px 0 rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
}
.hv-card.top { top: 0; right: 4%; transform: rotate(4deg); }
.hv-card.bot {
  bottom: 8%; left: -4%;
  transform: rotate(-3deg);
  padding: 14px 18px 14px 14px;
}
.hv-card img.thumb {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gray-50);
  object-fit: contain;
  padding: 4px;
}
.hv-card .meta { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.hv-card .meta .t1 { font-weight: 600; color: var(--fitted-black); font-size: 13px; }
.hv-card .meta .t2 { font-size: 11px; color: var(--gray-500); }
.hv-card .price {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 15px;
  color: var(--fitted-black);
}

.hv-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--fitted-black);
  color: #fff;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.hv-tag.ai { top: 30%; right: -2%; }
.hv-tag .gold-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fitted-gold);
  box-shadow: 0 0 0 2px rgba(201,169,98,0.2);
}

@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}
.hv-card.top { --rot: 4deg; animation: float-y 6s ease-in-out infinite; }
.hv-card.bot { --rot: -3deg; animation: float-y 7s ease-in-out infinite 1.2s; }
.hv-tag.ai { animation: float-y 5.5s ease-in-out infinite 0.6s; }

/* ---------- Trust strip ---------- */
.trust {
  padding: 24px 0;
  border-top: 1px solid var(--gray-150);
  border-bottom: 1px solid var(--gray-150);
  background: var(--gray-25);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .trust-inner { gap: 24px 64px; }
}
.trust-stat .num {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--fitted-black);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.trust-stat .num em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--fitted-gold-deep);
  margin-left: 2px;
}
.trust-stat .lbl {
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
}

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  color: inherit;
  text-wrap: balance;
}
.section-head h2 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--fitted-gold-deep);
}
.section-head p {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.5;
}
.section-head.center { align-items: center; text-align: center; margin-inline: auto; }

/* ---------- How it works (3 steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(36px, 5vw, 56px);
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.step {
  position: relative;
  background: var(--gray-25);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 32px);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--fitted-gold-deep);
  font-size: 18px;
}
.step h3 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.1;
}
.step p {
  margin: 0;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
}
.step-visual {
  align-self: center;
  margin-top: 24px;
  width: 100%;
  max-width: 320px;
  height: 180px;
  position: relative;
}

.step-snap {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.step-snap .frame {
  width: 160px; height: 200px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--gray-150);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.step-snap .frame img { max-width: 80%; max-height: 80%; object-fit: contain; }
.step-snap .corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--fitted-gold);
}
.step-snap .corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.step-snap .corner.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.step-snap .corner.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.step-snap .corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

.step-ai {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.ai-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: 8px;
}
.ai-row .k { color: var(--gray-500); width: 64px; }
.ai-row .v { color: var(--fitted-black); font-weight: 600; }
.ai-row.gold { border-color: rgba(201,169,98,0.4); background: rgba(201,169,98,0.08); }
.ai-row.gold .v { color: var(--fitted-gold-deep); }

.step-sell {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.step-sell .receipt {
  width: 240px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-150);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.step-sell .rh {
  padding: 10px 14px;
  background: var(--fitted-black);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.step-sell .rrow {
  padding: 8px 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  border-bottom: 1px dashed var(--gray-150);
}
.step-sell .rrow:last-child { border: 0; }
.step-sell .rrow .v { font-weight: 700; }
.step-sell .rrow.tot { background: var(--gray-25); }
.step-sell .rrow.tot .v { color: var(--fitted-gold-deep); }

/* ---------- AskFitted (dark section) ---------- */
.dark-sec {
  background: var(--fitted-black);
  color: #fff;
  border-radius: clamp(24px, 4vw, 40px);
  margin: 0 var(--gutter);
  padding: var(--section-y) clamp(24px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.dark-sec .eyebrow { color: var(--fitted-gold); }
.dark-sec .eyebrow::before { background: var(--fitted-gold); }
.dark-sec .section-head h2 { color: #fff; }
.dark-sec .section-head h2 em { color: var(--fitted-gold); }
.dark-sec .section-head p { color: rgba(255,255,255,0.65); }

.ask-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 56px);
  margin-top: clamp(36px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 900px) {
  .ask-grid { grid-template-columns: 1fr 1fr; }
}

.ask-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ask-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ask-bullet .icn {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,169,98,0.15);
  color: var(--fitted-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ask-bullet h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.ask-bullet p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.5;
}

/* Chat mock */
.chat-mock {
  background: #1c1c1e;
  border-radius: var(--r-xl);
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-head .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fitted-gold-soft), var(--fitted-gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: #2a1f00;
  font-weight: 700;
  font-size: 13px;
}
.chat-head .name { font-weight: 600; font-size: 14px; color: #fff; }
.chat-head .status { font-size: 11px; color: rgba(255,255,255,0.5); }
.bub {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
}
.bub.user {
  align-self: flex-end;
  background: var(--accent-blue);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.bub.ai {
  align-self: flex-start;
  background: #2c2c2e;
  color: #fff;
  border-bottom-left-radius: 4px;
}
.bub.ai .fit-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.bub.ai .fit-grid .p {
  aspect-ratio: 1;
  border-radius: 8px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.bub.ai .fit-grid .p img { max-width: 80%; max-height: 80%; object-fit: contain; }
.bub.ai .ts { margin-top: 8px; font-size: 11px; color: rgba(255,255,255,0.45); }

.chat-input {
  margin-top: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #2c2c2e;
  border-radius: 9999px;
  padding: 6px 6px 6px 16px;
}
.chat-input .field { flex: 1; color: rgba(255,255,255,0.4); font-size: 13px; }
.chat-input .send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--fitted-gold);
  display: flex; align-items: center; justify-content: center;
  color: #000;
}

/* ---------- Closet / Neckworth phone mock ---------- */
.closet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
  margin-top: clamp(36px, 5vw, 56px);
}
@media (min-width: 900px) {
  .closet-grid { grid-template-columns: 0.95fr 1fr; }
}
.closet-grid.reverse {
  direction: ltr;
}
@media (min-width: 900px) {
  .closet-grid.reverse > :first-child { order: 2; }
}

.phone {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9 / 19;
  border-radius: 44px;
  background: #0a0a0a;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 8px 24px rgba(0,0,0,0.12), inset 0 0 0 2px #2a2a2a;
  position: relative;
}
.phone .screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.phone .notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 5;
}

/* Closet screen */
.scr {
  width: 100%; height: 100%;
  padding: 56px 16px 80px;
  display: flex; flex-direction: column;
  background: #fff;
  position: relative;
}
.scr-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.scr-head .title { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.scr-head .icons { display: flex; gap: 10px; color: var(--gray-600); }

.neck-card {
  background: linear-gradient(140deg, #1c1c1e 0%, #000 100%);
  color: #fff;
  border-radius: 16px;
  padding: 14px;
  margin: 6px 0 12px;
  position: relative;
  overflow: hidden;
}
.neck-card::before {
  content: ""; position: absolute;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,169,98,0.35), transparent 70%);
  top: -40px; right: -30px;
}
.neck-card .lbl { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.neck-card .val {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 32px;
  margin: 4px 0 2px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.neck-card .delta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px;
  color: var(--accent-green);
  font-weight: 600;
}
.neck-card .spark {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 80px; height: 36px;
}

.scr-chips {
  display: flex; gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 12px;
}
.scr-chip {
  flex: 0 0 auto;
  height: 26px;
  padding: 0 12px;
  border-radius: 9999px;
  background: var(--gray-100);
  font-size: 11px;
  font-weight: 600;
  display: flex; align-items: center;
  color: var(--gray-700);
}
.scr-chip.on { background: #000; color: #fff; }

.scr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  flex: 1;
  overflow: hidden;
}
.scr-cell {
  aspect-ratio: 1;
  background: #F6F6F6;
  border-radius: 10px;
  padding: 6px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.scr-cell img { max-width: 84%; max-height: 84%; object-fit: contain; }
.scr-cell .fav {
  position: absolute;
  top: 6px; right: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  color: var(--accent-pink);
}

.scr-tab {
  position: absolute;
  left: 8px; right: 8px;
  bottom: 12px;
  height: 56px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: space-around;
  color: var(--gray-500);
}
.scr-tab .t { font-size: 16px; }
.scr-tab .t.on { color: var(--fitted-black); }
.scr-tab .plus {
  width: 36px; height: 36px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Feature card pairs ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature.flip > :first-child { order: 2; }
}
.feature-text h3 {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-wrap: balance;
}
.feature-text h3 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--fitted-gold-deep);
}
.feature-text p {
  margin: 0 0 20px;
  color: var(--gray-600);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  max-width: 500px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}
.feature-list li::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--fitted-gold);
  flex: 0 0 16px;
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5l2.5 2.5L12 5.5' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Marketplace mock */
.market-mock {
  background: var(--gray-25);
  border-radius: var(--r-xl);
  padding: 20px;
  border: 1px solid var(--gray-150);
}
.market-mock .mhead {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.market-mock .mtitle { font-weight: 700; font-size: 14px; letter-spacing: -0.01em; }
.market-mock .msub { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }

.listing {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--gray-150);
  margin-bottom: 8px;
}
.listing .pthumb {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
}
.listing .pthumb img { max-width: 80%; max-height: 80%; object-fit: contain; }
.listing .body { flex: 1; min-width: 0; }
.listing .body .t { font-weight: 600; font-size: 14px; }
.listing .body .b { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.listing .price { font-weight: 700; font-size: 15px; }
.listing .price s { color: var(--gray-400); font-weight: 400; margin-right: 4px; font-size: 12px; }
.listing .badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.listing .badge.sold { background: #000; color: #fff; }
.listing .badge.bid { background: rgba(201,169,98,0.15); color: var(--fitted-gold-deep); }
.listing .badge.live { background: rgba(52, 199, 89, 0.15); color: #1e8443; }

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}
.platform-chip .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
}

/* ---------- FitPics community grid ---------- */
.community {
  background: var(--gray-25);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.fitpic-grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 12px;
}
@media (min-width: 720px) {
  .fitpic-grid { grid-template-columns: repeat(4, 1fr); }
}

.fitpic {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--gray-100);
}
.fitpic img { width: 100%; height: 100%; object-fit: cover; }
.fitpic.tall { grid-row: span 2; }
.fitpic .overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 14px 12px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-size: 12px;
}
.fitpic .overlay .u { font-weight: 600; }
.fitpic .overlay .meta { font-size: 11px; opacity: 0.85; margin-top: 1px; }
.fitpic .reactions {
  position: absolute;
  top: 10px; right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

/* ---------- Quote ---------- */
.quote-sec {
  padding: var(--section-y) 0;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-card .mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 80px;
  line-height: 0.5;
  color: var(--fitted-gold);
  margin-bottom: 20px;
}
.quote-card blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.quote-card cite {
  font-style: normal;
  font-size: 14px;
  color: var(--gray-500);
}
.quote-card cite strong { color: var(--fitted-black); font-weight: 600; margin-right: 6px; }

/* ---------- Big CTA ---------- */
.big-cta {
  background: var(--fitted-black);
  color: #fff;
  border-radius: clamp(24px, 4vw, 40px);
  margin: 0 var(--gutter);
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,98,0.18), transparent 60%);
  top: -300px; right: -200px;
  pointer-events: none;
}
.big-cta::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,98,0.12), transparent 60%);
  bottom: -250px; left: -150px;
  pointer-events: none;
}
.big-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  text-wrap: balance;
  position: relative;
}
.big-cta h2 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--fitted-gold);
}
.big-cta p {
  margin: 20px auto 0;
  max-width: 540px;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  position: relative;
}
.big-cta .ctas {
  margin: 36px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: clamp(36px, 5vw, 56px) auto 0;
}
.faq details {
  border-bottom: 1px solid var(--gray-150);
  padding: 20px 0;
  cursor: pointer;
}
.faq details:first-child { border-top: 1px solid var(--gray-150); }
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 20px);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  color: var(--gray-500);
  transition: transform 200ms;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p {
  margin: 12px 0 0;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
  max-width: 680px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--gray-150);
  padding: clamp(48px, 6vw, 72px) 0 32px;
  margin-top: var(--section-y);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}
.footer-brand .b1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.footer-brand .b1 img { width: 28px; height: 28px; border-radius: 7px; }
.footer-brand p { margin: 0; color: var(--gray-600); font-size: 14px; line-height: 1.5; }

.footer h5 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--gray-700); transition: color 150ms; }
.footer ul a:hover { color: var(--fitted-black); }

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-150);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-500);
  font-size: 12px;
}
@media (min-width: 700px) {
  .footer-bottom { flex-direction: row; }
}

/* ---------- Density modes ---------- */
.density-airy {
  --section-y: clamp(96px, 12vw, 160px);
}
.density-tight {
  --section-y: clamp(56px, 7vw, 96px);
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 768px) {
  /* Bigger nav wordmark on mobile (50% larger) */
  .nav-brand img.wordmark { height: 36px; }

  /* BuildCloset phone is taller than its square-ish stage on mobile,
     so the absolutely-positioned phone overflowed into the next
     (AskFitted) section. Give the stage enough height to contain it. */
  .bc-stage { aspect-ratio: auto; height: 620px; }

  /* Same fix for Fitted Social: phones overflowed the comm-stage,
     cutting the bottom bezel of the mockups. */
  .comm-stage { aspect-ratio: auto; height: 460px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
