/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #080c16;
  --bg2:      #0c1020;
  --sur:      rgba(255,255,255,0.035);
  --sur-h:    rgba(255,255,255,0.06);
  --bdr:      rgba(255,255,255,0.07);
  --bdr-h:    rgba(255,255,255,0.16);
  --acc:      #6366f1;
  --acc2:     #8b5cf6;
  --acc3:     #a78bfa;
  --grn:      #10b981;
  --gold:     #f59e0b;
  --txt:      #f1f5f9;
  --txt2:     #94a3b8;
  --txt3:     #94a3b8;
  --r:        16px;
  --rl:       24px;
  --blur:     blur(24px);
  --ease:     cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Orbs ── */
.orb { position: fixed; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.o1 { width: 700px; height: 700px; top: -250px; left: -200px; background: radial-gradient(circle, rgba(99,102,241,0.16) 0%, transparent 70%); }
.o2 { width: 500px; height: 500px; top: 300px; right: -150px; background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%); }
.o3 { width: 400px; height: 400px; bottom: 0; left: 40%; background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%); }
body > * { position: relative; z-index: 1; }

/* ── Utilities ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.glass {
  background: var(--sur); border: 1px solid var(--bdr);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-radius: var(--rl);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.glass:hover { border-color: var(--bdr-h); background: var(--sur-h); }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 100px;
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.22);
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--acc3);
}
.badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc3); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hl {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  background: linear-gradient(140deg, #f1f5f9 30%, #8b9bbd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hl-md {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.025em;
}
.sub { color: var(--txt2); font-size: 1.05rem; line-height: 1.75; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  padding: 14px 28px; border-radius: 12px; border: none;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: all .22s var(--ease); position: relative; overflow: hidden;
}
.btn-p {
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #fff; box-shadow: 0 4px 24px rgba(99,102,241,.4);
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,.55); }
.btn-p:active { transform: none; }
.btn-g {
  background: var(--sur); color: var(--txt2);
  border: 1px solid var(--bdr);
}
.btn-g:hover { border-color: var(--bdr-h); color: var(--txt); background: var(--sur-h); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; border-radius: 14px; }
.btn-full { width: 100%; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--bdr);
  padding: 15px 0;
  background: rgba(8,12,22,.75);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  transition: background .3s;
}
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo {
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.03em; text-decoration: none;
  background: linear-gradient(135deg, var(--acc3), var(--acc));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { color: var(--txt2); font-size: .88rem; font-weight: 500; text-decoration: none; transition: color .2s; padding: 6px 10px; border-radius: 8px; display: flex; align-items: center; gap: 4px; }
.nav-links a:hover { color: var(--txt); background: var(--sur); }
.nav-drop-trigger svg { transition: transform .2s var(--ease); flex-shrink: 0; }
.nav-links li.open .nav-drop-trigger svg { transform: rotate(180deg); }

/* Dropdowns */
.nav-drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: rgba(10,14,28,.97); border: 1px solid var(--bdr);
  border-radius: 16px; padding: 8px; min-width: 260px;
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 20px 48px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  pointer-events: none;
}
.nav-links li.open .nav-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav-drop-label { font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--txt3); padding: 8px 12px 4px; display: block; }
.nav-drop a { display: flex; align-items: flex-start; gap: 10px; padding: 8px 12px; border-radius: 10px; background: none !important; color: var(--txt2) !important; font-size: .85rem; }
.nav-drop a:hover { background: rgba(255,255,255,.05) !important; color: var(--txt) !important; }
.nd-icon { font-size: 1rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.nd-text { display: flex; flex-direction: column; gap: 2px; }
.nd-title { font-weight: 600; color: var(--txt); font-size: .85rem; line-height: 1.3; }
.nd-sub { font-size: .74rem; color: var(--txt3); line-height: 1.4; }
.nav-drop-flagship { background: rgba(99,102,241,.08) !important; border: 1px solid rgba(99,102,241,.18) !important; border-radius: 10px !important; }
.nav-drop-flagship .nd-title { color: var(--acc3) !important; }
.nav-drop-flagship:hover { background: rgba(99,102,241,.14) !important; }
.nav-drop-divider { height: 1px; background: var(--bdr); margin: 6px 0; }
.nav-drop-all { font-size: .82rem !important; color: var(--acc3) !important; font-weight: 600 !important; }
.nav-drop-all:hover { color: var(--acc3) !important; }
.nav-drop-premium-label { font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); padding: 4px 12px 4px; display: block; }
.nav-drop-premium a { background: rgba(245,158,11,.05) !important; border: 1px solid rgba(245,158,11,.12) !important; border-radius: 10px !important; }
.nav-drop-hub { min-width: 300px; left: auto; right: 0; transform: translateY(-6px); }
.nav-links li.open .nav-drop-hub { transform: translateY(0); }
.nav-drop-hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-drop-hub-grid a { padding: 7px 10px !important; gap: 7px !important; }
.nav-drop-hub-grid .nd-icon { font-size: .9rem; }
.editing-hl { background: rgba(99,102,241,.08) !important; border: 1px solid rgba(99,102,241,.15) !important; border-radius: 8px !important; }
.editing-hl .nd-title { color: var(--acc3) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: 1px solid var(--bdr); border-radius: 8px;
  padding: 8px 9px; cursor: pointer; color: var(--txt2); flex-direction: column;
  gap: 4px; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 17px; height: 2px; background: currentColor; border-radius: 2px; transition: all .2s var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(8,12,22,.98); border-bottom: 1px solid var(--bdr);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  padding-bottom: 8px;
}
.nav-mobile.open { display: block; }
.nm-section { padding: 0 20px; }
.nm-section h5 { font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--txt3); padding: 14px 0 8px; }
.nm-section a { display: block; padding: 10px 0; color: var(--txt2); text-decoration: none; font-size: .9rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.04); transition: color .2s; }
.nm-section a:last-child { border-bottom: none; }
.nm-section a:hover { color: var(--txt); }
.nm-divider { height: 1px; background: var(--bdr); margin: 6px 20px; }
.nm-cta { padding: 14px 20px 8px; }

/* ── Hero ── */
#hero { padding: 100px 0 90px; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-left .badge { margin-bottom: 24px; }
.hero-left .hl { margin-bottom: 20px; }
.hero-left .sub { margin-bottom: 28px; max-width: 460px; }
.hero-checks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; }
.check-row { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--txt2); font-weight: 500; }
.check-row svg { color: var(--grn); flex-shrink: 0; }
.trust-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--txt3); font-weight: 500; }
.trust-item svg { color: var(--gold); }

/* ── Upload Widget ── */
.upload-widget { position: relative; }

/* Drop zone */
.drop-zone {
  border: 2px dashed rgba(99,102,241,.35);
  border-radius: var(--rl);
  padding: 44px 32px;
  text-align: center;
  cursor: pointer;
  background: rgba(99,102,241,.04);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
}
.drop-zone::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(99,102,241,.07), transparent 65%);
  opacity: 0; transition: opacity .25s;
}
.drop-zone:hover, .drop-zone.drag-over {
  border-color: var(--acc);
  background: rgba(99,102,241,.07);
}
.drop-zone:hover::before, .drop-zone.drag-over::before { opacity: 1; }
.drop-zone.drag-over { transform: scale(1.02); box-shadow: 0 0 48px rgba(99,102,241,.22); }
.dz-icon {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(139,92,246,.15));
  border: 1px solid rgba(99,102,241,.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.drop-zone:hover .dz-icon, .drop-zone.drag-over .dz-icon { transform: translateY(-5px) scale(1.06); }
.dz-icon svg { color: var(--acc3); }
.dz-title { font-size: 1.05rem; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.dz-sub { font-size: .875rem; color: var(--txt2); margin-bottom: 18px; }
.dz-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #fff; font-family: inherit; font-weight: 600; font-size: .9rem;
  padding: 11px 24px; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(99,102,241,.38); margin-bottom: 16px;
  transition: all .22s var(--ease);
}
.dz-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(99,102,241,.5); }
.dz-formats { display: flex; justify-content: center; gap: 6px; }
.fmt {
  background: rgba(255,255,255,.05); border: 1px solid var(--bdr);
  border-radius: 6px; padding: 3px 9px; font-size: 10px; font-weight: 700;
  color: var(--txt3); letter-spacing: .06em;
}
#file-input { display: none; }

/* Loading state */
.dz-loading { display: none; }
.dz-loading.active { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 20px 0; }
.spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid rgba(99,102,241,.2);
  border-top-color: var(--acc);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-size: .9rem; color: var(--txt2); font-weight: 500; }

/* Results panel */
.results-panel {
  display: none; border-radius: var(--rl); overflow: hidden;
  border: 1px solid rgba(99,102,241,.2);
  background: rgba(99,102,241,.04);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  animation: fadeUp .45s var(--ease);
}
.results-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rp-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(99,102,241,.12);
  background: rgba(16,185,129,.04);
}
.rp-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3);
  display: flex; align-items: center; justify-content: center;
}
.rp-check svg { color: var(--grn); }
.rp-fname { font-size: .9rem; font-weight: 600; color: var(--txt); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rp-retry {
  font-size: .8rem; color: var(--txt3); cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px; background: none; border: none; font-family: inherit; padding: 0;
  transition: color .2s;
}
.rp-retry:hover { color: var(--txt2); }

.rp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(99,102,241,.1); }
.rp-stat { padding: 20px 24px; background: rgba(8,12,22,.6); }
.rp-stat-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--txt3); margin-bottom: 4px; }
.rp-stat-value { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; color: var(--txt); }
.rp-stat-note { font-size: .75rem; color: var(--txt3); margin-top: 2px; }

.rp-genre { padding: 18px 24px; border-top: 1px solid rgba(255,255,255,.05); }
.rp-genre-label { font-size: .75rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--txt3); margin-bottom: 10px; }
.genre-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.genre-btn {
  padding: 6px 14px; border-radius: 8px; font-family: inherit;
  font-size: .825rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--bdr); background: var(--sur); color: var(--txt2);
  transition: all .18s var(--ease);
}
.genre-btn.active, .genre-btn:hover {
  border-color: rgba(99,102,241,.4); background: rgba(99,102,241,.1); color: var(--acc3);
}

.rp-package {
  padding: 22px 24px;
  border-top: 1px solid rgba(99,102,241,.12);
  background: rgba(99,102,241,.05);
}
.rp-pkg-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--txt3); margin-bottom: 10px; }
.rp-pkg-name { font-size: 1.15rem; font-weight: 800; color: var(--txt); margin-bottom: 12px; letter-spacing: -0.015em; }
.rp-includes { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.rp-inc { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--txt2); }
.rp-inc svg { color: var(--grn); flex-shrink: 0; }

.rp-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.rp-price { display: flex; align-items: flex-start; gap: 2px; }
.rp-price-dollar { font-size: 1.1rem; font-weight: 700; color: var(--txt2); margin-top: 3px; }
.rp-price-amt { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--txt); }
.rp-price-note { font-size: .8rem; color: var(--txt3); align-self: flex-end; margin-bottom: 3px; }
.rp-delivery { font-size: .8rem; color: var(--grn); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.rp-delivery::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--grn); }

.rp-cta { padding: 0 24px 22px; }
.checkout-email-row { margin-bottom: 10px; }
.checkout-email-input { width: 100%; box-sizing: border-box; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 12px 14px; color: var(--txt); font-size: .9rem; font-family: inherit; outline: none; }
.checkout-email-input:focus { border-color: var(--acc); }
.checkout-email-err { font-size: .75rem; color: #ef4444; margin: 6px 0 0; min-height: 0; }
.checkout-btn {
  width: 100%; padding: 16px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #fff; font-family: inherit; font-weight: 700; font-size: 1rem;
  cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 24px rgba(99,102,241,.4);
  transition: all .22s var(--ease);
}
.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,.56); }
.checkout-btn svg { transition: transform .22s var(--ease); }
.checkout-btn:hover svg { transform: translateX(3px); }
.secure-note { margin-top: 10px; text-align: center; font-size: .75rem; color: var(--txt3); display: flex; align-items: center; justify-content: center; gap: 5px; }
.secure-note svg { color: var(--txt3); }

/* Divider */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--bdr), transparent); }

/* ── Section header ── */
.sec { padding: 88px 0; }
.sec-sm { padding: 64px 0; }
.sec-h { text-align: center; margin-bottom: 52px; }
.sec-h .badge { margin-bottom: 16px; }
.sec-h .hl-md { margin-bottom: 14px; }
.sec-h .sub { max-width: 480px; margin: 0 auto; }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { padding: 32px 26px; position: relative; }
.step-wide { grid-column: 1 / -1; }
.step-n {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-weight: 800; font-size: .95rem; color: #fff;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  box-shadow: 0 4px 18px rgba(99,102,241,.38);
}
.step-t { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-d { font-size: .875rem; color: var(--txt2); line-height: 1.65; }
.step-fmts { display: flex; gap: 6px; margin-top: 10px; }

/* ── Deliverables ── */
.deliv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.deliv-card { padding: 36px; }
.deliv-icon { font-size: 1.8rem; margin-bottom: 16px; }
.deliv-t { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.015em; }
.deliv-d { font-size: .9rem; color: var(--txt2); margin-bottom: 20px; line-height: 1.7; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feat-i { display: flex; align-items: center; gap: 9px; font-size: .86rem; color: var(--txt2); }
.feat-i svg { color: var(--grn); flex-shrink: 0; }

/* ── Sample button ── */
.sample-sep { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07); }
.sample-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: .85rem; font-weight: 600;
  padding: 10px 18px; border-radius: 10px; cursor: pointer;
  border: 1px solid rgba(99,102,241,.3);
  background: rgba(99,102,241,.08);
  color: var(--acc3);
  transition: all .22s var(--ease);
  text-decoration: none;
}
.sample-btn:hover {
  border-color: rgba(99,102,241,.55);
  background: rgba(99,102,241,.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99,102,241,.2);
}
.sample-btn svg { flex-shrink: 0; }

/* ── Sample modal ── */
.modal-bd {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(5,8,18,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.modal-bd.open { opacity: 1; pointer-events: all; }
.modal-card {
  width: min(940px, 100%); height: min(88vh, 820px);
  background: rgba(10,14,26,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transform: translateY(28px) scale(0.975);
  transition: transform .38s var(--ease);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.modal-bd.open .modal-card { transform: none; }
.modal-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.modal-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.25);
  display: flex; align-items: center; justify-content: center;
}
.modal-icon svg { color: var(--acc3); }
.modal-title { font-size: .9rem; font-weight: 700; flex: 1; }
.modal-tag { font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--txt3); padding: 3px 9px; border-radius: 5px; background: rgba(255,255,255,.04); border: 1px solid var(--bdr); }
.modal-close {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: var(--txt2); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s; flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,.12); color: var(--txt); }
.modal-body { flex: 1; position: relative; overflow: hidden; }
.modal-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; background: #fff; }
.modal-local {
  display: none; position: absolute; inset: 0;
  align-items: center; justify-content: center; flex-direction: column;
  gap: 16px; padding: 32px; text-align: center;
}
.modal-local.show { display: flex; }
.modal-local-icon { font-size: 2.5rem; }
.modal-local p { color: var(--txt2); font-size: .9rem; max-width: 360px; line-height: 1.65; }
.modal-foot {
  padding: 11px 20px; flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.015);
}
.modal-foot-note { font-size: .75rem; color: var(--txt3); }
.modal-dl {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; color: var(--acc3);
  text-decoration: none; padding: 6px 12px; border-radius: 7px;
  border: 1px solid rgba(99,102,241,.25); background: rgba(99,102,241,.07);
  transition: all .18s;
}
.modal-dl:hover { border-color: rgba(99,102,241,.45); background: rgba(99,102,241,.14); }

/* ── Who ── */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.who-card {
  padding: 20px 22px; display: flex; align-items: center; gap: 12px;
  font-size: .9rem; font-weight: 500; color: var(--txt2);
  transition: all .2s;
}
.who-card:hover { color: var(--txt); }
.who-dot {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.22);
  display: flex; align-items: center; justify-content: center;
}
.who-dot svg { color: var(--grn); }

.who-outcome {
  margin-top: 40px;
  padding: 36px 40px;
  border-radius: var(--rl);
  border: 1px solid rgba(99,102,241,.15);
  background: linear-gradient(135deg, rgba(99,102,241,.06) 0%, rgba(139,92,246,.03) 100%);
  position: relative; overflow: hidden;
}
.who-outcome::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.4), transparent);
}
.who-outcome-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.who-outcome-lead {
  font-size: 1.05rem; font-weight: 600; color: var(--txt);
  line-height: 1.55; margin-bottom: 16px; letter-spacing: -0.01em;
}
.who-outcome-body {
  font-size: .9rem; color: var(--txt2); line-height: 1.8;
}

/* ── Pricing hint ── */
.pricing-hint {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; max-width: 1180px; margin: 40px auto 0;
}
.ph-price-custom { font-size: 1.25rem; font-weight: 900; letter-spacing: -.02em; color: var(--txt); padding: 5px 0 3px; }
.ph-quote-link { color: var(--acc3); text-decoration: none; font-weight: 700; font-size: .82rem; }
.ph-quote-link:hover { opacity: .85; }

/* ── Old way / pain points ── */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain-card { padding: 24px 22px; }
.pain-n { width: 30px; height: 30px; border-radius: 50%; background: rgba(239,68,68,.09); border: 1px solid rgba(239,68,68,.25); color: #f87171; font-weight: 800; font-size: .8rem; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.pain-t { font-weight: 700; font-size: .95rem; margin-bottom: 8px; }
.pain-d { font-size: .84rem; color: var(--txt2); line-height: 1.7; }
.oldway-vs { margin-top: 26px; padding: 34px 32px; border-color: rgba(16,185,129,.25); background: linear-gradient(135deg, rgba(16,185,129,.07), rgba(99,102,241,.06)); text-align: center; }
.ov-badge { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--grn); background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); border-radius: 100px; padding: 5px 14px; margin-bottom: 14px; }
.oldway-vs p { color: var(--txt2); font-size: .95rem; line-height: 1.75; max-width: 580px; margin: 0 auto 22px; }
.ambassador { margin-top: 18px; padding: 28px 32px; display: flex; gap: 20px; align-items: flex-start; }
.amb-ava { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--acc), var(--acc2)); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1rem; letter-spacing: .02em; }
.amb-quote { font-size: .95rem; color: var(--txt); line-height: 1.8; font-style: italic; margin-bottom: 12px; }
.amb-who { font-size: .82rem; color: var(--txt3); }
.amb-who a { color: var(--acc3); text-decoration: none; }
.amb-who a:hover { opacity: .85; }

/* ── Synopsis gift card ── */
.deliv-gift { grid-column: 1 / -1; position: relative; overflow: hidden; border: 1.5px dashed rgba(245,158,11,.55); background: linear-gradient(135deg, rgba(245,158,11,.1), rgba(139,92,246,.06)); box-shadow: 0 0 0 1px rgba(245,158,11,.08), 0 10px 32px rgba(245,158,11,.14); }
.deliv-gift::after { content: '🎁'; position: absolute; top: 10px; right: 20px; font-size: 2.6rem; line-height: 1; opacity: .16; pointer-events: none; }
.gift-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); background: rgba(245,158,11,.16); border: 1px solid rgba(245,158,11,.4); border-radius: 100px; padding: 6px 16px; margin-bottom: 14px; box-shadow: 0 2px 14px rgba(245,158,11,.18); }

/* ── Manuscript language card ── */
.deliv-lang { grid-column: 1 / -1; display: flex; gap: 20px; align-items: flex-start; border-color: rgba(99,102,241,.3); background: linear-gradient(135deg, rgba(99,102,241,.07), rgba(14,165,233,.05)); }
.deliv-lang-icn { font-size: 2.2rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 560px) { .deliv-lang { flex-direction: column; gap: 12px; } }
.ph-card {
  padding: 20px 22px; text-align: center; border-radius: var(--r);
  background: var(--sur); border: 1px solid var(--bdr);
  transition: all .2s;
}
.ph-card:hover { border-color: var(--bdr-h); background: var(--sur-h); }
.ph-label { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--txt3); margin-bottom: 6px; }
.ph-range { font-size: .8rem; color: var(--txt2); margin-bottom: 10px; }
.ph-price { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.03em; color: var(--txt); }
.ph-one { font-size: .75rem; color: var(--txt3); margin-top: 2px; }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--bdr); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: var(--bdr-h); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px; cursor: pointer; background: var(--sur); user-select: none;
  font-weight: 600; font-size: .925rem; color: var(--txt); transition: background .2s;
}
.faq-q:hover { background: var(--sur-h); }
.faq-ico {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.05); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .2s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: rgba(99,102,241,.12); border-color: rgba(99,102,241,.28); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); background: rgba(255,255,255,.015); font-size: .875rem; color: var(--txt2); line-height: 1.75; }
.faq-a-in { padding: 0 22px 18px; }
.faq-item.open .faq-a { max-height: 260px; }

/* ── Final CTA ── */
#cta {
  padding: 100px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,.1), transparent 65%);
  text-align: center;
}
.cta-card { max-width: 640px; margin: 0 auto; padding: 60px 44px; }
.cta-card .badge { margin-bottom: 20px; }
.cta-card .hl-md { margin-bottom: 14px; }
.cta-card .sub { margin-bottom: 32px; }

/* ── Footer ── */
footer { border-top: 1px solid var(--bdr); padding: 56px 0 28px; font-size: .825rem; color: var(--txt3); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 0.7fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--bdr); margin-bottom: 24px; }
.foot-tagline { font-size: .82rem; color: var(--txt3); line-height: 1.7; margin-top: 10px; max-width: 220px; }
.foot-col h4 { font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--txt3); margin-bottom: 14px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col ul a { color: var(--txt2); font-size: .875rem; text-decoration: none; transition: color .2s; }
.foot-col ul a:hover { color: var(--txt); }
.foot-col ul a.foot-all { color: var(--acc3); font-size: .8rem; font-weight: 600; margin-top: 4px; }
.foot-col ul a.foot-all:hover { color: var(--acc3); opacity: .8; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: var(--txt3); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--txt2); }

/* ── Scroll animations ── */
.fu { opacity: 0; transform: translateY(28px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.fu.show { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .pricing-hint { grid-template-columns: 1fr 1fr; max-width: 640px; }
}
@media (max-width: 960px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-left .sub { max-width: 100%; }
  .steps { grid-template-columns: 1fr 1fr; }
  .deliv-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  nav .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .who-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .pricing-hint { grid-template-columns: 1fr; max-width: 340px; }
  .ambassador { flex-direction: column; padding: 24px 20px; }
  .oldway-vs { padding: 28px 20px; }
  .cta-card { padding: 40px 22px; }
  .rp-stats { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; text-align: center; }
}
