@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg: oklch(0.983 0.006 225);
  --bg2: oklch(0.972 0.008 220);
  --ink: oklch(0.14 0.028 245);
  --ink-mid: oklch(0.40 0.018 235);
  --ink-light: oklch(0.60 0.012 228);
  --accent: oklch(0.58 0.20 198);
  --accent2: oklch(0.58 0.18 278);
  --accent3: oklch(0.70 0.16 75);
  --accent-light: oklch(0.93 0.06 198);
  --accent-mid: oklch(0.74 0.12 198);
  --border: oklch(0.88 0.010 225);
  --card: oklch(1 0 0);
  --radius: 20px;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: oklch(1 0 0 / 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px !important;
  letter-spacing: 0;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; color: white !important; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent-light) 0%, oklch(0.93 0.05 278 / 0.3) 100%);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid oklch(0.58 0.20 198 / 0.2);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--ink);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }

.btn-secondary {
  color: var(--ink-mid);
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--ink); }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
}

.dashboard-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  position: absolute;
  overflow: hidden;
  box-shadow: 0 24px 64px oklch(0.14 0.028 245 / 0.14), 0 8px 24px oklch(0.14 0.028 245 / 0.08), 0 2px 6px oklch(0.14 0.028 245 / 0.04);
  background-image:
    radial-gradient(circle at 88% -4%, oklch(0.92 0.07 198 / 0.42) 0%, transparent 44%);
  background-size: 100% 100%;
}
.dashboard-card.hero-dots {
  background-image:
    radial-gradient(circle at 88% -4%, oklch(0.92 0.07 198 / 0.42) 0%, transparent 44%),
    radial-gradient(circle, oklch(0.76 0.014 225 / 0.55) 1px, transparent 1px);
  background-size: 100% 100%, 20px 20px;
}

.dash-main {
  width: 100%;
  top: 40px;
  left: 0;
  right: 0;
}

.dash-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
}

.dash-metric {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4px;
}

.dash-sub {
  font-size: 13px;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-up { color: oklch(0.62 0.16 155); font-weight: 600; }

.bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  margin-top: 24px;
}

.bar {
  flex: 1;
  border-radius: 100px;
  background: var(--border);
  transition: height 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bar.active {
  background: linear-gradient(180deg, oklch(0.64 0.20 195) 0%, oklch(0.52 0.22 210) 100%);
  box-shadow: 0 4px 12px oklch(0.58 0.20 198 / 0.35);
}
.bar.accent2 {
  background: linear-gradient(180deg, oklch(0.68 0.16 278) 0%, oklch(0.54 0.20 285) 100%);
  box-shadow: 0 4px 12px oklch(0.58 0.18 278 / 0.3);
}

.mini-card {
  background: oklch(0.99 0.003 220 / 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 8px 32px oklch(0.14 0.028 245 / 0.12), 0 2px 8px oklch(0.14 0.028 245 / 0.06);
  position: relative;
  overflow: hidden;
}
.mini-card::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.7;
}

.mini-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.mini-card-val {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.float-card-1 {
  position: absolute;
  bottom: 35px;
  left: -20px;
  width: 160px;
  animation: float1 4s ease-in-out infinite;
  z-index: 25;
  transition: z-index 0s;
}

.float-card-2 {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 150px;
  animation: float2 5s ease-in-out infinite;
  z-index: 25;
}


@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* Sparkline */
.sparkline { width: 100%; height: 60px; margin-top: 16px; }

/* ── TRUST STRIP ─────────────────────────────────────── */
.trust-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 80px;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex: 1;
}

.trust-logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-light);
  letter-spacing: -0.02em;
  opacity: 0.5;
  white-space: nowrap;
}

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 100px 80px; max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 560px;
}

/* ── PRODUCTS TABS ───────────────────────────────────── */
.products-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}

.products-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.product-tabs {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.tab-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.tab-item {
  padding: 18px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid transparent;
}

.tab-item:hover { background: var(--bg2); }

.tab-item.active {
  background: linear-gradient(135deg, var(--accent-light) 0%, oklch(0.93 0.05 278 / 0.2) 100%);
  border-color: var(--accent-mid);
}

.tab-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-light), oklch(0.93 0.05 278 / 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--accent);
}

.tab-item.active .tab-item-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
}

.tab-item-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.tab-item-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
}

/* Tab panels */
.tab-panels {
  min-width: 0;
}

.tab-panel {
  display: none;
  background: var(--bg);
  border-radius: 28px;
  border: none;
  box-shadow: 0 0 0 1.5px var(--border), 0 8px 32px oklch(0.14 0.028 245 / 0.07);
  min-height: 440px;
  flex-direction: row;
  gap: 0;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 90% 10%, oklch(0.93 0.06 198 / 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, oklch(0.93 0.06 278 / 0.15) 0%, transparent 50%),
    radial-gradient(circle, oklch(0.82 0.01 225) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
  animation: fadePanel 0.35s ease;
}

.tab-panel.active { display: flex; }

@keyframes fadePanel { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.tab-panel-text {
  flex: 1 1 0;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.tab-panel-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-panel-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.tab-panel-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}

.panel-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.panel-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 480px;
}

.panel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.panel-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}

.feat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  flex-shrink: 0;
  box-shadow: 0 0 0 2px oklch(0.93 0.06 198 / 0.5);
}

.tab-panel-photo {
  flex: 0 0 340px;
  position: relative;
  overflow: hidden;
  border-radius: 0 28px 28px 0;
}

.tab-panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tab-panel-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 30%),
    linear-gradient(180deg, transparent 60%, oklch(0.14 0.028 245 / 0.3) 100%);
  pointer-events: none;
}

/* ── COMPETENCIES ────────────────────────────────────── */
.competencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.comp-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px var(--border), 0 4px 16px oklch(0.14 0.028 245 / 0.05);
  background-image: radial-gradient(circle, oklch(0.84 0.01 225) 1px, transparent 1px);
  background-size: 20px 20px;
}

.comp-card::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: scale(0.6);
}

.comp-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.comp-card:hover { transform: translateY(-6px); box-shadow: 0 0 0 1.5px var(--accent-mid), 0 20px 56px oklch(0.14 0.028 245 / 0.13); }
.comp-card:hover::before { opacity: 1; transform: scale(1); }
.comp-card:hover::after { transform: scaleX(1); }

.comp-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-light) 0%, oklch(0.93 0.06 278 / 0.4) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px oklch(0.58 0.20 198 / 0.15);
  position: relative;
  z-index: 1;
}

.comp-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}

.comp-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-light);
  font-weight: 300;
}

/* ── STATS SECTION ───────────────────────────────────── */
.stats-section {
  background: var(--ink);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, oklch(0.7 0.01 225 / 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: -150px;
  left: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.58 0.20 198 / 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.stat-ring-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donut-ring {
  display: block;
}

.stat-val-overlay {
  position: absolute;
  text-align: center;
}

.stat-counter {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-counter.small { font-size: 14px; }

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: oklch(1 0 0 / 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

/* ── TESTIMONIAL ─────────────────────────────────────── */
.testimonial-section {
  background: var(--bg);
  padding: 80px 0;
}

.testimonial-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.testimonial-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--accent-light), 0 8px 32px oklch(0.58 0.20 198 / 0.2);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg);
}

.testimonial-quote {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-style: italic;
}

.testimonial-attr {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-attr span {
  font-weight: 400;
  color: var(--ink-light);
}

/* ── FREE PLAN SECTION ───────────────────────────────── */
.free-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.free-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.free-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.free-feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.free-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.free-feature-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.free-feature-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
}

.free-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 0 0 1.5px var(--border), 0 20px 60px oklch(0.14 0.028 245 / 0.12);
}

.free-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.free-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(0.14 0.028 245 / 0.55) 100%);
}

.free-photo-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: oklch(1 0 0 / 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid oklch(1 0 0 / 0.2);
  border-radius: 14px;
  padding: 18px 22px;
}

.free-photo-badge-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.free-photo-badge-sub {
  font-size: 12px;
  color: oklch(1 0 0 / 0.65);
}

/* ── ARTICLE BODY ────────────────────────────────────── */
.article-body { font-size: 16px; line-height: 1.85; color: var(--ink-mid); font-weight: 300; }
.article-body h2 { font-family: var(--font-head); font-size: clamp(20px,2.5vw,28px); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin: 52px 0 16px; }
.article-body h3 { font-family: var(--font-head); font-size: clamp(17px,2vw,22px); font-weight: 700; color: var(--ink); margin: 36px 0 12px; }
.article-body p { margin-bottom: 24px; }
.article-body ul, .article-body ol { margin: 0 0 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.article-body li { line-height: 1.7; }
.article-body strong { font-weight: 600; color: var(--ink); }

/* ── HERO INTERACTIVE CHART (SVG) ───────────────────── */
.hero-chart-wrap {
  position: relative;
  height: 195px;
}
.hero-axis { display: none; }
.hero-tooltip {
  position: absolute;
  background: var(--ink);
  color: white;
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 160px;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 12px 32px oklch(0 0 0 / 0.28);
}
.hero-tip-month {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}
.hero-tip-amt {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1;
}
.hero-tip-rows { display: flex; flex-direction: column; gap: 5px; }
.hero-tip-row  { display: flex; justify-content: space-between; gap: 20px; font-size: 11px; }
.hero-tip-label { opacity: 0.55; }

/* ── CHART MODE TOGGLE ───────────────────────────────── */
.chart-mode-toggle {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  background: oklch(0.94 0.008 225);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
  z-index: 30;
  box-shadow: 0 2px 8px oklch(0 0 0 / 0.10);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-radius 0.4s ease, padding 0.4s ease;
}
.cmt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: oklch(0.55 0.012 228);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, filter 0.2s;
}
.cmt-btn.active {
  background: #fff;
  color: oklch(0.28 0.04 247);
  box-shadow: 0 1px 4px oklch(0 0 0 / 0.12);
}
.cmt-btn:not(.active):hover { background: oklch(0.90 0.008 225); }


/* ── CTA BAND ────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, oklch(0.14 0.028 245) 0%, oklch(0.18 0.04 265) 100%);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, oklch(0.58 0.20 198 / 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, oklch(0.7 0.01 225 / 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-band p {
  font-size: 17px;
  color: oklch(1 0 0 / 0.55);
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: white;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px oklch(0.58 0.20 198 / 0.35);
}
.btn-accent:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 12px 32px oklch(0.58 0.20 198 / 0.45); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-light);
  font-weight: 300;
  max-width: 260px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: var(--ink-light);
}

/* ── SCROLL ANIMATIONS ───────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .competencies-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 48px; }
  .hero-visual { height: 320px; }
  .section { padding: 60px 24px; }
  .trust-strip { padding: 24px; }
  .products-section { padding: 60px 0; }
  .products-inner { padding: 0 24px; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .product-tabs { grid-template-columns: 1fr; }
  .tab-panel { flex-direction: column; }
  .tab-panel-photo { flex: 0 0 240px; border-radius: 0 0 28px 28px; }
  .tab-panel-photo::after { background: linear-gradient(180deg, var(--bg) 0%, transparent 30%), linear-gradient(180deg, transparent 60%, oklch(0.14 0.028 245 / 0.3) 100%); }
  .competencies-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .testimonial-inner { grid-template-columns: 1fr; padding: 0 24px; text-align: center; }
  .testimonial-avatar-wrap { margin: 0 auto; }
  .free-inner { grid-template-columns: 1fr; padding: 60px 24px; }
  .cta-band { padding: 60px 24px; }
  footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-logos { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .competencies-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .panel-features { grid-template-columns: 1fr; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
}

/* ═══════════════════════════════════════════════════════
   NAV EXTRAS
   ═══════════════════════════════════════════════════════ */
.nav-active { color: var(--ink) !important; }

.nav-demo {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent-mid);
  padding: 7px 16px !important;
  border-radius: 8px;
  transition: all 0.2s !important;
}
.nav-demo:hover {
  background: var(--accent-light) !important;
  color: var(--accent) !important;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent-mid); }

/* ═══════════════════════════════════════════════════════
   INNER PAGE HERO
   ═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 140px 80px 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 760px;
}

.page-hero h1 em { font-style: normal; color: var(--accent); }

.page-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS PAGE
   ═══════════════════════════════════════════════════════ */
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.product-full-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.product-full-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 3px 3px 0 0;
}

.product-full-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px oklch(0.14 0.028 245 / 0.1); border-color: var(--accent-mid); }
.product-full-card:hover::after { transform: scaleX(1); }

.product-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-light), oklch(0.93 0.06 278 / 0.4));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.product-card-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.product-card-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  font-weight: 300;
  margin-bottom: 24px;
}

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

.product-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.product-card-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  flex-shrink: 0;
  margin-top: 5px;
}

/* Product detail sections */
.product-detail-section {
  padding: 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-detail-section:nth-child(even) { background: transparent; }

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-detail-inner.reverse { direction: rtl; }
.product-detail-inner.reverse > * { direction: ltr; }

/* ── HERO SPLIT (products page) ──────────────────────── */
.page-hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 88px;
}

.page-hero-chart {
  position: relative;
  min-width: 0;
}

.wf-hero-svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-hero-text { min-width: 0; }

@media (max-width: 900px) {
  .page-hero--split {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 60px;
  }
  .page-hero-chart { display: none; }
}

/* ── RESOURCES HERO — inaction card ─────────────────── */
.inaction-card {
  background: oklch(0.16 0.03 240);
  border-radius: 20px;
  padding: 36px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.inaction-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.inaction-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.inaction-item:last-of-type { border-bottom: none; }

.inaction-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: oklch(0.72 0.10 55);
  flex-shrink: 0;
}

.inaction-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
}

.inaction-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  line-height: 1.3;
}

.inaction-source {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
  margin-top: 3px;
  font-style: italic;
}

.inaction-footer {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-mid);
  letter-spacing: 0.01em;
}

/* ── ABOUT HERO — pillar card ─────────────────────────── */
.about-hero-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 28px;
}

.about-hero-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.ahg-cell {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ahg-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ahg-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.about-hero-card-footer {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 400;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ── LEARN HERO — knowledge stats card ───────────────── */
.learn-stats-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 28px;
}

.lsc-total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.lsc-total-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.05em;
  line-height: 1;
}

.lsc-total-label {
  font-size: 15px;
  color: var(--ink-light);
  font-weight: 400;
  line-height: 1.2;
}

.lsc-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}

.lsc-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

.lsc-bar-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
}

.lsc-bar-name {
  font-size: 12px;
  color: var(--ink-mid);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lsc-bar-track {
  width: 100px;
  height: 6px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
}

.lsc-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.3s;
}

.learn-stats-card.visible .lsc-bar-fill { width: var(--target-w); }

.lsc-bar-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  min-width: 20px;
  text-align: right;
}

.lsc-footer {
  font-size: 11px;
  color: var(--ink-light);
  font-weight: 400;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── WORKFLOW CHART ──────────────────────────────────── */
.workflow-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 88px;
}

.workflow-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.workflow-chart-wrap {
  margin-top: 52px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.workflow-svg {
  display: block;
  width: 100%;
  min-width: 860px;
  height: auto;
}

/* Paths hidden until JS fires */
#wf-main-path,
#wf-glow-path { opacity: 0; }

/* Nodes: hidden + scaled down before animation */
.wf-node-group {
  opacity: 0;
  transform: scale(0.5);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.wf-node-group.wf-visible {
  opacity: 1;
  transform: scale(1);
}

/* Circle */
.wf-node-circle {
  fill: white;
  stroke: var(--accent);
  stroke-width: 2;
}
.wf-node-group:hover .wf-node-circle {
  filter: drop-shadow(0 0 10px oklch(0.58 0.20 198 / 0.42));
  stroke: var(--accent-mid);
}

/* Icon */
.wf-node-icon { color: var(--accent); }

/* Number badge */
.wf-badge-rect { fill: var(--accent); }
.wf-badge-text { fill: white; }

/* Label text */
.wf-node-title { fill: var(--ink); }
.wf-node-desc  { fill: var(--ink-light); }

/* Mobile fallback — hidden on desktop */
.workflow-mobile { display: none; }

.wf-mobile-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.wf-mobile-item:last-child { border-bottom: none; }

.wf-mobile-num {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
  min-width: 32px;
  line-height: 1;
  padding-top: 3px;
}

.wf-mobile-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 3px;
}

.wf-mobile-desc {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .workflow-inner { padding: 0 24px; }
  .workflow-section { padding: 60px 0 68px; }
}

@media (max-width: 600px) {
  .workflow-chart-wrap { display: none; }
  .workflow-mobile     { display: flex; flex-direction: column; margin-top: 40px; }
}

/* ── INDEX FLOW (full-width chart inside products section) */
.idx-flow-wrap {
  overflow-x: auto;
  margin: 0 0 48px;
  -webkit-overflow-scrolling: touch;
}

.idx-flow-svg {
  display: block;
  width: 100%;
  height: auto;
  min-width: 720px;
}

/* ── ABOUT STAT STRIP ────────────────────────────────── */
.about-stat-strip {
  background: var(--ink);
  padding: 64px 80px;
}

.about-stat-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stat {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat:last-child { border-right: none; }

.about-stat-number {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  color: var(--accent-mid);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  white-space: nowrap;
}

.about-stat-label {
  font-size: 13px;
  color: oklch(0.60 0.012 228);
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about-stat-strip { padding: 48px 24px; }
  .about-stat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-stat { border-right: none; padding: 0; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.about-values-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}

.about-values-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.value-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  border-color: var(--accent-mid);
  box-shadow: 0 8px 32px oklch(0.14 0.028 245 / 0.08);
}

.value-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-light), oklch(0.93 0.06 278 / 0.4));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.value-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.value-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mid);
  font-weight: 300;
}

/* Axolotl section */
.axolotl-section {
  padding: 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

.axolotl-mascot {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   RESOURCES PAGE
   ═══════════════════════════════════════════════════════ */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 56px 0;
}

.metric-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 4px 4px 0 0;
}

.metric-number {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-number span { color: var(--accent); }

.metric-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.metric-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.6;
  font-weight: 300;
}

.resource-section {
  padding: 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.resource-section + .resource-section { padding-top: 0; }

.resource-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 720px;
  margin-top: 16px;
}

.resource-callout {
  background: linear-gradient(135deg, var(--accent-light) 0%, oklch(0.93 0.06 278 / 0.2) 100%);
  border: 1.5px solid var(--accent-mid);
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 32px;
}

.resource-callout-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.resource-callout-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  font-weight: 300;
}

.resource-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.resource-split-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1.5px solid var(--border);
}

.resource-split-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.resource-split-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mid);
  font-weight: 300;
}

.resource-value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.resource-value-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 48px 40px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}

.resource-value-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.4;
}

.resource-value-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.resource-value-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ── ROI COMPARISON VISUAL ───────────────────────────── */
.roi-visual {
  background: oklch(0.16 0.03 240);
  border-radius: var(--radius);
  padding: 48px 48px 36px;
  margin-bottom: 40px;
}

.roi-visual-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 36px;
}

.roi-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.roi-row:last-child { border-bottom: none; }

.roi-row-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.roi-bars { display: flex; flex-direction: column; gap: 7px; }

.roi-bar-row {
  display: grid;
  grid-template-columns: 64px 1fr 52px;
  align-items: center;
  gap: 12px;
}

.roi-bar-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
}

.roi-before-tag { color: oklch(0.72 0.10 55); }
.roi-after-tag  { color: oklch(0.72 0.12 198); }

.roi-bar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.roi-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.roi-bar-fill.roi-bar-before { background: oklch(0.65 0.12 55); }
.roi-bar-fill.roi-bar-after  { background: var(--accent); }

.roi-visual.visible .roi-bar-fill { width: var(--target-w); }

.roi-val {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.roi-val-before { color: oklch(0.72 0.10 55); }
.roi-val-after  { color: oklch(0.72 0.12 198); }

@media (max-width: 768px) {
  .roi-visual { padding: 32px 24px; }
  .roi-row { grid-template-columns: 1fr; gap: 10px; }
  .roi-row-label { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════
   LEARN / BLOG PAGE
   ═══════════════════════════════════════════════════════ */

/* ── Category hero cards ─────────────────────────────── */
.cat-cards-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 80px 0;
}

.cat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s ease;
  border-radius: var(--radius);
}

.cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.22); }
.cat-card:hover::after { background: rgba(255, 255, 255, 0.04); }

.cat-card-ic { background: linear-gradient(140deg, oklch(0.30 0.07 228) 0%, oklch(0.40 0.14 210) 100%); }
.cat-card-sm { background: linear-gradient(140deg, oklch(0.30 0.08 278) 0%, oklch(0.40 0.14 262) 100%); }
.cat-card-sp { background: linear-gradient(140deg, oklch(0.28 0.08 168) 0%, oklch(0.38 0.13 152) 100%); }

.cat-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 6px;
}

.cat-card-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.cat-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  font-weight: 300;
  flex: 1;
}

.cat-card-count {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .cat-cards-wrap { padding: 40px 24px 0; }
  .cat-cards { grid-template-columns: 1fr; gap: 14px; }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px oklch(0.14 0.028 245 / 0.1); border-color: var(--accent-mid); }

.blog-card-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.blog-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid oklch(0.58 0.20 198 / 0.2);
}

.blog-date {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 500;
}

.blog-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-mid);
  font-weight: 300;
  flex: 1;
  margin-bottom: 24px;
}

.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: 10px; }

/* Blog filter bar */
.blog-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.blog-filter-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink-mid);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ═══════════════════════════════════════════════════════
   DEMO / CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.demo-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.demo-info h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
}

.demo-info p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-mid);
  font-weight: 300;
  margin-bottom: 36px;
}

.demo-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.demo-benefit-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.demo-benefit-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.demo-benefit-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
}

.demo-form-card {
  background: var(--card);
  border-radius: 28px;
  padding: 48px 44px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 40px oklch(0.14 0.028 245 / 0.07);
}

.demo-form-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.demo-form-card .form-subtitle {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-light); }

.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--accent); transform: translateY(-1px); }

.form-input-error { border-color: oklch(0.55 0.20 25) !important; }
.form-error {
  font-size: 12px;
  color: oklch(0.55 0.20 25);
  margin-top: 5px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — INNER PAGES
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-full-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .page-hero { padding: 120px 24px 56px; }
  .products-full-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .axolotl-section { grid-template-columns: 1fr; padding: 60px 24px; }
  .axolotl-mascot { max-width: 200px; }
  .about-values-inner { padding: 0 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .resource-section { padding: 60px 24px; }
  .resource-section + .resource-section { padding-top: 0; }
  .metrics-strip { grid-template-columns: 1fr; }
  .resource-split { grid-template-columns: 1fr; }
  .resource-value-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .demo-layout { grid-template-columns: 1fr; padding: 0 24px 60px; gap: 48px; }
  .demo-form-card { padding: 32px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Presentation Builder Spotlight ───────────────────── */
.pres-spotlight {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 80px;
}
.pres-spotlight-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pres-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pres-slide-stack {
  position: relative;
  width: 100%;
  height: 272px;
}
.pres-slide {
  position: absolute;
  width: 400px;
  height: 225px;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pres-slide-b2 {
  background: linear-gradient(135deg, oklch(0.22 0.08 262), oklch(0.18 0.04 245));
  transform: translate(-50%, -50%) rotate(-7deg) translate(-18px, 8px);
  box-shadow: 0 8px 32px oklch(0.14 0.028 245 / 0.18);
  opacity: 0.5;
}
.pres-slide-b2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 21%;
  background: oklch(0.12 0.04 245);
  border-radius: 10px 10px 0 0;
}
.pres-slide-b1 {
  background: oklch(0.94 0.008 225);
  transform: translate(-50%, -50%) rotate(-3.5deg) translate(-9px, 4px);
  box-shadow: 0 8px 24px oklch(0.14 0.028 245 / 0.12);
  opacity: 0.72;
}
.pres-slide-b1::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 19%;
  background: oklch(0.19 0.05 247);
  border-radius: 10px 10px 0 0;
}
.pres-slide-front {
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1px oklch(0.88 0.010 225),
    0 20px 60px oklch(0.14 0.028 245 / 0.22),
    0 4px 16px oklch(0.14 0.028 245 / 0.08);
  overflow: hidden;
  z-index: 2;
}
.pres-slide-stack:hover .pres-slide-b2 {
  transform: translate(-50%, -50%) rotate(-11deg) translate(-30px, 6px);
}
.pres-slide-stack:hover .pres-slide-b1 {
  transform: translate(-50%, -50%) rotate(-5.5deg) translate(-15px, 3px);
}
.pres-slide-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}
.pres-mock-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.pres-mock-slide.active {
  opacity: 1;
}
.pres-nav-dots {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}
.pres-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(0.82 0.010 225);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.pres-nav-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
.pres-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  justify-content: center;
}
.pres-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .pres-slide { width: 330px; height: 185px; }
  .pres-slide-stack { height: 226px; }
}
@media (max-width: 900px) {
  .pres-spotlight { padding: 72px 24px; }
  .pres-spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .pres-slide { width: 380px; height: 214px; }
  .pres-slide-stack { height: 260px; }
}
