/* ============================================================
   Flowomatic — JVZoo Launch Funnel Design System
   Brand: flowomatic.com/brand
   Voice: outcome-focused, hybrid JVZoo cadence
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

/* ---------- Tokens ---------- */
:root {
  /* Primary indigo */
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --indigo-900: #312e81;
  --indigo-950: #1e1b4b;

  /* Violet accent */
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  /* CLAWAgents electric accents */
  --cyan-300:#67e8f9; --cyan-400:#22d3ee; --cyan-500:#06b6d4; --cyan-600:#0891b2;
  --magenta-300:#f0abfc; --magenta-400:#e879f9; --magenta-500:#d946ef; --magenta-600:#c026d3;
  --lime-300:#bef264; --lime-400:#a3e635; --lime-500:#84cc16;
  --gradient-magenta:linear-gradient(135deg, #2563EB 0%,#8b5cf6 100%);
  --gradient-cyan:linear-gradient(135deg,#22d3ee 0%,#6366f1 100%);

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f8f9fb;
  --bg-mute: #f1f3f9;
  --line: #e5e7eb;
  --line-soft: #eef0f6;

  --ink: #0f1020;
  --ink-2: #2a2c3e;
  --ink-3: #555770;
  --ink-mute: #7e8195;

  /* Dark sections */
  --dark-bg: #0a0a0f;
  --dark-card: #111318;
  --dark-card-2: #1a1c25;
  --dark-line: #23262f;
  --dark-line-2: #2c3040;
  --dark-ink: #ffffff;
  --dark-ink-2: #d4d6e0;
  --dark-ink-3: #9095a8;

  /* Signals */
  --success: #10b981;
  --success-bg: #ecfdf5;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --danger: #ef4444;
  --danger-bg: #fef2f2;

  /* Brand gradient */
  --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #22d3ee 100%);
  --gradient-soft: linear-gradient(135deg, #eef2ff 0%, #faf0ff 55%, #ecfeff 100%);
  --gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #6d28d9 55%, #0e7490 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 16, 32, 0.04),
    0 1px 3px rgba(15, 16, 32, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 16, 32, 0.06),
    0 2px 4px -2px rgba(15, 16, 32, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 16, 32, 0.08),
    0 4px 6px -4px rgba(15, 16, 32, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 16, 32, 0.1),
    0 8px 10px -6px rgba(15, 16, 32, 0.06);
  --shadow-glow: 0 0 0 1px rgba(168,85,247,0.22), 0 8px 30px rgba(217,70,239,0.25), 0 4px 20px rgba(34,211,238,0.18);

  /* Layout */
  --container: 1200px;
  --container-narrow: 900px;
  --container-wide: 1320px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  /* Type */
  --font: "Google Sans", sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01", "ss03";
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--indigo-600);
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: var(--indigo-700);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  font-family: "Bricolage Grotesque", sans-serif;
}
h1 {
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.03em;
  font-weight: 800;
}
h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}
h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 16px;
  color: var(--ink-2);
}
.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
}
.eyebrow {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    border: 1px solid #000;
    font-weight: 500;
    padding: 4px 20px;
    margin-bottom: 20px;
    position: relative;
}
.eyebrow::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    left: 0px;
    top: 0px;
    translate: -50% -50%;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-image: none;
    background: rgb(255, 255, 255);
}
.eyebrow::after {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border: 1px solid #000;
    bottom: 0px;
    right: 0px;
    background: #fff;
    translate: 50% 50%;
}
.eyebrow.dark {
  color: var(--violet-400);
}
strong {
  font-weight: 700;
  color: var(--ink);
}
.text-grad {
  /* background: var(--gradient); */
  background: linear-gradient(180deg, #FFC65A 0%, #C9821F 55%, #8A4B00 100%) text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-mute {
  color: var(--ink-3);
}
.text-center {
  text-align: center;
}

.f-18{font-size: 18px !important;}
.f-20{font-size: 20px !important;}
.f-22{font-size: 22px !important;}
.f-24{font-size: 24px !important;}
.f-26{font-size: 26px !important;}
.f-28{font-size: 28px !important;}
.f-30{font-size: 30px !important;}
.f-32{font-size: 32px !important;}
.f-34{font-size: 34px !important;}
.f-36{font-size: 36px !important;}
.f-38{font-size: 38px !important;}
.f-40{font-size: 40px !important;}
.fw-1{font-weight: 100 !important;}
.fw-2{font-weight: 200 !important;}
.fw-3{font-weight: 300 !important;}
.fw-4{font-weight: 400 !important;}
.fw-5{font-weight: 500 !important;}
.fw-6{font-weight: 600 !important;}
.fw-7{font-weight: 700 !important;}
.fw-8{font-weight: 800 !important;}
.fw-9{font-weight: 900 !important;}
.text-primary{
    color: var(--primary-color) !important;
}
.text-primary2{
    color: #2563EB !important;
}
.text-secondary{
    color: #13a9fe !important;
}
.text-secondary2{
    color: #da78fd; !important;
}
.text-highlight {
    border-radius: 8px;
    background-color: #da78fd;
    color: #fff;
    display: inline-block;
    padding: 3px 10px 9px 10px;
    line-height: 75%;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
}
.container.narrow {
  max-width: var(--container-narrow);
}
.container.wide {
  max-width: var(--container-wide);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: #fff;
  transition: all 150ms ease;
  text-align: center;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover {
  background: var(--ink-2);
  color: #fff;
  transform: translateY(-1px);
}
.btn-primary {
    background: var(--gradient-magenta);
    color: #fff;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  /* box-shadow: 0 14px 36px rgba(99, 102, 241, 0.45); */
}
.btn-cta {
    background: var(--primary-color);
    color: #fff;
    padding: 18px 35px;
    font-size: 17px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    line-height: 1;
}
.btn-cta:hover {
  transform: translateY(-2px);
  color: #fff;
  /* box-shadow: 0 18px 44px rgba(99, 102, 241, 0.55); */
}
.btn-cta.lg {
  padding: 22px 48px;
  font-size: 20px;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--ink-mute);
  color: var(--ink);
}
.btn-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: #fff;
  padding: 18px 40px;
  font-size: 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}
.btn-warning:hover {
  transform: translateY(-2px);
  color: #fff;
}
.btn-block {
  display: flex;
  width: 100%;
}
.btn-sub {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
}

/* ---------- Pre-head urgency strip ---------- */
.urgency-strip {
    /* background: linear-gradient(90deg, #ef4444 0%, #f59e0b 100%); */
    background: linear-gradient(259deg, #FFC65A 0%, #C9821F 55%, #8A4B00 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 8px 16px;
    letter-spacing: -0.005em;
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
}
.urgency-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.urgency-strip strong {
  color: #fff200;
  font-weight: 800;
}
.urgency-strip .countdown {
    display: inline-flex;
    gap: 6px;
    margin-left: 10px;
    font-family: var(--font-mono);
    font-weight: 700;
    background: rgb(255 0 0);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 18px;
}

/* ---------- Masthead ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.masthead-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.masthead-logo img {
  height: 28px;
}
.masthead-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.masthead-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
}
.masthead-price strong {
  color: var(--indigo-600);
  font-size: 15px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 40px 0 80px !important;
    background: url(../images/hero.webp);
    background-size: cover;
    overflow: hidden;
    background-position: top;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  margin-bottom: 20px;
}
.hero .lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.hero-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.45;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--gradient);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8.5L6.5 12L13 4.5' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.hero-trust {
  display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-mute);
    margin-top: 10px;
    justify-content: center;
    margin-bottom: 15px;
}
.hero-trust .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
    color: var(--ink-mute);
}
.hero-trust .badge::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
}
.hero-mock {
  position: relative;
  padding: 22px;
  background: linear-gradient(160deg, #f8f9fb 0%, #eef2ff 100%);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}
.hero-mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--gradient);
  border-radius: var(--radius-2xl);
  z-index: -1;
  opacity: 0.6;
  filter: blur(40px);
}

/* ---------- Mock dashboards ---------- */
.mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}
.mock-header .dots {
  display: flex;
  gap: 6px;
}
.mock-header .dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e5e7eb;
}
.mock-header .dots span:nth-child(1) {
  background: #ff5f57;
}
.mock-header .dots span:nth-child(2) {
  background: #febc2e;
}
.mock-header .dots span:nth-child(3) {
  background: #28c840;
}
.mock-header .title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  margin-bottom: 6px;
  font-size: 13px;
}
.mock-row.active {
  background: var(--indigo-50);
  color: var(--indigo-700);
  font-weight: 600;
}
.mock-row .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-row .pill {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--success-bg);
  color: var(--success);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mock-row .pill.run {
  background: var(--indigo-50);
  color: var(--indigo-700);
}
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-tile {
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  text-align: center;
}
.mock-tile.brand {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

/* ---------- Sections ---------- */
section {
  padding: 72px 0;
}
section.tight {
  padding: 56px 0;
}
section.dark {
  background: var(--dark-bg);
  color: var(--dark-ink);
}
section.dark h1,
section.dark h2,
section.dark h3,
section.dark h4 {
  color: var(--dark-ink);
}
section.dark p {
  color: var(--dark-ink-2);
}
section.dark .lead {
  color: var(--dark-ink-2);
}
section.dark .text-mute {
  color: var(--dark-ink-3);
}
section.soft {
  background: var(--bg-soft);
}
section.gradient {
  background: radial-gradient(
      ellipse at top,
      rgba(139, 92, 246, 0.18),
      transparent 60%
    ),
    var(--dark-bg);
  color: var(--dark-ink);
}
section.gradient h1,
section.gradient h2,
section.gradient h3 {
  color: var(--dark-ink);
}
section.gradient p,
section.gradient .lead {
  color: var(--dark-ink-2);
}

.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 760px;
}
.section-head h2 {
  margin-bottom: 14px;
}
.section-head .lead {
  color: var(--ink-3);
}
section.dark .section-head .lead {
  color: var(--dark-ink-2);
}

/* ---------- Stat band ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  /* padding: 32px 0; */
}
.stat {
  text-align: center;
}
.stat .num {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}
section.dark .stat .num {
  background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
section.dark .stat .label {
  color: var(--dark-ink-3);
}

/* ---------- Pain / Option grid ---------- */
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.option-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.option-card.bad {
  border-color: #fecaca;
  background: #fff7f7;
}
.option-card.good {
  border-color: var(--indigo-500);
  background: linear-gradient(160deg, #fff 0%, #eef2ff 100%);
  box-shadow: var(--shadow-glow);
}
.option-card .opt-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.option-card.bad .opt-tag {
  background: #fee2e2;
  color: #b91c1c;
}
.option-card.good .opt-tag {
  background: var(--gradient);
  color: #fff;
}
.option-card.neutral .opt-tag {
  background: var(--warning-bg);
  color: #92400e;
}
.option-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.option-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.option-card li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
}
.option-card.bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}
.option-card.good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.option-card.neutral li::before {
  content: "~";
  position: absolute;
  left: 0;
  color: var(--warning);
  font-weight: 700;
}

/* ---------- 3-step "How it works" ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-md);
}
.step-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

/* ---------- Feature deepdive ---------- */
.deepdive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 56px 0;
}
.deepdive.reverse {
  direction: rtl;
}
.deepdive.reverse > * {
  direction: ltr;
}
.deepdive h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 12px;
}
.deepdive .eyebrow {
  margin-bottom: 14px;
}
.deepdive ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}
.deepdive ul li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.deepdive ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--indigo-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8.5L6.5 12L13 4.5' stroke='%234f46e5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-tile {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 200ms ease;
}
.feature-tile:hover {
  transform: translateY(-3px);
  border-color: var(--indigo-300);
  box-shadow: var(--shadow-md);
}
.feature-tile .icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-soft);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo-600);
  font-size: 18px;
  margin-bottom: 12px;
}
.feature-tile h4 {
  font-size: 15px;
  margin-bottom: 6px;
}
.feature-tile p {
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}

/* Long fascination bullet list */
.fascination-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}
.fascination-list li {
  position: relative;
  padding: 10px 14px 10px 36px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line-soft);
}
.fascination-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 11px;
  width: 18px;
  height: 18px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  line-height: 18px;
}
.fascination-list li strong {
  color: var(--ink);
}

/* ---------- Comparison table ---------- */
.compare-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.toolstable .compare-wrap {
  overflow: hidden !important;
}
table.compare th,
table.compare td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line-soft);
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}
table.compare thead th {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #332780;
    text-align: center;
}
.toolstable table.compare thead th{
  background: #332780 !important;
  color: #fff !important;
}
table.compare thead th.brand-col {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  scale: 1.05;
  border-radius: 20px 20px 0px 0px;
}
table.compare tbody td.brand-col {
    background: rgba(99, 102, 241, 0.06);
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: var(--gradient);
    scale: 1.05;
}
table.compare tbody td.brand-col strong {
    font-weight: 700;
    color: #FFDE4A;
}
table.compare td:first-child {
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
table.compare td.x {
  color: var(--danger);
}
table.compare td.check {
  color: var(--success);
}
table.compare tr:last-child td {
  border-bottom: 0;
}

/* ---------- Pricing card ---------- */
.pricing-row {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}
.pricing-card {
  max-width: 540px;
  width: 100%;
  background: #fff;
  border: 2px solid var(--indigo-500);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.pricing-head {
  background: var(--gradient);
  color: #fff;
  padding: 24px;
  text-align: center;
}
.pricing-head .tier {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom:20px;
}
.pricing-head .price {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-head .price .currency {
  font-size: 28px;
  vertical-align: top;
  margin-right: 4px;
}
.pricing-head .price .cents {
  font-size: 24px;
  vertical-align: top;
}
.pricing-head .anchor {
  font-size: 18px;
  opacity: 0.85;
  margin-top: 8px;
}
.couponetable {
    margin-top: 20px;
    font-size: 18px;
}
.pricing-head .anchor s {
  opacity: 0.7;
}
.pricing-body {
  padding: 28px;
}
.pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 13px;
}
.pricing-body li {
  position: relative;
  padding-left: 40px;
  font-size: 20px;
  color: var(--ink-2);
}
.pricing-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  background: var(--success-bg);
  border-radius: 50%;
  background-image: url(../images/check.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.pricing-foot {
  padding: 18px 28px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 16px;
  color: var(--ink-3);
}
.pricing-coupon {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  background: #fff200;
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* ---------- Offer stack ---------- */
.offer-stack {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.offer-stack h3 {
  text-align: center;
  margin-bottom: 22px;
  font-size: 24px;
}
.offer-stack ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer-stack li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 18px;
}
.offer-stack li:last-of-type {
  border-bottom: 0;
}
.offer-stack li .item-name {
  color: var(--ink-2);
  padding-right: 16px;
}
.offer-stack li .item-name strong {
  color: var(--ink);
}
.offer-stack li .item-value {
  font-weight: 700;
  color: var(--indigo-600);
  font-family: var(--font-mono);
  white-space: nowrap;
  font-size: 20px;
}
.offer-stack .total {
  margin-top: 16px;
  padding: 18px;
  background: var(--gradient);
  border-radius: var(--radius-md);
  color: #fff;
  text-align: center;
}
.offer-stack .total .label {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.offer-stack .total .amount {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.offer-stack .total .you-pay {
  font-size: 18px;
  margin-top: 8px;
  opacity: 0.95;
}
.offer-stack .total .you-pay strong{
  color: #fff200;
}
.offer-stack .total .you-pay s {
  opacity: 0.6;
}

/* ---------- Bonus grid ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.bonus-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.bonus-body {
    padding: 130px 30px 30px;
    text-align: center;
}
.bonus-card .bonus-num {
    background: #FFDE4A;
    color: #000;
    padding: 4px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}
.bonus-thumb img.product-img {
    width: 50%;
    margin: auto;
    margin-bottom: -110px;
    display: unset;
    margin-top: 20px;
}
.bonus-card h4 {
  font-size: 26px;
  margin: 8px 0 8px;
}
.bonus-card p {
  font-size: 20px;
  color: var(--ink-3);
  margin: 0 0 10px;
  line-height: 1.5;
}
.bonus-card .bonus-value {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--violet-600);
  font-family: var(--font-mono);
  background: #f3e8ff;
  padding: 3px 26px;
  border-radius: 10px;
}

/* ---------- Guarantee shield ---------- */
.guarantee-container{
  max-width: 1350px;
  margin: 0px auto;
}
.guarantee {
  padding: 190px 110px;
  position: relative;
  overflow: hidden;
  background-image: url(../images/moneyback-bg.webp);
  background-position: center;
  background-size: cover;
}
.guarantee .shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
  position: relative;
  z-index: 1;
}
.guarantee h3 {
  font-size: 35px;
  margin-bottom: 12px;
}
.guarantee p {
  font-size: 20px;
  margin: 0 auto;
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 150ms ease;
}
.faq details[open] {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--indigo-600);
  transition: transform 150ms ease;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details > div {
  padding: 0 22px 22px;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.6;
}

/* ---------- P.S. block ---------- */
.ps-block {
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.65;
    text-align: center;
    margin-top: 40px !important;
}
.ps-block p {
  margin: 0 0 14px;
  font-size: 20px;
}
.ps-block p:last-child {
  margin-bottom: 0;
}
.ps-block strong {
  color: var(--indigo-700);
  font-weight: 700;
}

/* ---------- Sticky bottom CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-line);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}
.sticky-cta.visible {
  display: flex;
}
.sticky-cta .timer {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.sticky-cta .timer .red {
  color: var(--danger);
}
.sticky-cta .label {
  color: var(--dark-ink-2);
  font-size: 13px;
  font-weight: 500;
}
.sticky-cta .label strong {
  color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-bg);
  color: var(--dark-ink-3);
  padding: 56px 0 32px;
}
.site-footer h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--dark-line);
}
.footer-grid a {
  color: var(--dark-ink-3);
  display: block;
  padding: 4px 0;
  font-size: 14px;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-brand {
  color: var(--dark-ink-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
}
.footer-brand .logo img {
  height: 26px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Helpers ---------- */
.center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mt-12 {
  margin-top: 12px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.flex {
  display: flex;
  gap: 12px;
  align-items: center;
}
.flex-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 56px 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero {
    padding: 48px 0 56px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-bullets {
    grid-template-columns: 1fr;
  }
  .stat-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .option-grid,
  .steps,
  .feature-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .deepdive {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 40px 0;
  }
  .deepdive.reverse {
    direction: ltr;
  }
  .fascination-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  section {
    padding: 56px 0;
  }
}
@media (max-width: 620px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  .container {
    padding: 0 16px;
  }
  .btn-cta {
    padding: 16px 28px;
    font-size: 16px;
  }
  .btn-cta.lg {
    padding: 18px 32px;
    font-size: 17px;
  }
  .pricing-head .price {
    font-size: 44px;
  }
  .offer-stack .total .amount {
    font-size: 32px;
  }
  .urgency-strip {
    font-size: 12.5px;
    padding: 8px 12px;
  }
  .urgency-strip .countdown {
    display: block;
    margin: 6px auto 0;
    width: max-content;
  }
  .masthead-cta .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  .masthead-price {
    display: none;
  }
  section {
    padding: 44px 0;
  }
}
.section06{
    background-color: #f9f9ff;
    padding-top: 70px;
    padding-bottom: 70px;
}
.opt-card {
    background-color: #ffebeb;
    border-radius: 20px;
    padding: 50px 250px 50px 50px;
    position: relative;
}
.opt-card .opt-tag {
    color: #a22e26;
    font-weight: 800;
    font-size: 30px;
    position: absolute;
    right: 30px;
    text-transform: uppercase;
    top: 20px;
    opacity: .6;
}
.opt-card ul{
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.opt-card ul li {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 19px;
    margin-bottom: 20px;
}
.opt-card ul li img{
  width: 30px;
}
.opt-card.opt2 {
    padding: 50px 50px 50px 250px;
    text-align: right;
}
.opt-card.opt2 ul li{
  justify-content: end;
  flex-direction: row-reverse;
}
.opt-card.opt2 .opt-tag{
  right: unset;
  left: 30px;
}
.opt-card.opt3 {
    background: #edf2e8;
}
.opt-card.opt3 .opt-tag {
    color: #366b1d;
}
img.optionarrow {
    margin-left: 40%;
    margin-top: -30px;
    z-index: 9;
    position: relative;
    margin-bottom: 60px;
}
img.optionimg {
    max-width: 520px;
    position: absolute;
    bottom: 60px;
    right: -220px;
}
img.optionimg2 {
    max-width: 520px;
    position: absolute;
    bottom: 60px;
    left: -240px;
}
img.optionarrow.arrow2 {
    transform: rotateX(0) rotateY(180deg) rotateZ(0);
    margin-left: 30%;
}
.section07{
  background-image: url(../images/section04.webp);
  background-size: cover;
  background-position: center;
  padding: 80px 0px;
}
.table-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
}
.table-item img{
  width: 40px;
}
.savings-card{
    display:flex;
    gap:20px;
    padding:30px;
    border-radius:28px;
    background:linear-gradient(135deg,#f7f8ff,#eef2ff);
    box-shadow:
    0 10px 30px rgba(103,76,255,.08),
    0 2px 10px rgba(0,0,0,.03);
    flex-wrap:wrap;
}

.saving-item{
    flex:1;
    min-width:260px;
    display:flex;
    align-items:center;
    gap:18px;
    padding:15px;
    border-radius:22px;
    background:#fff;
    border:1px solid rgba(103,76,255,.08);
    box-shadow:
    0 4px 12px rgba(103,76,255,.05);
    transition:.3s ease;
}

.saving-item:hover{
    transform:translateY(-4px);
}

.saving-item.active{
    background:linear-gradient(135deg,#6c63ff,#7f5cff);
}

.saving-item.active span,
.saving-item.active h3,
.saving-item.active i{
    color:#fff;
}

.saving-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:rgba(103,76,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.saving-item img {
    width: 70px;
}

.saving-item.active .saving-icon{
    background:rgba(255,255,255,.15);
}

.saving-icon i{
    font-size:26px;
    color:#6c63ff;
}

.saving-content span{
    display:block;
    font-size:15px;
    color:#7d8196;
    margin-bottom:6px;
    font-weight:500;
}

.saving-content h3{
    font-size:38px;
    line-height:1;
    margin:0;
    color:#1c1d3a;
    font-weight:700;
}
.section05{
  background-image: url(../images/introducing.webp);
  background-size: cover;
  background-position: bottom;
  padding: 80px 0px;
}
.box-card{
    background-color: #fff;
    border: 2px solid #d1ecb2;
    border-radius: 34px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    box-shadow: 9px 5px 40px rgba(100, 12, 211, .1);
}
.cta-box {
    background-color: #f9f9ff;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 17px 10px 35px rgba(17, 16, 27, .2);
    max-width: 800px;
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
}
.marquue{
    display: inline-block;
    transform: translatex(0);
    animation: marquesina 100s infinite normal linear 1s;
}
@keyframes marquesina{
  0% {
      transform: translatex(0);
  }
  100% {
      transform: translatex(-50%);
  }
}
.section08{
  background-image: url(../images/introbg.jpg);
  background-size: cover;
  background-position: bottom;
  padding: 80px 0px;
}
.hero-card {
    background: url(../images/card-light01.webp);
    background-position: center;
    background-size: cover;
    font-size: 20px;
    font-weight: 300;
    color: var(--ink-3);
    line-height: 1.65;
    text-align: left;
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px;
    border-radius: 30px;
    border: 1px solid rgb(72 100 226);
    margin-bottom: 25px;
    box-shadow: 0 20px 50px -40px rgba(60, 10, 40, 0.4);
}
.hero-card img {
    width: 80px;
    flex-shrink: 0;
}
.hero-card h4 {
    font-size: 23px;
    margin-bottom: 5px;
}
.hero-card span.cap-num {
    font-size: 22px;
    display: block;
    color: var(--indigo-600);
    font-weight: 700;
}
.section08b{
  background-image: url(../images/section08b.webp);
  background-size: cover;
  background-position: center;
  padding: 80px 0px 50px;
}
.wflimg {
    border-radius: 30px;
    border: 1px solid rgb(103 50 208);
    box-shadow: 0px 16px 46px 0px rgba(0, 0, 0, 0.22);
    margin: 20px 0px 30px;
}
.iconcard {
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    background: #fff;
    box-shadow: rgba(113, 67, 203, 0.09) 0px 8px 68px 0px;
    padding: 30px;
    font-size: 18px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}
.iconcard img {
    width:110px;
    margin: auto;
    margin-bottom: 20px;
}
.section09{
  background-image: url(../images/section09.webp);
  background-size: cover;
  background-position: top;
  padding: 80px 0px 170px;
}
.demo-section{
  background-image: url(../images/bg-light.webp);
  background-size: cover;
  background-position: top;
  padding: 80px 0px 80px;
}
.section11{
   background-image: url(../images/dark-long.webp);
    background-size: cover;
    background-position: top;
    padding: 80px 0px 80px;
}
.section11b {
    background-image: url(../images/section08b.webp);
    background-size: cover;
    background-position: center;
    padding: 80px 0px 80px;
}
span.app-keep {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #7b4ce7;
    color: #fff;
    font-weight: 500;
    padding: 4px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: absolute;
    right: 30px;
    top: 20px;
}
img.sadicon {
    position: absolute;
    z-index: 9;
    bottom: 110px;
    left: -60px;
    width: 120px;
}
img.happyicon {
    position: absolute;
    z-index: 9;
    top: 110px;
    right: -60px;
    width: 120px;
}
.section11e {
    background-image: url(../images/section11e.webp);
    background-size: cover;
    background-position: center;
    padding: 80px 0px 80px;
}
.section13 {
    background-image: url(../images/section13.webp);
    background-size: cover;
    background-position: center;
    padding: 80px 0px 80px;
}
.section14 {
    background-image: url(../images/gredientbg.webp);
    background-size: cover;
    background-position: center;
    padding: 80px 0px 80px;
}
.section15 {
    background: #f9fafe;
    padding: 80px 0px;
}
.section16{
  background-image: url(../images/pricebg.webp);
    background-size: cover;
    background-position: top;
    padding: 80px 0px 80px;
}

footer.footer {
    background: var(--dark-bg);
    color: var(--dark-ink-3);
    padding: 56px 0 32px;
}
.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
}
.footer-link li a {
    color: #fafafa;
    font-size: 18px;
}
.footer-link li a:hover{
  color: #13a9fe;
}

.founder-section{
    max-width:1180px;
    margin:auto;
    background:rgba(255,255,255,0.75);
    align-items: center;
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.7);
    border-radius:38px;
    padding:50px;
    display:flex;
    gap:45px;
    box-shadow:
    0 20px 80px rgba(108,77,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* LEFT */

.left-side{
    width:360px;
}

.founder-card{
    background:
    linear-gradient(180deg,#ffffff 0%,#f8f5ff 100%);
    border-radius:32px;
    padding:20px;
    border:1px solid #ece9ff;
    box-shadow:
    0 15px 40px rgba(122,92,255,0.08);
}

.founder-image{
    width:100%;
    height:420px;
    border-radius:24px;
    overflow:hidden;
    background:
    linear-gradient(135deg,#7a5cff 0%,#b38cff 100%);
    display:flex;
    align-items:flex-end;
    justify-content:center;
    position:relative;
}

.founder-image img{
    width:92%;
    object-fit:contain;
}

.founder-info{
    margin-top:22px;
}

.signature{
    font-size:48px;
    font-weight:500;
    color:#7b5cff;
    line-height:1;
    margin-bottom:10px;
    font-family:cursive;
}

.founder-name{
   font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.founder-role{
    font-size:17px;
    color:#6b7280;
    margin-bottom:0px;
}

.info-box{
    padding:18px;
    border-radius:22px;
    background:#faf9ff;
    border:1px solid #ece9ff;
}

.info-box p{
    color:#4b5563;
    line-height:1.7;
    font-size:15px;
}

/* RIGHT */

.right-side{
    flex:1;
}

.logo{
    width:240px;
    margin-bottom:25px;
}

.quote-icon{
    font-size: 90px;
    color: #8b5cf6;
    line-height: 1;
    margin-bottom: -30px;
}
.heading {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
    margin-bottom: 22px;
}
.heading span{
    color:#7c3aed;
}

.subheading{
    font-size:24px;
    font-weight:700;
    color:#7c3aed;
    margin-bottom:25px;
}

.description{
    font-size: 20px;
    line-height: 1.5;
    color:#4b5563;
    max-width:900px;
    margin-bottom:35px;
}

/* FEATURES */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:28px;
}

.feature-card{
    background:
    linear-gradient(180deg,#ffffff 0%,#f8f7ff 100%);
    border:1px solid #ece9ff;
    border-radius:24px;
    padding:24px;
    text-align:center;
    transition:.3s ease;
}

.feature-card:hover{
    transform:translateY(-5px);
    box-shadow:
    0 15px 35px rgba(123,92,255,0.12);
}

.icon{
    width:68px;
    height:68px;
    margin:auto;
    margin-bottom:18px;
    border-radius:20px;
    background:
    linear-gradient(135deg,#7c3aed,#a855f7);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:30px;
    font-weight:700;
}

.feature-title{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.feature-text{
    font-size:15px;
    line-height:1.7;
    color:#6b7280;
}

/* BOTTOM CTA */

.bottom-box{
    margin-top:12px;
    background:
    linear-gradient(135deg,#faf5ff,#f3f0ff);
    border:1px solid #e9ddff;
    border-radius:26px;
    padding:28px;
    display:flex;
    align-items:center;
    gap:20px;
}

.heart{
    width:70px;
    height:70px;
    border-radius:20px;
    background:
    linear-gradient(135deg,#7c3aed,#c084fc);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:34px;
    flex-shrink:0;
}

.bottom-title{
    font-size:22px;
    font-weight:800;
    color:#111827;
    margin-bottom:8px;
}

.bottom-text{
    font-size:18px;
    color:#7c3aed;
    font-weight:600;
}
.compare11 table.compare tbody td.brand-col{
  scale:1 !important;
}
/* RESPONSIVE */

@media(max-width:1200px){

    .founder-section{
        flex-direction:column;
    }

    .left-side{
        width:100%;
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .heading{
        font-size:42px;
    }

}

@media(max-width:768px){

    body{
        padding:20px;
    }

    .founder-section{
        padding:25px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .heading{
        font-size:34px;
    }

    .description{
        font-size:18px;
    }

}
@media (max-width:580px){
  table.compare thead th.brand-col{
    min-width: 200px;
  }
  table.compare thead th.brand-col img{
    height: auto  !important;
  }
  .opt-card .opt-tag{
    position: unset;
  }
  img.optionimg,
  img.optionimg2 {
      position: unset;
      width: 100%;
      margin-bottom: 30px;
  }
  .opt-card,
  .opt-card.opt2 {
      padding: 24px 24px 24px;
      text-align: left;
      margin-bottom: 10px;
  }
  img.optionarrow{
    display: none;
  }
  .f-20 {
      font-size: 18px !important;
  }
  .opt-card ul li {
    font-size: 16px;
  }
  .opt-card ul li img {
      width: 21px;
  }
  .opt-card.opt2 ul li {
      flex-direction: row;
  }
  .btn-mega {
      font-size: 13px;
      padding: 12px 15px;
  }
  img.happyicon {
      top: -30px;
      right: 10px;
      width: 90px;
  }
  img.sadicon{
    width: 90px;
    bottom: -30px;
    left: 10px;
  }
  .guarantee {
    padding: 60px 20px;
  }
  body{
    padding: 0px;
  }
  .urgency-strip .container {
      flex-direction: column;
      gap: 10px;
  }
  .btn {
    padding: 6px 15px;
    font-size: 14px;
  }
 
  .hero.v7 .eyebrow {
    font-size: 12px;
    padding: 4px 12px;
  }
  .hero.v7 .lead {
    font-size: 18px;
  }
  .hero-vsl-label {
    font-size: 10px;
  }
  .cta-box {
      border-radius: 19px;
      padding: 20px;
  }
  .table-item {
      font-size: 18px;
      min-width: 250px;
      text-align: left;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0;
    padding: 4px 12px;
  }
  .hero.v7 .eyebrow {
    font-size: 12px;
  }
  .hero.v7 .lead {
    font-size: 20px;
  }
  .hero-vsl-label {
    font-size: 11px;
  }
  .btn-mega .arrow {
    display: none !important;
  }
  .dash-bar .credit-pill{
    display: none !important;
  }
  .btn-mega {
      font-size: 14px;
      white-space: wrap !important;
  }

}


/* ===== CLAWAgents additions ===== */
.tbd{display:inline-block;font-family:var(--font-mono);font-size:.85em;font-weight:600;color:#92600a;background:#fff7e6;border:1px dashed #f59e0b;border-radius:6px;padding:1px 8px;line-height:1.4;}
/* ===== CLAWAgents chip sizing + horizontal-overflow guard (fix 2026-07-21) ===== */
.tbd{
  display:inline-block;
  font-family:var(--font-mono, ui-monospace, monospace);
  font-size:clamp(10px, 0.7em, 13px) !important;  /* capped — never huge in big headings/prices */
  font-weight:600;
  color:#92600a;
  background:#fff7e6;
  border:1px dashed #f59e0b;
  border-radius:6px;
  padding:0 6px;
  line-height:1.5;
  max-width:100%;
  overflow-wrap:anywhere;
  word-break:break-word;
  white-space:normal;
  vertical-align:baseline;
  letter-spacing:0;
}
html{ overflow-x:clip; }
img,svg,video,iframe,table{ max-width:100%; }
.grad {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(180deg, #FFC65A 0%, #C9821F 55%, #8A4B00 100%) text;
}
.subhead .highlighted {
    background: #FFC65A;
    padding: 7px;
    border-radius: 8px;
    line-height: 75%;
    color: #000;
    display: inline-block;
}
.lhcard {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 21px 43px 0px rgba(117, 21, 179, 0.11);
    translate: 0 50%;
    border-radius: 20px;
    padding: 30px;
}
.launch-card {
    background: #4864e21f;
    padding: 60px 60px 40px;
    border-radius: 30px;
}
.lhcard {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 21px 43px 0px rgba(117, 21, 179, 0.11);
    margin-bottom: 40px;
    border-radius: 20px;
    padding: 10px 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--primary-color);
    display: inline-flex;
}
.lhcard  h5{
      margin: 0px;
    font-size: 30px;
    color: #FFC65A;
    margin-right: 10px;
}
.lhcard .clndr{
  width: 100px;
}
.lhcard .ps-num {
    color: #2563EB;
    font-size: 28px;
    text-align: left;
    font-weight: 600;
    letter-spacing: -1.3px;
}
.lhcard .ps-lbl {
    letter-spacing: 1.2px;
    font-size: 18px;
}
.devider {
    border-right: 1px dashed var(--primary-color);
    height: 80px;
    padding-left: 10px;
    margin-right: 10px;
}
.funnel-inner {
    background: url(../images/funnel.jpg);
    background-size: cover;
    margin: -100px 80px 0px;
    z-index: 9;
    position: relative;
    padding: 70px;
    border-radius: 50px;
}
.funnel-inner .eyebrow::before,
.funnel-inner .eyebrow::after {
    background: rgb(240 241 175);
}
.febox {
    background: #fff;
    background-size: cover;
    background-position: bottom;
    padding: 50px;
    border-radius: 40px;
    border: 2px solid #000;
}
.feitem span.oto-num {
    background: var(--primary-color);
    padding: 2px 13px;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}
.feitem h4 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.feitem .oto-sub {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--ink-mute);
}
.feitem ul.oto-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    padding: 0px;
    list-style: none;
}
.feitem ul.oto-points li {
    font-size: 18px;
    display: flex;
    align-items: start;
    gap: 10px;
}
.feitem ul.oto-points img {
    width: 22px;
    margin-top: 2px;
}
.feitem span.oto-amt {
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary-color);
}
span.oto-amt-sub {
    color: var(--ink-mute);
}
.funnelsec{
  padding-bottom: 40px;
}
.prize{
  background: url(../images/lightbg.webp);
    background-size: cover;
    background-position: top;
}
.offer-stack.card2 {
    background: url(../images/febox.webp);
    background-position: bottom;
    background-size: cover;
    max-width: 1020px;
    margin: auto;
}
.prz-box {
    display: flex;
    align-items: center;
    padding: 30px 10px;
}
.prz-box img{
  width: 110px;
  position: relative;
}
.prz-item {
    background: #fff;
    padding: 12px 30px 12px 60px;
    border-radius: 0px 20px 20px 0px;
    margin-left: -50px;
    text-align: right;
    width: 100%;
}
.prz-item span.item-value {
    color: var(--secondary-color);
    display: block;
    font-size: 29px;
    font-weight: 800;
    line-height: 1.3;
}
.prz-box.st1 {
    margin-top: -50px;
}
.offer-stack.card3 {
    max-width: 800px;
    margin: auto;
}
.offer-stack.card3 .prz-item {
    background: var(--primary-color);
    color: #ffe9c8;
}
.offer-stack.card3 .prz-item span.item-value {
    color: #fff;
}
.ins-grid {
    max-width: 1020px;
    margin: auto;
}
.section14{
  background: url(../images/section08b.webp);
    background-position: center;
    background-size: cover;
}
.own-card {
    background: url(../images/own-card.webp);
    background-position: center;
    background-size: cover;
    padding: 40px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: 30px;
}
a.founder-btn {
    margin-top: 20px;
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

a.founder-btn img {
    width: 30px;
}

.own-card img.owner {
    width: 150px;
    margin: 0px auto 20px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.own-card h3{
  color: #fff;
  margin-bottom: 40px;
}
a.founder-btn {
    margin-top: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    background: #fff;
    padding: 7px;
    justify-content: center;
    border-radius: 10px;
}
.founder-btn.link:hover {
    background: var(--primary-color);
    color: #fff;
}
.final-cta-block .eyebrow {
    color: #fff200;
    border: 1px solid #fff200;
}
.final-cta-block .eyebrow::before,
.final-cta-block .eyebrow::after {
    border-color: #fff200;
    background: rgb(31 25 52);
}
.jvmenu {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.jvmenu a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 20px;
    transition: .3s;
}
.jvmenu a:hover{
  color: var(--secondary-color);
}
@media (max-width:580px){
  .lhcard {
    flex-direction: column;
    translate: 0px 80px;
  }
  .devider {
    height: 0px;
    width: 100%;
    border-top: 1px dashed var(--primary-color);
    padding: 0px;
    margin: 10px 0px;
  }
  section.section01 {
    padding-top: 0px;
  }
  .funnel-inner { 
    margin: -60px 0px 0px;
    padding: 20px;
    border-radius: 22px;
  }
  .febox {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #000;
  }
  .feitem ul.oto-points {
    grid-template-columns: 1fr;
  }
  .offer-stack li {
    flex-direction: column;
    font-size: 15px;
  }
  .offer-stack {
    border-radius: 20px;
    padding: 18px;
  }
  .offer-stack li .item-value {
    font-size: 16px;
    white-space: break-spaces;
  }
  .prz-box {
    padding: 10px 10px;
  }
  .who-card li {
    font-size: 16px !important;
  }
  .final-cta-block {
    padding: 40px 20px;
  }
  .showdown-card h3 {
    font-size: 22px;
  }
  .showdown-card li {
    font-size: 16px;
  }
  .hero.v7 .eyebrow {
    font-size: 12px;
    padding: 5px 10px;
  }
  .hero.v7 .lead {
    font-size: 18px;
  }
  .jvmenu a {
    font-size: 15px;
    white-space: nowrap;
  }
  .jvmenu {
    gap: 22px !important;
    margin: 12px 0px;
  }
  p.lead.subhead {
    font-size: 17px !important;
    line-height: 1.5 !important;
  }
  .subhead .highlighted {
    line-height: 115%;
  }
  .hero-vsl-label {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .launch-card {
    padding: 70px 22px 20px;
    border-radius: 20px;
  }
  .hero-card {
    flex-direction: column;
    text-align: center;
    font-size: 16px;
  }
  .hero-card h4 {
    font-size: 20px;
  }
  .wt-row .wt-copy h3 {
    font-size: 22px;
  }
  .wt-row .wt-copy p {
    font-size: 16px;
  }
  .persona-grid {
    gap: 13px;
  }
  .persona-card .persona-avatar {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
  .persona-card .persona-role {
    font-size: 11px;
  }
  .persona-card .persona-name {
    font-size: 17px;
    line-height: 1.3;
  }
}