/* ============================================================
   Ben Shoe — unofficial parody
   Direction A: premium dating app with questionable taste.
   ============================================================ */

:root {
  --bg:      #150e1b;
  --bg-alt:  #1c1322;
  --panel:   #24182c;
  --panel-2: #302038;
  --cream:   #fff7ed;
  --muted:   #c4b6c6;
  --hot:     #ff69a2;
  --pink:    #ffb0cf;
  --acid:    #dcff8d;
  --line:    #4a374d;
  --ink:     #1d1020;

  --display: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --r: 20px;
  --gutter: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--pink); text-underline-offset: 3px; }
a:hover { color: var(--acid); }

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: .94;
  letter-spacing: .005em;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

b, strong { color: #fff; font-weight: 600; }

.wrap { width: min(1120px, 100% - (var(--gutter) * 2)); margin-inline: auto; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--acid); color: var(--ink); padding: 12px 18px;
  font-weight: 700; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--acid); outline-offset: 3px; border-radius: 4px; }

/* ---------------- parody bar ---------------- */

.parody-bar {
  position: sticky; top: 0; z-index: 20;
  background: #0f0a14f2;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}
.bar-in {
  width: min(1120px, 100% - (var(--gutter) * 2));
  margin-inline: auto;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
}
.bar-in p { margin: 0; color: var(--muted); }
.bar-in b { color: var(--pink); font-weight: 700; }
.dot {
  flex: none; width: 8px; height: 8px; border-radius: 50%;
  background: var(--hot); box-shadow: 0 0 0 4px #ff69a233;
}

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(3rem, 8vw, 5.5rem);
  background: radial-gradient(ellipse at 82% 6%, #71304c 0%, #351c35 32%, #150e1b 70%);
}
.hero::after {
  content: "\2665";
  position: absolute; right: -3vw; top: -6vw;
  font-size: clamp(16rem, 38vw, 34rem); line-height: 1;
  color: #ff69a20d; pointer-events: none;
}
.hero-in {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--acid);
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(4.2rem, 19vw, 11rem);
  margin: 0 0 1.1rem;
  letter-spacing: -.01em;
}
h1 span { color: var(--hot); display: block; }

.lede {
  font-size: clamp(1.25rem, 4.2vw, 1.85rem);
  line-height: 1.25;
  margin: 0 0 .6rem;
  max-width: 20ch;
}
.lede em { color: var(--pink); font-style: italic; }

.sub { color: var(--muted); margin: 0 0 1.75rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------- buttons ---------------- */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--body);
  text-align: center;
}
.btn-hot   { background: var(--hot);  color: var(--ink); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--cream); }
.btn-hot:hover, .btn-cream:hover { background: var(--acid); color: var(--ink); }
.btn-ghost:hover { border-color: var(--acid); color: var(--acid); }
.wide { display: block; width: 100%; }
.wide-auto { margin-top: 1.5rem; }

/* ---------------- portrait ---------------- */

.portrait-slot { margin: 0; text-align: center; }
.portrait {
  display: block;
  width: min(250px, 64vw); aspect-ratio: 1; height: auto;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--cream);
  box-shadow: 0 10px 50px #2d102a88;
  transform: rotate(-6deg);
}
.portrait-slot figcaption {
  margin-top: 1.4rem; font-size: .85rem; color: var(--muted);
  max-width: 26ch; margin-inline: auto;
}

/* profile photo strip */
.shots { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 16px; }
.shots li {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
}
.shots img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.shots p { margin: 0; padding: 1rem 1.15rem; font-size: .95rem; color: var(--muted); }

/* ---------------- sections ---------------- */

.sec { padding: clamp(3rem, 9vw, 5.5rem) 0; border-top: 1px solid var(--line); }
.sec.alt { background: var(--bg-alt); }

.kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--acid); margin: 0 0 .75rem;
}

h2 { font-size: clamp(2.1rem, 8vw, 3.9rem); margin: 0 0 1.5rem; }
h2 .dim { color: var(--muted); }

.sec-intro { color: var(--muted); max-width: 62ch; margin-bottom: 2rem; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.25rem, 4vw, 1.9rem);
}

/* ---------------- profile ---------------- */

.profile-grid { display: grid; gap: 16px; }

.big-line {
  font-size: clamp(1.2rem, 4.4vw, 1.6rem);
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.looking { color: var(--pink); }

.stats { margin: 0; display: grid; gap: 0; align-content: start; }
.stats > div { padding: .85rem 0; border-top: 1px solid var(--line); }
.stats > div:first-child { border-top: 0; padding-top: 0; }
.stats > div:last-child { padding-bottom: 0; }
.stats dt {
  font-size: .68rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--acid); margin-bottom: .2rem;
}
.stats dd { margin: 0; }

/* ---------------- prompts ---------------- */

.prompts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.prompts .q {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--hot); margin-bottom: .5rem;
}
.prompts .a { font-size: 1.08rem; line-height: 1.45; margin: 0; }

/* ---------------- swipe ---------------- */

.swipe-deck { display: grid; justify-items: center; gap: 1.5rem; }

.swipe-card {
  width: min(360px, 100%);
  aspect-ratio: 3 / 4;
  perspective: 1000px;
}
.swipe-face {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: .3rem;
  position: relative;
  padding: 1.6rem;
  border-radius: 26px;
  background: linear-gradient(150deg, #ff90b8, #b14374 60%, #47233a);
  color: #fff;
  box-shadow: 0 20px 60px #0008;
  overflow: hidden;
}
.swipe-face.matched {
  background: linear-gradient(150deg, var(--acid), #86c93d 60%, #3f6117);
  color: var(--ink);
}
.swipe-badge {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  background: #fff; color: var(--ink);
  font-size: .62rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; padding: 6px 11px; border-radius: 40px;
}
.swipe-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* scrim so the name stays readable over the photo */
.swipe-face:not(.matched)::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, #1d1020e6 0%, #1d102066 26%, transparent 52%);
}
.swipe-name, .swipe-bio { position: relative; z-index: 1; }
.swipe-name { font-family: var(--display); font-size: 2rem; line-height: 1; margin: 0; text-transform: uppercase; }
.swipe-bio { margin: 0; font-size: .95rem; opacity: .9; }
.swipe-art {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-content: center; text-align: center;
  padding: 1.8rem; gap: .6rem;
}
.swipe-art .label {
  font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.swipe-art .title { font-family: var(--display); font-size: clamp(1.9rem, 8vw, 2.6rem); line-height: 1; text-transform: uppercase; }
.swipe-art .note { font-size: .92rem; }

.swipe-controls { display: flex; gap: 18px; }
.round {
  width: 66px; height: 66px; border-radius: 50%;
  border: 2px solid var(--line); background: var(--panel);
  color: var(--cream); font-size: 1.6rem; line-height: 1;
  cursor: pointer; display: grid; place-content: center;
  font-family: var(--body);
}
.round.like { border-color: var(--hot); color: var(--hot); }
.round.nope:hover { border-color: var(--cream); }
.round.like:hover { background: var(--hot); color: var(--ink); }

.hint { font-size: .82rem; color: var(--muted); margin: 0; }

/* ---------------- quiz ---------------- */

.quiz { min-height: 260px; }
.quiz .step {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--acid); margin-bottom: .6rem;
}
.quiz h3 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.5rem, 5.5vw, 2.1rem); line-height: 1.05;
  margin: 0 0 1.25rem;
}
.opts { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.opt {
  width: 100%; text-align: left;
  padding: 14px 18px; border-radius: 14px;
  background: var(--panel-2); border: 1px solid var(--line);
  color: var(--cream); font-size: 1rem; font-family: var(--body);
  cursor: pointer;
}
.opt:hover { border-color: var(--hot); color: #fff; }

.result .label {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--acid); margin-bottom: .5rem;
}
.result .name {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 8vw, 3rem); line-height: 1; color: var(--hot);
  margin: 0 0 1rem;
}

/* ---------------- shoe drop ---------------- */

.drop { background: var(--bg-alt); }
.drop-title { font-size: clamp(2.6rem, 13vw, 6.5rem); color: var(--pink); margin-bottom: .4rem; }
.drop-sub { font-size: clamp(1.1rem, 3.6vw, 1.5rem); color: var(--cream); margin-bottom: 2rem; }
.drop-grid { display: grid; gap: 16px; }

.pills { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pills li {
  padding: 7px 13px; border-radius: 100px;
  background: var(--panel-2); font-size: .82rem; color: var(--pink);
}
.price { font-family: var(--display); font-size: clamp(2.4rem, 9vw, 3.4rem); line-height: 1; margin: 0 0 .4rem; }
.price span { font-family: var(--body); font-size: .9rem; color: var(--muted); font-weight: 400; }
.ship { color: var(--muted); font-size: .92rem; }
.cart-note { margin-top: 1rem; color: var(--acid); font-size: .95rem; }
.cart-note:empty { margin-top: 0; }

.tease { font-size: 1.15rem; margin-bottom: 1.25rem; }
.realshoe {
  margin: 1.25rem 0 0; border-radius: 14px; overflow: hidden;
  background: var(--panel-2);
}
.realshoe img { display: block; width: 100%; height: auto; }
.realshoe figcaption {
  padding: .85rem 1rem; font-size: .9rem; color: var(--acid); font-weight: 600;
}
.pics { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 10px; }
.pics li {
  display: grid; grid-template-columns: 3rem 1fr; gap: 14px; align-items: center;
  padding: 12px 14px; background: var(--panel-2); border-radius: 14px;
}
.pics .em { font-size: 2rem; line-height: 1; text-align: center; }
.pics .cap { font-size: .92rem; color: var(--muted); }
.pics .cap b { display: block; color: var(--cream); font-weight: 600; }

/* ---------------- real ---------------- */

.real { background: var(--cream); color: var(--ink); border-top: 0; }
.real h2 { color: var(--ink); }
.real .kicker { color: #9d2358; }
.real .sec-intro { color: #5c4a58; }
.real .sec-intro b { color: var(--ink); }
.real-list { margin: 0; padding-left: 1.2rem; max-width: 62ch; }
.real-list li { margin: .6rem 0; color: #5c4a58; }
.real-list b { color: var(--ink); }
.real .btn-cream { background: var(--ink); color: var(--cream); }
.real .btn-cream:hover { background: #9d2358; color: #fff; }

/* ---------------- faq ---------------- */

.faq { display: grid; gap: 10px; }
details {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 2px 18px;
}
details[open] { border-color: var(--hot); }
summary {
  cursor: pointer; padding: 14px 0; font-weight: 600; font-size: 1.05rem;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--hot); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "\2212"; }
details p { padding: 0 0 14px; color: var(--pink); margin: 0; }

.fineprint { margin-top: 1.5rem; font-size: .85rem; color: var(--muted); }

/* ---------------- footer ---------------- */

footer { padding: clamp(3rem, 8vw, 4.5rem) 0 4rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.foot-big {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.9rem, 7vw, 3.4rem); line-height: 1;
  color: var(--hot); margin-bottom: 1.5rem;
}
footer p { max-width: 68ch; }
.foot-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 1.5rem; }

/* ---------------- wider screens ---------------- */

@media (min-width: 760px) {
  .hero-in { grid-template-columns: 1.35fr .65fr; }
  .profile-grid { grid-template-columns: 1.15fr .85fr; align-items: start; }
  .prompts { grid-template-columns: repeat(2, 1fr); }
  .shots { grid-template-columns: 1fr 1fr; }
  .drop-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .pics { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1020px) {
  .prompts { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------- motion ---------------- */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  .btn, .round, .opt, .portrait { transition: all .2s ease; }
  .round:active { transform: scale(.92); }
  .swipe-face { transition: transform .45s cubic-bezier(.2,.7,.3,1), opacity .45s ease; }
  .swipe-face.out-left  { transform: translateX(-130%) rotate(-22deg); opacity: 0; }
  .swipe-face.out-right { transform: translateX(130%) rotate(22deg); opacity: 0; }
  .swipe-face.in { animation: pop .4s cubic-bezier(.2,.8,.3,1); }
  @keyframes pop { from { transform: scale(.9) translateY(14px); opacity: 0; } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .swipe-face.out-left, .swipe-face.out-right { opacity: 0; }
}
