/* GiveMeEmotion - Modern Editorial Redesign */

:root {
  --bg: #FAF7F0;
  --bg-warm: #F2EDE0;
  --ink: #0E0E0E;
  --ink-soft: #2A2A28;
  --muted: #6B6A66;
  --line: #E8E2D2;
  --line-strong: #1F1F1F;
  --paper: #FFFFFF;
  --yellow: #FFD60A;
  --yellow-deep: #F2C200;
  --ink-blue: #1A2EFF;
  --rose: #FF5B5B;
  --green: #1FB37A;

  --f-display: "Archivo", "Inter Tight", system-ui, sans-serif;
  --f-sans: "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ---------- Type ---------- */

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.h-display {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin: 0;
}

.h-section {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(40px, 6.5vw, 88px);
  margin: 0;
}

.h-card {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 22px;
  margin: 0;
}

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.muted { color: var(--muted); }
.mono { font-family: var(--f-mono); }

.outline-text {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}

/* ---------- Layout ---------- */

.shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 680px) {
  .shell { padding: 0 20px; }
}

.section {
  padding: 96px 0;
  position: relative;
}
.section--sm { padding: 64px 0; }
.section--lg { padding: 140px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--ink);
  color: var(--bg);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  font-family: var(--f-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.promo-bar__msg { display: flex; align-items: center; gap: 12px; }
.promo-bar__msg::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.18);
}
.promo-bar__timer { display: flex; align-items: center; gap: 6px; }
.promo-bar__digit {
  background: var(--yellow);
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  min-width: 30px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.promo-bar__sep { color: rgba(255,255,255,0.4); }
.promo-bar__cta {
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms;
}
.promo-bar__cta:hover { transform: translateY(-1px); }

@media (max-width: 880px) {
  .promo-bar { padding: 10px 16px; flex-wrap: wrap; gap: 10px; font-size: 10px; }
  .promo-bar__msg span:last-child { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}
.nav__logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  position: relative;
}
.nav__logo-mark::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  position: relative;
}
.nav__links a:hover::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--yellow);
}
.nav__cta {
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 150ms;
}
.nav__cta:hover { background: #1a1a1a; }
.nav__cta::after { content: "→"; }

@media (max-width: 880px) {
  .nav__inner { padding: 14px 20px; }
  .nav__links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform 120ms, background 150ms, color 150ms;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { background: var(--yellow-deep); }
.btn--ink { background: var(--ink); color: var(--bg); }
.btn--ink:hover { background: #1a1a1a; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--blue { background: var(--ink-blue); color: white; }
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--sq { border-radius: 4px; }
.btn--block { width: 100%; }
.btn--small { padding: 8px 14px; font-size: 12px; }

/* ---------- Pill ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper);
}
.pill--ink { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pill--yellow { background: var(--yellow); border-color: var(--yellow); }
.pill__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}

/* ---------- Inputs ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field__input,
.field__textarea {
  font-family: var(--f-sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 120ms, box-shadow 120ms;
}
.field__input:focus,
.field__textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.35);
}
.field__textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

/* ---------- HERO (dark with glows) ---------- */
/* Neon hero with before/after slider */
:root {
  --pink: #FF4FA3;
  --pink-soft: #FFB6D5;
  --violet: #7B2CFF;
  --hero-bg: #0B0712;
}
.hero {
  position: relative;
  background: var(--hero-bg);
  color: #fff;
  overflow: hidden;
  padding: 32px 0 0;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,79,163,0.18), transparent 55%),
    linear-gradient(180deg, rgba(123,44,255,0.05), transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero__noise {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' /></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.hero__glow--pink   { width: 760px; height: 760px; top: -160px; right: -120px; background: #FF4FA3; opacity: 0.55; }
.hero__glow--violet { width: 620px; height: 620px; left: -160px; top: 20%; background: #7B2CFF; opacity: 0.5; }
.hero__glow--gold   { width: 520px; height: 320px; left: 30%; bottom: -80px; background: #FFD66B; opacity: 0.28; filter: blur(140px); }

.hero__inner {
  position: relative;
  z-index: 3;
  padding-bottom: 48px;
}
.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px; gap: 16px; flex-wrap: wrap;
}
.hero__rating { display: flex; align-items: center; gap: 12px; }
.hero__rating-stars { color: var(--pink); font-size: 14px; letter-spacing: 2px; }
.hero__rating-text {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.hero__copy { position: relative; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  text-transform: uppercase;
}
.hero__word { display: block; color: #fff; }
.hero__word--neon {
  background: linear-gradient(95deg, #FFB6D5 0%, #FF4FA3 45%, #B26BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255,79,163,0.45));
}
.hero__lead {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 28px 0 32px;
  max-width: 46ch;
}
.hero__ctas {
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn--neon {
  background: linear-gradient(95deg, #FF4FA3, #B26BFF);
  color: #fff;
  border: none;
  box-shadow: 0 8px 32px rgba(255,79,163,0.45), 0 0 0 1px rgba(255,255,255,0.08) inset;
  position: relative; overflow: hidden;
}
.btn--neon:hover { box-shadow: 0 12px 44px rgba(255,79,163,0.6), 0 0 0 1px rgba(255,255,255,0.12) inset; transform: translateY(-1px); }
.btn__arrow { display: inline-block; transition: transform 200ms; margin-left: 6px; }
.btn--neon:hover .btn__arrow { transform: translateX(4px); }

.hero__link {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
}
.hero__link:hover { border-bottom-color: var(--pink); color: var(--pink-soft); }

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__metric { display: flex; flex-direction: column; gap: 6px; }
.hero__metric b {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.03em; color: #fff;
}
.hero__metric span {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.pill--onDark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}
.pill--onDark .pill__dot { background: var(--pink); box-shadow: 0 0 12px var(--pink); }

/* Visual / Before-After slider */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: visible;
}
.ba {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 20px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #1a0e1f;
  box-shadow:
    0 40px 80px -20px rgba(255,79,163,0.35),
    0 20px 40px -10px rgba(123,44,255,0.3),
    0 0 0 1px rgba(255,255,255,0.08);
}
.ba--dragging { cursor: grabbing; }
.ba__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba__before-clip {
  position: absolute; left: 0; top: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.ba__before-clip .ba__img--before {
  width: var(--ba-w, 100%);
  min-width: 100%;
}
.ba__handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 24px rgba(255,79,163,0.8), 0 0 40px rgba(255,79,163,0.5);
}
.ba__handle-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  grid-template-columns: 1fr 1fr;
  font-family: var(--f-display);
  font-size: 22px; font-weight: 700;
  color: var(--pink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.2);
}
.ba__handle-knob span:first-child { margin-right: 2px; }
.ba__handle-knob span:last-child { margin-left: 2px; }
.ba--dragging .ba__handle-knob { transform: translate(-50%, -50%) scale(0.92); }
.ba__label {
  position: absolute; top: 18px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em;
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.5);
  color: #fff;
  pointer-events: none;
}
.ba__label--before { left: 18px; border: 1px solid rgba(255,255,255,0.2); }
.ba__label--after  { right: 18px; background: var(--pink); color: #fff; box-shadow: 0 4px 16px rgba(255,79,163,0.5); }
.ba__hint {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.2em;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  color: #fff;
  pointer-events: none;
  animation: baHintPulse 2.4s ease-in-out infinite;
}
@keyframes baHintPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1; transform: translateX(-50%) translateY(-2px); }
}

/* trust strip (animated marquee) */
.hero__trust {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.hero__trust-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: heroTrust 38s linear infinite;
  padding-left: 36px;
}
.hero__trust-item {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.hero__trust-item::after {
  content: "★";
  color: var(--pink, #FF3B7A);
  font-size: 12px;
  margin-left: 18px;
}
@keyframes heroTrust { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .hero__layout { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { aspect-ratio: 4/5; max-width: 520px; margin: 0 auto; width: 100%; }
}
@media (max-width: 680px) {
  .hero__top { margin-bottom: 28px; }
  .hero__title { font-size: clamp(44px, 12vw, 84px); }
  .hero__metrics { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
  .hero__metric b { font-size: 20px; }
  .ba__handle-knob { width: 44px; height: 44px; font-size: 18px; }
  .ba__label { font-size: 10px; padding: 6px 10px; top: 12px; }
  .ba__label--before { left: 12px; }
  .ba__label--after { right: 12px; }
  .hero__trust-item { font-size: 14px; gap: 12px; }
  .hero__trust-track { gap: 24px; }
}

/* ---------- Trust marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.marquee--yellow { background: var(--yellow); color: var(--ink); }
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  animation: marquee 40s linear infinite;
  padding-right: 56px;
}
.marquee__item {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.marquee__item::after {
  content: "★";
  color: var(--yellow);
  font-size: 10px;
}
.marquee--yellow .marquee__item::after { color: var(--ink); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 180ms;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--paper); }
.step__num {
  font-family: var(--f-display);
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ink);
}
.step__num span { color: var(--yellow); -webkit-text-stroke: 1.5px var(--ink); }
.step__title { font-family: var(--f-display); font-weight: 700; font-size: 22px; margin: 0; letter-spacing: -0.01em; }
.step__body { color: var(--ink-soft); line-height: 1.55; font-size: 15px; }
.step__cta {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}
.step__cta::after { content: "→"; transition: transform 150ms; }
.step:hover .step__cta::after { transform: translateX(4px); }

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
}

/* ---------- Packages ---------- */
.pkg-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pkg-tab {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 150ms;
}
.pkg-tab:hover { border-color: var(--ink); }
.pkg-tab--active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.pkg {
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 150ms, transform 200ms;
}
.pkg:hover { border-color: var(--ink); }
.pkg--wide { grid-column: span 12; }
.pkg--accent { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.pkg--accent .pkg__price { color: var(--yellow); }

@media (max-width: 880px) {
  .pkg { grid-column: span 12; }
}

.pkg__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pkg__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pkg--accent .pkg__tag { color: rgba(255,255,255,0.6); }
.pkg__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.pkg__sub { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.pkg--accent .pkg__sub { color: rgba(255, 247, 240, 0.8); }
.pkg__price {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.pkg__price small {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.pkg--accent .pkg__price small { color: rgba(255,255,255,0.6); }
.pkg__features {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.pkg--accent .pkg__features { color: rgba(255, 247, 240, 0.85); }
.pkg__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.pkg__features li::before {
  content: "+";
  color: var(--yellow);
  font-weight: 700;
  display: inline-block;
  margin-top: 1px;
}
.pkg__badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Examples ---------- */
.examples {
  background: var(--ink);
  color: var(--bg);
}
.examples .h-section { color: var(--bg); }
.examples .eyebrow { color: rgba(255,255,255,0.7); }
.examples .eyebrow::before { background: rgba(255,255,255,0.7); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
}
.tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.06);
}
.tile:hover { transform: translateY(-4px); border-color: var(--yellow); }
.tile__media {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.tile:hover .tile__media img { transform: scale(1.04); }
.tile__split {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--yellow);
  opacity: 0.5;
  pointer-events: none;
}
.tile__chip {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--bg);
  backdrop-filter: blur(6px);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 4px;
  font-weight: 600;
}
.tile__chip--ba {
  top: auto; left: 12px;
  background: var(--yellow);
  color: var(--ink);
}
.tile__chip--before { top: 12px; }
.tile__chip--after { bottom: 50%; transform: translateY(50%); top: 50%; margin-top: 8px; background: var(--yellow); color: var(--ink); }
.tile__foot {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tile__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--bg);
}
.tile__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 32px;
  animation: fadeIn 200ms ease forwards;
}
.lightbox__panel {
  position: relative;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lightbox__close {
  position: absolute;
  top: -50px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--bg);
  font-size: 18px;
  cursor: pointer;
}

.songs {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.song {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.song:last-child { border-bottom: none; }
.song__play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform 150ms;
}
.song__play:hover { transform: scale(1.08); }
.song__play::before {
  content: "";
  width: 0; height: 0;
  border-left: 10px solid var(--ink);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}
.song__play.is-playing::before {
  border-left: none;
  width: 10px; height: 10px;
  background: var(--ink);
  margin-left: 0;
  border-top: none;
  border-bottom: none;
}
.song__meta { display: flex; flex-direction: column; gap: 2px; }
.song__title { font-weight: 600; font-size: 15px; }
.song__sub { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.song__waveform {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.song__waveform span {
  display: inline-block;
  width: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 1px;
}
.song.is-playing .song__waveform span:nth-child(odd) { background: var(--yellow); }
.song__time {
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 680px) {
  .song { grid-template-columns: auto 1fr auto; }
  .song__waveform { display: none; }
}

/* ---------- Testimonials ---------- */
.tlist { border-top: 1px solid var(--line-strong); }
.t {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.t__num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.t__quote {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.t__quote span { background: var(--yellow); padding: 0 4px; }
.t__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  text-align: right;
}
.t__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.t__service {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.t__stars { font-size: 12px; color: var(--yellow-deep); letter-spacing: 2px; }
@media (max-width: 680px) {
  .t { grid-template-columns: 1fr; gap: 12px; }
  .t__meta { align-items: flex-start; text-align: left; }
}

/* ---------- Terms accordion ---------- */
.terms-list {
  border-top: 1px solid var(--line-strong);
}
.term {
  border-bottom: 1px solid var(--line);
}
.term__head {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: padding 200ms;
}
.term__head:hover { padding-left: 8px; }
.term__num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  margin-right: 18px;
  min-width: 24px;
}
.term__title { flex: 1; }
.term__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition: background 150ms;
  flex-shrink: 0;
}
.term__icon::before, .term__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 200ms;
}
.term__icon::before { width: 12px; height: 1.5px; }
.term__icon::after { width: 1.5px; height: 12px; }
.term[open] .term__icon { background: var(--yellow); }
.term[open] .term__icon::after { transform: rotate(90deg); opacity: 0; }
.term__body {
  padding: 0 0 24px 42px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 70ch;
  font-size: 15px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand .nav__logo { color: var(--bg); }
.footer__tag {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,247,240,0.7);
  max-width: 36ch;
  line-height: 1.55;
}
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,247,240,0.5);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { text-decoration: none; font-size: 14px; transition: color 120ms; }
.footer__col a:hover { color: var(--yellow); }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,247,240,0.5);
}
.footer__socials { display: flex; gap: 8px; }
.footer__socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  text-decoration: none;
  transition: all 150ms;
}
.footer__socials a:hover {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

/* ---------- Order modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,0.6);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 24px;
  animation: fadeIn 200ms ease forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__panel {
  background: var(--bg);
  border-radius: 18px;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: slideUp 280ms cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__head {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1;
}
.modal__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all 150ms;
}
.modal__close:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.modal__body { padding: 32px; }

.steps-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.steps-bar__step {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.steps-bar__step.is-active { color: var(--ink); font-weight: 600; }
.steps-bar__step.is-done { color: var(--ink); }
.steps-bar__dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
}
.steps-bar__step.is-active .steps-bar__dot { background: var(--yellow); border-color: var(--ink); color: var(--ink); }
.steps-bar__step.is-done .steps-bar__dot { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.steps-bar__line { flex: 1; height: 1px; background: var(--line); }
.steps-bar__step.is-done + .steps-bar__line { background: var(--ink); }

.fieldset { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fieldset > .field { grid-column: span 2; }
.fieldset > .field--half { grid-column: span 1; }

.summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.summary__row--total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 4px;
}
.qty__btn {
  width: 28px; height: 28px;
  border: none;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: background 120ms;
}
.qty__btn:hover { background: var(--bg-warm); }
.qty__num {
  min-width: 28px;
  text-align: center;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 14px;
}

.modal__foot {
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg);
  position: sticky;
  bottom: 0;
}
.modal__foot-price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.modal__foot-price small { font-size: 12px; color: var(--muted); font-weight: 500; }

.success {
  text-align: center;
  padding: 24px 0;
}
.success__check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 40px;
  font-weight: 700;
}
.success__title {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.success__sub { color: var(--ink-soft); margin: 0 auto; max-width: 40ch; }
.success__order {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ---------- Misc ---------- */
.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}

/* ---------- Hamburger / Mobile drawer ---------- */
.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 200ms, opacity 150ms;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 16px 20px 24px;
  z-index: 100;
  animation: drawerIn 180ms ease-out;
}
@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav__drawer-links {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav__drawer-links li { border-bottom: 1px solid var(--line); }
.nav__drawer-links a {
  display: block;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.nav__drawer-cta { width: 100%; justify-content: center; }

/* ====================================================
   MOBILE - comprehensive responsive layout
   ==================================================== */
@media (max-width: 880px) {
  /* nav */
  .nav { position: relative; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__drawer { display: block; }
  .nav__inner { padding: 14px 20px; gap: 10px; }
  .nav__logo { font-size: 16px; }

  /* sections */
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .h-section { font-size: clamp(40px, 9vw, 64px) !important; }

  /* hero mobile */
  .hero { padding: 56px 0 0; }
  .hero__inner { padding-bottom: 48px; }
  .hero__title { font-size: clamp(56px, 14vw, 96px); }
  .hero__lead { font-size: 16px; margin: 24px 0 28px; }
  .hero__lead br { display: none; }
  .hero__ctas { gap: 16px; width: 100%; }
  .hero__ctas .btn { flex: 1; justify-content: center; min-width: 0; }
  .hero__stats {
    margin-top: 56px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .hero__stat-num { font-size: 24px; }
  .hero__stat-label { font-size: 9px; letter-spacing: 0.14em; }
  .hero__glow--blue { width: 480px; height: 480px; left: 0; }
  .hero__glow--green { width: 380px; height: 380px; opacity: 0.55; }
  .hero__glow--yellow { width: 480px; height: 240px; }

  /* steps already 1col via existing query */
  .step { padding: 32px 24px; }
  .step__num { font-size: 56px; }

  /* packages */
  .pkg-grid { gap: 14px; }
  .pkg { padding: 24px; }
  .pkg__title { font-size: 24px; }
  .pkg__price { font-size: 48px; }

  /* examples grid → 2 col → 1 col */
  .examples-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }

  /* testimonials → 1 col */
  .testimonial-grid, .testimonials__grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* footer → stacked */
  .footer__grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* terms */
  .terms__row { padding: 18px 0 !important; font-size: 14px !important; }

  /* modal */
  .modal { align-items: flex-end !important; }
  .modal__panel {
    max-width: 100% !important;
    width: 100% !important;
    max-height: 92vh !important;
    border-radius: 18px 18px 0 0 !important;
  }
  .modal__head, .modal__body, .modal__foot { padding-left: 20px !important; padding-right: 20px !important; }
  .modal__body { padding-top: 20px !important; padding-bottom: 20px !important; }
  .modal__steps { gap: 6px !important; }
  .modal__step-label { display: none !important; }
  .modal__foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .modal__foot .btn { width: 100%; justify-content: center; }

  /* buttons */
  .btn--lg { padding: 14px 22px; font-size: 14px; }

  /* promo bar */
  .promo-bar { font-size: 10px; }
  .promo-bar__cta { padding: 6px 10px; font-size: 10px; }

  /* shells already padded via 680 query but reaffirm */
  .shell { padding: 0 20px; }

  /* marquee */
  .marquee { padding: 14px 0; }
  .marquee__item { font-size: 12px; gap: 12px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(44px, 13vw, 72px); }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stat:nth-child(3) { grid-column: span 2; }
  .h-section { font-size: clamp(34px, 10vw, 52px) !important; }
  .pkg__price { font-size: 40px; }
  .nav__cta { display: none; }
}
