/* ═══════════════════════════════════════════════
   Nemo — Global Stylesheet (editorial / premium)
   ═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Tokens ── */
:root {
  /* Ink scale (text + borders) */
  --ink-900: #0A0A0A;
  --ink-800: #18181B;
  --ink-700: #27272A;
  --ink-600: #3F3F46;
  --ink-500: #52525B;
  --ink-400: #71717A;
  --ink-300: #A1A1AA;
  --ink-200: #D4D4D8;
  --ink-100: #E4E4E7;
  --ink-50:  #F4F4F5;

  /* Paper (background) — warm cream editorial */
  --paper:      #FBF9F4;
  --paper-alt:  #F5F1E8;
  --paper-deep: #EDE7D8;
  --white:      #FFFFFF;

  /* Accent — Nemo magenta */
  --accent-50:  #FDEBF1;
  --accent-100: #FAC6D6;
  --accent-300: #F47B9F;
  --accent-500: #EC346C;   /* primary — Nemo brand magenta */
  --accent-600: #D42560;
  --accent-700: #B01C50;
  --accent-800: #85143C;
  --accent-900: #5A0D28;

  /* Support */
  --gold:     #B45309;
  --sage:     #4C7A5F;
  --rose:     #BE4A6A;  /* legacy brand, demoted */
  --success:  #15803D;
  --error:    #B91C1C;

  /* Legacy aliases (preserves existing HTML without rewrites) */
  --brand-50:  var(--accent-50);
  --brand-100: var(--accent-100);
  --brand-200: var(--accent-100);
  --brand-300: var(--accent-300);
  --brand-400: var(--accent-500);
  --brand-500: var(--accent-500);
  --brand-600: var(--accent-600);
  --brand-700: var(--accent-700);
  --brand-800: var(--accent-800);
  --brand-900: var(--accent-900);

  --gray-50:  var(--paper);
  --gray-100: var(--ink-50);
  --gray-200: var(--ink-100);
  --gray-300: var(--ink-200);
  --gray-400: var(--ink-300);
  --gray-500: var(--ink-400);
  --gray-600: var(--ink-500);
  --gray-700: var(--ink-600);
  --gray-800: var(--ink-800);
  --gray-900: var(--ink-900);

  --blue-500:   #EC346C;
  --purple-500: #EC346C;
  --orange-500: #B45309;
  --warning:    #B45309;

  /* Radii / Shadow */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(10,10,10,.05);
  --shadow:    0 2px 10px rgba(10,10,10,.04), 0 14px 40px rgba(10,10,10,.06);
  --shadow-lg: 0 30px 80px rgba(10,10,10,.12);

  /* Layout */
  --max-w: 1200px;
  --section-py: 120px;

  /* Typography */
  --font-display: 'Instrument Serif', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--ink-800);
  line-height: 1.65;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.container-md { max-width: 960px; margin: 0 auto; padding: 0 32px; }

/* ── Typography ── */
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 18px;
}
.eyebrow::before,
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-500);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.012em;
  color: var(--ink-900);
  margin-bottom: 20px;
}
.section-title em,
.section-title .italic { font-style: italic; color: var(--accent-500); font-weight: 400; }

.section-subtitle {
  font-size: 19px;
  color: var(--ink-500);
  max-width: 640px;
  line-height: 1.65;
  font-weight: 400;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: -.005em;
}
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

.btn-primary {
  background: var(--accent-500);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 1px 2px rgba(10,10,10,.08);
}
.btn-primary:hover {
  background: var(--accent-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(236,52,108,.28);
}

.btn-outline {
  background: transparent;
  color: var(--ink-800);
  border: 1px solid var(--ink-200);
}
.btn-outline:hover {
  border-color: var(--ink-800);
  background: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--accent-800);
  border: 1px solid var(--ink-100);
}
.btn-white:hover { background: var(--paper); transform: translateY(-1px); }

.btn-dark {
  background: var(--ink-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--ink-800); transform: translateY(-1px); }

.btn-ghost {
  background: none;
  border: none;
  color: var(--accent-700);
  font-weight: 600;
  padding: 0;
}
.btn-ghost:hover { color: var(--accent-900); }

.btn i { font-size: 18px; }

/* ── Announcement bar ── */
.announce-bar {
  background: var(--ink-900);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: -.005em;
}
.announce-bar a { color: var(--accent-300); font-weight: 600; margin-left: 6px; }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, .85);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(10,10,10,.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  color: var(--ink-900);
  letter-spacing: -.01em;
}
.nav-logo img {
  width: 38px; height: 38px; border-radius: 9px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a,
.nav-dropdown > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .15s;
}
.nav-links > a:hover,
.nav-dropdown > a:hover { color: var(--accent-700); }
.nav-links a.active { color: var(--accent-700); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: none; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 8px;
  background: var(--white); border: 1px solid var(--ink-100);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 10px; min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: all .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-800);
  font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--paper); color: var(--accent-700); }
.nav-dropdown-menu small { display: block; font-size: 12px; color: var(--ink-400); font-weight: 400; margin-top: 2px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 10px 22px; font-size: 14px; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--ink-800); }
.mobile-toggle i { font-size: 26px; }

/* ── Page Hero ── */
.page-hero { padding: 90px 0 60px; text-align: center; }
.page-hero.has-bg {
  background-size: cover; background-position: center;
  position: relative; color: var(--white);
}
.page-hero.has-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.68) 0%, rgba(10,10,10,.4) 100%);
}
.page-hero.has-bg > * { position: relative; z-index: 1; }
.page-hero .section-label { justify-content: center; }
.page-hero.has-bg .section-title,
.page-hero.has-bg .page-hero-title { color: var(--white); }
.page-hero.has-bg .page-hero-sub { color: rgba(255,255,255,.85); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.018em;
  margin-bottom: 22px;
  color: var(--ink-900);
}
.page-hero-title .accent { color: var(--accent-500); font-style: italic; font-weight: 400; }
.page-hero-title em { font-style: italic; color: var(--accent-500); }
.page-hero.has-bg .page-hero-title .accent { color: var(--accent-300); }

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 20px; color: var(--ink-500);
  max-width: 680px; margin: 0 auto 32px; line-height: 1.6;
  font-weight: 400;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  margin: 22px auto 0;
  font-size: 13px;
  color: var(--ink-400);
  max-width: 520px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--accent-500); }

/* Gradient hero variants — now subtle editorial */
.hero-gradient-pink   { background: linear-gradient(180deg, var(--paper-alt) 0%, var(--paper) 100%); }
.hero-gradient-blue   { background: linear-gradient(180deg, var(--paper-alt) 0%, var(--paper) 100%); }
.hero-gradient-purple { background: linear-gradient(180deg, var(--paper-alt) 0%, var(--paper) 100%); }
.hero-gradient-cream  { background: linear-gradient(180deg, var(--paper-deep) 0%, var(--paper) 100%); }

/* ── Home Split Hero ── */
.home-hero {
  padding: 88px 0 100px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.home-hero-text { text-align: left; }
.home-hero-text .page-hero-title { text-align: left; margin-bottom: 24px; }
.home-hero-text .page-hero-sub { margin-left: 0; max-width: 540px; text-align: left; }
.home-hero-text .hero-buttons { justify-content: flex-start; }
.home-hero-text .hero-trust { justify-content: flex-start; margin-left: 0; }

/* ── Sections ── */
.section { padding: var(--section-py) 0; }
.section-sm { padding: 72px 0; }
.section-alt { background: var(--paper-alt); }
.section-white { background: var(--white); border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.section-dark { background: var(--ink-900); color: var(--paper); }
.section-dark .section-title,
.section-dark .page-hero-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,.7); }
.section-dark .section-label { color: var(--accent-300); }
.section-dark .section-label::before { background: var(--accent-300); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header .section-label { justify-content: center; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Two-Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child  { order: 1; }
.two-col-text .section-title { margin-bottom: 20px; }
.two-col-text p {
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 520px;
}

/* ── Checklist ── */
.checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; max-width: 520px; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: var(--ink-700);
  line-height: 1.6;
}
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-50); color: var(--accent-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 11px; margin-top: 2px;
  font-weight: 700;
}
.check-icon.blue,
.check-icon.green,
.check-icon.purple { background: var(--accent-50); color: var(--accent-700); }

/* ── Feature Cards ── */
.card-grid { display: grid; gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all .2s ease;
  position: relative;
}
.feature-card:hover {
  border-color: var(--ink-200);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(10,10,10,.04), 0 18px 40px rgba(10,10,10,.08);
}
.feature-card.on-paper { background: var(--paper); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  background: var(--accent-50);
  color: var(--accent-700);
  border: 1px solid var(--accent-100);
}
.feature-icon.pink,
.feature-icon.blue,
.feature-icon.green,
.feature-icon.purple,
.feature-icon.orange,
.feature-icon.teal {
  background: var(--accent-50);
  color: var(--accent-700);
  border-color: var(--accent-100);
}
.feature-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink-900);
  letter-spacing: -.01em;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.7;
}

/* ── Visual / Mockup Panels ── */
.visual-panel {
  background: var(--paper-alt);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: relative;
}
.visual-panel.pink,
.visual-panel.blue,
.visual-panel.purple,
.visual-panel.green { background: var(--paper-alt); }
.visual-panel.dark { background: var(--ink-900); border-color: var(--ink-800); }
.visual-panel.cream { background: var(--paper-deep); }

/* Mini UI mock-ups */
.mini-ui {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(10,10,10,.05), 0 18px 50px rgba(10,10,10,.12);
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--ink-100);
}
.mini-ui-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; border-bottom: 1px solid var(--ink-100);
  background: var(--paper);
}
.mini-ui-dot { width: 10px; height: 10px; border-radius: 50%; }
.mini-ui-body { padding: 22px; }

.mini-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--ink-50); font-size: 13px;
}
.mini-row:last-child { border-bottom: none; }
.mini-row-left { display: flex; align-items: center; gap: 12px; }
.mini-merchant-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}
.mini-merchant-name { font-weight: 600; color: var(--ink-800); }
.mini-merchant-cat { font-size: 11px; color: var(--ink-400); margin-top: 2px; }
.mini-amount { font-weight: 600; font-variant-numeric: tabular-nums; }
.mini-amount.neg { color: var(--ink-800); }
.mini-amount.pos { color: var(--accent-700); }

.mini-budget-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.mini-budget-label { font-size: 13px; font-weight: 500; width: 110px; color: var(--ink-700); }
.mini-budget-bar-wrap { flex: 1; height: 8px; background: var(--ink-50); border-radius: 4px; overflow: hidden; }
.mini-budget-bar { height: 100%; border-radius: 4px; background: var(--accent-500); }
.mini-budget-amount { font-size: 12px; color: var(--ink-400); width: 80px; text-align: right; font-variant-numeric: tabular-nums; }

/* Chat bubbles */
.chat-bubble {
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--accent-500);
  color: var(--white);
  border-radius: 18px 18px 4px 18px;
}
.chat-bubble.assistant {
  align-self: flex-start;
  background: var(--paper-alt);
  color: var(--ink-800);
  border-radius: 18px 18px 18px 4px;
}
.chat-flow { display: flex; flex-direction: column; gap: 14px; }

/* ── Steps / How It Works ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.steps-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.step { text-align: left; position: relative; padding-top: 28px; }
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-500);
}
.step-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--accent-700);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  background: none;
  width: auto;
  height: auto;
}
.step h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink-900);
}
.step p {
  font-size: 15px;
  color: var(--ink-500);
  max-width: 320px;
  line-height: 1.7;
}

/* ── Testimonials / Quotes ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-card .stars { color: var(--gold); font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: normal;
}
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author-row { display: flex; align-items: center; gap: 12px; }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--ink-900); }
.testimonial-role { font-size: 12px; color: var(--ink-400); margin-top: 1px; }

/* ── Big Quote ── */
.big-quote {
  padding: 96px 0;
  background: var(--paper-alt);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.big-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink-800);
  line-height: 1.3;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}
.big-quote cite {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-400);
  font-style: normal;
  margin-top: 24px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Pricing ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: left;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent-700);
  box-shadow: 0 0 0 1px var(--accent-700), var(--shadow);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--ink-600); text-transform: uppercase; letter-spacing: .06em; }
.pricing-desc { font-size: 14px; color: var(--ink-500); margin-bottom: 24px; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  color: var(--ink-900);
  line-height: 1;
}
.pricing-amount span { font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--ink-400); }
.pricing-period { font-size: 13px; color: var(--ink-400); margin-bottom: 32px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-700); }
.pricing-features .tick { color: var(--accent-700); font-weight: 700; }
.pricing-card .btn { width: 100%; }

/* Includes grid */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 56px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.includes-col h4 { font-size: 15px; font-weight: 600; margin-bottom: 14px; color: var(--ink-900); }
.includes-col li { font-size: 14px; color: var(--ink-500); padding: 5px 0; display: flex; align-items: center; gap: 10px; }
.includes-col .tick { color: var(--accent-700); }

/* ── Download Cards ── */
.download-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 56px auto 0; }
.download-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all .2s ease;
}
.download-card:hover { border-color: var(--ink-300); transform: translateY(-3px); box-shadow: var(--shadow); }
.download-icon { font-size: 42px; margin-bottom: 20px; color: var(--ink-900); }
.download-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.download-card p { font-size: 13px; color: var(--ink-500); margin-bottom: 22px; }
.download-card .btn { padding: 11px 24px; font-size: 13px; }

/* ── CTA Banner ── */
.cta-banner { padding: 96px 0; background: var(--paper); }
.cta-inner {
  background: var(--ink-900);
  border-radius: var(--radius-xl);
  padding: 96px 48px;
  text-align: center;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(236,52,108,.25) 0, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(236,52,108,.15) 0, transparent 45%);
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}
.cta-inner h2 em { font-style: italic; color: var(--accent-300); }
.cta-inner p {
  font-size: 19px;
  opacity: .8;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
}

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--ink-100); }
.faq-item:first-child { border-top: 1px solid var(--ink-100); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-900);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  letter-spacing: -.005em;
}
.faq-question:hover { color: var(--accent-700); }
.faq-chevron { transition: transform .2s; font-size: 20px; color: var(--ink-400); margin-left: 24px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent-700); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 26px; font-size: 15.5px; color: var(--ink-500); line-height: 1.75; max-width: 680px; }

/* ── Footer ── */
.footer { padding: 96px 0 36px; background: var(--paper); border-top: 1px solid var(--ink-100); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 56px;
}
.footer-brand { max-width: 300px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--ink-500); line-height: 1.7; }
.footer-brand .footer-badges { display: flex; gap: 10px; margin-top: 20px; }
.footer-brand .footer-badges img { height: 36px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-900);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-500);
  padding: 5px 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--accent-700); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--ink-100);
  font-size: 13px;
  color: var(--ink-400);
}
.footer-socials { display: flex; gap: 24px; align-items: center; }
.footer-socials a { display: flex; align-items: center; justify-content: center; transition: transform .15s; }
.footer-socials a:hover { transform: translateY(-3px); }
.footer-socials a svg { width: 24px; height: 24px; stroke: #EC346C; transition: stroke .2s; }
.footer-socials a:hover svg { stroke: #db2777; }

/* ── Proof / Logos Bar ── */
.proof-bar {
  padding: 56px 0;
  background: var(--paper);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  text-align: center;
}
.proof-bar p {
  font-size: 12px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 28px;
}
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.proof-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-500);
  letter-spacing: -.01em;
  font-style: italic;
}

/* ── Laptop Mockup (home hero) ── */
.laptop-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.laptop-screen {
  background: var(--ink-900);
  border-radius: 14px 14px 4px 4px;
  padding: 10px 10px 12px;
  border: 1px solid #2a2a2e;
  box-shadow: 0 30px 80px rgba(10,10,10,.18), 0 8px 24px rgba(10,10,10,.1);
}
.laptop-screen::before {
  content: '';
  display: block;
  width: 56px;
  height: 6px;
  background: #111;
  border-radius: 0 0 6px 6px;
  margin: -10px auto 8px;
}
.laptop-base {
  height: 14px;
  background: linear-gradient(180deg, #d4d4d8 0%, #a1a1aa 50%, #71717a 100%);
  border-radius: 0 0 12px 12px;
  margin: 0 -16px;
  position: relative;
}
.laptop-base::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #71717a;
  border-radius: 0 0 6px 6px;
}

/* Inline Dashboard Mock (replacing old mockup-ui) */
.mockup-ui {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: grid;
  grid-template-columns: 180px 1fr;
  background: #0b0b0d;
}
.mockup-sidebar {
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mockup-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 18px;
  padding: 4px 6px;
}
.mockup-sidebar-logo img { width: 22px; height: 22px; border-radius: 5px; }
.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}
.mockup-nav-item.active { background: rgba(236,52,108,.25); color: var(--accent-300); }
.mockup-nav-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .6; }

.mockup-main {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mockup-header-bar { display: flex; justify-content: space-between; align-items: center; }
.mockup-header-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
.mockup-pills { display: flex; gap: 5px; }
.mockup-pill { padding: 4px 12px; border-radius: 999px; font-size: 10px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.5); font-weight: 500; }
.mockup-pill.active { background: var(--accent-500); color: var(--white); }

.mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mockup-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 12px;
}
.mockup-card-label { font-size: 9.5px; color: rgba(255,255,255,.4); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.mockup-card-value { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--white); letter-spacing: -.01em; }
.mockup-card-change { font-size: 10px; margin-top: 4px; font-weight: 500; }
.mockup-card-change.up { color: #6FA88B; }
.mockup-card-change.down { color: #C66; }

.mockup-chart-area {
  flex: 1;
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  min-height: 130px;
}
.mockup-chart-svg { width: 100%; height: 100%; position: absolute; inset: 0; }

/* ── Comparison Table ── */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th {
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  padding: 18px 22px;
  background: var(--paper-alt);
  border-bottom: 1px solid var(--ink-100);
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.comparison-table td {
  font-size: 14.5px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--ink-50);
  color: var(--ink-600);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table .brand-col { color: var(--accent-700); font-weight: 600; }
.comparison-table .check { color: var(--accent-700); font-weight: 700; }
.comparison-table .miss { color: var(--ink-300); }

/* ── Trust / Security band ── */
.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}
.trust-item { text-align: left; }
.trust-item i { font-size: 28px; color: var(--accent-300); margin-bottom: 16px; display: block; }
.trust-item h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.section-dark .trust-item h3 { color: var(--white); }
.trust-item p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-grid .footer-col:nth-last-child(-n+2) { grid-column: span 2; }
  .home-hero-grid { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-py: 88px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .home-hero-text { text-align: center; }
  .home-hero-text .page-hero-title,
  .home-hero-text .page-hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .home-hero-text .hero-buttons,
  .home-hero-text .hero-trust { justify-content: center; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse > :first-child, .two-col.reverse > :last-child { order: unset; }
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .steps-grid, .steps-grid.cols-4 { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .trust-band { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .download-cards { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: span 2; max-width: none; }
  .footer-grid .footer-col:nth-last-child(-n+2) { grid-column: span 1; }
  .mockup-sidebar { display: none; }
  .mockup-ui { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 72px; }
  .container { padding: 0 22px; }
  .card-grid.cols-2, .card-grid.cols-3 { grid-template-columns: 1fr; }
  .steps-grid, .steps-grid.cols-4 { grid-template-columns: 1fr; }
  .trust-band { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px 22px;
    border-bottom: 1px solid var(--ink-100);
    gap: 4px;
  }
  .page-hero { padding: 72px 0 40px; }
  .home-hero { padding: 56px 0 72px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .cta-inner { padding: 64px 28px; }
  .big-quote { padding: 64px 0; }
}
