:root {
  --bg:      #150826;
  --bg2:     #0b0416;
  --surface: rgba(255,255,255,.04);
  --surface-h: rgba(255,255,255,.07);
  --line:    rgba(255,255,255,.09);
  --line-2:  rgba(255,255,255,.15);
  --pink:    #ff2e88;
  --pink-h:  #ff5ca6;
  --orange:  #ff8a3d;
  --gold:    #ffcf6b;
  --violet:  #8a3ff2;
  --purple:  #a855ff;
  --text:    #fce9f5;
  --muted:   #b394c9;
  --muted-2: #7a6597;
  --ok:      #56e39f;
  --err:     #ff6b8a;
  --radius:  16px;
  --ease:    cubic-bezier(.2,.7,.2,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh; color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  display: flex; flex-direction: column; position: relative; overflow-x: hidden;
  background:
    radial-gradient(85% 45% at 50% 0%, #3a1560 0%, transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
}

/* topbar */
.topbar { position: relative; z-index: 2; padding: 20px 30px; }
.wordmark-sm { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.ios-sm { font-family: "JetBrains Mono", monospace; font-size: 9px; color: var(--bg);
  background: var(--gold); padding: 2px 5px; border-radius: 5px; margin-left: 7px; vertical-align: 2px; }

/* workspace */
.workspace { position: relative; z-index: 2; width: 100%; max-width: 620px; margin: 0 auto; padding: 16px 22px 48px; flex: 1; }

/* HERO */
.hero { position: relative; text-align: center; padding: 40px 0 34px; }
.halo { position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 340px; height: 220px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,46,136,.4), rgba(168,85,255,.15) 60%, transparent 75%);
  filter: blur(20px); opacity: .8; }
.logo {
  position: relative; z-index: 1;
  font-family: "Yellowtail", cursive; font-weight: 400;
  font-size: clamp(54px, 14vw, 92px); line-height: .9; color: #ffe3f1;
  text-shadow: 0 0 3px #fff, 0 0 10px var(--pink-h), 0 0 22px var(--pink),
               0 0 40px #ff1f7a, 0 0 68px rgba(255,31,122,.6);
}
.logo-ios {
  position: relative; z-index: 1; margin-top: -2px;
  font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: .42em;
  color: var(--gold); text-shadow: 0 0 10px rgba(255,207,107,.6); padding-left: .42em;
}
.kicker { position: relative; z-index: 1; margin-top: 16px;
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); }

/* iPhone */
.phone { position: relative; z-index: 1; width: 208px; aspect-ratio: 9 / 19;
  margin: 30px auto 0; padding: 7px; border-radius: 34px;
  background: linear-gradient(160deg, #3a3a42, #101014);
  box-shadow: 0 20px 50px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.08); }
.phone-island { position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 62px; height: 17px; background: #0a0a0c; border-radius: 12px; z-index: 5; }
.screen { position: relative; width: 100%; height: 100%; border-radius: 28px; overflow: hidden;
  background: #050308; display: flex; flex-direction: column; }
.photos { }
.ph-statusbar { display: flex; align-items: center; justify-content: space-between;
  padding: 6px 14px 2px; font-family: "Inter", sans-serif; font-size: 8px; font-weight: 600; color: #fff; }
.ph-sb-icons { letter-spacing: 1px; opacity: .9; }
.ph-nav { display: flex; align-items: center; justify-content: space-between; padding: 2px 12px 6px; color: #fff; }
.ph-title { font-family: "Inter", sans-serif; font-size: 15px; font-weight: 700; }
.ph-back { font-size: 17px; line-height: 1; color: #3b9cff; }
.ph-more { font-size: 12px; color: #3b9cff; }
.ph-grid { position: relative; flex: 1; display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 1.5px; padding: 0 1.5px; overflow: hidden; align-content: start; }
.tile { position: relative; aspect-ratio: 1; overflow: hidden; }
.tile::after { content: ""; position: absolute; inset: 0; opacity: 0;
  background: rgba(86,227,159,.65); box-shadow: inset 0 0 0 1px rgba(86,227,159,.9);
  animation: spoofwave 4.5s ease-in-out infinite; animation-delay: inherit; }
@keyframes spoofwave { 0%,44%,64%,100% { opacity: 0; } 52% { opacity: .8; } }
.t0 { background: linear-gradient(135deg,#ff6a8a,#ffb057); }
.t1 { background: linear-gradient(135deg,#7b3ff2,#ff2e88); }
.t2 { background: linear-gradient(135deg,#29e3ff,#7b3ff2); }
.t3 { background: linear-gradient(135deg,#ffcf6b,#ff6a4d); }
.t4 { background: linear-gradient(135deg,#ff2e88,#8a3ff2); }
.t5 { background: linear-gradient(135deg,#5a1e78,#c02f7a); }
.t6 { background: linear-gradient(135deg,#ff9a52,#ff2e88); }
.t7 { background: linear-gradient(135deg,#a855ff,#29e3ff); }
.ph-scan { position: absolute; left: 0; right: 0; top: 0; height: 14px; z-index: 4; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(41,227,255,.35), rgba(255,255,255,.9), rgba(255,46,136,.4), transparent);
  animation: phscan 4.5s linear infinite; }
@keyframes phscan { 0% { transform: translateY(-14px); opacity: 0; } 6% { opacity: 1; }
  92% { opacity: 1; } 100% { transform: translateY(300px); opacity: 0; } }
.ph-toast { position: absolute; left: 50%; top: 44px; transform: translateX(-50%); z-index: 6;
  white-space: nowrap; font-family: "JetBrains Mono", monospace; font-size: 8px; font-weight: 500;
  color: #06301f; background: rgba(86,227,159,.94); padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s var(--ease); }
.ph-toast.show { opacity: 1; }
.ph-tabbar { display: flex; align-items: center; justify-content: space-around; padding: 6px 4px 8px;
  background: rgba(10,10,12,.85); border-top: 1px solid rgba(255,255,255,.08);
  font-family: "Inter", sans-serif; font-size: 7px; color: #8a8a92; }
.ph-tabbar .on { color: #3b9cff; }
.compat { margin-top: 30px; padding: 24px 20px; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.compat-head { display: flex; align-items: center; justify-content: center; gap: 11px; }
.repost-ico { display: flex; }
.repost-ico svg { width: 28px; height: 28px; filter: drop-shadow(0 0 6px rgba(255,46,136,.5)); }
.compat-title { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-style: italic;
  font-size: clamp(18px, 4vw, 23px); letter-spacing: -.01em; color: #fff; }
.compat-title .grad { background: linear-gradient(100deg, var(--pink), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.compat-logos { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-top: 20px; }
.logo-btn { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2); transition: transform .18s var(--ease), border-color .18s var(--ease); }
.logo-btn svg { width: 22px; height: 22px; }
.logo-btn.ig { box-shadow: 0 0 15px rgba(255,46,136,.4); }
.logo-btn.fb { box-shadow: 0 0 15px rgba(24,120,242,.4); }
.logo-btn.th { box-shadow: 0 0 15px rgba(255,255,255,.22); }
.logo-btn.tk { box-shadow: 0 0 15px rgba(34,224,255,.4); }
.logo-btn.xx { box-shadow: 0 0 15px rgba(255,255,255,.22); }
.logo-btn.sc { box-shadow: 0 0 15px rgba(255,240,60,.45); }
.logo-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.35); }

/* DROPZONE */
.dropzone { display: flex; flex-direction: column; align-items: center; cursor: pointer;
  border: 1px dashed var(--line-2); border-radius: var(--radius); background: var(--surface);
  padding: 38px 22px; text-align: center; margin-top: 6px;
  transition: border-color .22s var(--ease), background .22s var(--ease); }
.dropzone:hover, .dropzone:focus-visible { border-color: var(--pink-h); background: var(--surface-h); outline: none; }
.dropzone.dragover { border-color: var(--pink); background: var(--surface-h); }
.drop-glyph { color: var(--pink-h); margin-bottom: 13px; display: flex; }
.drop-text { font-family: "Space Grotesk", sans-serif; font-size: 19px; font-weight: 600; }
.drop-sub { color: var(--muted); font-size: 14px; margin-top: 6px; }
.link { color: var(--pink-h); }

/* CONTROLS */
.controls { margin-top: 18px; display: flex; flex-direction: column; gap: 22px;
  padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.control-label { font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 12px; }
.control-hint { font-size: 12px; color: var(--muted-2); display: block; margin-top: 2px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; cursor: pointer;
  font-family: "Inter", sans-serif; background: transparent; color: var(--muted);
  border: 1px solid var(--line-2); padding: 8px 13px; border-radius: 11px; transition: all .16s var(--ease); }
.pill:hover { border-color: var(--muted); color: var(--text); }
.pill-name { font-size: 13px; font-weight: 600; }
.pill-ios { font-family: "JetBrains Mono", monospace; font-size: 8.5px; opacity: .65; }
.pill.active { color: #fff; border-color: transparent; background: linear-gradient(110deg, var(--pink), var(--violet)); }
.pill.active .pill-ios { opacity: .85; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.toggle-copy .control-label { margin-bottom: 0; }
.toggle { width: 46px; height: 26px; border-radius: 20px; border: none; cursor: pointer; flex-shrink: 0;
  background: rgba(255,255,255,.14); position: relative; transition: background .22s var(--ease); }
.toggle.active { background: linear-gradient(110deg, var(--gold), var(--pink)); }
.knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; transition: transform .22s var(--ease); }
.toggle.active .knob { transform: translateX(20px); }

/* TRAY / GRID */
.tray { margin-top: 18px; }
.tray-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.tray-count { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--muted); }
.ghost { background: none; border: none; color: var(--muted); font-size: 13px; cursor: pointer; font-family: "Inter", sans-serif; transition: color .2s var(--ease); }
.ghost:hover { color: var(--err); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 9px; }
.cell { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  background: var(--surface-h); border: 1px solid var(--line); animation: pop .28s var(--ease) both; }
@keyframes pop { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
.cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cell .stamp { position: absolute; left: 0; right: 0; bottom: 0;
  font-family: "JetBrains Mono", monospace; font-size: 8px; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.78)); padding: 14px 5px 5px; }
.cell .remove { position: absolute; top: 5px; right: 5px; width: 20px; height: 20px; border-radius: 50%;
  border: none; background: rgba(0,0,0,.55); color: #fff; cursor: pointer; font-size: 13px; line-height: 1;
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s var(--ease); }
.cell:hover .remove { opacity: 1; }

/* ACTION */
.action { margin-top: 28px; }
.cta { width: 100%; border: none; cursor: pointer;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 16px;
  color: #fff; background: linear-gradient(110deg, var(--pink), var(--violet));
  padding: 16px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: filter .18s var(--ease), transform .1s var(--ease); }
.cta:hover { filter: brightness(1.08); }
.cta:active { transform: translateY(1px); }
.cta:disabled { background: rgba(255,255,255,.07); color: var(--muted-2); cursor: default; }
.cta-count { font-family: "JetBrains Mono", monospace; font-size: 13px; opacity: .8; }
.cta.working { color: transparent; position: relative; }
.cta.working::after { content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.status { margin-top: 14px; text-align: center; font-size: 13.5px; font-family: "JetBrains Mono", monospace; }
.status.ok { color: var(--ok); } .status.err { color: var(--err); }

/* FOOTER */
.footer { position: relative; z-index: 2; text-align: center; padding: 30px 24px 26px; }
.footer-script { font-family: "Yellowtail", cursive; font-size: 30px; color: #ffe3f1; line-height: 1;
  text-shadow: 0 0 3px #fff, 0 0 10px var(--pink-h), 0 0 20px var(--pink), 0 0 36px rgba(255,31,122,.55);
  margin-bottom: 12px; }
.footer-mono { font-family: "JetBrains Mono", monospace; font-size: 10px; color: var(--muted-2); letter-spacing: .05em; }

@media (max-width: 520px) { .topbar { padding: 18px 20px; } }
@media (prefers-reduced-motion: reduce) { *:not(.ba):not(.ba-divider) { animation: none !important; transition: none !important; } }

/* VERROU */
.unlock { margin-top: 6px; padding: 42px 24px; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.unlock-ico { color: var(--pink-h); display: inline-flex; margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(255,46,136,.4)); }
.unlock-title { font-family: "Space Grotesk", sans-serif; font-size: 22px; font-weight: 700; }
.unlock-sub { color: var(--muted); font-size: 14px; margin-top: 6px; }
.unlock-form { display: flex; gap: 8px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.unlock-form input { font-family: "JetBrains Mono", monospace; font-size: 14px; color: var(--text);
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 12px 16px; min-width: 200px; outline: none; text-align: center; }
.unlock-form input:focus { border-color: var(--pink-h); }
.unlock-form button { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 15px;
  color: #fff; background: linear-gradient(110deg, var(--pink), var(--violet)); border: none;
  border-radius: 12px; padding: 12px 22px; cursor: pointer; transition: filter .18s var(--ease); }
.unlock-form button:hover { filter: brightness(1.08); }
.unlock-err { color: var(--err); font-family: "JetBrains Mono", monospace; font-size: 13px; margin-top: 12px; }
.unlock-buy { color: var(--muted-2); font-size: 13px; margin-top: 18px; }
.unlock-buy a { color: var(--pink-h); }

/* ====== LANDING ====== */
html { scroll-behavior: smooth; scroll-padding-top: 74px; }

.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 13px 28px; background: rgba(18,8,30,.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); }
.nav-logo { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 17px; color: var(--text); text-decoration: none; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .18s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-cta { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 14px; color: #fff;
  background: linear-gradient(110deg, var(--pink), var(--violet)); padding: 10px 20px; border-radius: 22px; text-decoration: none;
  box-shadow: 0 0 18px rgba(255,46,136,.45); transition: filter .18s var(--ease), box-shadow .18s var(--ease); }
.nav-cta:hover { filter: brightness(1.08); box-shadow: 0 0 26px rgba(255,46,136,.65); }
@media (max-width: 720px) { .nav-links { display: none; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 12px; cursor: pointer; text-decoration: none; transition: filter .18s var(--ease), border-color .18s var(--ease); }
.btn-primary { color: #fff; background: linear-gradient(110deg, var(--pink), var(--violet)); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { color: var(--text); background: transparent; border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--muted); }

.hero { max-width: 680px; margin: 0 auto; padding: 52px 22px 42px; }
.hero-tag { position: relative; z-index: 1; margin-top: 18px; font-size: 17px; line-height: 1.5; color: var(--muted); }
.hero-cta { position: relative; z-index: 1; display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

.section { max-width: 900px; margin: 0 auto; padding: 62px 22px; }
.eyebrow { display: block; text-align: center; font-family: "JetBrains Mono", monospace; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--pink-h); margin-bottom: 12px; }
.section-title { text-align: center; font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(26px, 5vw, 36px); letter-spacing: -.02em; }
.section-sub { text-align: center; color: var(--muted); font-size: 15px; margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }

.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 38px; }
.feat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.feat-ico { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; background: linear-gradient(135deg, var(--pink), var(--violet)); margin-bottom: 14px; }
.feat-card h3 { font-family: "Space Grotesk", sans-serif; font-size: 17px; font-weight: 600; }
.feat-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin-top: 8px; }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 38px; }
.compare-col { border-radius: var(--radius); padding: 20px; border: 1px solid var(--line); background: var(--surface); }
.compare-col.bad { border-color: rgba(255,107,138,.3); }
.compare-col.ok { border-color: rgba(86,227,159,.35); }
.compare-head { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.cmark { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; background: rgba(255,107,138,.2); color: var(--err); }
.cmark.ok-m { background: rgba(86,227,159,.2); color: var(--ok); }
.crow { display: flex; justify-content: space-between; font-family: "JetBrains Mono", monospace; font-size: 12px; padding: 7px 0; border-top: 1px solid var(--line); }
.crow span:first-child { color: var(--muted-2); }
.compare-verdict { margin-top: 14px; text-align: center; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 13px; padding: 9px; border-radius: 10px; }
.bad-v { background: rgba(255,107,138,.14); color: var(--err); }
.ok-v { background: rgba(86,227,159,.14); color: var(--ok); }
@media (max-width: 640px) { .compare { grid-template-columns: 1fr; } }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 38px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--pink), var(--violet)); margin-bottom: 12px; }
.step h3 { font-family: "Space Grotesk", sans-serif; font-size: 16px; font-weight: 600; }
.step p { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin-top: 8px; }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }

.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 40px; align-items: stretch; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--pink); box-shadow: 0 0 26px rgba(255,46,136,.18); }
.plan-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-family: "JetBrains Mono", monospace; font-size: 9px; font-weight: 500; color: #fff;
  background: linear-gradient(110deg, var(--pink), var(--violet)); padding: 5px 12px; border-radius: 20px; }
.plan-name { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 15px; color: var(--muted); }
.plan-price { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 34px; margin-top: 8px; }
.plan-price span { font-size: 14px; font-weight: 500; color: var(--muted); }
.plan-note { font-size: 13px; color: var(--muted-2); margin-top: 4px; }
.plan-feat { list-style: none; margin: 18px 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.plan-feat li { font-size: 14px; color: var(--text); padding-left: 22px; position: relative; }
.plan-feat li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); }
.plan-btn { margin-top: auto; width: 100%; }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }

.faq { max-width: 640px; margin: 38px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 0 18px; }
.faq summary { cursor: pointer; padding: 16px 0; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 15px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pink-h); font-size: 18px; margin-left: 12px; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--muted); font-size: 14px; line-height: 1.6; padding: 0 0 16px; margin: 0; }

.compat { max-width: 680px; margin-left: auto; margin-right: auto; }

#tool .dropzone, #tool .controls, #tool .tray, #tool .action, #tool .unlock {
  max-width: 620px; margin-left: auto; margin-right: auto; }
#tool .dropzone { margin-top: 36px; }

/* ====== PAGE APP DÉDIÉE ====== */
.tool-cta { text-align: center; margin-top: 30px; }

.app-nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; background: rgba(18,8,30,.72); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.app-back { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .18s var(--ease); }
.app-back:hover { color: var(--text); }

.app-main { max-width: 640px; margin: 0 auto; padding: 46px 22px 64px; }
.app-head { text-align: center; margin-bottom: 34px; }
.app-main .dropzone { padding: 56px 24px; }

.app-lock { text-align: center; padding: 60px 24px; display: flex; flex-direction: column; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.app-lock-ico { color: var(--pink-h); margin-bottom: 20px; filter: drop-shadow(0 0 16px rgba(255,46,136,.5)); }
.app-lock-title { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 28px; }
.app-lock-sub { color: var(--muted); font-size: 15px; margin-top: 10px; max-width: 360px; }
.app-lock .unlock-form { margin-top: 24px; }
.app-lock-btn { margin-top: 20px; }

/* ====== PAGE PAIEMENT ====== */
.pay { text-align: center; padding: 70px 24px; display: flex; flex-direction: column; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
/* Corrige le conflit : l'attribut HTML "hidden" doit l'emporter sur display:flex */
.pay[hidden] { display: none !important; }
.pay-spinner { width: 46px; height: 46px; border-radius: 50%; margin-bottom: 22px;
  border: 3px solid rgba(255,255,255,.12); border-top-color: var(--pink); animation: spin 0.8s linear infinite; }
.pay-check { color: var(--ok); margin-bottom: 18px; filter: drop-shadow(0 0 14px rgba(86,227,159,.5)); }
.pay-code { font-family: "JetBrains Mono", monospace; font-size: 22px; font-weight: 500; letter-spacing: .06em;
  color: var(--gold); background: rgba(255,255,255,.05); border: 1px solid var(--line-2);
  border-radius: 12px; padding: 14px 22px; margin: 20px 0 6px; }

/* ====== BOUTONS PLUS GROS (hero + nav) ====== */
.hero-cta .btn { padding: 17px 34px; font-size: 17px; border-radius: 14px; }
.nav-cta { padding: 12px 26px; font-size: 15px; }

/* ====== VERROU v2 : CTA gros + centré, bouton retour propre ====== */
.app-lock { gap: 4px; }
.app-lock-cta { font-size: 17px; padding: 16px 40px; border-radius: 14px; margin: 8px 0 4px; }
.app-lock-sep { display: flex; align-items: center; gap: 12px; width: 100%; max-width: 320px; margin: 26px auto 16px;
  color: var(--muted-2); font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .06em; }
.app-lock-sep::before, .app-lock-sep::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* bouton retour propre (pill) */
.app-back { display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 16px; border-radius: 20px; border: 1px solid var(--line-2);
  color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500;
  transition: color .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease); }
.app-back:hover { color: var(--text); border-color: var(--muted); background: rgba(255,255,255,.04); }
