/* ─────────────────────────────────────────────────────────────
   Closet Mind — Landing Page
   Brand: Navy #1C2B6B · Pink #E8409A · Nunito · Fun & Friendly
───────────────────────────────────────────────────────────── */

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --navy:         #1C2B6B;
  --navy-deep:    #131E52;
  --navy-mid:     #2D3F8F;
  --pink:         #E8409A;
  --pink-hover:   #CC3088;
  --pink-light:   #FFF0F8;
  --pink-mid:     #F8C5E5;
  --white:        #ffffff;
  --bg-page:      #FAFBFF;
  --bg-section:   #F4F2FF;
  --border:       #E6E3F5;
  --text-dark:    #1C2B6B;
  --text-body:    #56608A;
  --text-muted:   #9BA3C8;

  --font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w:          1200px;
  --section-py:     112px;
  --container-px:   48px;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--font); }

/* ─── Utilities ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── Animations ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.features-grid .feature-card:nth-child(2).fade-up { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3).fade-up { transition-delay: 0.2s; }
.screenshots-grid .screenshot-item:nth-child(2).fade-up { transition-delay: 0.12s; }
.screenshots-grid .screenshot-item:nth-child(3).fade-up { transition-delay: 0.24s; }

/* ─── Nav ────────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(28, 43, 107, 0.07);
}
@supports (backdrop-filter: blur(12px)) {
  #nav.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.logo-link:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; }

.badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--pink-light);
  color: var(--pink);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--pink-mid);
}

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  padding: var(--section-py) 0 calc(var(--section-py) * 0.8);
  background: var(--white);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  border: 1.5px solid var(--pink-mid);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 28px;
}
.hero-tagline-dot {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-headline .pink { color: var(--pink); }

.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 420px;
  font-weight: 500;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 430px;
  margin-top: 28px;
}

.hero-proof-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  padding: 12px 10px;
}

.hero-proof-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  color: var(--pink);
  margin-bottom: 5px;
}

.hero-proof-item span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-body);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 64, 154, 0.35);
}
.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(232, 64, 154, 0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

.link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--navy); }
.link-arrow:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; }

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-wrap { position: relative; width: 280px; }

.phone-frame {
  width: 280px;
  /* exact ratio for 500×844 screenshots: 280 × (844/500) = 472.6px */
  height: 473px;
  border: 2.5px solid var(--navy);
  border-radius: 40px;
  overflow: hidden;
  background: var(--bg-page);
  box-shadow:
    0 32px 64px rgba(28, 43, 107, 0.18),
    0 8px 24px rgba(28, 43, 107, 0.1);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 5px;
  background: var(--navy);
  border-radius: 3px;
  z-index: 2;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 37px;
  display: block;
}

/* ─── Hero Phone — Closet Art ────────────────────────────── */
.phone-closet-ui {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: #FAFBFF;
  padding-top: 28px;
  overflow: hidden;
}

.pcu-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 16px 6px;
}
.pcu-title { font-size: 14px; font-weight: 900; color: var(--navy); letter-spacing: -0.01em; }
.pcu-count {
  font-size: 9px; font-weight: 700; color: var(--white);
  background: var(--pink); border-radius: 100px; padding: 2px 8px;
}

.pcu-filters {
  display: flex; gap: 5px; padding: 5px 16px 8px;
  overflow: hidden;
}
.pcu-chip {
  font-size: 8px; font-weight: 700; letter-spacing: 0.04em;
  padding: 3px 9px; border-radius: 100px; white-space: nowrap;
  border: 1.5px solid var(--border); color: var(--text-muted);
}
.pcu-chip.active {
  background: var(--pink); color: var(--white); border-color: var(--pink);
}

.pcu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 7px; padding: 6px 12px 12px;
  flex: 1; overflow: hidden;
}

/* Individual clothing card */
.cloth-card {
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: #f7f7f7;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(28,43,107,0.12);
}

.cloth-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


/* ─── Screenshots section frame — exact 500×844 ratio ─────── */

/* Hero badge */
.hero-badge {
  position: absolute;
  bottom: -18px; right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: center;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(28, 43, 107, 0.25);
}
.hero-badge strong {
  display: block;
  font-size: 2rem; font-weight: 900;
  line-height: 1; margin-bottom: 4px;
  color: var(--white);
}
.hero-badge span {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-suggestion-card {
  position: absolute;
  left: -72px;
  bottom: 72px;
  width: 170px;
  border: 1px solid rgba(28,43,107,0.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.96);
  padding: 14px 16px;
  box-shadow: 0 18px 36px rgba(28,43,107,0.16);
}

.hero-suggestion-card span,
.hero-suggestion-card small {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-muted);
}

.hero-suggestion-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin: 5px 0;
}

/* ─── Problema → Solução ─────────────────────────────────── */
.problema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.problema-col { padding: 88px var(--container-px); }
.col-problema { background: var(--bg-section); }
.col-solucao  { background: var(--navy); color: var(--white); }

.problema-col .eyebrow { margin-bottom: 32px; }
.col-solucao .eyebrow { color: var(--pink-mid); }

.problema-quote {
  font-size: clamp(1.4rem, 2.2vw, 1.875rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
  font-style: normal;
  color: var(--navy);
}
.col-solucao .problema-quote { color: var(--white); }

.problema-body {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-body);
  font-weight: 500;
  max-width: 400px;
}
.col-solucao .problema-body { color: rgba(255,255,255,0.6); }

/* ─── Features ───────────────────────────────────────────── */
#features {
  padding: var(--section-py) 0;
  background: var(--white);
}

.features-header { text-align: center; margin-bottom: 56px; }
.features-header .eyebrow { margin-bottom: 14px; }
.features-title {
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 44px 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: var(--pink-mid);
  box-shadow: 0 8px 32px rgba(232, 64, 154, 0.1);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 52px; height: 52px;
  background: var(--pink-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feature-icon { width: 26px; height: 26px; color: var(--pink); }

.feature-title {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9375rem; line-height: 1.8;
  color: var(--text-body); font-weight: 500;
}

/* ─── Screenshots ────────────────────────────────────────── */
#assistant-spotlight {
  padding: var(--section-py) var(--container-px);
  background: var(--bg-page);
}

.assistant-spotlight-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
  align-items: center;
}

.assistant-spotlight-copy .eyebrow {
  color: var(--pink);
  margin-bottom: 18px;
}

.assistant-spotlight-title {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}

.assistant-spotlight-sub {
  max-width: 460px;
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 16px;
}

.assistant-identity {
  max-width: 460px;
  border-left: 3px solid var(--pink);
  color: var(--navy);
  background: white;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.65;
  padding: 12px 14px;
  margin-bottom: 28px;
}

.assistant-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 430px;
}

.assistant-proof-list span {
  border: 1px solid var(--border);
  border-radius: 100px;
  background: white;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 12px;
}

.assistant-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.assistant-demo-chat,
.assistant-look-board {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 18px 48px rgba(28,43,107,0.1);
}

.assistant-demo-chat {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.assistant-demo-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.assistant-demo-head strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.assistant-demo-head span,
.assistant-demo-head small {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
}

.assistant-demo-head small {
  color: var(--pink);
  text-align: right;
}

.assistant-demo-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
}

.assistant-demo-thread p {
  max-width: 92%;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.assistant-demo-user {
  align-self: flex-end;
  background: var(--pink);
  color: white;
  border-bottom-right-radius: 5px;
}

.assistant-demo-ai {
  align-self: flex-start;
  background: var(--bg-section);
  color: var(--navy);
  border-bottom-left-radius: 5px;
}

.assistant-look-board {
  overflow: hidden;
}

.assistant-look-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  background: #f6f7fc;
}

.assistant-look-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  background: white;
}

.assistant-look-note {
  padding: 16px 18px 18px;
}

.assistant-look-note strong {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.assistant-look-note p {
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.6;
}

#screenshots {
  padding: var(--section-py) 0;
  background: var(--navy);
}

.screenshots-header { text-align: center; margin-bottom: 64px; }
.screenshots-header .eyebrow {
  color: var(--pink-mid);
  margin-bottom: 14px;
}
.screenshots-title {
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.journey-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: -30px auto 56px;
  max-width: 920px;
}

.journey-step {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  padding: 14px 14px 16px;
  text-align: left;
}

.journey-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.journey-step strong {
  display: block;
  color: white;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 3px;
}

.journey-step small {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: end;
}

.screenshot-item { text-align: center; }
.screenshot-item.featured { transform: translateY(-24px); }

.screenshot-frame {
  width: 100%; max-width: 190px;
  /* exact ratio for 500×844 screenshots */
  aspect-ratio: 500/844;
  margin: 0 auto 16px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-page);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.3s;
}
.screenshot-item.featured .screenshot-frame {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(232, 64, 154, 0.25),
              0 32px 56px rgba(0,0,0,0.35);
  max-width: 215px;
}

.screenshot-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 26px;
}

/* ─── Closet Screen Mockup (screenshot slot 1) ─────────────── */
/* Frame is 500:844 ratio → at max-width 190px → ~190×321px    */
.csm-root {
  width: 100%;
  align-self: stretch;
  display: flex; flex-direction: column;
  background: #FAFBFF;
  font-family: var(--font);
  overflow: hidden;
}

.csm-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 14px 2px;
  background: var(--navy);
  flex-shrink: 0;
}
.csm-time {
  font-size: 8px; font-weight: 700; color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}
.csm-signal svg { width: 14px; height: 8px; }

.csm-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px 8px;
  background: var(--navy);
  flex-shrink: 0;
}
.csm-header-title {
  font-size: 15px; font-weight: 900;
  color: white; letter-spacing: -0.02em;
}
.csm-header-badge {
  font-size: 7.5px; font-weight: 700;
  background: var(--pink); color: white;
  border-radius: 100px; padding: 2px 7px;
}

.csm-statscard {
  margin: 10px 10px 0;
  background: var(--navy-deep);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.csm-sc-left { display: flex; flex-direction: column; gap: 3px; }
.csm-sc-label {
  font-size: 7px; font-weight: 600;
  color: rgba(255,255,255,0.55); letter-spacing: 0.03em;
}
.csm-sc-value {
  font-size: 13px; font-weight: 900;
  color: white; letter-spacing: -0.02em;
}
.csm-sc-btn {
  font-family: var(--font);
  font-size: 7px; font-weight: 800;
  background: var(--pink); color: white;
  border: none; border-radius: 8px;
  padding: 5px 9px; cursor: default;
  letter-spacing: 0.03em;
}

.csm-filters {
  display: flex; gap: 5px;
  padding: 9px 10px 6px;
  overflow: hidden; flex-shrink: 0;
}
.csm-chip {
  font-size: 7px; font-weight: 700;
  padding: 2.5px 8px; border-radius: 100px;
  border: 1px solid rgba(28,43,107,0.2);
  color: var(--text-muted); white-space: nowrap;
  letter-spacing: 0.03em;
}
.csm-chip--active {
  background: var(--pink); color: white; border-color: var(--pink);
}

.csm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 5px; padding: 4px 10px 6px;
  flex: 1; overflow: hidden;
}
.csm-item {
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: #f0f0f0;
  overflow: hidden;
}
.csm-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

.csm-navbar {
  display: flex; align-items: center; justify-content: space-around;
  padding: 7px 6px 8px;
  background: white;
  border-top: 1px solid #eeeef8;
  flex-shrink: 0;
}
.csm-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: rgba(28,43,107,0.35);
}
.csm-nav-item svg { width: 14px; height: 14px; }
.csm-nav-item span { font-size: 5.5px; font-weight: 700; letter-spacing: 0.04em; }
.csm-nav-item--active { color: var(--pink); }
.csm-nav-cam { position: relative; margin-top: -14px; }
.csm-cam-btn {
  width: 32px; height: 32px;
  background: var(--pink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(232,64,154,0.45);
}
.csm-cam-btn svg { width: 14px; height: 14px; }

/* ─── Product Demo Screens ───────────────────────────────── */
.app-shot {
  width: 100%;
  height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  background: #FAFBFF;
  color: var(--navy);
  font-family: var(--font);
  overflow: hidden;
}

.app-shot-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 2px;
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.app-shot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px 8px;
  background: var(--navy);
  color: white;
  flex-shrink: 0;
}

.app-shot-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.app-shot-pill {
  border-radius: 100px;
  background: var(--pink);
  color: white;
  font-size: 7px;
  font-weight: 800;
  padding: 2px 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.assistant-thread {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px 10px 6px;
}

.chat-bubble {
  max-width: 86%;
  border-radius: 12px;
  padding: 7px 9px;
  font-size: 7.5px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}

.chat-bubble--user {
  align-self: flex-end;
  background: var(--pink);
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-bubble--ai {
  align-self: flex-start;
  background: white;
  color: var(--navy);
  border: 1px solid rgba(28,43,107,0.1);
  border-bottom-left-radius: 4px;
}

.outfit-card,
.opinion-card {
  margin: 4px 10px 0;
  background: white;
  border: 1px solid rgba(28,43,107,0.1);
  border-radius: 14px;
  padding: 9px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(28,43,107,0.08);
}

.outfit-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}

.outfit-card-head strong,
.opinion-card strong {
  font-size: 9px;
  font-weight: 900;
  color: var(--navy);
}

.outfit-card-head span {
  font-size: 6.5px;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.outfit-pieces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 7px;
}

.outfit-pieces img,
.look-photo-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  background: #f1f2f7;
}

.outfit-card p,
.opinion-card p {
  font-size: 7px;
  line-height: 1.5;
  color: var(--text-body);
  font-weight: 700;
}

.assistant-input {
  margin: auto 10px 10px;
  border: 1px solid rgba(28,43,107,0.14);
  border-radius: 100px;
  background: white;
  color: rgba(28,43,107,0.45);
  font-size: 7px;
  font-weight: 700;
  padding: 8px 10px;
  text-align: left;
}

.look-preview {
  position: relative;
  margin: 10px 10px 0;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(28,43,107,0.1);
  padding: 8px;
  box-shadow: 0 8px 20px rgba(28,43,107,0.08);
}

.look-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
}

.look-photo-grid img:first-child {
  grid-row: 1 / span 2;
  height: 100%;
}

.look-score {
  position: absolute;
  right: 12px;
  bottom: -14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  padding-top: 10px;
  box-shadow: 0 7px 16px rgba(232,64,154,0.35);
}

.look-score strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.look-score span {
  font-size: 6px;
  font-weight: 800;
}

.opinion-card {
  margin-top: 20px;
}

.opinion-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 8px 10px 0;
}

.opinion-list span {
  border-radius: 9px;
  background: rgba(232,64,154,0.08);
  color: var(--navy);
  font-size: 7px;
  font-weight: 800;
  line-height: 1.35;
  padding: 6px 8px;
  text-align: left;
}

/* ─── Screenshot placeholder (fallback) ───────────────────── */
.screenshot-placeholder {
  display: none;
  flex-direction: column;
  align-items: center; gap: 10px;
  padding: 20px;
}
.screenshot-placeholder p {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); text-align: center; line-height: 1.6;
}

.screenshot-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.screenshot-item.featured .screenshot-label { color: var(--pink-mid); }

/* ─── Brechó ─────────────────────────────────────────────── */
#brecho {
  padding: var(--section-py) var(--container-px);
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

#brecho::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,64,154,0.16) 0%, transparent 42%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
}

.brecho-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
  position: relative;
}

.brecho-headline {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.brecho-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 440px;
}

/* Outline variant CTA */
.btn-primary--outline {
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--white);
}

.btn-primary--outline:hover {
  background: var(--pink);
  color: var(--white);
}

.brecho-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.market-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 24px 54px rgba(0,0,0,0.22);
}

.market-card-media {
  position: relative;
  background: #f5f6fb;
  aspect-ratio: 1/1;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.market-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

.market-card-media span {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 100px;
  background: var(--pink);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
}

.market-card-body {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
}

.market-card-body strong,
.market-chat-head strong {
  display: block;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
}

.market-card-body small {
  display: block;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
  margin-top: 4px;
}

.market-price {
  flex-shrink: 0;
  color: var(--pink);
  font-size: 1rem;
  font-weight: 900;
}

.market-card-metrics {
  display: flex;
  gap: 6px;
  padding: 0 16px 16px;
  flex-wrap: wrap;
}

.market-card-metrics span {
  border-radius: 100px;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 0.66rem;
  font-weight: 900;
  padding: 5px 8px;
}

.market-chat-card {
  grid-column: 2;
  border-radius: var(--radius-md);
  background: white;
  padding: 16px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

.market-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.market-chat-head span {
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.market-chat-card p {
  color: var(--text-body);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 12px;
}

.market-chat-actions {
  display: flex;
  gap: 8px;
}

.market-chat-actions span {
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 8px 10px;
}

.market-chat-actions span:first-child {
  background: var(--pink-light);
  color: var(--pink);
}

/* Steps column */
.brecho-steps {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brecho-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}

.brecho-step:hover {
  background: rgba(232,64,154,0.1);
  border-color: rgba(232,64,154,0.25);
}

.brecho-step-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(232,64,154,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
}

.brecho-step-icon svg {
  width: 22px; height: 22px;
}

.brecho-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brecho-step-body strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}

.brecho-step-body span {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}

.brecho-connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(232,64,154,0.3), rgba(232,64,154,0.1));
  margin-left: 43px;
}

/* ─── Waitlist CTA ───────────────────────────────────────── */
#waitlist {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(232,64,154,0.08), transparent 48%);
  pointer-events: none;
}

.waitlist-inner {
  max-width: 560px; margin: 0 auto;
  padding: 0 var(--container-px);
  position: relative;
}

#waitlist .eyebrow { color: var(--pink-mid); margin-bottom: 24px; }

.waitlist-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

.waitlist-sub {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 500; margin-bottom: 12px;
}

.waitlist-count {
  font-size: 14px; font-weight: 700;
  color: var(--pink);
  margin-bottom: 44px;
}

.waitlist-form-wrap { margin-bottom: 20px; }

.form-row { display: flex; border-radius: var(--radius-sm); overflow: hidden; }

.form-input {
  flex: 1; min-width: 0;
  height: 54px; padding: 0 20px;
  font-family: var(--font); font-size: 0.9375rem; font-weight: 500;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--white); outline: none;
  transition: background 0.2s, border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

.btn-waitlist {
  height: 54px; padding: 0 28px;
  background: var(--pink); color: var(--white);
  font-family: var(--font); font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 0 0 0 transparent;
}
.btn-waitlist:hover { background: var(--pink-hover); }
.btn-waitlist:focus-visible { outline: 2px solid var(--pink-mid); outline-offset: 2px; }

.form-error {
  font-size: 12px; font-weight: 600;
  color: #F87171; margin-top: 10px; min-height: 18px; text-align: center;
}

.form-success {
  display: none; flex-direction: column;
  align-items: center; gap: 8px; padding: 32px;
  animation: fadeIn 0.4s ease forwards;
}
.form-success.visible { display: flex; }
.success-check {
  display: inline-flex; width: 56px; height: 56px;
  background: rgba(232,64,154,0.15);
  border: 1.5px solid var(--pink);
  border-radius: 50%; align-items: center; justify-content: center;
  font-size: 24px; color: var(--pink); margin-bottom: 8px;
}
.form-success strong { font-size: 1.25rem; font-weight: 800; color: var(--white); }
.form-success span { font-size: 0.9375rem; color: rgba(255,255,255,0.55); font-weight: 500; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.waitlist-note {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.28); margin-bottom: 8px;
}
.waitlist-privacy { font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 500; }
.waitlist-privacy a {
  color: rgba(255,255,255,0.38);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.waitlist-privacy a:hover { color: var(--pink-mid); }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.45; }
.footer-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-social {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-social:hover { color: var(--pink-mid); }
.footer-divider { color: rgba(255,255,255,0.12); font-size: 12px; }
.footer-privacy {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.footer-privacy:hover { color: rgba(255,255,255,0.5); }

/* ─── Responsive — Tablet ────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-py: 80px; --container-px: 32px; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .phone-wrap { width: 240px; }
  /* 240 × (844/500) = 405px */
  .phone-frame { width: 240px; height: 405px; }
  .hero-badge { bottom: -12px; right: -12px; }
  .hero-suggestion-card { left: -54px; bottom: 56px; }

  .problema-grid { grid-template-columns: 1fr; }
  .problema-col { padding: 64px var(--container-px); }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  .assistant-spotlight-inner { grid-template-columns: 1fr; gap: 42px; }
  .assistant-demo { max-width: 680px; }

  .journey-row { grid-template-columns: repeat(2, 1fr); margin-top: -36px; }
  .screenshots-grid { grid-template-columns: 1fr; gap: 24px; }
  .screenshot-item.featured { transform: none; }
  .screenshot-item.featured .screenshot-frame { max-width: 200px; }

  .brecho-inner { grid-template-columns: 1fr; gap: 48px; }
  .brecho-demo { max-width: 620px; }
  .brecho-headline { font-size: 2rem; }
}

/* ─── Responsive — Mobile ────────────────────────────────── */
@media (max-width: 600px) {
  :root { --section-py: 60px; --container-px: 20px; }

  .nav-container { padding: 0 20px; }
  .logo-img { height: 32px; }

  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-proof { grid-template-columns: 1fr; max-width: 260px; }
  .hero-proof-item { display: flex; align-items: center; gap: 12px; }
  .hero-proof-item strong { margin-bottom: 0; }

  .phone-wrap { width: 210px; }
  /* 210 × (844/500) = 354px */
  .phone-frame { width: 210px; height: 354px; }
  .hero-badge { bottom: -10px; right: -10px; padding: 10px 14px; }
  .hero-badge strong { font-size: 1.5rem; }
  .hero-suggestion-card {
    left: -26px;
    bottom: 52px;
    width: 142px;
    padding: 10px 12px;
  }
  .hero-suggestion-card strong { font-size: 0.78rem; }

  .assistant-demo {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .assistant-look-main { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 12px; }
  .assistant-demo-thread p { max-width: 100%; }

  .journey-row {
    grid-template-columns: 1fr;
    margin: -28px auto 36px;
  }
  .journey-step { padding: 12px 14px; }

  .brecho-demo {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .market-chat-card,
  .brecho-steps {
    grid-column: auto;
  }
  .market-card-media { aspect-ratio: 4/3; }

  .form-row { flex-direction: column; border-radius: var(--radius-sm); overflow: hidden; }
  .form-input {
    border-right: 1.5px solid rgba(255,255,255,0.14);
    border-bottom: none;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    width: 100%;
  }
  .btn-waitlist {
    height: 50px; width: 100%;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .waitlist-inner, .footer-inner { padding: 0 20px; }
}

/* ─── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
