/* ============ FONTS ============ */
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-Light.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-Medium.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-SemiBold.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-ExtraBold.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/Poppins-Black.woff2") format("woff2"); font-weight: 900; font-display: swap; }

/* ============ TOKENS ============ */
:root {
  /* Custom cinematic palette layered on the Fantasy brand */
  --ink-0: #050103;        /* near black, slight wine */
  --ink-1: #0a0306;
  --ink-2: #130509;
  --ink-3: #1b0710;
  --wine-1: #2a0815;        /* deep wine */
  --wine-2: #3d0a1d;
  --wine-3: #571026;
  --red-1: #ff2348;         /* red glow */
  --red-2: #ff486b;
  --red-deep: #c30b29;
  --red-blood: #7a0418;
  --ember: #ff7a3d;         /* warm flame accent from Fantasy logo */
  --purple-brand: #8200db;  /* Fantasy brand purple (sparingly) */
  --aubergine: #5c386e;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.92);
  --white-70: rgba(255,255,255,0.72);
  --white-50: rgba(255,255,255,0.5);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --white-06: rgba(255,255,255,0.06);
  --line: rgba(255, 60, 90, 0.18);
  --line-soft: rgba(255,255,255,0.08);

  --gradient-red: linear-gradient(135deg, #ff2348 0%, #c30b29 60%, #7a0418 100%);
  --gradient-wine: linear-gradient(180deg, #2a0815 0%, #0a0306 100%);
  --gradient-radial-red: radial-gradient(60% 60% at 50% 40%, rgba(255,35,72,0.35) 0%, rgba(255,35,72,0) 70%);

  --shadow-red: 0 18px 60px -12px rgba(255, 35, 72, 0.45), 0 0 0 1px rgba(255, 80, 110, 0.18) inset;
  --shadow-card: 0 30px 60px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04) inset;
  --shadow-glass: 0 24px 70px -20px rgba(255, 25, 60, 0.25), 0 1px 0 0 rgba(255,255,255,0.06) inset;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --max: 1280px;
  --pad-x: clamp(20px, 4vw, 64px);

  --t-fast: 180ms cubic-bezier(.2,.8,.2,1);
  --t-med: 380ms cubic-bezier(.2,.8,.2,1);
  --t-slow: 800ms cubic-bezier(.2,.8,.2,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--ink-0);
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { margin: 0; line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }

/* ============ AMBIENT BACKDROP ============ */
.backdrop {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(255, 35, 72, 0.22) 0%, transparent 60%),
    radial-gradient(80% 50% at 0% 30%, rgba(130, 0, 219, 0.10) 0%, transparent 60%),
    radial-gradient(60% 60% at 50% 110%, rgba(255, 35, 72, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0a0306 0%, #050103 50%, #0a0306 100%);
}
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}
.particles {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, transparent, #ff2348, #ff486b, #ff2348);
  box-shadow: 0 0 18px #ff2348;
  z-index: 100;
  transition: width 80ms linear;
}

/* ============ LAYOUT WRAP ============ */
.wrap { position: relative; z-index: 2; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: backdrop-filter var(--t-med), background var(--t-med), padding var(--t-med);
}
.nav.is-scrolled {
  background: rgba(10, 3, 6, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-flame {
  width: 30px; height: 30px;
  filter: drop-shadow(0 0 14px rgba(255, 80, 60, 0.6));
}
.brand-name {
  font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
  background: linear-gradient(180deg, #fff 0%, #ffb8c6 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; color: var(--white-70); font-weight: 500;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 13px; font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, #ff2348, #c30b29);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,80,110,0.4) inset, 0 8px 24px -8px rgba(255,35,72,0.6);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,80,110,0.6) inset, 0 14px 36px -8px rgba(255,35,72,0.8); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ============ BUTTONS ============ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff2348 0%, #c30b29 100%);
  box-shadow:
    0 0 0 1px rgba(255,120,140,0.35) inset,
    0 14px 40px -10px rgba(255, 35, 72, 0.65),
    0 0 80px -20px rgba(255, 35, 72, 0.6);
}
.btn-primary::before {
  content: ""; position: absolute; inset: -2px; border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  filter: blur(10px); opacity: 0; transition: opacity var(--t-med);
  z-index: -1;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::before { opacity: 0.7; }
.btn-primary .btn-arrow { transition: transform var(--t-fast); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }

.btn-pulse {
  animation: btnPulse 2.4s ease-in-out infinite;
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 0 0 1px rgba(255,120,140,0.35) inset, 0 14px 40px -10px rgba(255,35,72,0.65), 0 0 80px -20px rgba(255,35,72,0.6); }
  50% { box-shadow: 0 0 0 1px rgba(255,150,170,0.5) inset, 0 18px 60px -10px rgba(255,35,72,0.9), 0 0 120px -10px rgba(255,35,72,0.8); }
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white-70);
  padding: 8px 14px;
  background: rgba(255, 35, 72, 0.06);
  border: 1px solid rgba(255, 35, 72, 0.22);
  border-radius: var(--r-pill);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff2348;
  box-shadow: 0 0 12px #ff2348;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.h-display {
  font-size: clamp(40px, 7.2vw, 104px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h-section {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--white-70);
  line-height: 1.55;
  font-weight: 400;
  max-width: 56ch;
  text-wrap: pretty;
}
.gradient-red {
  background: linear-gradient(120deg, #ff8a9c 0%, #ff2348 35%, #ff486b 70%, #ffb0bf 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.italic-soft { font-style: italic; font-weight: 400; color: var(--white-70); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad-x) 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-copy { position: relative; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 28px; }
.hero h1 .line { display: block; }
.hero-sub { margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-microproof {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--white-50);
}
.hero-microproof .check { color: #ff486b; }
.hero-microproof .divider { width: 1px; height: 14px; background: var(--white-10); }

/* hero floating stats */
.hero-stats {
  display: flex; gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat-chip {
  padding: 14px 18px;
  background: rgba(20, 6, 11, 0.7);
  border: 1px solid rgba(255, 80, 110, 0.18);
  border-radius: var(--r-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glass);
  min-width: 130px;
}
.stat-chip .num { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.stat-chip .lbl { font-size: 11px; color: var(--white-50); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 960px) { .hero-stats { margin-top: 28px; } }

/* hero visual / device */
.hero-visual {
  position: relative;
  height: clamp(520px, 70vh, 720px);
  display: flex; align-items: center; justify-content: center;
}
.device {
  position: relative;
  width: 320px;
  height: 660px;
  border-radius: 50px;
  background: linear-gradient(180deg, #1a0810 0%, #050103 100%);
  border: 1px solid rgba(255, 80, 110, 0.2);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.02),
    0 60px 120px -30px rgba(255, 35, 72, 0.55),
    0 0 120px -10px rgba(255, 35, 72, 0.3);
  padding: 14px;
  z-index: 2;
  transform: rotate(-3deg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-12px); }
}
.device::before {
  content: "";
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 24px; border-radius: 12px;
  background: #050103;
  z-index: 4;
}
.device-screen {
  width: 100%; height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(180deg, #0e0408, #1a0810);
  position: relative;
}
.device-screen .status {
  position: absolute; top: 0; left: 0; right: 0;
  height: 44px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px 0;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.app-header {
  padding: 60px 18px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.app-header .logo-mini { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.app-header .logo-mini img { width: 22px; height: 22px; }
.app-header .icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  font-size: 13px;
}
.app-tabs {
  display: flex; gap: 6px; padding: 0 18px 14px;
  font-size: 11px;
}
.app-tab {
  padding: 8px 14px; border-radius: var(--r-pill);
  color: var(--white-50);
  background: rgba(255,255,255,0.04);
}
.app-tab.active {
  background: linear-gradient(180deg, #ff2348, #c30b29);
  color: #fff; font-weight: 600;
  box-shadow: 0 4px 14px -2px rgba(255,35,72,0.6);
}
.app-event-card {
  margin: 0 14px 12px;
  padding: 14px;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(255,35,72,0.18), rgba(255,35,72,0.04));
  border: 1px solid rgba(255,80,110,0.22);
  position: relative;
  overflow: hidden;
}
.app-event-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(255,90,120,0.25), transparent 50%);
}
.app-event-card .row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; position: relative; }
.app-event-card .title { font-size: 14px; font-weight: 700; }
.app-event-card .meta { font-size: 10px; color: var(--white-50); margin-top: 4px; }
.app-event-card .badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 8px; border-radius: var(--r-pill);
  background: #ff2348; color: #fff; text-transform: uppercase;
}
.app-event-card .bar {
  margin-top: 12px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.08); overflow: hidden; position: relative;
}
.app-event-card .bar::after {
  content: ""; position: absolute; inset: 0;
  width: 72%; background: linear-gradient(90deg, #ff2348, #ff7a3d);
  border-radius: 2px;
}
.app-event-card .foot { display: flex; justify-content: space-between; margin-top: 6px; font-size: 10px; color: var(--white-70); }

.app-mini-row { padding: 8px 14px; display: flex; gap: 8px; }
.app-mini-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  padding: 10px;
}
.app-mini-card .k { font-size: 9px; color: var(--white-50); text-transform: uppercase; letter-spacing: 0.06em; }
.app-mini-card .v { font-size: 16px; font-weight: 700; margin-top: 4px; }
.app-mini-card .v.red { color: #ff486b; }
.app-mini-card .v.green { color: #57e0a3; }

/* floating notif */
.float-notif {
  position: absolute;
  z-index: 3;
  background: rgba(20, 6, 11, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 80, 110, 0.25);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex; gap: 10px; align-items: center;
  font-size: 12px;
  box-shadow: var(--shadow-glass);
  max-width: 240px;
}
.float-notif .icon-wrap {
  width: 34px; height: 34px; border-radius: 10px; flex: 0 0 34px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #ff2348, #c30b29);
  font-size: 16px;
}
.float-notif strong { font-size: 13px; }
.float-notif .meta { color: var(--white-50); font-size: 11px; margin-top: 2px; }

.float-1 { top: 8%; right: -10px; animation: floatA 7s ease-in-out infinite; }
.float-2 { bottom: 12%; left: -30px; animation: floatA 8s ease-in-out 0.5s infinite reverse; }
@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* hero glow rings */
.glow-ring {
  position: absolute;
  width: 800px; height: 800px;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,35,72,0.25), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* ============ SECTION FRAME ============ */
.section { padding: 140px 0; position: relative; }
.section-narrow { padding: 100px 0; }
.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
.section-head .h-section .gradient-red { display: inline; }

/* ============ PAIN ============ */
.pain {
  background: linear-gradient(180deg, transparent 0%, rgba(255,35,72,0.04) 40%, transparent 100%);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.pain-card {
  position: relative;
  padding: 28px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid var(--line-soft);
  font-size: 17px; line-height: 1.5; color: var(--white-90);
  font-weight: 400;
  font-style: italic;
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med);
}
.pain-card::before {
  content: '"';
  position: absolute; top: 0; right: 18px;
  font-size: 90px; line-height: 1; font-weight: 800;
  color: rgba(255, 35, 72, 0.18);
  font-style: normal;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 35, 72, 0.4);
  box-shadow: 0 30px 60px -30px rgba(255, 35, 72, 0.35);
}
.pain-foot {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(255,35,72,0.08), rgba(122,4,24,0.02));
  border: 1px solid rgba(255,35,72,0.15);
}
.pain-foot p { font-size: 17px; color: var(--white-70); line-height: 1.6; }
.pain-foot strong { color: var(--white); font-weight: 600; }
@media (max-width: 760px) { .pain-foot { grid-template-columns: 1fr; padding: 28px; } }

/* ============ SOLUTION ============ */
.solution-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) { .solution-grid { grid-template-columns: 1fr; } }

.solution-points {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 36px;
}
.solution-point {
  display: flex; gap: 16px; align-items: flex-start;
}
.solution-point .ix {
  flex: 0 0 38px; width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,35,72,0.25), rgba(255,35,72,0.05));
  border: 1px solid rgba(255,35,72,0.3);
  display: grid; place-items: center;
  font-weight: 700; color: #ff8597;
}
.solution-point .txt {
  font-size: 16px; color: var(--white-70); line-height: 1.6;
}
.solution-point .txt strong { color: var(--white); font-weight: 600; }

/* solution flow diagram */
.flow {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(255,35,72,0.15), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 32px;
  overflow: hidden;
}
.flow::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 80%);
}
.flow-node {
  position: absolute;
  padding: 12px 16px;
  border-radius: var(--r-pill);
  background: rgba(20,6,11,0.8);
  border: 1px solid rgba(255,80,110,0.3);
  backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 500;
  display: flex; gap: 8px; align-items: center;
  white-space: nowrap;
  box-shadow: 0 14px 28px -10px rgba(255,35,72,0.45);
}
.flow-node .d { width: 8px; height: 8px; border-radius: 50%; background: #ff2348; box-shadow: 0 0 10px #ff2348; }
.flow-node.n1 { top: 8%; left: 6%; }
.flow-node.n2 { top: 30%; right: 6%; }
.flow-node.n3 { bottom: 30%; left: 4%; }
.flow-node.n4 { bottom: 8%; right: 8%; }
.flow-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,35,72,0.5), rgba(255,35,72,0.05) 70%);
  display: grid; place-items: center;
  border: 1px solid rgba(255,80,110,0.4);
  box-shadow: 0 0 60px rgba(255,35,72,0.4);
}
.flow-center img { width: 64px; height: 64px; filter: drop-shadow(0 0 18px rgba(255,80,60,0.7)); }
.flow svg.lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.flow svg.lines path {
  stroke: rgba(255,35,72,0.5);
  stroke-width: 1; fill: none; stroke-dasharray: 4 6;
  animation: dashFlow 2s linear infinite;
}
@keyframes dashFlow { to { stroke-dashoffset: -20; } }

/* ============ BENEFITS ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  position: relative;
  padding: 28px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.005));
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
  min-height: 280px;
  display: flex; flex-direction: column;
}
.benefit::after {
  content: "";
  position: absolute; inset: -1px; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,80,110,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity var(--t-med);
  pointer-events: none;
}
.benefit:hover { transform: translateY(-6px); }
.benefit:hover::after { opacity: 1; }
.benefit:hover .b-icon { box-shadow: 0 0 30px rgba(255, 35, 72, 0.5); }
.b-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(160deg, rgba(255,35,72,0.25), rgba(255,35,72,0.05));
  border: 1px solid rgba(255, 35, 72, 0.3);
  display: grid; place-items: center;
  color: #ff8597;
  margin-bottom: 22px;
  transition: box-shadow var(--t-med);
}
.b-icon svg { width: 22px; height: 22px; }
.b-title { font-size: 17px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.b-desc { font-size: 14px; color: var(--white-70); line-height: 1.55; }

/* ============ SOCIAL PROOF ============ */
.proof {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(255,35,72,0.14), transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(255,35,72,0.05) 50%, transparent 100%);
  padding: 160px 0;
}
.proof-numbers {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 64px;
}
@media (max-width: 760px) { .proof-numbers { grid-template-columns: repeat(2, 1fr); } }
.proof-num {
  padding: 32px 24px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,35,72,0.06), transparent);
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.proof-num::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, #ff2348, transparent);
}
.proof-num .big {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #ff8597 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof-num .lbl { margin-top: 12px; font-size: 13px; color: var(--white-50); }

.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  padding: 32px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.005));
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(10px);
  position: relative;
  display: flex; flex-direction: column; gap: 22px;
}
.testimonial .quote-mark {
  font-size: 48px; line-height: 0.5; color: #ff486b; font-weight: 800;
  font-family: Georgia, serif;
}
.testimonial .body { font-size: 15px; color: var(--white-90); line-height: 1.55; flex: 1; }
.testimonial .who { display: flex; gap: 12px; align-items: center; }
.testimonial .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 42px;
  background: linear-gradient(135deg, #ff2348, #5c386e);
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px;
}
.testimonial .name { font-size: 14px; font-weight: 600; }
.testimonial .role { font-size: 12px; color: var(--white-50); margin-top: 2px; }
.testimonial .stars { color: #ff486b; font-size: 12px; letter-spacing: 2px; }

/* ============ OFFER ============ */
.offer {
  padding: 160px 0;
}
.offer-card {
  position: relative;
  max-width: 980px; margin: 0 auto;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,35,72,0.08), rgba(20,6,11,0.5));
  border: 1px solid rgba(255, 35, 72, 0.3);
  padding: 72px 56px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 60px 120px -40px rgba(255,35,72,0.45),
    0 0 200px -40px rgba(255,35,72,0.4);
}
.offer-card::before {
  content: ""; position: absolute; inset: -100px;
  background:
    radial-gradient(40% 30% at 50% 0%, rgba(255,35,72,0.4), transparent 70%),
    radial-gradient(40% 30% at 50% 100%, rgba(130,0,219,0.2), transparent 70%);
  pointer-events: none;
}
.offer-card > * { position: relative; }
.offer-seal {
  position: absolute; top: 24px; right: 24px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,35,72,0.15);
  border: 1px solid rgba(255,35,72,0.45);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: #ff8597;
}
.offer-top { text-align: center; margin-bottom: 40px; }
.offer-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; margin: 0 0 48px; padding: 0; list-style: none; }
@media (max-width: 720px) { .offer-list { grid-template-columns: 1fr; } }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--white-90); }
.offer-list .check {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(180deg, #ff2348, #c30b29);
  display: grid; place-items: center;
  box-shadow: 0 0 16px rgba(255,35,72,0.5);
}
.offer-list .check svg { width: 12px; height: 12px; color: #fff; }
.offer-price {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.offer-price .label { font-size: 13px; color: var(--white-50); letter-spacing: 0.12em; text-transform: uppercase; }
.offer-price .price {
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  margin: 12px 0 8px;
  background: linear-gradient(180deg, #fff 0%, #ff486b 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.offer-price .price-sub { font-size: 14px; color: var(--white-50); font-style: italic; margin-bottom: 32px; }
.offer-note {
  margin-top: 28px;
  font-size: 13px; color: var(--white-70);
  text-align: center;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.offer-note .bolt { color: #ffb84d; }

/* ============ OBJECTIONS / FAQ ACCORDION ============ */
.accordion {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 880px; margin: 0 auto;
}
.acc-item {
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.005));
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: border-color var(--t-med), background var(--t-med), box-shadow var(--t-med);
}
.acc-item.open {
  border-color: rgba(255, 35, 72, 0.4);
  background: linear-gradient(180deg, rgba(255, 35, 72, 0.06), rgba(255,255,255,0.005));
  box-shadow: 0 20px 60px -30px rgba(255, 35, 72, 0.5);
}
.acc-head {
  width: 100%;
  padding: 22px 26px;
  display: flex; gap: 20px; align-items: center; justify-content: space-between;
  text-align: left;
  font-size: 16px; font-weight: 500; color: var(--white);
  transition: color var(--t-fast);
}
.acc-head:hover { color: #ff8597; }
.acc-toggle {
  flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
  display: grid; place-items: center;
  transition: transform var(--t-med), background var(--t-med);
  color: var(--white-70);
}
.acc-item.open .acc-toggle {
  transform: rotate(45deg);
  background: linear-gradient(180deg, #ff2348, #c30b29);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(255,35,72,0.5);
}
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-med);
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner {
  overflow: hidden;
  padding: 0 26px;
  font-size: 15px; color: var(--white-70); line-height: 1.65;
}
.acc-body-inner p { padding-bottom: 26px; padding-top: 4px; }

/* ============ GUARANTEE ============ */
.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
  max-width: 980px; margin: 0 auto;
  padding: 48px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,35,72,0.04));
  border: 1px solid var(--line-soft);
}
@media (max-width: 760px) { .guarantee { grid-template-columns: 1fr; text-align: center; } }
.guarantee-seal {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,35,72,0.4), rgba(255,35,72,0.05) 70%);
  border: 1px solid rgba(255,35,72,0.4);
  display: grid; place-items: center;
  font-size: 36px;
  position: relative;
  margin: 0 auto;
}
.guarantee-seal svg { width: 56px; height: 56px; color: #ff486b; filter: drop-shadow(0 0 14px rgba(255,80,110,0.6)); }
.guarantee h3 { font-size: 24px; margin-bottom: 8px; letter-spacing: -0.02em; }
.guarantee p { color: var(--white-70); font-size: 15px; line-height: 1.6; }

/* ============ URGENCY ============ */
.urgency {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.urgency::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 80% at 80% 50%, rgba(255,35,72,0.15), transparent 60%),
    radial-gradient(40% 80% at 20% 50%, rgba(255,35,72,0.1), transparent 60%);
}
.urgency .container { position: relative; }
.urgency-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .urgency-row { grid-template-columns: 1fr; } }
.urgency-question {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
}
.urgency-question .gradient-red { display: inline; }

/* ============ FINAL CTA ============ */
.final {
  position: relative;
  padding: 180px 0 140px;
  text-align: center;
  overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 50% 100%, rgba(255,35,72,0.3), transparent 70%),
    radial-gradient(60% 40% at 50% 0%, rgba(255,35,72,0.15), transparent 70%);
}
.final-content { position: relative; max-width: 900px; margin: 0 auto; }
.final-prose { display: flex; flex-direction: column; gap: 18px; font-size: clamp(18px, 1.6vw, 22px); color: var(--white-90); line-height: 1.4; margin-bottom: 48px; }
.final-prose strong { color: #ff8597; font-weight: 600; }
.final h2 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.95;
  margin: 30px 0 24px;
}
.final-microproof {
  margin-top: 28px;
  font-size: 13px; color: var(--white-50);
  display: flex; gap: 18px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.final-microproof .divider { width: 1px; height: 14px; background: var(--white-10); }

.ps {
  margin-top: 100px;
  padding: 48px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-soft);
  border-left: 3px solid #ff2348;
  max-width: 880px; margin-left: auto; margin-right: auto;
  text-align: left;
  position: relative;
}
.ps-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: #ff8597;
  text-transform: uppercase; margin-bottom: 16px;
  display: block;
}
.ps p { font-size: 15px; color: var(--white-70); line-height: 1.7; margin-bottom: 14px; }
.ps p:last-child { margin-bottom: 0; }
.ps strong { color: var(--white); }
.ps .punch { color: var(--white); font-weight: 600; }

/* ============ FOOTER ============ */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--white-50);
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 24px; height: 24px; opacity: 0.85; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--white); }
.footer-base { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; font-size: 12px; color: var(--white-30); flex-wrap: wrap; gap: 10px; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 800ms cubic-bezier(.2,.8,.2,1), transform 800ms cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
