/* ── Tokens ─────────────────────────────────────── */
:root{
  --bg: #0A0A0A;
  --surface: #161616;
  --surface-2: #1F1F1F;
  --border: #2A2A2A;
  --pink: #FF2070;
  --pink-light: #FF6BA8;
  --text: #FFFFFF;
  --body-text: #CCCCCC;
  --muted: #888888;
  --strike: #555555;
  --gradient: linear-gradient(90deg, #FF2070, #FF6BA8);
  --glow: 0 0 24px rgba(255,32,112,0.35);
  --glow-strong: 0 0 32px rgba(255,32,112,0.55), 0 0 64px rgba(255,32,112,0.25);
  --hover-glow: 0 0 18px rgba(255,32,112,0.45);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body{
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01';
  overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
input, select, textarea { font-family: inherit; }

/* ── Stage / canvas wrap ────────────────────────── */
.stage{
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px 16px;
}
.stage--device{ padding: 32px 16px; }

.canvas{
  width: 100%;
  max-width: 430px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* ── Grain overlay ──────────────────────────────── */
.grain{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── Typography helpers ─────────────────────────── */
.font-display{ font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 400; }
.font-body{ font-family: 'Outfit', system-ui, sans-serif; }

/* ── Buttons ────────────────────────────────────── */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: box-shadow .25s ease, transform .15s ease, background .25s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary{
  background: var(--gradient);
  box-shadow: var(--glow);
}
.btn--primary:hover{ box-shadow: var(--hover-glow), 0 0 36px rgba(255,32,112,0.55); }
.btn--primary:active{ transform: scale(0.985); }

.btn--secondary{
  background: transparent;
  border: 1px solid var(--pink);
}
.btn--secondary:hover{ box-shadow: var(--hover-glow); background: rgba(255,32,112,0.06); }

.btn--full{ width: 100%; padding: 16px 24px; }

/* ── Card ───────────────────────────────────────── */
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

/* ── Placeholder imagery ────────────────────────── */
.ph{
  position: relative;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(255,32,112,0.45) 0%, transparent 55%),
    radial-gradient(100% 70% at 80% 90%, rgba(255,107,168,0.35) 0%, transparent 60%),
    linear-gradient(135deg, #1a0810 0%, #0A0A0A 60%, #18030c 100%);
  overflow: hidden;
}
.ph::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px);
}
.ph__label{
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Verified badge ─────────────────────────────── */
.badge-verified{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255,32,112,0.5);
}

/* ── Pill ───────────────────────────────────────── */
.pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pill--pink{ background: var(--pink); color: #fff; }
.pill--pink-outline{ background: transparent; border: 1px solid var(--pink); color: var(--pink); }

/* ── Stats bar over cover ───────────────────────── */
.stats{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
.stats span{ display: inline-flex; align-items: center; gap: 4px; }
.stats svg{ width: 14px; height: 14px; }
.stats .sep{ width: 2px; height: 2px; border-radius: 50%; background: rgba(255,255,255,0.4); }

/* ── Avatar ─────────────────────────────────────── */
.avatar{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  background:
    url('assets/avatar.jpg') center/cover no-repeat,
    radial-gradient(circle at 35% 30%, #ff86b8 0%, #ff2070 50%, #6b0a2c 100%);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.avatar::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(0,0,0,0.4) 0%, transparent 50%);
}

/* ── Countdown blocks ───────────────────────────── */
.cd{
  display: flex;
  gap: 8px;
}
.cd__block{
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.cd__num{
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.cd__lbl{
  display: block;
  font-size: 10px;
  color: var(--muted);
  text-transform: lowercase;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* ── Plan card ──────────────────────────────────── */
.plan{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255,32,112,0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.plan--popular{
  border-color: rgba(255,32,112,0.55);
  background: rgba(255,32,112,0.06);
  box-shadow: 0 0 0 1px rgba(255,32,112,0.15) inset;
}
.plan__badges{ display: flex; gap: 6px; flex-wrap: wrap; }
.plan__strike{
  color: var(--strike);
  text-decoration: line-through;
  font-size: 13px;
}
.plan__price{
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}
.plan__price small{ font-size: 13px; color: var(--muted); font-weight: 400; }

/* ── Order bumps ────────────────────────────────── */
.bump{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  user-select: none;
}
.bump__check{
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}
.bump[data-on="1"] .bump__check{
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 12px rgba(255,32,112,0.5);
}
.bump__check svg{ opacity: 0; transform: scale(0.5); transition: all .15s ease; }
.bump[data-on="1"] .bump__check svg{ opacity: 1; transform: scale(1); }
.bump__title{ flex: 1; font-size: 13px; color: var(--body-text); }
.bump__price{ font-size: 13px; color: var(--text); font-weight: 500; }

/* ── FAQ ────────────────────────────────────────── */
.faq__item{
  border-top: 1px solid var(--border);
}
.faq__item:last-child{ border-bottom: 1px solid var(--border); }
.faq__head{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  gap: 16px;
}
.faq__icon{
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  color: var(--pink);
}
.faq__icon::before, .faq__icon::after{
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transition: transform .25s ease;
}
.faq__icon::before{ width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after{ width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq__item[data-open="1"] .faq__icon::after{ transform: translate(-50%, -50%) scaleY(0); }

.faq__body{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq__item[data-open="1"] .faq__body{ grid-template-rows: 1fr; }
.faq__body > div{ overflow: hidden; }
.faq__body p{
  margin: 0 0 16px 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Section spacing ────────────────────────────── */
.section{ padding: 24px 16px; position: relative; z-index: 2; }
.section__title{
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.section__title--center{ text-align: center; }
.section__title--small{ font-size: 16px; }

/* ── What's inside list ─────────────────────────── */
.bullets{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.bullets li{
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body-text);
}
.bullets .emoji{ font-size: 18px; line-height: 1.2; flex-shrink: 0; width: 24px; text-align: center; }

/* ── Final CTA ──────────────────────────────────── */
.final{
  position: relative;
  padding: 48px 16px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(255,32,112,0.16) 0%, transparent 60%),
    var(--bg);
}
.final__avatar{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  margin: 0 auto 16px;
  background:
    url('assets/avatar.jpg') center/cover no-repeat,
    radial-gradient(circle at 35% 30%, #ff86b8 0%, #ff2070 50%, #6b0a2c 100%);
  box-shadow: var(--glow);
}
.final__title{
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.final__sub{
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
}

/* ── Footer ─────────────────────────────────────── */
.footer{
  border-top: 1px solid var(--border);
  padding: 24px 16px 32px;
  text-align: center;
  font-size: 11px;
  color: var(--strike);
  line-height: 1.6;
  background: var(--bg);
}
.footer__links{ display: flex; gap: 8px; justify-content: center; margin-top: 8px; flex-wrap: wrap; }
.footer__links a{ color: var(--muted); text-decoration: none; transition: color .2s ease; }
.footer__links a:hover{ color: var(--pink); }
.footer__links .sep{ color: var(--strike); }

/* ── Age gate modal ─────────────────────────────── */
.age{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: fadeIn .35s ease;
}
.age__card{
  max-width: 380px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}
.age__icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #fff;
  box-shadow: var(--glow);
}
.age__title{
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 24px;
}
.age__btns{ display: flex; flex-direction: column; gap: 10px; }
.age__btn-out{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 12px;
  border-radius: 999px;
  font-size: 14px;
  transition: all .2s ease;
}
.age__btn-out:hover{ border-color: var(--muted); color: var(--text); }

@keyframes fadeIn{ from{ opacity: 0; } to{ opacity: 1; } }

/* ── Video teaser ───────────────────────────────── */
.video{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  background: #0a0410;
}
.video__media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(6px);
  transform: scale(1.15);
  object-fit: cover;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 40%, rgba(255,107,168,0.6) 0%, transparent 60%),
    radial-gradient(80% 60% at 70% 70%, rgba(255,32,112,0.4) 0%, transparent 60%),
    linear-gradient(180deg, #2a0916 0%, #0a0410 100%);
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift{
  0%   { transform: scale(1.15) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1%); }
}
.video__darken{
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
}
.video__fade{
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, var(--bg) 12%, transparent 45%, transparent 88%, var(--bg) 100%);
}
.video__watermark{
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  mix-blend-mode: overlay;
  text-shadow:
    0 0 1px rgba(255,255,255,0.4),
    0 1px 2px rgba(0,0,0,0.35);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.video__content{
  position: absolute;
  left: 0; right: 0; bottom: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  gap: 10px;
}
.video__lock{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,32,112,0.15);
  border: 1px solid rgba(255,32,112,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  box-shadow: var(--glow);
}
.video__head{ font-weight: 500; font-size: 16px; color: #fff; margin: 0; }
.video__sub{ font-size: 13px; color: var(--muted); margin: 0 0 12px; }

/* ── Bio expand ─────────────────────────────────── */
.bio{
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-text);
  margin: 12px 0 0;
  white-space: pre-line;
}
.bio--clamped{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bio__more{
  display: inline;
  color: var(--pink);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  margin-top: 4px;
}

/* ── Header ─────────────────────────────────────── */
.header{ position: relative; }
.header__cover{
  width: 100%;
  height: 200px;
  background:
    linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.85) 100%),
    url('assets/banner.jpg') center 30%/cover no-repeat,
    #1a0810;
}
.header__cover .ph__label{ display: none; }
.header__cover::after{ display: none; }
.header__stats{
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}
.header__avatar-wrap{
  position: relative;
  margin: -36px 16px 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.header__info{
  padding: 12px 16px 0;
}
.header__name{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 24px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 6px;
  word-break: break-word;
}
.header__name > .badge-verified{
  flex-shrink: 0;
}
.header__handle{
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  display: block;
  position: relative;
  z-index: 1;
}
.header__loc{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── Total bar ──────────────────────────────────── */
.total{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.total__lbl{ font-size: 12px; color: var(--muted); }
.total__val{
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* ── Helper ─────────────────────────────────────── */
.scarcity{
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scarcity__dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.5; transform: scale(0.8); }
}

/* ── Section spacer / sparkle title ─────────────── */
.spark{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── View toggle (top-right) ────────────────────── */
.view-toggle{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 90;
  display: flex;
  gap: 0;
  background: rgba(22,22,22,0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
}
.view-toggle button{
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .2s ease;
}
.view-toggle button[data-active="1"]{
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

/* ── Glow strength variants ─────────────────────── */
.canvas[data-glow="subtle"]{ --glow: 0 0 14px rgba(255,32,112,0.2); --hover-glow: 0 0 12px rgba(255,32,112,0.3); }
.canvas[data-glow="strong"]{ --glow: 0 0 32px rgba(255,32,112,0.55), 0 0 64px rgba(255,32,112,0.25); --hover-glow: 0 0 28px rgba(255,32,112,0.7); }

/* iOS frame override: device frame always in dark mode */
.device-bg{ background: #0A0A0A; }

/* iOS frame outer bezel — make it visible against dark page bg */
.device-shell > div:first-child{
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 2px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.04) !important;
}

/* In-device overlay shell: overlays sit on top of the iPhone bezel
   and scope to the 402x852 device viewport. */
.canvas{ position: relative; }
.device-shell{
  position: relative;
  width: 402px;
  height: 852px;
}
.device-overlay{
  position: absolute;
  inset: 0;
  border-radius: 48px;
  overflow: hidden;
  pointer-events: none;
  z-index: 100;
}
.device-overlay > *{ pointer-events: auto; }
.device-overlay .drawer-backdrop{
  position: absolute;
  inset: 0;
}
.device-overlay .drawer{
  position: absolute !important;
  bottom: 0;
  top: auto;
  left: 0 !important;
  right: 0;
  width: 100% !important;
  max-width: none !important;
  transform: translateY(100%) !important;
  border-radius: 24px 24px 0 0;
  max-height: 90%;
}
.device-overlay .drawer[data-open="1"]{ transform: translateY(0) !important; }
.device-overlay .drawer-backdrop{ position: absolute !important; }
