/* PureForm AI — red vertical (no TIWY brand) */
:root {
  --bg: #07060a;
  --card: rgba(22, 14, 18, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --line2: rgba(255, 255, 255, 0.14);
  --text: #f6f2f3;
  --muted: #9a8b90;
  --accent: #ff3b4a;
  --accent2: #ff6b7a;
  --accent-dim: rgba(255, 59, 74, 0.14);
  --ok: #34d399;
  --font: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --radius: 16px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.pf-locked, html.pf-locked body { overflow: hidden; height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 15.5px;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(255,59,74,.14), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 40%, rgba(255,80,100,.05), transparent 50%);
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1000px, calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 1; }
.center { text-align: center; }
.narrow { max-width: 520px; margin-left: auto; margin-right: auto; }
/* block + text centered (lead had max-width and sat left) */
.center-block {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}
.center .lead,
.wrap.center .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.muted { color: var(--muted); }
.tiny { font-size: 13px; }
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

/* —— Age gate —— */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(255,59,74,.18), transparent 55%),
    rgba(5, 4, 8, 0.97);
  backdrop-filter: blur(16px);
}
.age-gate[hidden] { display: none !important; }
.age-box {
  width: min(420px, 100%);
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: 28px 24px 22px;
  text-align: center;
}
.age-box .logo-mark {
  width: 56px; height: 56px; border-radius: 16px;
  object-fit: cover; margin: 0 auto 14px;
  border: 2px solid rgba(255,59,74,.4);
}
.age-box h1 {
  font-size: 22px; margin: 0 0 8px; letter-spacing: -0.03em;
  max-width: none;
}
.age-box p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.age-check {
  display: flex; align-items: flex-start; gap: 10px;
  text-align: left; font-size: 13px; color: var(--muted);
  margin: 0 0 12px; cursor: pointer;
}
.age-check input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }
.age-box .btn { width: 100%; margin-top: 6px; }
.age-box .btn:disabled { opacity: 0.4; cursor: not-allowed; }
.age-leave {
  display: block; margin-top: 14px; font-size: 13px; color: var(--muted);
}

/* —— chrome —— */
.site-root[hidden] { display: none !important; }
.top {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 16px;
  padding: calc(10px + var(--safe-t)) 20px 10px;
  background: rgba(7, 6, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-weight: 700; font-size: 15px; color: var(--text); text-decoration: none !important;
  letter-spacing: -0.02em;
}
.logo em { font-style: normal; color: var(--accent); font-weight: 600; }
.top-nav { display: flex; gap: 14px; margin-left: auto; margin-right: 8px; }
.top-nav a { color: var(--muted); font-size: 13px; text-decoration: none; }
.top-nav a:hover { color: var(--text); }
@media (max-width: 640px) { .top-nav { display: none; } }

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.04);
  margin-right: 8px;
  flex-shrink: 0;
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-on {
  color: #fff;
  background: linear-gradient(180deg, #ff5a66, #e11d2e);
}
.lang-switch-gate {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
}
.age-box { position: relative; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,0.06);
  color: var(--text); font: inherit; font-weight: 510;
  cursor: pointer; text-decoration: none !important;
}
.btn:hover { background: rgba(255,255,255,0.1); }
.btn-primary {
  background: linear-gradient(180deg, #ff5a66, #e11d2e);
  border-color: rgba(255,255,255,0.18);
  color: #fff; font-weight: 650;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.btn-row.center { justify-content: center; }

.sec { padding: 64px 0; position: relative; z-index: 1; }
.sec.alt { background: rgba(255,255,255,0.015); }
.sec.hero { padding: 40px 0 64px; min-height: calc(88dvh - 60px); display: flex; align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 12.5px; text-transform: uppercase;
  letter-spacing: 0.06em; margin: 0 0 12px; font-weight: 500;
}
.kicker i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  display: inline-block;
}
h1 {
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.12; letter-spacing: -0.03em;
  margin: 0 0 16px; font-weight: 700; max-width: 16ch;
}
h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  letter-spacing: -0.03em; margin: 0 0 12px; font-weight: 700;
}
h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }
.grad {
  background: linear-gradient(120deg, #ff9aa3, #ff3b4a 45%, #ff6b7a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead {
  color: var(--muted);
  font-size: 16.5px;
  margin: 0 0 8px;
  max-width: 48ch;
}
.lead.narrow { max-width: 36rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-circle-wrap {
  position: relative;
  width: min(280px, 72vw);
  height: min(280px, 72vw);
}
.hero-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #1a1014;
  border: 3px solid rgba(255,59,74,.45);
  box-shadow: 0 20px 50px rgba(0,0,0,.55), 0 0 40px rgba(255,59,74,.15);
}
.hero-ring-face {
  position: absolute;
  right: -6px; bottom: -4px;
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.hero-bubble {
  max-width: 260px;
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  text-align: left;
}

/* Presence strip */
.presence-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 1000px) {
  .presence-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .presence-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .presence-card {
    flex: 0 0 148px;
    scroll-snap-align: start;
  }
}
.presence-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, transform .15s;
}
.presence-card:hover,
.presence-card.is-on {
  border-color: rgba(255,59,74,.5);
  transform: translateY(-2px);
}
.presence-av {
  width: 96px; height: 96px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,59,74,.35);
  background: #120a0c;
}
.presence-av video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.presence-card h3 {
  font-size: 13px; margin: 0 0 6px; font-weight: 600;
}
.presence-card .quote {
  margin: 0;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.35;
  font-style: italic;
}
.hero-meta {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-wrap: wrap; gap: 16px;
  color: var(--muted); font-size: 14px;
}
.hero-meta b { color: var(--text); }
.hero-usp {
  margin: 14px 0 0;
  max-width: 38ch;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.hero-usp b {
  color: var(--text);
  font-weight: 650;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 22px;
}
@media (max-width: 800px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.ico { font-size: 22px; margin-bottom: 8px; }

/* —— Examples / compare slider (imgfree-style, red brand) —— */
.examples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 800px) {
  .examples-grid { grid-template-columns: 1fr; }
}
.example-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.example-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.example-head h3 { margin: 0; font-size: 15px; }
.example-sub {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 650; letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
  border: 1px solid var(--line2);
  color: var(--muted);
  background: rgba(255,255,255,.04);
}
.chip-ok { color: #6ee7b7; border-color: rgba(52,211,153,.35); background: rgba(52,211,153,.08); }
.chip-hot { color: var(--accent2); border-color: rgba(255,59,74,.4); background: var(--accent-dim); }
.chip-free { color: #fbbf24; border-color: rgba(251,191,36,.35); background: rgba(251,191,36,.08); margin-top: 12px; }

/* Dual demo cards */
.demo-dual { margin-top: 28px; }
.demo-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
}
.demo-card .demo-stage {
  min-height: 0;
  margin-top: 10px;
  flex: 1;
  width: 100%;
}
.demo-card .demo-idle { min-height: 280px; width: 100%; }
.demo-card .demo-ready,
.demo-card .demo-work {
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  max-height: none;
}
.demo-card .demo-result { width: 100%; }
.demo-card .demo-actions { margin-top: 10px; }
.demo-card .demo-status { min-height: 1.2em; margin-top: 8px; font-size: 12.5px; }

.demo-privacy {
  margin: 10px 0 0;
  max-width: 48ch;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--muted);
}
.demo-privacy b { color: var(--text); font-weight: 650; }

.tpl-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 4px;
  min-height: 36px;
}
.tpl-picks-static { pointer-events: none; }
.tpl-chip {
  appearance: none;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
button.tpl-chip:hover { color: var(--text); border-color: rgba(255,59,74,.35); }
.tpl-chip.is-on {
  color: #fff;
  border-color: rgba(255,59,74,.5);
  background: var(--accent-dim);
}
span.tpl-chip.is-on {
  color: var(--accent2);
}

/* Template chips: one row of small icon previews (full card width) */
.tpl-picks-thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 8px 0 6px;
  width: 100%;
  min-height: 0;
}
.tpl-chip-thumb {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
}
.tpl-chip-thumb img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  display: block;
  background: #120a0c;
}
.tpl-chip-thumb span {
  font-size: 10px;
  font-weight: 650;
  line-height: 1.15;
  padding: 0 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  color: inherit;
}
.tpl-chip-thumb.is-on {
  box-shadow: 0 0 0 1px rgba(255,59,74,.45);
}
.tpl-chip-thumb.is-on img {
  box-shadow: 0 0 0 2px rgba(255,90,102,.55);
}

.compare {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,59,74,.28);
  background: #0a0809;
  user-select: none;
  touch-action: none;
  box-shadow:
    0 0 0 1px rgba(255,59,74,.08),
    0 16px 48px rgba(0,0,0,.35);
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.compare-after { z-index: 1; }
/* clip holds full-size before image; only left portion visible */
.compare-before-clip {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.compare-before-clip .compare-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-line {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  z-index: 4;
  width: 2px;
  margin-left: -1px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 12px rgba(255,59,74,.55);
  pointer-events: none;
}
.compare-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #ff5a66, #e11d2e);
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 18px rgba(0,0,0,.45), 0 0 20px rgba(255,59,74,.35);
}
.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
}
.compare-tag {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.62);
  color: #fff;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.compare-tag.left { left: 10px; }
.compare-tag.right { right: 10px; }

/* —— Demo shell —— */
.demo-shell {
  margin: 22px auto 0;
  max-width: 440px;
  text-align: center;
}
.demo-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,59,74,.32);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,59,74,.1), transparent 55%),
    #0c090b;
  box-shadow:
    0 0 0 1px rgba(255,59,74,.06),
    0 24px 64px rgba(0,0,0,.45);
  min-height: 420px;
}
.demo-idle {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}
/* [hidden] must win over display:grid / flex */
.demo-idle[hidden],
.demo-ready[hidden],
.demo-work[hidden],
.demo-result[hidden] {
  display: none !important;
}
.demo-stage[data-state="ready"] .demo-idle,
.demo-stage[data-state="work"] .demo-idle,
.demo-stage[data-state="result"] .demo-idle {
  display: none !important;
}
.demo-idle:hover,
.demo-idle.drag {
  background: rgba(255,59,74,.06);
}
.demo-idle-inner { text-align: center; }
.demo-upload-ico {
  width: 72px; height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent2);
  background: var(--accent-dim);
  border: 1px solid rgba(255,59,74,.35);
}
.demo-idle-title {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 15.5px;
}

/* Ready: full-bleed photo, pick template, then run */
.demo-ready {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0809;
}
.demo-ready-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.demo-ready-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 6, 10, 0.05) 40%,
    rgba(7, 6, 10, 0.55) 100%
  );
  pointer-events: none;
}
.demo-ready-hint {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  margin: 0;
  z-index: 2;
  text-align: center;
  font-size: 12.5px;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.demo-work {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0809;
}
.demo-work-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) brightness(0.55);
}
.demo-work-veil {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(7,6,10,.15), rgba(7,6,10,.72));
}
.demo-progress {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  padding: 16px;
  box-sizing: border-box;
}
.demo-progress .ring {
  width: min(148px, 48%);
  height: min(148px, 48%);
  max-width: 148px;
  max-height: 148px;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 18px rgba(255,59,74,.35));
}
.ring-track {
  fill: none;
  stroke: rgba(255,255,255,.12);
  stroke-width: 8;
}
.ring-val {
  fill: none;
  stroke: url(#none);
  stroke: #ff4d5a;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset .18s linear;
}
.demo-progress-txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(112px, 28vw);
  max-width: 72%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0 6px;
}
.demo-pct {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  line-height: 1.1;
}
.demo-pct-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,.82);
  width: 100%;
  max-width: 100%;
  text-align: center;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.demo-result {
  position: relative;
  width: 100%;
}
.demo-result .compare {
  border: none;
  border-radius: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  box-shadow: none;
}
.demo-result-note {
  margin: 0;
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--muted);
  background: rgba(0,0,0,.35);
  border-top: 1px solid var(--line);
}

.demo-status {
  font-size: 13px; color: var(--muted);
  margin: 14px auto 0; min-height: 1.2em;
  max-width: 36rem;
}
.demo-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; align-items: center;
  margin-top: 14px;
}
.demo-actions .btn { min-width: 150px; }
.file-input { display: none; }

/* TG mock */
.tg-mock {
  margin: 24px auto 0;
  max-width: 360px;
  border-radius: 16px;
  border: 1px solid var(--line2);
  background: #0e0c10;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.tg-mock-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(255,59,74,.08);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.tg-mock-bar b { display: block; font-size: 13.5px; }
.tg-mock-av img {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; display: block;
  border: 1px solid rgba(255,59,74,.35);
}
.tg-mock-body {
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 140px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,59,74,.06), transparent 60%);
}
.tg-bubble {
  max-width: 88%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}
.tg-bubble.her {
  align-self: flex-start;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.tg-bubble.me {
  align-self: flex-end;
  background: var(--accent-dim);
  border: 1px solid rgba(255,59,74,.35);
  color: var(--text);
  border-bottom-right-radius: 4px;
}

.steps {
  margin: 20px 0 0; padding: 0; list-style: none; counter-reset: s;
}
.steps li {
  counter-increment: s;
  padding: 14px 14px 14px 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--card);
  position: relative;
  font-size: 14.5px; color: var(--muted);
}
.steps li b { color: var(--text); }
.steps li::before {
  content: counter(s);
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-dim); color: var(--accent);
  display: grid; place-items: center; font-weight: 700; font-size: 13px;
}

.packs .pack {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  color: inherit; text-decoration: none !important;
}
.packs .pack.featured {
  border-color: rgba(255,59,74,.45);
  box-shadow: 0 0 0 1px rgba(255,59,74,.12);
}
.badge {
  display: inline-block; align-self: flex-start;
  font-size: 11px; padding: 3px 8px; border-radius: 999px;
  border: 1px solid var(--line2); color: var(--muted); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.badge.ok { color: var(--accent2); border-color: rgba(255,59,74,.4); background: var(--accent-dim); }
.pack .price { font-size: 26px; font-weight: 700; margin: 6px 0 2px; letter-spacing: -0.03em; }
.pack .term { color: var(--muted); font-size: 13px; margin: 0 0 12px; }
.pack ul {
  margin: 0 0 14px; padding: 0 0 0 18px; color: var(--muted); font-size: 13.5px; flex: 1;
}
.pack-cta { color: var(--accent2); font-weight: 600; font-size: 14px; margin-top: auto; }

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  margin-bottom: 8px;
  padding: 4px 14px;
}
.faq summary {
  cursor: pointer; font-weight: 600; padding: 12px 0; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }

.cta-final {
  padding: 72px 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,59,74,.12), transparent 60%);
}
.foot {
  border-top: 1px solid var(--line);
  padding: 18px 0 calc(18px + var(--safe-b));
  position: relative; z-index: 1;
}
.foot-row {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted);
}
.legal-note {
  font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.4;
}

.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  gap: 8px;
  padding: 10px 14px calc(10px + var(--safe-b));
  background: rgba(7,6,10,0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  justify-content: center;
}
.sticky-cta .btn { flex: 1; max-width: 200px; padding: 11px 12px; font-size: 13.5px; }
@media (max-width: 767px) {
  .sticky-cta { display: flex; }
  body.pf-open { padding-bottom: 72px; }
}
