*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a7aff;
  --teal: #00c4b4;
  --pink: #e040fb;
  --navy: #0d1b3e;
  --slate: #64748b;
  --light-bg: #f0f4ff;
  --white: #ffffff;
  --grad: linear-gradient(135deg, var(--blue), var(--teal), var(--pink));
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
}

.logo {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #374151;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: #9ca3af;
  text-decoration: none;
  opacity: 1;
  transition: color 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { font-weight: 700; font-size: 0.975rem; color: var(--navy); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(345deg, #1a7aff 0%, #7c3aed 40%, #e040fb 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 7px 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: opacity 0.2s;
}
.btn-login:hover { opacity: 1; }

.btn-login-text {
  background: linear-gradient(345deg, #1a7aff 0%, #7c3aed 40%, #e040fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-login svg {
  width: 15px; height: 15px;
  stroke: #7c3aed;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.btn-login:hover svg { transform: translateX(3px); }

.btn-primary {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(345deg, #1a7aff 0%, #7c3aed 40%, #e040fb 100%);
  border: none;
  border-radius: 100px;
  padding: 8px 22px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-primary svg { width: 15px; height: 15px; stroke: currentColor; flex-shrink: 0; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, #eef3ff 0%, #f7f0ff 40%, #f0fffe 100%);
  text-align: center;
  padding: 90px 24px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(26,122,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto 28px;
  letter-spacing: -0.02em;
}

.hero h1 .word-whole { color: var(--blue); }
.hero h1 .word-team  { color: var(--teal); }
.hero h1 .word-actually {
  background: linear-gradient(135deg, #7c3aed, var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-underline {
  background: linear-gradient(345deg, #1a7aff 0%, #7c3aed 40%, #e040fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.grad-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(345deg, #1a7aff 0%, #7c3aed 40%, #e040fb 100%);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-arrow-down {
  display: flex;
  justify-content: center;
  margin: 0 auto 8px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-hero-primary {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(345deg, #1a7aff 0%, #7c3aed 40%, #e040fb 100%);
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary svg { width: 18px; height: 18px; stroke: currentColor; flex-shrink: 0; }
.btn-hero-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-hero-secondary {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  background: white;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-hero-secondary:hover { border-color: var(--blue); transform: translateY(-2px); }

.play-icon {
  width: 18px; height: 18px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.play-icon::after {
  content: '';
  border-left: 6px solid white;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 2px;
}

.xero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 56px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.xero-check {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.xero-check svg {
  width: 12px; height: 12px;
  stroke: white;
  stroke-width: 3;
}

/* App screenshot mockup */
.hero-mockup {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -4px 60px rgba(26,122,255,0.12), 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
}

.mockup-bar {
  background: #f5f5f7;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28c840; }

.mockup-url {
  flex: 1;
  background: white;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--slate);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  max-width: 280px;
  margin: 0 auto;
}

.mockup-content {
  display: flex;
  min-height: 240px;
}

.mockup-sidebar {
  width: 180px;
  background: #f8f9fe;
  padding: 20px 0;
  border-right: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.sidebar-logo {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #374151;
  padding: 0 16px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-logo .logo-img { height: 20px; }

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
}
.sidebar-item.active {
  background: rgba(26,122,255,0.08);
  color: var(--blue);
  font-weight: 600;
}

.sidebar-icon {
  width: 22px; height: 22px;
  background: rgba(100,116,139,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sidebar-icon svg { width: 12px; height: 12px; stroke: #94a3b8; stroke-width: 2; }
.sidebar-item.active .sidebar-icon { background: rgba(26,122,255,0.18); }
.sidebar-item.active .sidebar-icon svg { stroke: var(--blue); }


.mockup-main {
  flex: 1;
  padding: 20px 24px;
}

.mockup-greeting {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.stat-card {
  background: #f8f9fe;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 12px 14px;
}

.stat-label { font-size: 0.7rem; color: var(--slate); margin-bottom: 4px; }
.stat-value { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }
.stat-change { font-family: 'Inter', sans-serif; font-size: 0.68rem; color: #22c55e; font-weight: 600; margin-top: 2px; font-variant-numeric: tabular-nums; }

/* ── STATS BAND ── */
.stats-band {
  background: white;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stat-item { text-align: center; }

.stat-big {
  font-family: 'Geist Mono', monospace;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--slate);
  font-weight: 500;
}

/* ── SECTIONS ── */
.section { padding: 96px 48px; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 96px 48px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,122,255,0.08);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-tag.teal   { background: rgba(0,196,180,0.1);   color: #00a89a; }
.section-tag.pink   { background: rgba(224,64,251,0.1);   color: #b830c9; }
.section-tag.purple { background: rgba(124,58,237,0.1);   color: #7c3aed; }

.section-tag::before { content: '✦'; font-size: 10px; }

.section-h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 48px;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: #f8f9fe;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,122,255,0.13);
  background: #f0f4ff;
}

.feature-card h3 {
  transition: color 0.25s ease, font-size 0.25s ease;
}
.feature-card:hover h3 {
  color: #0d1b3e;
}

.feature-card p {
  transition: color 0.25s ease;
}
.feature-card:hover p {
  color: #374151;
}

.coming-soon-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: white;
  background: linear-gradient(345deg, #1255b2 0%, #5729a6 40%, #9d2db0 100%);
  border: none;
  border-radius: 100px;
  padding: 4px 10px;
  box-shadow: 0 4px 12px rgba(87,41,166,0.4);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background-color: #dbeafe;
  border: 1px solid #93c5fd;
  color: #60a5fa;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px; height: 24px;
  stroke: currentColor;
}

.feature-card h3 {
  font-family: 'Geist', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--slate);
  transition: color 0.25s ease;
}

/* ── STAKEHOLDER SELECTOR ── */
.stk-sel-wrap { max-width: 1100px; }

.stk-interactive {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  height: 480px;
}

.stk-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 32px;
  position: relative;
}

.stk-tabs::after { display: none; }

.stk-tab {
  position: relative;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1.5px solid #e8e6e1;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stk-tab:hover:not(.stk-tab--active) {
  border-color: #d1d5db;
  background: #fdfcfa;
  transform: translateX(2px);
}

.stk-tab--active {
  background: #1f2937;
  border-color: #1f2937;
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.stk-tab-arrow {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: #1f2937;
  display: none;
  z-index: 2;
}
.stk-tab-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: currentColor; }
.stk-tab--active .stk-tab-arrow { display: block; }

.stk-tab-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.stk-tab--active .stk-tab-bar { opacity: 1; }


.stk-tab-number { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #c4c2bc; transition: color 0.22s ease; }
.stk-tab--active .stk-tab-number { color: rgba(255,255,255,0.4); }

.stk-tab-label { font-size: 14px; font-weight: 600; color: #1a1917; transition: color 0.22s ease; }
.stk-tab--active .stk-tab-label { color: #ffffff; }

.stk-tab-sub { font-size: 12px; font-weight: 300; color: #6b6962; transition: color 0.22s ease; }
.stk-tab--active .stk-tab-sub { color: rgba(255,255,255,0.55); }

.stk-content-area {
  padding-left: 40px;
  position: relative;
}

.stk-content-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(170px);
  transition: opacity 1.25s ease, transform 1.25s ease;
  pointer-events: none;
  visibility: hidden;
}

.stk-content-panel.visible { visibility: visible; pointer-events: auto; }
.stk-content-panel.animated { opacity: 1; transform: translateY(0); }
.stk-content-panel.exiting { opacity: 0; transform: translateX(200px); pointer-events: none; transition: opacity 0.75s ease, transform 0.75s ease; }

.stk-content-card {
  background: #ffffff;
  border: 1px solid #e8e6e1;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stk-content-card:hover { border-color: #d1d5db; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }

.stk-card-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.stk-tab-0 .stk-card-dot { background: #0d9488; }
.stk-tab-1 .stk-card-dot { background: #3b82f6; }
.stk-tab-2 .stk-card-dot { background: #8b5cf6; }
.stk-tab-3 .stk-card-dot { background: #ec4899; }

.stk-content-card > div { display: flex; align-items: baseline; gap: 10px; }
.stk-card-text { font-size: 14px; line-height: 1.6; color: #374151; font-weight: 400; }
.stk-card-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #c4c2bc; flex-shrink: 0; }

@media (max-width: 768px) {
  .stk-interactive { grid-template-columns: 1fr; }
  .stk-tabs { padding-right: 0; flex-direction: row; flex-wrap: wrap; }
  .stk-tabs::after { display: none; }
  .stk-tab--active::after { display: none; }
  .stk-content-area { padding-left: 0; margin-top: 24px; }
}

/* ── ROADMAP PANEL ── */
.rdm-wrap { max-width: 1100px; margin: 0 auto; }

.rdm-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1.5px solid #3b82f6;
  border-radius: 999px;
  padding: 6px 16px 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b82f6;
}

.rdm-pill-star { color: #3b82f6; font-size: 14px; line-height: 1; }

.rdm-panel {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

.rdm-gradient-rule { display: none; }

.rdm-items {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.rdm-items::-webkit-scrollbar { display: none; }

.rdm-item {
  flex: 1;
  min-width: 148px;
  padding: 20px 18px 22px;
  border-right: 1px solid #374151;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s ease;
  cursor: default;
}
.rdm-item:last-child { border-right: none; }
.rdm-item:hover { background: #263244; }

.rdm-item-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.rdm-item-name { font-size: 11.5px; font-weight: 500; color: #e5e7eb; line-height: 1.35; }

.rdm-item-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: auto;
  width: fit-content;
}

.rdm-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.rdm-counter-divider { display: none; }

.rdm-counter-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
}

.rdm-counter-item--teal   { background: rgba(13,148,136,0.15);  border: 1px solid rgba(13,148,136,0.35); }
.rdm-counter-item--violet { background: rgba(124,58,237,0.15);  border: 1px solid rgba(124,58,237,0.35); }
.rdm-counter-item--pink   { background: rgba(219,39,119,0.15);  border: 1px solid rgba(219,39,119,0.35); }
.rdm-counter-item--green  { background: rgba(22,163,74,0.15);   border: 1px solid rgba(22,163,74,0.35); }
.rdm-counter-item--sky    { background: rgba(2,132,199,0.15);   border: 1px solid rgba(2,132,199,0.35); }
.rdm-counter-item--amber  { background: rgba(217,119,6,0.15);   border: 1px solid rgba(217,119,6,0.35); }
.rdm-counter-item--indigo { background: rgba(67,56,202,0.15);   border: 1px solid rgba(67,56,202,0.35); }

.rdm-counter-icon {
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: none;
}

.rdm-counter-label { font-size: 11.5px; font-weight: 600; }

.rdm-counter-num {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
  background: transparent;
}

.rdm-counter-item--teal   .rdm-counter-label, .rdm-counter-item--teal   .rdm-counter-num { color: #2dd4bf; }
.rdm-counter-item--violet .rdm-counter-label, .rdm-counter-item--violet .rdm-counter-num { color: #a78bfa; }
.rdm-counter-item--pink   .rdm-counter-label, .rdm-counter-item--pink   .rdm-counter-num { color: #f472b6; }
.rdm-counter-item--green  .rdm-counter-label, .rdm-counter-item--green  .rdm-counter-num { color: #4ade80; }
.rdm-counter-item--sky    .rdm-counter-label, .rdm-counter-item--sky    .rdm-counter-num { color: #38bdf8; }
.rdm-counter-item--amber  .rdm-counter-label, .rdm-counter-item--amber  .rdm-counter-num { color: #fbbf24; }
.rdm-counter-item--indigo .rdm-counter-label, .rdm-counter-item--indigo .rdm-counter-num { color: #818cf8; }

/* Counter pill icon colours — separate from panel icons */
.rdm-cnt-icon--teal   { color: #2dd4bf; }
.rdm-cnt-icon--violet { color: #a78bfa; }
.rdm-cnt-icon--pink   { color: #f472b6; }
.rdm-cnt-icon--green  { color: #4ade80; }
.rdm-cnt-icon--sky    { color: #38bdf8; }
.rdm-cnt-icon--amber  { color: #fbbf24; }
.rdm-cnt-icon--indigo { color: #818cf8; }

.rdm-icon--teal    { background: rgba(13,148,136,0.15);  color: #2dd4bf; }
.rdm-icon--blue    { background: rgba(59,130,246,0.15);  color: #60a5fa; }
.rdm-icon--violet  { background: rgba(124,58,237,0.15);  color: #a78bfa; }
.rdm-icon--pink    { background: rgba(219,39,119,0.15);  color: #f472b6; }
.rdm-icon--amber   { background: rgba(217,119,6,0.15);   color: #fbbf24; }
.rdm-icon--sky     { background: rgba(2,132,199,0.15);   color: #38bdf8; }
.rdm-icon--green   { background: rgba(22,163,74,0.15);   color: #4ade80; }
.rdm-icon--rose    { background: rgba(225,29,72,0.15);   color: #fb7185; }
.rdm-icon--indigo  { background: rgba(67,56,202,0.15);   color: #818cf8; }
.rdm-icon--emerald { background: rgba(5,150,105,0.15);   color: #34d399; }

.rdm-tag--teal    { background: rgba(13,148,136,0.15);  color: #2dd4bf; }
.rdm-tag--blue    { background: rgba(59,130,246,0.15);  color: #60a5fa; }
.rdm-tag--violet  { background: rgba(124,58,237,0.15);  color: #a78bfa; }
.rdm-tag--pink    { background: rgba(219,39,119,0.15);  color: #f472b6; }
.rdm-tag--amber   { background: rgba(217,119,6,0.15);   color: #fbbf24; }
.rdm-tag--sky     { background: rgba(2,132,199,0.15);   color: #38bdf8; }
.rdm-tag--green   { background: rgba(22,163,74,0.15);   color: #4ade80; }
.rdm-tag--rose    { background: rgba(225,29,72,0.15);   color: #fb7185; }
.rdm-tag--indigo  { background: rgba(67,56,202,0.15);   color: #818cf8; }
.rdm-tag--emerald { background: rgba(5,150,105,0.15);   color: #34d399; }

/* ── FOR WHO SECTION ── */
.for-who-bg {
  background: #f6f8ff;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.for-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.07);
}

.for-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.for-card-tag.blue { background: rgba(26,122,255,0.1); color: var(--blue); }
.for-card-tag.pink { background: rgba(224,64,251,0.1); color: #b830c9; }

.for-card h3 {
  font-family: 'Geist', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}

.for-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 24px;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}

.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon.blue { background: rgba(26,122,255,0.12); color: var(--blue); }
.check-icon.pink { background: rgba(224,64,251,0.12); color: #b830c9; }
.check-icon svg { width: 11px; height: 11px; stroke: currentColor; stroke-width: 3; }

/* ── STAKEHOLDERS ── */
.stakeholders-bg { background: linear-gradient(to bottom, #ffffff 0%, #f6f8ff 120px); }

.stk-header { text-align: center; margin-bottom: 80px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6962;
  margin-bottom: 20px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #c4c2bc;
}

.headline {
  font-family: 'Lora', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1917;
  margin-bottom: 20px;
}

.headline em {
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(135deg, #0d9488, #3b82f6, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subhead {
  font-size: 17px;
  line-height: 1.65;
  color: #6b6962;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e8e6e1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8e6e1;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.card {
  background: #ffffff;
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.25s ease;
}

.card:hover { background: #fdfcfa; }

.card-accent {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.card--owner .card-accent    { background: linear-gradient(90deg, #0d9488, #3b82f6); }
.card--finance .card-accent  { background: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.card--accountant .card-accent { background: linear-gradient(90deg, #8b5cf6, #f472b6); }

.card-role {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c4c2bc;
  margin-bottom: 10px;
}

.card-title {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1917;
  margin-bottom: 20px;
}

.card-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: #6b6962;
  font-weight: 300;
  flex: 1;
  margin-bottom: 32px;
}

.stk-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stk-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #1a1917;
  font-weight: 400;
  line-height: 1.4;
}

.feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.card--owner .feature-dot     { background: #0d9488; }
.card--finance .feature-dot   { background: #3b82f6; }
.card--accountant .feature-dot { background: #8b5cf6; }

.trust-bar {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 36px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8e6e1;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.trust-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: #e8e6e1;
}

.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4c2bc;
  margin-bottom: 6px;
}

.trust-value {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1917;
}

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; gap: 20px; }
  .trust-item + .trust-item::before { display: none; }
}

/* ── HOW IT WORKS ── */
.hiw-bg { background: white; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.66% + 36px); right: calc(16.66% + 36px);
  height: 1px;
  background: linear-gradient(90deg, rgba(26,122,255,0.3), rgba(0,196,180,0.3), rgba(124,58,237,0.3));
}

.step { text-align: center; position: relative; }

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  font-variant-numeric: tabular-nums;
}

.step-num.n1 { background: linear-gradient(135deg, #1a7aff, #00c4b4); }
.step-num.n2 { background: linear-gradient(135deg, #00c4b4, #7c3aed); }
.step-num.n3 { background: linear-gradient(135deg, #7c3aed, #e040fb); }
.step-num.n4 { background: linear-gradient(135deg, #e040fb, #1a7aff); }

.step h3 {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--slate);
}

.step4-row {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.step4-row .step { max-width: 280px; }

.erp-note-inner {
  border: 1.5px dashed rgba(26,122,255,0.35);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(26,122,255,0.04);
}

.erp-note-icon {
  width: 18px; height: 18px;
  stroke: var(--blue);
  flex-shrink: 0;
}

.erp-note-inner p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}

.erp-note-inner strong {
  color: var(--navy);
}

/* ── PRICING ── */
.pricing-bg { background: linear-gradient(to bottom, #ffffff 0%, #f6f8ff 120px); }

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #1f2937;
  border-radius: 22px;
  padding: 36px;
  color: white;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pricing-price {
  margin-bottom: 12px;
}

.price-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 4px; }

.price-amount {
  font-family: 'Geist', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.price-sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 6px; }

.price-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 20px 0;
}

.price-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.5; }

.price-features-grid {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}

.price-features-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 28px;
  flex-shrink: 0;
}

.price-features { list-style: none; display: flex; flex-direction: column; gap: 18px; flex: 1; }

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.price-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(26,122,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #60b0ff;
  flex-shrink: 0;
}
.price-check svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 3; }

.price-clock {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(96,176,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: #60b0ff;
  flex-shrink: 0;
}
.price-clock svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2; }

.pricing-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-price-primary {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(345deg, #1a7aff, #e040fb);
  border: none;
  border-radius: 10px;
  padding: 13px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-price-primary svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }
.btn-price-primary:hover { opacity: 0.88; }

.price-alt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 4px;
}

.price-alt-amount {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.price-alt-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.btn-price-secondary {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 13px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.btn-price-secondary:hover { background: rgba(255,255,255,0.14); }

.pricing-note {
  font-size: 0.8rem;
  color: var(--slate);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* ── REVIEWS ── */
#reviews { background: linear-gradient(to bottom, #f6f8ff 0%, #ffffff 120px); max-width: 100%; }
#reviews > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  padding: 28px;
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.av-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.av-blue   { background: linear-gradient(135deg, #1a7aff, #60b0ff); }
.av-teal   { background: linear-gradient(135deg, #00c4b4, #34d399); }
.av-slate  { background: linear-gradient(135deg, #475569, #94a3b8); }

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.reviewer-role {
  font-size: 0.78rem;
  color: var(--slate);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(345deg, #0a3a7a 0%, #3b1a7a 40%, #6b1a7a 100%);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  max-width: 1100px;
  margin: 96px auto;
}

.cta-band h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  line-height: 1.15;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.btn-cta-primary {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: white;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-primary svg { width: 18px; height: 18px; stroke: currentColor; flex-shrink: 0; }
.btn-cta-primary:hover { transform: translateY(-2px); }

.btn-cta-secondary {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.14); }
.btn-cta-secondary svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; vertical-align: middle; }

/* ── FOOTER ── */
footer {
  background: #1f2937;
  color: rgba(255,255,255,0.6);
  padding: 64px 48px 32px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-brand .logo { font-size: 1.3rem; display: inline-flex; margin-bottom: 14px; color: white; }

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social-link:hover { color: rgba(255,255,255,0.9); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 220px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── TOOLTIP ── */
.tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
  cursor: help;
}

.tooltip-icon {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.tooltip-text {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
  max-width: 260px;
  width: max-content;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
  text-decoration: none;
}

.tooltip-wrap:hover .tooltip-text { opacity: 1; }

/* ── NUMERIC / MONO ── */
.num {
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }
.fade-up-5 { animation-delay: 0.7s; opacity: 0; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE STAKEHOLDER DROPDOWN ── */
.stk-mobile { display: none; }
.stk-select-wrap { position: relative; margin-bottom: 24px; }
.stk-select {
  width: 100%;
  appearance: none;
  background: #1f2937;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 16px 48px 16px 18px;
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}
.stk-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,0.6);
}
.stk-mobile-panel { display: none; flex-direction: column; gap: 12px; }
.stk-mobile-panel.active { display: flex; }
.stk-mobile-sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 16px;
  padding-left: 2px;
}

.stk-mobile-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.stk-mobile-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.08em;
  padding-top: 2px;
  flex-shrink: 0;
}
.stk-mobile-text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 60px 0 0 0;
  background: white;
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu .mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.mobile-menu .mobile-ctas .btn-primary { color: white; justify-content: center; }
.mobile-menu .mobile-ctas .btn-login { justify-content: center; }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-actions .btn-login { display: none; }
  .nav-actions .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 20px; }
  .section-full { padding: 64px 20px; }
  .stats-band { grid-template-columns: 1fr; padding: 40px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .for-who-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; padding: 0 20px !important; }
  .steps-grid::before { display: none; }
  .step4-row { padding: 32px 20px 0 !important; }
  .pricing-layout { grid-template-columns: 1fr; }
  #pricing.section-full { padding-left: 0; padding-right: 0; }
  #pricing.section-full > div:last-child { padding-left: 0 !important; padding-right: 0 !important; }
  .pricing-card { border-radius: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: 2rem; }
  .cta-band { margin: 0; padding: 48px 24px; border-radius: 0; }
  div:has(> .cta-band) { padding: 0 !important; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns a { justify-content: center; }
  .price-features-grid { flex-direction: column; }
  .price-features-divider { display: none; }
  .pricing-ctas { grid-template-columns: 1fr; }
  .pricing-ctas a { justify-content: center; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .stk-interactive { display: none !important; }
  .stk-mobile { display: block; }
  .mockup-sidebar { display: none; }
  .mockup-content { width: 100%; }
  .rdm-item { min-width: 120px; }
  .hero { padding: 56px 20px 0; }
  .btn-login { padding: 10px 20px; }
  .btn-primary { padding: 10px 22px; }
  .section-h2 { text-align: center; max-width: 100% !important; }
  .section-lead { max-width: 100%; }
  .stk-sel-header { text-align: center !important; }
  .stk-sel-header .headline { text-align: center; }
}

@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .section { padding: 72px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 16px; padding: 40px 32px; }
  .stats-band .stat-item:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .pricing-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band { padding: 56px 32px; }
  .stk-interactive { grid-template-columns: 200px 1fr; height: 420px; column-gap: 20px; }
  .stk-tabs { padding-right: 0; gap: 6px; align-items: stretch; }
  .stk-tab { padding: 10px 16px; width: 100%; }
  .stk-tab-arrow { display: none; }
  .stk-tab--active .stk-tab-arrow { display: none; }
  .stk-content-area { padding-left: 16px; }
  .hero { padding-top: 60px; }
}
