/* 360 AIMS — International SaaS aesthetic v2 */

:root {
  /* Brand color tokens — CMS-editable */
  --brand-primary: oklch(66% 0.19 38);
  --brand-primary-deep: oklch(54% 0.17 38);
  --brand-primary-glow: oklch(72% 0.18 50);
  --brand-accent: var(--brand-primary);
  --brand-ink: oklch(15% 0.012 260);
  --brand-paper: oklch(98.5% 0.003 80);
  --text-on-brand: oklch(96% 0.005 80);

  /* Light surfaces */
  --bg: oklch(98.5% 0.003 80);
  --bg-elev: oklch(100% 0 0);
  --bg-tint: oklch(96% 0.005 80);
  --paper: oklch(100% 0 0);

  /* Dark surfaces */
  --ink-bg: oklch(15% 0.012 260);
  --ink-bg-2: oklch(19% 0.014 260);
  --ink-line: oklch(28% 0.014 260);

  /* Text */
  --ink: oklch(16% 0.012 260);
  --ink-2: oklch(36% 0.014 260);
  --ink-3: oklch(54% 0.012 260);

  --line: oklch(90% 0.008 260);
  --line-2: oklch(82% 0.01 260);

  /* Accent — Ember */
  --accent: oklch(66% 0.19 38);
  --accent-deep: oklch(54% 0.17 38);
  --accent-soft: oklch(94% 0.04 38);
  --accent-glow: oklch(72% 0.18 50);

  /* Type — all geometric sans */
  --f-display: 'Geist', 'Inter Tight', 'Noto Sans TC', -apple-system, sans-serif;
  --f-sans: 'Geist', 'Inter Tight', 'Noto Sans TC', -apple-system, sans-serif;
  --f-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --col-max: 1360px;
}

:root.acc-jade  { --accent: oklch(66% 0.16 168); --accent-deep: oklch(50% 0.14 168); --accent-soft: oklch(94% 0.04 168); --accent-glow: oklch(74% 0.16 178); }
:root.acc-azure { --accent: oklch(64% 0.18 250); --accent-deep: oklch(48% 0.16 250); --accent-soft: oklch(94% 0.04 250); --accent-glow: oklch(72% 0.17 240); }
:root.acc-ink   { --accent: oklch(38% 0.014 260); --accent-deep: oklch(22% 0.012 260); --accent-soft: oklch(92% 0.005 260); --accent-glow: oklch(50% 0.014 260); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink-bg);
  color: oklch(94% 0.005 80);
  font-family: var(--f-sans);
}
body[data-theme="light"] {
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ================== TYPOGRAPHY ================== */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(64% 0.014 260);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}

.h-display {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.4;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.h-display em {
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(110deg, var(--accent-glow) 0%, var(--accent) 50%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h-display .strike { text-decoration: line-through; text-decoration-thickness: 2px; opacity: 0.5; }
.h-display.h-display--sm { font-size: clamp(30px, 4vw, 60px); line-height: 1.4; }

/* Hero word-by-word reveal animation — left-to-right wipe + scale-in */
.h-anim {
  padding: 0.8em 0 0.2em;
  overflow: visible;
}
.h-anim .w {
  display: inline-block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: scale(0.92);
  transform-origin: left bottom;
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
    clip-path 0.85s cubic-bezier(0.65, 0, 0.35, 1),
    transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1.4;
}
/* Em words need their own gradient because clip-path on .w creates new stacking context */
.h-anim em .w {
  background: linear-gradient(110deg, var(--accent-glow) 0%, var(--accent) 50%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slide.is-active .h-anim .w {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
  transform: scale(1);
}
.hero-slide:not(.is-active) .h-anim .w { transition-delay: 0s !important; }

.hero-slide.is-active .h-anim em .w {
  animation: heroAccentGlow 1.6s ease-out 1.2s 1 backwards;
}
@keyframes heroAccentGlow {
  0% { text-shadow: 0 0 0 transparent; }
  35% { text-shadow: 0 0 32px color-mix(in oklch, var(--accent) 70%, transparent); }
  100% { text-shadow: 0 0 0 transparent; }
}
.hero-slide.is-active .h-anim .w { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .h-anim .w { opacity: 1; clip-path: none; transform: none; transition: none; animation: none; }
}

.h-section {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.h-section em {
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(110deg, var(--accent-glow), var(--accent-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: oklch(72% 0.012 260);
  max-width: 60ch;
  text-wrap: pretty;
  font-weight: 400;
}

.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; }

/* ================== LAYOUT ================== */
.shell {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.row { display: flex; gap: 16px; align-items: center; }

.section {
  padding: clamp(96px, 11vw, 160px) 0;
  position: relative;
}

.section.light {
  background: var(--bg);
  color: var(--ink);
}
.section.light .lede { color: var(--ink-2); }
.section.light .eyebrow { color: var(--ink-3); }

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  background: transparent;
  white-space: nowrap;
}
.btn-primary {
  background: oklch(96% 0.005 80);
  color: var(--ink-bg);
  border-color: oklch(96% 0.005 80);
  box-shadow: 0 1px 0 oklch(100% 0 0 / .4) inset, 0 8px 24px oklch(0% 0 0 / .25);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 32px color-mix(in oklch, var(--accent) 50%, transparent);
}
.btn-ghost {
  border-color: oklch(50% 0.014 260);
  color: oklch(94% 0.005 80);
}
.btn-ghost:hover {
  border-color: oklch(70% 0.014 260);
  background: oklch(22% 0.014 260);
}
.section.light .btn-ghost { color: var(--ink); border-color: var(--line-2); }
.section.light .btn-ghost:hover { background: var(--bg-elev); border-color: var(--ink); }
.section.light .btn-primary { background: var(--ink-bg); color: oklch(96% 0.005 80); border-color: var(--ink-bg); }
.section.light .btn-primary:hover { background: var(--accent); border-color: var(--accent); color: white; }

.btn-arrow::after {
  content: "→";
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ================== NAV ================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--ink-bg) 70%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid color-mix(in oklch, oklch(40% 0.014 260) 60%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-logo { width: 26px; height: 26px; flex-shrink: 0; }
.brand-num { color: var(--accent); }
.brand-aims { font-weight: 500; letter-spacing: 0; opacity: 0.92; }
.brand sup {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  margin-left: 4px;
  color: var(--accent);
  letter-spacing: 0.08em;
  vertical-align: 8px;
}

/* Hero carousel */
.hero-slides { position: relative; min-height: clamp(220px, 28vw, 360px); }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .6s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; position: relative; }
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 28px; height: 4px;
  background: oklch(32% 0.014 260);
  border: 0; padding: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.hero-dot.is-active { background: var(--accent); width: 40px; }
.hero-dot:hover { background: oklch(50% 0.014 260); }

.hero-preview-track { position: relative; width: 100%; aspect-ratio: 21/9; }
.hero-preview-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-preview-slide.is-active { opacity: 1; }
.hero-preview-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95) brightness(0.95);
}
.hp-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.55);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 2;
}
.hp-caption .mono { color: var(--accent); margin-right: 6px; }

.nav-links {
  display: flex; gap: 32px;
  font-size: 14px;
  color: oklch(72% 0.012 260);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: oklch(96% 0.005 80); }
.nav-links a.is-active { color: oklch(96% 0.005 80); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 1px; background: var(--accent);
}
.nav-links a { position: relative; white-space: nowrap; }

/* ==== Inner page chrome ==== */
.page-hero {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 5vw, 72px);
  border-bottom: 1px solid oklch(24% 0.014 260);
  background: var(--ink-bg);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 100%, black, transparent 70%);
}
.page-hero > .shell { position: relative; z-index: 2; }
.page-hero .crumbs {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: oklch(60% 0.012 260);
  margin-bottom: 32px;
}
.page-hero .crumbs a { color: oklch(60% 0.012 260); }
.page-hero .crumbs a:hover { color: oklch(96% 0.005 80); }
.page-hero .crumbs em { font-style: normal; color: var(--accent); }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: oklch(96% 0.005 80);
  margin: 0 0 24px;
  text-wrap: balance;
}
.page-hero h1 em {
  font-style: normal; font-weight: 500;
  background: linear-gradient(110deg, var(--accent-glow), var(--accent), var(--accent-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero .lede {
  color: oklch(78% 0.01 260);
  font-size: 18px;
  max-width: 60ch;
  margin: 0;
}
.page-hero .meta-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid oklch(28% 0.014 260);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: oklch(60% 0.012 260);
}
.page-hero .meta-row strong { color: oklch(96% 0.005 80); font-weight: 500; }
.page-hero .meta-row em { font-style: normal; color: var(--accent); }

/* Sections inside inner pages */
.section { padding: clamp(72px, 9vw, 128px) 0; }

/* ==== Tool detail page ==== */
.tool-hero {
  background: var(--ink-bg);
  color: oklch(96% 0.005 80);
  padding: clamp(72px, 9vw, 120px) 0 clamp(64px, 7vw, 96px);
  position: relative; overflow: hidden;
  border-bottom: 1px solid oklch(24% 0.014 260);
}
.tool-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, oklch(24% 0.014 260) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(24% 0.014 260) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 100%, black, transparent 70%);
  opacity: 0.5;
}
.tool-hero > .shell { position: relative; z-index: 1; }
.tool-hero .crumbs { color: oklch(70% 0.012 260); margin-bottom: 40px; }
.tool-hero .crumbs a { color: oklch(82% 0.012 260); }
.tool-hero .crumbs em { color: oklch(50% 0.012 260); }

.tool-hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: end;
}
.tool-num-badge {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  padding: 8px 14px;
  background: oklch(22% 0.014 260);
  border-radius: 999px;
  margin-bottom: 28px;
}
.tool-num-badge strong { font-family: var(--f-display); font-size: 16px; letter-spacing: 0; color: oklch(96% 0.005 80); font-weight: 500; }
.tool-num-badge em { font-style: normal; color: oklch(70% 0.012 260); }

.tool-hero h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: oklch(96% 0.005 80);
  text-wrap: balance;
}
.tool-hero h1 em {
  font-style: normal; font-weight: 500;
  background: linear-gradient(110deg, var(--accent-glow), var(--accent), var(--accent-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.tool-hero .lede {
  font-size: 20px; line-height: 1.55;
  color: oklch(82% 0.012 260);
  max-width: 56ch;
  margin: 0 0 40px;
}
.tool-hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }

.tool-hero-stats {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: oklch(22% 0.014 260);
  border: 1px solid oklch(28% 0.014 260);
  border-radius: 16px;
  padding: 8px;
}
.tool-hero-stat {
  padding: 28px 32px;
  border-bottom: 1px solid oklch(28% 0.014 260);
}
.tool-hero-stat:last-child { border-bottom: 0; }
.tool-hero-stat .label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  color: oklch(64% 0.012 260); text-transform: uppercase;
  margin-bottom: 8px;
}
.tool-hero-stat strong {
  font-family: var(--f-display); font-weight: 600;
  font-size: 38px; letter-spacing: -0.025em;
  color: oklch(96% 0.005 80);
  display: block; line-height: 1;
}
.tool-hero-stat strong em {
  font-style: normal;
  background: linear-gradient(110deg, var(--accent-glow), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

@media (max-width: 880px) {
  .tool-hero-grid { grid-template-columns: 1fr; }
}

/* Tool sticky sub-nav (jumps to features / workflow / use-cases / faq) */
.tool-subnav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.tool-subnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.tool-subnav-name {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--f-display);
  font-size: 18px; letter-spacing: -0.015em; font-weight: 500;
  color: var(--ink);
}
.tool-subnav-name span {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent); text-transform: uppercase;
}
.tool-subnav-links {
  display: flex; gap: 24px;
  font-family: var(--f-sans); font-size: 14px; color: var(--ink-2);
}
.tool-subnav-links a:hover { color: var(--ink); }
.tool-subnav-cta { display: flex; align-items: center; gap: 12px; }

@media (max-width: 760px) {
  .tool-subnav-links { display: none; }
}

/* Tool sections (light theme) */
.tool-section { padding: clamp(72px, 8vw, 112px) 0; }
.tool-section + .tool-section { border-top: 1px solid var(--line); }
.tool-section.dark { background: var(--ink-bg); color: oklch(96% 0.005 80); border-top: 1px solid oklch(24% 0.014 260); }
.tool-section.dark .section-eyebrow { color: oklch(64% 0.012 260); }
.tool-section.dark .section-h { color: oklch(96% 0.005 80); }
.tool-section.dark .section-lede { color: oklch(82% 0.012 260); }

/* Feature grid (4 large) */
.tool-feat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
}
.tool-feat {
  padding: clamp(32px, 3.5vw, 48px);
  position: relative;
}
.tool-feat:nth-child(odd) { border-right: 1px solid var(--line); }
.tool-feat:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--line); }
.tool-feat .num {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 20px;
}
.tool-feat h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 26px; letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
}
.tool-feat p {
  margin: 0; color: var(--ink-2);
  font-size: 15.5px; line-height: 1.65;
}
.tool-feat .feat-vis {
  margin-top: 28px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  background: linear-gradient(135deg, oklch(95% 0.02 50), oklch(90% 0.03 70));
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.tool-feat .feat-vis::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
@media (max-width: 760px) {
  .tool-feat-grid { grid-template-columns: 1fr; }
  .tool-feat:nth-child(odd) { border-right: 0; }
  .tool-feat:not(:last-child) { border-bottom: 1px solid var(--line); }
}

/* Workflow timeline (vertical with mock screens) */
.tool-flow {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.tool-flow-steps { display: flex; flex-direction: column; gap: 0; }
.tool-flow-step {
  padding: 24px 0 24px 32px;
  border-left: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}
.tool-flow-step::before {
  content: ""; position: absolute;
  left: -5px; top: 32px;
  width: 9px; height: 9px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.2s;
}
.tool-flow-step.is-active { border-left-color: var(--accent); }
.tool-flow-step.is-active::before { background: var(--accent); border-color: var(--accent); transform: scale(1.5); }
.tool-flow-step .num {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-3); text-transform: uppercase;
  margin-bottom: 6px;
}
.tool-flow-step.is-active .num { color: var(--accent); }
.tool-flow-step h4 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
}
.tool-flow-step p {
  margin: 0; color: var(--ink-2);
  font-size: 15px; line-height: 1.6;
}
.tool-flow-mock {
  position: sticky; top: 96px;
  background: var(--ink-bg);
  border-radius: 20px;
  padding: 24px;
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid oklch(28% 0.014 260);
  overflow: hidden;
}
.tool-flow-mock-bar {
  display: flex; gap: 8px; align-items: center;
}
.tool-flow-mock-bar i {
  width: 10px; height: 10px; border-radius: 50%;
  background: oklch(34% 0.014 260);
}
.tool-flow-mock-bar i:first-child { background: oklch(70% 0.18 25); }
.tool-flow-mock-bar i:nth-child(2) { background: oklch(80% 0.15 80); }
.tool-flow-mock-bar i:nth-child(3) { background: oklch(72% 0.18 145); }
.tool-flow-mock-bar span {
  margin-left: 12px;
  font-family: var(--f-mono); font-size: 11px; color: oklch(64% 0.012 260);
  letter-spacing: 0.05em;
}
.tool-flow-mock-canvas {
  flex: 1;
  background: oklch(22% 0.014 260);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border: 1px solid oklch(28% 0.014 260);
  overflow: hidden;
}
.tool-flow-mock-canvas::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, oklch(28% 0.014 260) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(28% 0.014 260) 1px, transparent 1px);
  background-size: 32px 32px;
}
.tool-flow-mock-canvas .label {
  position: relative; z-index: 1;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: oklch(72% 0.012 260);
  padding: 12px 24px;
  background: oklch(18% 0.012 260);
  border: 1px solid oklch(32% 0.014 260);
  border-radius: 999px;
}
.tool-flow-mock-canvas .label em { font-style: normal; color: var(--accent); margin-right: 8px; }

@media (max-width: 880px) {
  .tool-flow { grid-template-columns: 1fr; }
  .tool-flow-mock { aspect-ratio: 16/10; position: relative; top: 0; }
}

/* Use cases (industries) */
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.usecase-card {
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 16px;
}
.usecase-card .ind {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.usecase-card h4 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.015em;
  margin: 0; color: var(--ink);
  line-height: 1.3;
}
.usecase-card p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.usecase-card .metric {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; justify-content: space-between; align-items: baseline;
}
.usecase-card .metric strong {
  font-family: var(--f-display);
  font-size: 24px; font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-transform: none;
}

@media (max-width: 880px) { .usecase-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq-q {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 12px;
  display: flex; align-items: baseline; gap: 16px;
}
.faq-q .num {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 500;
  min-width: 48px;
}
.faq-a {
  margin: 0 0 0 64px;
  color: var(--ink-2); line-height: 1.7;
  font-size: 16px;
}

/* Related tools */
.related-tools {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.related-tool {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.2s;
}
.related-tool:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.related-tool .num {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent); text-transform: uppercase;
}
.related-tool h5 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 19px; letter-spacing: -0.015em;
  margin: 0; color: var(--ink);
}
.related-tool p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.related-tool::after {
  content: "→";
  margin-top: auto; padding-top: 14px;
  font-family: var(--f-mono); font-size: 16px;
  color: var(--ink-3);
  transition: all 0.2s;
}
.related-tool:hover::after { color: var(--accent); transform: translateX(4px); }

@media (max-width: 880px) { .related-tools { grid-template-columns: 1fr; } }

.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3, oklch(54% 0.012 260));
  margin-bottom: 16px;
  display: inline-block;
}
.section-eyebrow em { font-style: normal; color: var(--accent); }
.section-h {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var(--ink);
}
.section-h em {
  font-style: normal; font-weight: 500;
  background: linear-gradient(110deg, var(--accent-glow), var(--accent), var(--accent-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-lede { font-size: 18px; color: var(--ink-2, oklch(40% 0.014 260)); max-width: 56ch; margin: 0 0 48px; line-height: 1.55; }
.section-head-2col {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .section-head-2col { grid-template-columns: 1fr; gap: 24px; }
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.lang-pill {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: oklch(60% 0.014 260);
  border: 1px solid oklch(35% 0.014 260);
  padding: 5px 10px;
  border-radius: 999px;
}
.lang-pill em { font-style: normal; color: oklch(94% 0.005 80); }

/* Burger button — hidden on desktop */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer; padding: 0;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}
.nav-burger:hover { border-color: var(--ink); }
.nav-burger span {
  width: 18px; height: 1.6px; background: var(--ink); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile overlay menu */
.nav-mobile {
  position: fixed; inset: 68px 0 0 0;
  background: var(--paper);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow-y: auto;
}
.nav-mobile.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-mobile-inner {
  padding: 32px 28px 48px;
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px;
}
.nav-mobile-links { display: flex; flex-direction: column; }
.nav-mobile-links a {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 4px;
  font-family: var(--f-display); font-size: 24px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s ease;
}
.nav-mobile-links a:hover, .nav-mobile-links a.is-active { color: var(--accent); }
.nav-mobile-links a .i {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-3); text-transform: uppercase;
  min-width: 32px;
}
.nav-mobile-links a.is-active .i { color: var(--accent); }
.nav-mobile-links a .arrow { margin-left: auto; color: var(--ink-3); transition: transform 0.2s ease; }
.nav-mobile-links a:hover .arrow { transform: translateX(4px); color: var(--accent); }
.nav-mobile-foot {
  display: flex; flex-direction: column; gap: 14px;
  align-items: stretch;
  padding-top: 8px;
}
.nav-mobile-foot .lang-pill { align-self: flex-start; }
.nav-mobile-foot .btn { justify-content: center; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta-btn { display: none; }
}
@media (max-width: 520px) {
  .lang-pill { display: none; }
}

/* ================== HERO ================== */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 8vw, 120px);
  overflow: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 80vw; height: 80vw;
  background: radial-gradient(closest-side, color-mix(in oklch, var(--accent) 36%, transparent) 0%, transparent 70%);
  filter: blur(60px);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(closest-side, color-mix(in oklch, var(--accent-glow) 22%, transparent) 0%, transparent 70%);
  filter: blur(80px);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, oklch(28% 0.014 260 / 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(28% 0.014 260 / 0.5) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  opacity: 0.5;
}

.hero-inner { position: relative; z-index: 2; }

.hero-pre {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.hero-pre .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(86% 0.005 80);
  background: color-mix(in oklch, var(--accent) 18%, transparent);
  border: 1px solid color-mix(in oklch, var(--accent) 50%, transparent);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-pre .pill .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.5; transform: scale(1.2); } }

.hero-meta-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: end;
  margin-top: 56px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hero stats inline */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid oklch(28% 0.014 260);
}
.stat { padding: 0 24px 0 0; border-right: 1px solid oklch(28% 0.014 260); }
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: oklch(96% 0.005 80);
}
.stat-num em {
  font-style: normal;
  background: linear-gradient(110deg, var(--accent-glow), var(--accent-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: oklch(58% 0.012 260);
  text-transform: uppercase;
  margin-top: 12px;
}
@media (max-width: 800px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat:nth-child(2) { border-right: 0; }
  .hero-meta-row { grid-template-columns: 1fr; gap: 32px; }
}

/* Hero device / app preview */
.hero-preview {
  margin-top: 80px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid oklch(30% 0.014 260);
  background: var(--ink-bg-2);
  position: relative;
  box-shadow: 0 40px 100px oklch(0% 0 0 / 0.6), 0 0 0 1px oklch(0% 0 0 / 0.4);
}
.hero-preview::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 18px;
  background: linear-gradient(140deg, color-mix(in oklch, var(--accent) 60%, transparent), transparent 50%);
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}
.hero-preview img {
  width: 100%; display: block;
  filter: contrast(1.05) saturate(0.95);
}

/* ================== LOGOS / TRUSTBAR ================== */
.trustbar {
  padding: 56px 0;
  background: var(--ink-bg);
  border-top: 1px solid oklch(28% 0.014 260);
  border-bottom: 1px solid oklch(28% 0.014 260);
}
.trustbar-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(58% 0.012 260);
  margin-bottom: 24px;
  text-align: center;
}
.logo-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 32px;
  align-items: center;
  opacity: 0.7;
}
.logo-strip span {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: oklch(78% 0.012 260);
  text-align: center;
}
@media (max-width: 900px) {
  .logo-strip { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .logo-strip span:nth-child(n+5) { display: none; }
}

/* ================== SECTION HEADER ================== */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 72px;
  align-items: end;
}
.sec-head .meta { display: flex; flex-direction: column; gap: 20px; }
.sec-head .index {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: oklch(54% 0.012 260);
  text-transform: uppercase;
}
.section.light .sec-head .index { color: var(--ink-3); }
.sec-head .index em { font-style: normal; color: var(--accent); }
.sec-head .lede { margin: 0; }
@media (max-width: 800px) {
  .sec-head { grid-template-columns: 1fr; gap: 28px; }
}

/* ================== BENTO 3 PILLARS ================== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 16px;
}
.bento-card {
  position: relative;
  background: var(--ink-bg-2);
  border: 1px solid oklch(28% 0.014 260);
  border-radius: 18px;
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .3s ease, transform .3s ease;
}
.bento-card:hover { border-color: oklch(40% 0.014 260); transform: translateY(-2px); }
.bento-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.bento-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 16px 0 12px;
  color: oklch(96% 0.005 80);
}
.bento-card p {
  font-size: 15px;
  line-height: 1.55;
  color: oklch(72% 0.012 260);
  margin: 0;
  max-width: 42ch;
}
.bento-2 { grid-column: span 2; }
.bento-3 { grid-column: span 3; }
.bento-4 { grid-column: span 4; }
.bento-6 { grid-column: span 6; }

.bento-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bento-card > * { position: relative; z-index: 1; }

/* Pillar #1 — neural mesh */
.viz-mesh {
  position: absolute;
  right: -10%; bottom: -20%;
  width: 70%; height: 100%;
  opacity: 0.45;
}
.viz-mesh circle, .viz-mesh path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 0.6;
}
.viz-mesh .node { fill: var(--accent); stroke: none; }

/* Pillar #2 — image mosaic */
.viz-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 4px;
  opacity: 0.18;
  z-index: 0;
  mask-image: linear-gradient(140deg, black 0%, transparent 70%);
}
.viz-mosaic > div {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  filter: grayscale(100%);
}

/* Pillar #3 — flow arrows */
.viz-flow {
  position: absolute;
  right: 32px; bottom: 32px;
  width: 60%; height: 50%;
}

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-2, .bento-3, .bento-4, .bento-6 { grid-column: span 2; }
}

/* ================== TOOLS GRID ================== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tool-card {
  background: var(--ink-bg-2);
  border: 1px solid oklch(28% 0.014 260);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: border-color .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}
.tool-card:hover { border-color: oklch(45% 0.014 260); transform: translateY(-2px); }
.tool-card.featured {
  background: linear-gradient(140deg, color-mix(in oklch, var(--accent) 18%, var(--ink-bg-2)) 0%, var(--ink-bg-2) 60%);
  border-color: color-mix(in oklch, var(--accent) 40%, var(--ink-line));
}
.tool-card .glyph {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: oklch(24% 0.014 260);
  display: grid; place-items: center;
  color: var(--accent);
  border: 1px solid oklch(32% 0.014 260);
}
.tool-card.featured .glyph { background: color-mix(in oklch, var(--accent) 28%, var(--ink-bg-2)); border-color: var(--accent); color: oklch(96% 0.005 80); }
.tool-card .glyph svg { width: 20px; height: 20px; }
.tool-card .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: oklch(56% 0.012 260);
  text-transform: uppercase;
}
.tool-card h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: oklch(96% 0.005 80);
}
.tool-card p {
  font-size: 14px;
  line-height: 1.5;
  color: oklch(70% 0.012 260);
  margin: 0;
  flex: 1;
}
.tool-card .tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid oklch(28% 0.014 260);
}
.tool-card.featured .tag { color: oklch(96% 0.005 80); }

@media (max-width: 900px) { .tools-grid { grid-template-columns: 1fr; } }

/* ================== INDUSTRIES STRIP ================== */
.industries {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 64px;
}
.industry {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink-bg-2);
  isolation: isolate;
}
.industry img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(80%) contrast(1.1) brightness(0.7);
  transition: filter .4s ease, transform .8s ease;
}
.industry:hover img { filter: grayscale(0%) brightness(0.85); transform: scale(1.05); }
.industry::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.industry .meta {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  z-index: 2; color: white;
}
.industry .num {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  opacity: 0.7;
  margin-bottom: 4px;
}
.industry .name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
@media (max-width: 1000px) {
  .industries { grid-template-columns: repeat(4, 1fr); }
  .industry:nth-child(n+5) { display: none; }
}

/* ================== PAIN/SOLUTION ================== */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pain-row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: 32px;
  padding: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  align-items: start;
}
.pain-row:hover { border-color: var(--line-2); }
.pain-num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.pain-cell .label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.pain-cell.solution .label { color: var(--accent-deep); }
.pain-cell h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--ink);
}
.pain-cell p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.pain-cell.solution {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
@media (max-width: 800px) {
  .pain-row { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .pain-cell.solution { padding-left: 0; border-left: 0; padding-top: 16px; border-top: 1px solid var(--line); }
}

/* ================== HOW IT WORKS ================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.step {
  background: var(--ink-bg-2);
  border: 1px solid oklch(28% 0.014 260);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.step .step-img {
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.step .step-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(50%) contrast(1.05) brightness(0.85);
}
.step .step-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(140deg, color-mix(in oklch, var(--accent) 30%, transparent), transparent 60%);
  mix-blend-mode: screen;
}
.step .step-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  z-index: 2;
  background: rgba(0,0,0,0.4);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.step h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: oklch(96% 0.005 80);
}
.step p { font-size: 14px; line-height: 1.55; color: oklch(72% 0.012 260); margin: 0; }
.step .step-time {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-top: 16px;
  text-transform: uppercase;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ================== PRICING ================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.plan {
  padding: 32px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  background: var(--ink-bg);
  color: oklch(94% 0.005 80);
  border-color: var(--ink-bg);
  position: relative;
  overflow: hidden;
}
.plan.featured::before {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 70%; height: 200%;
  background: radial-gradient(closest-side, color-mix(in oklch, var(--accent) 32%, transparent), transparent);
  filter: blur(40px);
  pointer-events: none;
}
.plan.featured > * { position: relative; z-index: 1; }
.plan.featured .plan-tag { color: oklch(70% 0.014 260); }
.plan.featured h3 { color: oklch(96% 0.005 80); }
.plan.featured .plan-sub { color: oklch(70% 0.014 260); }
.plan.featured .plan-feat li { color: oklch(82% 0.012 260); border-color: oklch(28% 0.014 260); }
.plan.featured .plan-feat li::before { color: var(--accent); }
.plan.featured .price-num { color: oklch(96% 0.005 80); }
.plan.featured .price-num .currency { color: oklch(70% 0.014 260); }
.plan.featured .price-sub { color: oklch(60% 0.012 260); }

.plan-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.plan h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 12px 0 8px;
  color: var(--ink);
}
.plan-sub { font-size: 13px; color: var(--ink-2); margin: 0 0 24px; }
.price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.plan.featured .price { border-color: oklch(28% 0.014 260); }
.price-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}
.price-num .currency {
  font-size: 16px;
  vertical-align: 14px;
  margin-right: 4px;
  color: var(--ink-2);
  font-weight: 500;
}
.price-sub { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-3); }

.plan-feat {
  list-style: none; padding: 0; margin: 0 0 28px;
  font-size: 13px; line-height: 1.55;
  flex: 1;
}
.plan-feat li {
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.plan-feat li:last-child { border-bottom: 0; }
.plan-feat li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  color: var(--accent);
  font-weight: 600;
}
.plan-feat li.no::before { content: "—"; color: var(--ink-3); font-weight: 400; }
.plan .btn { width: 100%; justify-content: center; }
.plan .ribbon {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ================== CASES ================== */
.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.case {
  background: var(--ink-bg-2);
  border: 1px solid oklch(28% 0.014 260);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-photo {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.case-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(60%) contrast(1.05) brightness(0.85);
  transition: filter .4s ease, transform .8s ease;
}
.case:hover .case-photo img { filter: grayscale(0%) brightness(0.95); transform: scale(1.04); }
.case-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, color-mix(in oklch, var(--ink-bg) 70%, transparent) 100%);
}
.case-tag {
  position: absolute;
  top: 16px; left: 16px; z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.case-body { padding: 28px 30px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.case-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.case-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: oklch(96% 0.005 80);
}
.case-by {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: oklch(58% 0.012 260);
  text-transform: uppercase;
}
.case-quote {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: oklch(86% 0.005 80);
  margin: 0;
}
.case-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid oklch(28% 0.014 260);
}
.case-stat-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(110deg, var(--accent-glow), var(--accent-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.case-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: oklch(56% 0.012 260);
  text-transform: uppercase;
  margin-top: 6px;
}
@media (max-width: 800px) { .cases { grid-template-columns: 1fr; } }

/* ================== LOGO SHOWCASE ================== */
.logo-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.logo-canvas {
  background: var(--ink-bg);
  border: 1px solid oklch(28% 0.014 260);
  border-radius: 20px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.logo-canvas .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, oklch(26% 0.014 260) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(26% 0.014 260) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at center, black, transparent 80%);
  opacity: 0.6;
}
.logo-canvas .glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(closest-side, color-mix(in oklch, var(--accent) 50%, transparent), transparent);
  filter: blur(50px);
  pointer-events: none;
}
.logo-big {
  width: 220px; height: 220px;
  position: relative; z-index: 2;
  color: oklch(96% 0.005 80);
}
.logo-meta {
  background: var(--ink-bg-2);
  border: 1px solid oklch(28% 0.014 260);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px;
}
.logo-wordmark {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: oklch(96% 0.005 80);
}
.logo-wordmark .num { color: var(--accent); }
.logo-wordmark .sup {
  font-family: var(--f-mono);
  font-size: 13px;
  vertical-align: 32px;
  margin-left: 6px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: oklch(70% 0.012 260);
}
.logo-spec {
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.8;
  color: oklch(64% 0.012 260);
}
.logo-spec strong { color: oklch(94% 0.005 80); font-weight: 500; }
.swatches { display: flex; gap: 12px; align-items: center; }
.swatch { width: 28px; height: 28px; border-radius: 8px; border: 1px solid oklch(30% 0.014 260); }

@media (max-width: 900px) { .logo-stage { grid-template-columns: 1fr; } }

/* ================== CTA BAND ================== */
.cta-band {
  position: relative;
  padding: clamp(96px, 14vw, 200px) 0;
  background: var(--ink-bg);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid oklch(28% 0.014 260);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=2400&q=80");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1) brightness(0.5);
  opacity: 0.18;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--ink-bg) 80%);
}
.cta-band > .shell { position: relative; z-index: 2; }
.cta-band .h-display { max-width: 18ch; margin: 0 auto 32px; color: oklch(96% 0.005 80); }
.cta-band .lede {
  margin: 0 auto 40px;
  text-align: center;
  color: oklch(74% 0.012 260);
}
.cta-band .cta-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ================== FOOTER ================== */
.foot {
  background: oklch(11% 0.012 260);
  color: oklch(72% 0.012 260);
  padding: 80px 0 32px;
  border-top: 1px solid oklch(24% 0.014 260);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid oklch(24% 0.014 260);
}
.foot h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(54% 0.012 260);
  margin: 0 0 20px;
}
.foot ul { list-style: none; padding: 0; margin: 0; font-size: 14px; line-height: 2; }
.foot ul a { color: oklch(82% 0.012 260); }
.foot ul a:hover { color: var(--accent); }
.foot-brand .lede {
  color: oklch(70% 0.012 260);
  font-size: 14px;
  margin: 16px 0 0;
  max-width: 36ch;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 11px;
  color: oklch(48% 0.012 260);
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-mono);
  letter-spacing: 0.06em;
}
.foot .brand-aims, .foot .brand-num { color: oklch(96% 0.005 80); }
.foot .brand-num { color: var(--accent); }

/* Social icons in footer */
.foot-social-ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: oklch(20% 0.014 260);
  border: 1px solid oklch(28% 0.014 260);
  border-radius: 10px;
  color: oklch(78% 0.012 260);
  transition: all 0.18s ease;
  text-decoration: none;
}
.foot-social-ico:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.foot-social-ico svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }


/* ============== FOUNDER STRIP (top of inner pages) ============== */
.founder-strip {
  background: linear-gradient(120deg, #8C5810 0%, #BA7517 50%, #D49018 100%);
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid oklch(40% 0.06 60);
  font-family: var(--f-mono);
  letter-spacing: 0.14em;
  font-size: 11px;
  text-transform: uppercase;
  position: relative; z-index: 49;
}
.founder-strip .shell {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.founder-strip .pill {
  background: rgba(0,0,0,0.22);
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid rgba(255,228,163,0.3);
}
.founder-strip a { color: #FFE4A3; text-decoration: none; font-weight: 500; }
.founder-strip a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .founder-strip { font-size: 10px; letter-spacing: 0.1em; }
  .founder-strip .shell { justify-content: center; text-align: center; }
}

/* ============== FOLIO COMPARISON ============== */
.folio-compare {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 32px;
}
.folio-card {
  padding: 48px 44px;
  border: 1px solid oklch(28% 0.014 260);
  border-radius: 18px;
  background: var(--ink-bg-2);
  color: oklch(96% 0.005 80);
  display: flex; flex-direction: column; gap: 16px;
}
.folio-card.folio-outside {
  background: linear-gradient(180deg, oklch(20% 0.04 38) 0%, var(--ink-bg-2) 100%);
  border-color: var(--accent);
}
.folio-icon { font-size: 40px; line-height: 1; margin-bottom: 4px; }
.folio-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: oklch(70% 0.012 260);
  background: oklch(24% 0.014 260);
  padding: 5px 10px; border-radius: 999px;
  align-self: flex-start;
}
.folio-outside .folio-tag { color: #FFD27A; background: oklch(28% 0.06 38); }
.folio-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 34px; letter-spacing: -0.03em; line-height: 1;
  margin: 0; color: oklch(96% 0.005 80);
}
.folio-card .folio-sub {
  font-family: var(--f-display); font-weight: 500; font-size: 18px;
  color: oklch(82% 0.012 260); margin: 0; letter-spacing: -0.01em;
}
.folio-card ul {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.folio-card ul li {
  display: flex; align-items: baseline; gap: 12px;
  color: oklch(86% 0.012 260); font-size: 15px; line-height: 1.55;
}
.folio-card ul li::before {
  content: "•"; color: oklch(60% 0.012 260); flex-shrink: 0;
}
.folio-outside ul li::before { color: var(--accent); }
.folio-foot {
  margin-top: auto; padding-top: 24px;
  border-top: 1px solid oklch(28% 0.014 260);
  font-size: 13.5px; color: oklch(80% 0.012 260); line-height: 1.6;
}
.folio-foot strong { color: oklch(96% 0.005 80); font-weight: 600; }
.folio-outside .folio-foot strong { color: var(--accent); }
.folio-outside .folio-foot { border-top-color: oklch(40% 0.06 38); }

.folio-divider {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.folio-divider-line {
  width: 1px; background: oklch(28% 0.014 260); flex: 1;
}
.folio-divider-text {
  font-family: var(--f-display); font-weight: 600; font-size: 24px;
  letter-spacing: -0.02em; color: var(--accent);
  background: var(--ink-bg);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid oklch(28% 0.014 260);
}

.folio-bottom {
  margin-top: 24px;
  padding: 28px 36px;
  background: oklch(96% 0.02 60);
  border: 1px solid oklch(88% 0.06 60);
  border-radius: 18px;
  text-align: center;
}
.folio-bottom-text {
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 70ch;
  margin: 0 auto;
}
.folio-bottom-text strong {
  display: block;
  font-size: 22px; letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #BA7517;
}

@media (max-width: 880px) {
  .folio-compare { grid-template-columns: 1fr; gap: 16px; }
  .folio-divider { flex-direction: row; padding: 8px 0; }
  .folio-divider-line { width: auto; height: 1px; }
}


.info-stats { font-family: var(--f-display); }
.infostat { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; }
.infostat strong { display: block; font-weight: 600; font-size: 32px; letter-spacing: -0.025em; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.infostat span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--ink-3); text-transform: uppercase; }

.info-body { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 40px; }
.info-radar-wrap { display: grid; place-items: center; padding: 20px; }

.info-bars { display: flex; flex-direction: column; gap: 18px; }
.info-bar { padding: 14px 0; border-bottom: 1px dashed var(--line); }
.info-bar:last-child { border-bottom: 0; }
.info-bar-label { font-family: var(--f-display); font-weight: 600; font-size: 14px; margin-bottom: 10px; color: var(--ink); }
.info-bar-row { display: grid; grid-template-columns: 40px 1fr 40px; gap: 12px; align-items: center; margin-bottom: 6px; }
.info-bar-name { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; }
.info-bar-track { height: 10px; background: oklch(95% 0.005 80); border-radius: 5px; overflow: hidden; }
.info-bar-track i { display: block; height: 100%; border-radius: 5px; transition: width 0.6s ease; }
.info-bar-val { font-family: var(--f-mono); font-size: 12px; color: var(--ink); text-align: right; }

.info-layers { display: flex; flex-direction: column; gap: 12px; }
.info-layer { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; background: oklch(97% 0.005 80); border-radius: 12px; border-left: 3px solid var(--accent); }
.info-layer-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--accent); padding-top: 2px; min-width: 28px; }
.info-layer-body { flex: 1; }
.info-layer-body strong { display: block; font-family: var(--f-display); font-weight: 600; font-size: 17px; letter-spacing: -0.018em; margin-bottom: 4px; }
.info-layer-body p { font-size: 13.5px; color: var(--ink-2); margin: 0 0 6px; }
.info-layer-tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; }

.info-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.info-module { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: center; padding: 14px 16px; background: oklch(97% 0.005 80); border: 1px solid var(--line); border-radius: 10px; }
.info-module-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); }
.info-module strong { font-family: var(--f-display); font-weight: 600; font-size: 14px; letter-spacing: -0.012em; color: var(--ink); display: block; }
.info-module span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--ink-3); }
@media (max-width: 760px) { .info-modules { grid-template-columns: 1fr 1fr; } }

.info-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.info-three-card { padding: 24px; background: oklch(97% 0.005 80); border-radius: 12px; border-left: 3px solid var(--accent); }
.info-three-card strong { display: block; font-family: var(--f-display); font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.info-three-card em { font-style: normal; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); text-transform: uppercase; display: block; margin-bottom: 8px; }
.info-three-card span { font-size: 13px; color: var(--ink-2); }
@media (max-width: 760px) { .info-three { grid-template-columns: 1fr; } }

.info-grid-templates { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.info-template-tag { padding: 12px 14px; background: oklch(97% 0.005 80); border: 1px solid var(--line); border-radius: 10px; font-family: var(--f-display); font-weight: 500; font-size: 14px; text-align: center; color: var(--ink); }
.info-template-tag:nth-child(4n+1) { background: oklch(95% 0.04 38); border-color: oklch(85% 0.06 38); color: oklch(40% 0.12 38); }
@media (max-width: 760px) { .info-grid-templates { grid-template-columns: 1fr 1fr; } }

.info-funnel-list { display: flex; flex-direction: column; gap: 8px; }
.info-funnel-row { display: grid; grid-template-columns: 100px 1fr 100px; gap: 16px; align-items: center; padding: 12px 0; }
.info-funnel-stage { font-family: var(--f-display); font-weight: 500; font-size: 14px; color: var(--ink); }
.info-funnel-bar { height: 28px; background: oklch(95% 0.005 80); border-radius: 6px; overflow: hidden; }
.info-funnel-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); border-radius: 6px; transition: width 0.6s ease; }
.info-funnel-val { font-family: var(--f-mono); font-size: 12px; color: var(--accent); text-align: right; }

.info-platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.info-platform { padding: 14px 16px; background: oklch(97% 0.005 80); border: 1px solid var(--line); border-radius: 10px; font-family: var(--f-display); font-weight: 500; font-size: 13.5px; text-align: center; color: var(--ink); }
@media (max-width: 760px) { .info-platforms { grid-template-columns: 1fr 1fr; } }

.info-steps-detail { display: flex; flex-direction: column; gap: 10px; }
.info-step-row { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center; padding: 18px 22px; background: oklch(97% 0.005 80); border-radius: 12px; }
.info-step-num { width: 44px; height: 44px; background: var(--accent); color: #fff; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-weight: 600; font-size: 20px; }
.info-step-row strong { font-family: var(--f-display); font-weight: 600; font-size: 16px; letter-spacing: -0.015em; display: block; }
.info-step-row span { font-size: 13px; color: var(--ink-2); }

.info-crm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.info-crm-mod { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center; padding: 14px 16px; background: oklch(97% 0.005 80); border: 1px solid var(--line); border-radius: 10px; position: relative; }
.info-crm-mod.is-paid { background: oklch(95% 0.04 38); border-color: oklch(85% 0.06 38); }
.info-crm-mod .ic { font-size: 18px; }
.info-crm-mod strong { font-family: var(--f-display); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.info-crm-mod .paid-tag { font-family: var(--f-mono); color: var(--accent); font-weight: 600; }
@media (max-width: 760px) { .info-crm-grid { grid-template-columns: 1fr; } }

.info-ads { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-ad-card { padding: 22px 24px; background: oklch(97% 0.005 80); border-radius: 12px; border-left: 3px solid var(--accent); }
.info-ad-card strong { display: block; font-family: var(--f-display); font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.info-ad-card p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.55; }
@media (max-width: 760px) { .info-ads { grid-template-columns: 1fr; } }
