:root {
  --paper: #f6f1e7;
  --paper-deep: #ece3d4;
  --card: #fffdf8;
  --ink: #17252b;
  --ink-soft: #566268;
  --navy: #123b4a;
  --teal: #167a72;
  --teal-soft: #dcece6;
  --coral: #e05f43;
  --coral-soft: #f7dfd7;
  --sun: #efbf55;
  --rule: rgba(23, 37, 43, 0.16);
  --shadow: 0 24px 70px rgba(23, 37, 43, 0.12);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: .65rem 1rem;
  border-radius: 99px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: none; }

.shell { width: min(calc(100% - 2.5rem), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 2.5rem), 820px); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-rule { border-top: 1px solid var(--rule); }
.section-dark { background: var(--navy); color: #f9f4e9; }
.section-teal { background: var(--teal-soft); }
.section-coral { background: var(--coral-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.15rem;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: #75d0c4; }

h1, h2, h3, .display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 { margin: 0; font-size: clamp(3.1rem, 7vw, 6.8rem); line-height: .94; }
h2 { margin: 0; font-size: clamp(2.3rem, 4.6vw, 4.4rem); line-height: 1.02; }
h3 { margin: 0; font-size: clamp(1.45rem, 2.3vw, 2.05rem); line-height: 1.12; }
p { margin: 0; }
.lede { color: var(--ink-soft); font-size: clamp(1.08rem, 1.7vw, 1.32rem); line-height: 1.55; }
.section-dark .lede, .section-dark .muted { color: rgba(255,255,255,.72); }
.muted { color: var(--ink-soft); }
.small { font-size: .88rem; }
.kicker { max-width: 64ch; margin-top: 1.35rem; }

nav.top {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .9rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background: rgba(246, 241, 231, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s, box-shadow .2s;
}
nav.top.scrolled { border-bottom-color: var(--rule); box-shadow: 0 8px 28px rgba(23,37,43,.06); }
.brand-mark { display: inline-flex; align-items: baseline; gap: .45rem; text-decoration: none; white-space: nowrap; }
.brand-primary { font-family: Georgia, serif; font-size: 1.72rem; letter-spacing: -.06em; }
.brand-divider { color: var(--coral); font-weight: 800; }
.brand-line { color: var(--ink-soft); font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.nav-right, .mobile-nav-panel, .nav-links { display: flex; align-items: center; }
.nav-right, .mobile-nav-panel { gap: 1.5rem; }
.nav-links { gap: 1.15rem; }
.nav-links a { color: var(--ink-soft); font-size: .88rem; font-weight: 650; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta {
  padding: .7rem 1rem !important;
  border-radius: 999px;
  background: var(--coral);
  color: white !important;
}

.hero { padding: clamp(2.8rem, 6vw, 6.5rem) 0 clamp(4.5rem, 8vw, 8rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.hero h1 { max-width: 12ch; }
.hero .lede { max-width: 49ch; margin-top: 1.7rem; }
.hero-actions, .button-row { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; margin-top: 2rem; }
.hero-resource-links { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: 1.35rem; }
.hero-resource-links > span { grid-column: 1 / -1; color: var(--ink); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.hero-resource-card { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: .9rem 1rem; border: 1px solid var(--rule); border-radius: 16px; text-decoration: none; transition: transform .16s, box-shadow .16s; }
.hero-resource-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(23,37,43,.10); }
.hero-resource-card small { color: var(--ink-soft); font-size: .72rem; font-weight: 700; }
.hero-resource-card strong { margin-top: .08rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.1; }
.hero-resource-card b { margin-top: .42rem; color: var(--teal); font-size: .78rem; }
.hero-resource-store { background: var(--coral-soft); border-color: rgba(224,95,67,.25); }
.hero-resource-learn { background: var(--teal-soft); border-color: rgba(22,122,114,.22); }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s, box-shadow .16s, background .16s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: white; box-shadow: 0 12px 24px rgba(224,95,67,.22); }
.btn-primary:hover { background: #ca4e35; }
.btn-secondary { border-color: var(--rule); background: rgba(255,255,255,.42); color: var(--ink); }
.btn-secondary:hover { background: var(--card); box-shadow: 0 10px 24px rgba(23,37,43,.08); }
.btn-dark { background: var(--ink); color: white; }
.btn-light { background: #fffaf0; color: var(--ink); }
.text-link { color: var(--teal); font-weight: 750; text-underline-offset: .24em; }

.hero-visual { position: relative; min-height: 590px; }
.hero-photo { width: 100%; height: 560px; object-fit: cover; border-radius: 46% 46% 24px 24px / 24% 24% 24px 24px; box-shadow: var(--shadow); }
.hero-note {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  width: min(310px, 78%);
  padding: 1.25rem;
  border: 1px solid rgba(23,37,43,.1);
  border-radius: 18px;
  background: #fffaf0;
  box-shadow: 0 20px 45px rgba(23,37,43,.16);
  transform: rotate(-2deg);
}
.hero-note strong { display: block; margin-bottom: .25rem; font-family: Georgia, serif; font-size: 1.15rem; }
.hero-note span { color: var(--ink-soft); font-size: .9rem; }
.dot-line { display: flex; gap: .35rem; margin-bottom: .8rem; }
.dot-line i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.dot-line i:nth-child(2) { background: var(--sun); }
.dot-line i:nth-child(3) { background: var(--teal); }

.trust-strip { border-block: 1px solid var(--rule); background: rgba(255,255,255,.32); }
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.4rem clamp(.8rem, 2vw, 1.5rem); text-align: center; color: var(--ink-soft); font-size: .87rem; font-weight: 700; }
.trust-item + .trust-item { border-left: 1px solid var(--rule); }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 8vw, 8rem); align-items: start; }
.intro-copy { max-width: 680px; }
.intro-copy .lede + .lede { margin-top: 1rem; }
.margin-note { margin-top: 2rem; padding-left: 1.25rem; border-left: 3px solid var(--coral); color: var(--ink-soft); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin-top: 2.6rem; }
.card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(23,37,43,.045);
}
.card .num { color: var(--coral); font-size: .78rem; font-weight: 850; letter-spacing: .1em; }
.card h3 { margin-top: 2rem; }
.card p { margin-top: .9rem; color: var(--ink-soft); }
.card .text-link { display: inline-block; margin-top: 1.2rem; }
.card-accent { background: var(--navy); color: white; }
.card-accent p { color: rgba(255,255,255,.68); }
.card-accent .text-link { color: #87d6cc; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.steps { list-style: none; margin: 2rem 0 0; padding: 0; }
.steps li { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid var(--rule); }
.steps .step-num { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: white; font-weight: 800; }
.steps strong { display: block; margin-bottom: .25rem; }
.steps span { color: var(--ink-soft); }
.section-dark .steps li { border-color: rgba(255,255,255,.16); }
.section-dark .steps span { color: rgba(255,255,255,.7); }
/* Light cards inside dark bands must reset to ink — cream-on-cream heading bug, Chairman 2026-09-01 (contrast gate: #17252b on #fffdf8 = 15.46:1) */
.section-dark .offer-card, .section-dark .offer-card h3, .section-dark .offer-card .price { color: var(--ink); }
.section-dark .card:not(.card-accent), .section-dark .card:not(.card-accent) h3 { color: var(--ink); }

.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin-top: 2.7rem; align-items: stretch; }
.offer-card { display: flex; flex-direction: column; padding: 2rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--rule); }
.offer-card.featured { transform: translateY(-.75rem); border: 2px solid var(--coral); box-shadow: var(--shadow); }
.offer-tag { align-self: flex-start; margin-bottom: 1.3rem; padding: .32rem .65rem; border-radius: 999px; background: var(--teal-soft); color: var(--teal); font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.offer-card.featured .offer-tag { background: var(--coral-soft); color: #a63c28; }
.price { margin-top: 1rem; font-family: Georgia, serif; font-size: 2.1rem; }
.offer-card p { margin-top: .75rem; color: var(--ink-soft); }
.check-list { margin: 1.25rem 0 1.6rem; padding: 0; list-style: none; color: var(--ink-soft); }
.check-list li { position: relative; padding-left: 1.5rem; margin-top: .65rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.offer-card .btn { margin-top: auto; }
.compact-offer-grid { align-items: start; }
.compact-offer-grid .offer-card { width: 100%; padding: 1.5rem; }
.compact-offer-grid .offer-tag { margin-bottom: .9rem; }
.compact-offer-grid .price { font-size: 1.8rem; }
.compact-offer-grid .check-list { margin-bottom: 0; }
.offer-footnote { margin-top: 1.2rem; color: var(--ink-soft); font-size: .85rem; }

.demo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.demo-card { overflow: hidden; border-radius: var(--radius); background: var(--card); color: var(--ink); text-decoration: none; border: 1px solid var(--rule); transition: transform .18s, box-shadow .18s; }
.demo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.demo-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.demo-copy { padding: 1.5rem; }
.demo-label { display: inline-flex; margin-bottom: .85rem; padding: .3rem .6rem; border-radius: 999px; background: var(--sun); color: #3b2c0b; font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.demo-copy p { margin-top: .65rem; color: var(--ink-soft); }
.demo-result { display: flex; gap: .5rem; align-items: center; margin-top: 1rem; color: var(--teal); font-size: .88rem; font-weight: 800; }

.proof-banner { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; margin-bottom: 2rem; padding: 1rem 1.2rem; border: 1px solid rgba(59,44,11,.2); border-radius: 16px; background: #fff4d8; color: #5a4619; }
.proof-banner strong { display: block; }
.proof-banner p { font-size: .9rem; }
.proof-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--sun); font-weight: 900; }

.case-hero { padding: clamp(3rem, 7vw, 6rem) 0; }
.case-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.case-hero h1 { font-size: clamp(3rem, 6vw, 5.6rem); }
.case-hero img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.case-meta { display: flex; gap: .65rem; flex-wrap: wrap; margin: 1.5rem 0; }
.pill { padding: .4rem .7rem; border-radius: 999px; border: 1px solid var(--rule); color: var(--ink-soft); font-size: .78rem; font-weight: 700; background: rgba(255,255,255,.4); }
.scenario-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: 2.5rem; }
.scenario-step { min-height: 180px; padding: 1.35rem; border-radius: 18px; background: var(--card); border: 1px solid var(--rule); }
.scenario-step b { display: block; margin-bottom: .55rem; color: var(--coral); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.scenario-step p { color: var(--ink-soft); font-size: .9rem; }
.assumption-table { width: 100%; margin-top: 2rem; border-collapse: collapse; background: var(--card); border-radius: 18px; overflow: hidden; }
.assumption-table th, .assumption-table td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: top; }
.assumption-table th { width: 34%; color: var(--ink-soft); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }

.case-result-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.case-result { min-height: 210px; padding: 1.45rem; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.case-result span { display: block; color: #7dd4ca; font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-result h3 { margin-top: 1.1rem; font-size: 1.5rem; }
.case-result p { margin-top: .7rem; color: rgba(255,255,255,.7); font-size: .92rem; }

.page-hero { padding: clamp(3.8rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); }
.page-hero h1 { max-width: 12ch; font-size: clamp(3.2rem, 7vw, 6.3rem); }
.page-hero .lede { max-width: 58ch; margin-top: 1.5rem; }
.page-hero-centered { text-align: center; }
.page-hero-centered h1, .page-hero-centered .lede { margin-inline: auto; }

.problem-list { display: grid; gap: 1rem; margin-top: 2.5rem; }
.problem-row { display: grid; grid-template-columns: minmax(180px,.65fr) 1.35fr auto; gap: 1.5rem; align-items: center; padding: 1.4rem 0; border-top: 1px solid var(--rule); }
.problem-row strong { font-family: Georgia, serif; font-size: 1.35rem; }
.problem-row p { color: var(--ink-soft); }
.arrow-link { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--card); color: var(--teal); text-decoration: none; font-size: 1.2rem; }

.form-panel { padding: clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius); background: var(--card); border: 1px solid var(--rule); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
label { font-size: .84rem; font-weight: 800; }
input, textarea, select { width: 100%; border: 1px solid var(--rule); border-radius: 12px; background: white; color: var(--ink); padding: .85rem .95rem; }
textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute; inline-size: 1px; block-size: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.form-status { min-height: 1.5em; margin-top: .8rem; color: var(--ink-soft); font-size: .9rem; }
.form-status.error { color: #a63c28; }
.form-status.success { color: var(--teal); font-weight: 750; }

.scorecard { display: grid; gap: 1rem; }
.score-question { padding: 1.35rem; border: 1px solid var(--rule); border-radius: 16px; background: rgba(255,255,255,.55); }
.score-question p { margin-bottom: .8rem; font-weight: 750; }
.score-options { display: flex; gap: .6rem; flex-wrap: wrap; }
.score-options label { cursor: pointer; }
.score-options input { position: absolute; opacity: 0; width: 1px; }
.score-options span { display: inline-flex; padding: .5rem .75rem; border: 1px solid var(--rule); border-radius: 999px; background: white; font-size: .84rem; }
.score-options input:checked + span { background: var(--teal); border-color: var(--teal); color: white; }
.score-result { display: none; margin-top: 1.5rem; padding: 1.6rem; border-radius: 18px; background: var(--teal-soft); }
.score-result.visible { display: block; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.3rem; }
.resource-card { padding: 1.5rem; border-radius: 18px; border: 1px solid var(--rule); background: var(--card); text-decoration: none; }
.resource-card span { color: var(--coral); font-size: .72rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.resource-card h3 { margin-top: .9rem; font-size: 1.35rem; }
.resource-card p { margin-top: .65rem; color: var(--ink-soft); font-size: .92rem; }

.pathway-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.pathway-card { min-height: 320px; display: flex; flex-direction: column; padding: 1.6rem; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--card); text-decoration: none; transition: transform .18s, box-shadow .18s; }
.pathway-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pathway-card:nth-child(1) { background: var(--navy); color: white; }
.pathway-card:nth-child(1) p { color: rgba(255,255,255,.7); }
.pathway-card:nth-child(2) { background: var(--teal-soft); }
.pathway-card:nth-child(3) { background: var(--coral-soft); }
.pathway-card:nth-child(4) { background: #fff4d8; }
.pathway-mark { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--coral); color: white; font-family: Georgia, serif; font-size: .9rem; font-weight: 700; }
.pathway-card:nth-child(2) .pathway-mark { background: var(--teal); }
.pathway-card:nth-child(3) .pathway-mark { background: var(--coral); }
.pathway-card:nth-child(4) .pathway-mark { background: var(--sun); color: var(--ink); }
.pathway-card h3 { margin-top: auto; }
.pathway-card p { margin-top: .75rem; color: var(--ink-soft); }
.pathway-card .demo-result { margin-top: 1rem; }
.pathway-card:nth-child(1) .demo-result { color: #7dd4ca; }

/* 013BI flagship product */
.bi-hero { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 7.5rem) 0; background: linear-gradient(135deg, var(--paper) 0%, #eef3ec 58%, var(--teal-soft) 100%); }
.bi-hero h1 { max-width: 11ch; font-size: clamp(2.7rem, 5vw, 5rem); line-height: .98; }
.bi-hero::after { content: ""; position: absolute; width: 32rem; height: 32rem; right: -14rem; bottom: -17rem; border: 1px solid rgba(22,122,114,.22); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(22,122,114,.045), 0 0 0 10rem rgba(224,95,67,.035); }
.bi-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.82fr) minmax(500px,1.18fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.bi-product-mark { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.2rem; color: var(--teal); font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.bi-product-mark b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: white; background: var(--teal); font-family: Georgia, serif; font-size: 1rem; letter-spacing: -.04em; }
.bi-workbench { position: relative; padding: clamp(1.1rem, 2vw, 1.7rem); border: 1px solid rgba(255,255,255,.13); border-radius: 28px; color: #fff8ed; background: var(--navy); box-shadow: 0 36px 90px rgba(18,59,74,.24); }
.bi-workbench::before { content: "Illustrative product view"; position: absolute; top: -1rem; right: 1.5rem; padding: .38rem .65rem; border-radius: 999px; color: #463409; background: var(--sun); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.bi-workbench-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.bi-workbench-head strong { font-family: Georgia, serif; font-size: 1.25rem; }
.bi-workbench-head span { color: rgba(255,255,255,.54); font-size: .72rem; }
.bi-source-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: .55rem; margin-top: 1rem; }
.bi-source { min-height: 76px; display: flex; flex-direction: column; justify-content: space-between; padding: .75rem; border-radius: 12px; background: rgba(255,255,255,.075); }
.bi-source i { width: 24px; height: 4px; border-radius: 999px; background: var(--coral); }
.bi-source b { font-size: .73rem; }
.bi-source small { color: rgba(255,255,255,.5); font-size: .62rem; }
.bi-console { display: grid; grid-template-columns: .9fr 1.1fr; gap: .75rem; margin-top: .75rem; }
.bi-panel { padding: 1rem; border-radius: 14px; background: #fbf5e9; color: var(--ink); }
.bi-panel-label { color: var(--coral); font-size: .64rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.bi-panel h3 { margin-top: .45rem; font-size: 1.25rem; }
.bi-kpi-list { display: grid; gap: .5rem; margin-top: .8rem; }
.bi-kpi { display: grid; grid-template-columns: 1fr auto; gap: .5rem; padding-top: .5rem; border-top: 1px solid var(--rule); font-size: .72rem; }
.bi-kpi span:last-child { color: var(--teal); font-weight: 800; }
.bi-finding { display: grid; grid-template-columns: 10px 1fr; gap: .55rem; align-items: start; margin-top: .75rem; color: var(--ink-soft); font-size: .72rem; }
.bi-finding i { width: 8px; height: 8px; margin-top: .3rem; border-radius: 50%; background: var(--coral); }
.bi-doc-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 1rem; margin-top: 2.5rem; }
.bi-doc { min-height: 190px; display: flex; flex-direction: column; padding: 1.3rem; border-top: 4px solid var(--teal); border-radius: 0 0 18px 18px; background: var(--card); box-shadow: 0 12px 34px rgba(23,37,43,.08); }
.bi-doc:nth-child(2), .bi-doc:nth-child(5) { border-top-color: var(--coral); }
.bi-doc:nth-child(3) { border-top-color: var(--sun); }
.bi-doc b { color: var(--coral); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.bi-doc h3 { margin-top: auto; font-size: 1.35rem; }
.bi-doc p { margin-top: .6rem; color: var(--ink-soft); font-size: .86rem; }
.bi-pipeline { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.7rem; margin-top: 2.6rem; }
.bi-pipeline-step { position: relative; min-height: 190px; padding: 1.35rem; border-radius: 18px; background: var(--card); border: 1px solid var(--rule); }
.bi-pipeline-step:not(:last-child)::after { content: "→"; position: absolute; right: -1.25rem; top: 50%; color: var(--coral); font-size: 1.35rem; }
.bi-pipeline-step span { color: var(--teal); font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.bi-pipeline-step h3 { margin-top: .75rem; font-size: 1.35rem; }
.bi-pipeline-step p { margin-top: .6rem; color: var(--ink-soft); font-size: .86rem; }
.bi-output-grid { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: .7rem; margin-top: 2.5rem; }
.bi-output { min-height: 210px; padding: 1.1rem; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); }
.bi-output span { color: #7dd4ca; font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.bi-output h3 { margin-top: 1.2rem; font-size: 1.2rem; }
.bi-output p { margin-top: .7rem; color: rgba(255,255,255,.63); font-size: .82rem; }
.pilot-card { display: flex; flex-direction: column; }
.pilot-card .btn { margin-top: auto; }
.pilot-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.pilot-meta span { padding: .35rem .6rem; border-radius: 999px; color: var(--teal); background: var(--teal-soft); font-size: .7rem; font-weight: 800; }
.pilot-feature { position: relative; overflow: hidden; }
.pilot-feature::after { content: "FLAGSHIP"; position: absolute; right: -2.5rem; top: 1.6rem; width: 10rem; padding: .35rem 0; transform: rotate(38deg); color: #3b2c0b; background: var(--sun); text-align: center; font-size: .62rem; font-weight: 900; letter-spacing: .09em; }

.store-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.product-card { padding: 2rem; border-radius: var(--radius); border: 1px solid var(--rule); background: var(--card); }
.product-card .price { font-size: 1.65rem; }
.product-card p { margin-top: .7rem; color: var(--ink-soft); }
.product-card .btn { margin-top: 1.4rem; }

.cta-band { padding: clamp(2rem, 5vw, 4rem); border-radius: 28px; background: var(--coral); color: white; }
.cta-band-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 2rem; align-items: center; }
.cta-band p { margin-top: .8rem; color: rgba(255,255,255,.8); }
.cta-band .button-row { justify-content: flex-end; margin-top: 0; }

footer { padding: 3.5rem 0 2.2rem; border-top: 1px solid var(--rule); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2.5rem; }
.footer-brand p { max-width: 34ch; margin-top: .75rem; color: var(--ink-soft); font-size: .88rem; }
.footer-col strong { display: block; margin-bottom: .75rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin-top: .45rem; color: var(--ink-soft); text-decoration: none; font-size: .88rem; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid var(--rule); color: var(--ink-soft); font-size: .78rem; }

/* Hebrew follows the established language switcher, with logical layout values
   so the owner-first system reads naturally rather than as mirrored English. */
html[lang="he"] body { font-family: "Arial Hebrew", "Noto Sans Hebrew", "Rubik", Arial, sans-serif; }
html[lang="he"] h1, html[lang="he"] h2, html[lang="he"] h3, html[lang="he"] .display, html[lang="he"] .brand-primary { font-family: "Arial Hebrew", "Noto Serif Hebrew", Georgia, serif; letter-spacing: -.02em; }
html[dir="rtl"] .eyebrow::before { order: 2; }
html[dir="rtl"] .margin-note { padding-left: 0; padding-right: 1.25rem; border-left: 0; border-right: 3px solid var(--coral); }
html[dir="rtl"] .check-list li { padding-left: 0; padding-right: 1.5rem; }
html[dir="rtl"] .check-list li::before { left: auto; right: 0; }
html[dir="rtl"] .assumption-table th, html[dir="rtl"] .assumption-table td { text-align: right; }
html[dir="rtl"] .bi-workbench, html[dir="rtl"] .bi-workbench * { direction: rtl; }
html[dir="rtl"] .bi-workbench::before { left: 1.5rem; right: auto; }
html[lang="he"] .bi-workbench::before { content: "תצוגת מוצר להמחשה"; }
html[dir="rtl"] .bi-pipeline-step:not(:last-child)::after { left: -1.25rem; right: auto; content: "←"; }
html[dir="rtl"] .footer-bottom { direction: rtl; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-grid, .case-hero-grid, .intro-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-photo { height: min(72vw, 560px); }
  .hero-note { left: 1rem; }
  .card-grid, .offer-grid, .demo-grid, .resource-grid, .case-result-grid, .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .scenario-flow { grid-template-columns: repeat(2, 1fr); }
  .offer-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .shell, .narrow { width: min(calc(100% - 2rem), var(--max)); }
  .brand-line, .brand-divider { display: none; }
  .trust-items { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--rule); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--rule); }
  .card-grid, .offer-grid, .demo-grid, .resource-grid, .store-grid, .scenario-flow, .footer-grid, .cta-band-grid, .bi-doc-grid, .bi-pipeline, .bi-output-grid, .case-result-grid, .pathway-grid { grid-template-columns: 1fr; }
  .bi-hero-grid, .bi-console { grid-template-columns: 1fr; }
  .bi-hero-grid { gap: 3rem; }
  .bi-source-line { grid-template-columns: repeat(2,1fr); }
  .bi-pipeline-step:not(:last-child)::after { content: "↓"; right: auto; left: 1.25rem; top: auto; bottom: -1.55rem; }
  html[dir="rtl"] .bi-pipeline-step:not(:last-child)::after { content: "↓"; left: auto; right: 1.25rem; }
  .problem-row { grid-template-columns: 1fr auto; }
  .problem-row p { grid-column: 1 / -1; grid-row: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .cta-band .button-row { justify-content: flex-start; margin-top: 1rem; }
  .footer-bottom { flex-direction: column; }
  .hero-note { position: relative; left: auto; bottom: auto; width: calc(100% - 2rem); margin: -3rem auto 0; }
  .hero-visual { padding-bottom: .5rem; }
  .hero-resource-links { grid-template-columns: 1fr; }
  .hero-resource-links > span { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
