/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #FFD600;
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --dark2: #222;
  --white: #ffffff;
  --gray-500: #888888;
  --gray-700: #444444;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 20px;
  font-weight: 700;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
}
.nav-inner { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
}
.nav-tagline {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--yellow);
  display: flex;
  align-items: center;
  padding: 100px 48px 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: -80px; bottom: 0;
  width: 55%;
  background: var(--black);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.hero-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #555;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 10vw, 148px);
  line-height: 0.88;
  color: var(--black);
  letter-spacing: -0.01em;
}
.hero-sub {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.65;
  color: #333;
  max-width: 400px;
  font-weight: 500;
}
.hero-cta {
  display: inline-block;
  margin-top: 36px;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border: 2px solid var(--black);
}
.hero-cta:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
}

.hero-mug-block { display: flex; align-items: center; justify-content: center; }
.hero-mug-stack { position: relative; width: 100%; max-width: 340px; }

.hero-mug-card {
  background: var(--dark);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 32px 28px 28px;
  color: var(--yellow);
}
.hmc-1 { transform: rotate(-2deg); margin-bottom: -24px; position: relative; z-index: 2; }
.hmc-2 { transform: rotate(2deg); position: relative; z-index: 1; margin-left: 24px; }

.hmc-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0.04em;
}
.hmc-sub {
  margin-top: 10px;
  font-size: 11px;
  color: #888;
  text-transform: lowercase;
  letter-spacing: 0.03em;
  font-style: italic;
}
.hero-mug-badge {
  margin-top: 16px;
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--black);
  padding: 100px 48px 60px;
  border-bottom: 1px solid #222;
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 24px;
  font-weight: 700;
}
.manifesto-statement {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 17px;
  line-height: 1.7;
  color: #aaa;
  max-width: 600px;
}

/* ── FEATURED SECTION ── */
.featured-section {
  background: var(--dark);
  padding: 80px 48px 96px;
}
.featured-inner { max-width: 1160px; margin: 0 auto; }
.featured-header { margin-bottom: 48px; }
.featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  color: var(--white);
  max-width: 700px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--black);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.fc-mug-visual {
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  text-align: center;
}
.fc-wfh .fc-mug-visual { background: #1a1a1a; border-bottom: 1px solid #2a2a2a; }
.fc-coffee .fc-mug-visual { background: #2a1a00; border-bottom: 1px solid #3a2a00; }
.fc-gym .fc-mug-visual { background: #0a1a0a; border-bottom: 1px solid #1a2a1a; }
.fc-gamer .fc-mug-visual { background: #160a2a; border-bottom: 1px solid #2a1a3a; }
.fc-mug-copy {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.fc-wfh .fc-mug-copy { color: var(--yellow); }
.fc-coffee .fc-mug-copy { color: #F5E0B0; }
.fc-gym .fc-mug-copy { color: #80FF80; }
.fc-gamer .fc-mug-copy { color: #bf7fff; }
.fc-mug-sub {
  margin-top: 8px;
  font-size: 10px;
  font-style: italic;
  opacity: 0.5;
  color: #fff;
  text-transform: lowercase;
  max-width: 140px;
  line-height: 1.4;
}
.fc-info { padding: 16px 18px 20px; }
.fc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.fc-persona {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.fc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fc-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--yellow);
}
.fc-btn {
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.fc-btn:hover { background: #fff; }
.featured-cta-wrap {
  text-align: center;
  margin-top: 48px;
}
.featured-see-all {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  padding: 14px 48px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.featured-see-all:hover { background: var(--yellow); color: var(--black); }

/* ── WHY STRIP ── */
.why-strip {
  background: var(--yellow);
  padding: 80px 48px;
}
.why-inner { max-width: 1160px; margin: 0 auto; }
.why-strip .section-label { color: #333; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 8px;
}
.why-icon { font-size: 36px; margin-bottom: 16px; line-height: 1; }
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.why-desc { font-size: 15px; line-height: 1.65; color: #333; }

/* ── QUOTE STRIP ── */
.quote-strip {
  background: var(--black);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.quote-strip-scroll {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.qs-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--yellow);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.qs-sep { font-size: 20px; opacity: 0.5; flex-shrink: 0; }

/* ── PERSONAS ── */
.personas-section {
  background: #111;
  padding: 80px 48px;
}
.personas-inner { max-width: 1160px; margin: 0 auto; }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.persona {
  background: var(--dark);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.persona:hover { border-color: var(--yellow); }
.persona-emoji { font-size: 32px; margin-bottom: 16px; line-height: 1; }
.persona-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.persona-desc { font-size: 14px; line-height: 1.6; color: #777; }

/* ── FAQ ── */
.faq-section {
  background: var(--dark);
  padding: 80px 48px;
}
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 48px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid #2a2a2a; }
.faq-item:first-child { border-top: 1px solid #2a2a2a; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  list-style: none;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #aaa;
  max-width: 680px;
}

/* ── EMAIL CAPTURE ── */
.email-capture {
  background: var(--yellow);
  padding: 80px 48px;
}
.email-capture-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ec-badge {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.ec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 16px;
}
.ec-sub {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.ec-input-row {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
}
.ec-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--black);
  border-radius: 6px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  outline: none;
}
.ec-input:focus { border-color: #333; }
.ec-submit {
  background: var(--black);
  color: var(--yellow);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 0 28px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.ec-submit:hover { background: #333; }
.ec-disclaimer { margin-top: 12px; font-size: 12px; color: #666; }
.ec-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
}
.ec-success-icon { font-size: 40px; }
.ec-success-msg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--black);
  letter-spacing: 0.03em;
}
.ec-error {
  margin-top: 12px;
  padding: 12px 20px;
  background: rgba(0,0,0,0.1);
  border-radius: 6px;
}
.ec-error-msg {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.ec-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── CLOSING ── */
.closing {
  background: var(--black);
  padding: 80px 48px 96px;
  border-top: 1px solid #1a1a1a;
}
.closing-inner { max-width: 860px; margin: 0 auto; }
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  color: var(--yellow);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: #888;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 36px;
}
.closing-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 48px;
  transition: background 0.15s;
}
.closing-cta:hover { background: #fff; }
.closing-guards { display: flex; gap: 32px; flex-wrap: wrap; }
.guard { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #666; }
.guard-icon-emoji { font-size: 16px; }

/* ── FOOTER ── */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 56px 48px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--yellow);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.footer-desc { font-size: 13px; color: #555; line-height: 1.6; max-width: 220px; }
.footer-social { margin-top: 16px; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #888;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}
.footer-social-link:hover { color: var(--yellow); border-color: var(--yellow); }
.footer-links { display: flex; gap: 56px; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 4px;
}
.footer-link { font-size: 13px; color: #777; text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 12px; color: #444; }
.footer-tagline-small { font-size: 12px; color: #333; font-style: italic; }

/* ── MUG MATCH QUIZ ── */
.mm-page { background: var(--black); min-height: 100vh; padding-top: 68px; }

.mm-hero {
  background: var(--yellow);
  padding: 64px 48px 56px;
  position: relative;
  overflow: hidden;
}
.mm-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--black);
}
.mm-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.mm-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #555;
  margin-bottom: 16px;
}
.mm-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.9;
  color: var(--black);
  margin-bottom: 20px;
}
.mm-sub {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.mm-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

/* Step indicator */
.mm-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.mm-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  transition: all 0.2s;
  flex-shrink: 0;
}
.mm-step.active {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255, 214, 0, 0.08);
}
.mm-step.done {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}
.mm-step-line {
  flex: 1;
  height: 2px;
  background: #222;
  max-width: 60px;
}

/* Question panels */
.mm-question { display: none; }
.mm-question.active { display: block; animation: mm-fade-in 0.3s ease; }
@keyframes mm-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.mm-q-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 12px;
}
.mm-q-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 32px;
}
.mm-q-sub-hint {
  font-size: 14px;
  color: #666;
  margin-top: -24px;
  margin-bottom: 28px;
}

/* Option grid */
.mm-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.mm-options-stacked {
  grid-template-columns: 1fr;
  max-width: 540px;
}
.mm-option {
  background: var(--dark);
  border: 2px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
}
.mm-option:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.mm-option.selected {
  border-color: var(--yellow);
  background: rgba(255, 214, 0, 0.06);
}
.mm-option-wide {
  flex-direction: row;
  text-align: left;
  padding: 20px 24px;
  align-items: center;
  gap: 16px;
}
.mm-opt-emoji { font-size: 28px; line-height: 1; flex-shrink: 0; }
.mm-opt-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  display: block;
}
.mm-opt-sub {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}
.mm-opt-text { display: flex; flex-direction: column; }

/* Email gate */
.mm-email-gate {
  background: var(--yellow);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}
.mm-eg-badge {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.mm-eg-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 16px;
}
.mm-eg-sub {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 32px;
}
.mm-eg-sub strong { color: var(--black); }
.mm-eg-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.mm-eg-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  outline: none;
}
.mm-eg-input:focus { border-color: #333; }
.mm-eg-submit {
  background: var(--black);
  color: var(--yellow);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 0 24px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.mm-eg-submit:hover { background: #222; }
.mm-eg-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.mm-eg-fine { margin-top: 14px; font-size: 12px; color: #666; }
.mm-eg-error {
  margin-top: 12px;
  background: rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  color: #222;
  font-weight: 600;
}

/* Results */
.mm-results-header { text-align: center; margin-bottom: 40px; }
.mm-r-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.mm-r-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 16px;
}
.mm-r-sub { font-size: 16px; color: #888; line-height: 1.6; }

.mm-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.mm-result-card {
  background: var(--dark);
  border: 2px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.18s;
}
.mm-result-card:hover { transform: translateY(-4px); }
.mm-result-top { border-color: var(--yellow); }
.mm-result-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.mm-result-visual {
  padding: 36px 20px 28px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-rv-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-align: center;
}
.mm-result-info { padding: 16px 18px 20px; }
.mm-result-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.mm-result-tagline { font-size: 12px; color: #666; line-height: 1.4; margin-bottom: 10px; }
.mm-result-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--yellow);
}

/* Share block */
.mm-share-block { margin-bottom: 40px; }
.mm-share-inner {
  background: var(--dark);
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
}
.mm-share-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.mm-share-copy { font-size: 16px; color: #aaa; line-height: 1.6; margin-bottom: 24px; }
.mm-share-copy strong { color: var(--white); }
.mm-share-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.mm-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.mm-share-tweet { background: var(--black); color: var(--yellow); border: 2px solid var(--yellow); }
.mm-share-tweet:hover { background: var(--yellow); color: var(--black); }
.mm-share-sms { background: #222; color: var(--white); border: 2px solid #333; }
.mm-share-sms:hover { border-color: var(--yellow); color: var(--yellow); }

/* Results CTA */
.mm-results-cta { text-align: center; margin-top: 16px; }
.mm-browse-all {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  padding: 14px 40px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.15s;
}
.mm-browse-all:hover { background: #fff; }
.mm-results-note { font-size: 13px; color: #555; line-height: 1.5; }

/* Quiz responsive */
@media (max-width: 640px) {
  .mm-hero { padding: 48px 24px 44px; }
  .mm-options { grid-template-columns: 1fr; }
  .mm-results-grid { grid-template-columns: 1fr; }
  .mm-email-gate { padding: 32px 20px; }
  .mm-eg-form { flex-direction: column; }
  .mm-eg-submit { padding: 16px; }
  .mm-steps { gap: 0; }
  .mm-step-line { max-width: 28px; }
}
@media (max-width: 480px) {
  .mm-share-btns { flex-direction: column; align-items: center; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { gap: 32px; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero::after { display: none; }
  .hero-mug-block { order: -1; }
  .hero-mug-stack { max-width: 280px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 48px; }
  .manifesto, .featured-section, .why-strip, .personas-section, .faq-section, .email-capture, .closing { padding: 60px 24px; }
  .footer { padding: 48px 24px 0; }
  .featured-grid { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; gap: 16px; }
  .ec-input-row { flex-direction: column; }
  .ec-submit { padding: 16px; }
  .closing-guards { flex-direction: column; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 24px; }
}
