:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #62706c;
  --line: #d9e0dc;
  --paper: #fbfbf7;
  --surface: #ffffff;
  --surface-2: #eef3ef;
  --clay: #a85637;
  --clay-2: #cf7a4a;
  --green: #2f6b5d;
  --green-2: #6a8b75;
  --steel: #31434a;
  --cream: #f6f4ea;
  --shadow: 0 24px 70px rgba(21, 34, 31, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(47, 107, 93, 0.10), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, #f4f6f0 48%, #ffffff 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header[data-elevated="true"] {
  width: 100%;
  padding: 10px max(16px, calc((100vw - 1180px) / 2));
  background: rgba(251, 251, 247, 0.88);
  border-bottom: 1px solid rgba(217, 224, 220, 0.75);
  box-shadow: 0 12px 34px rgba(20, 33, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand > span:last-child {
  min-width: 0;
}

.brand strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    var(--green);
  border-radius: 8px;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.12);
}

.brand strong {
  display: block;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 12px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(47, 107, 93, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-switch {
  display: flex;
  padding: 3px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-btn {
  height: 28px;
  min-width: 34px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.active {
  color: #fff;
  background: var(--steel);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(20, 33, 31, 0.16);
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 34px;
  padding: 0 13px;
  font-size: 12px;
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
  box-shadow: none;
}

.section,
.section-band,
.stats-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 98px 0;
}

.section-band {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 58px;
  min-height: calc(100vh - 76px);
  padding: 72px 0 86px;
}

.demo-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.eyebrow {
  width: auto;
  overflow-wrap: anywhere;
}

.demo-badge {
  margin-bottom: 20px;
  padding: 7px 9px;
  color: var(--clay);
  background: rgba(168, 86, 55, 0.08);
  border: 1px solid rgba(168, 86, 55, 0.22);
  border-radius: 5px;
}

.hero h1,
.section-head h2,
.why h2,
.bi-panel h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 830px;
  margin-top: 12px;
  font-size: clamp(46px, 6.4vw, 86px);
}

.hero-lede {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--steel);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  padding-left: 16px;
  color: var(--muted);
  border-left: 3px solid rgba(168, 86, 55, 0.42);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.hero-actions,
.bi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  inset: 24px -12px 12px 22px;
  width: calc(100% - 10px);
  height: calc(100% - 36px);
  object-fit: cover;
  border: 1px solid rgba(217, 224, 220, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  inset: 60px -28px 0 74px;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 33, 31, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 33, 31, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, #eef3ef, #fbfbf7);
  background-size: 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(217, 224, 220, 0.9);
  border-radius: 8px;
  transform: rotate(-2deg);
}

.hero-photo-card {
  position: absolute;
  right: 18px;
  bottom: 40px;
  max-width: 360px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(217, 224, 220, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 33, 31, 0.16);
  backdrop-filter: blur(16px);
}

.photo-kicker {
  display: block;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.hero-photo-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.hero-photo-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.material-tags span {
  padding: 7px 8px;
  color: var(--green);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(20, 33, 31, 0.07);
}

.stats-strip div {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip span {
  display: block;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.stats-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.52fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.section-head h2,
.why h2,
.bi-panel h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4.6vw, 58px);
}

.section-head p:not(.eyebrow),
.why-copy p:not(.eyebrow),
.bi-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.timeline article {
  position: relative;
  padding: 32px 26px 0 0;
}

.timeline article::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--clay);
  border-radius: 50%;
}

.timeline time {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.timeline h3,
.product-card h3,
.pain-grid strong,
.channel-list strong {
  margin: 12px 0 8px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.timeline p,
.product-card p,
.channel-list p,
.pain-grid p,
.journey p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.product-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 33, 31, 0.08);
}

.product-card span {
  width: max-content;
  margin-bottom: auto;
  padding: 7px 9px;
  color: #fff;
  background: var(--steel);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 850;
}

.product-card.stone {
  background:
    linear-gradient(180deg, transparent 38%, rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, #f7f7f2 25%, #e4e8e2 25% 50%, #f2efe7 50% 75%, #dfe8e3 75%);
  background-size: auto, 70px 70px;
}

.product-card.clay {
  background:
    linear-gradient(180deg, transparent 38%, rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(90deg, #f7f2ec, #f7f2ec 34px, #eaded4 34px, #eaded4 36px);
}

.product-card.green {
  background:
    linear-gradient(180deg, transparent 38%, rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 30% 20%, rgba(47, 107, 93, 0.22), transparent 28%),
    linear-gradient(135deg, #eff4ef, #dbe7e0);
}

.collection-board {
  margin-top: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(20, 33, 31, 0.07);
}

.collection-board-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.collection-board h3 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.collection-photo {
  position: relative;
  overflow: hidden;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.collection-photo img,
.operations-photo img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.collection-photo figcaption,
.operations-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 430px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(20, 33, 31, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.text-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.collection-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.collection-list article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #f5f4ed;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.material-swatch {
  min-height: 160px;
  border-bottom: 1px solid rgba(20, 33, 31, 0.08);
}

.material-swatch.caliza {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.9), transparent 16%),
    linear-gradient(130deg, #ebe8dc, #d9ded8 45%, #f8f6ed);
}

.material-swatch.terra {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), transparent),
    repeating-linear-gradient(45deg, #c77752 0 18px, #d18a63 18px 36px, #b76545 36px 54px);
}

.material-swatch.nord {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent),
    repeating-linear-gradient(90deg, #d7d9d4 0 42px, #c9cfcb 42px 44px);
}

.material-swatch.atlas {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34), transparent 16%),
    linear-gradient(135deg, #68736c, #9a947e);
}

.collection-list span,
.collection-list strong {
  display: block;
  padding: 0 14px;
}

.collection-list span {
  margin-top: 14px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.10em;
}

.collection-list strong {
  padding-bottom: 16px;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.35;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
}

.zone-board {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.7fr;
  grid-auto-rows: 132px;
  gap: 10px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.zone-board span {
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.zone-board span:nth-child(2) {
  background: var(--steel);
}

.zone-board span:nth-child(3) {
  background: var(--clay);
}

.zone-board span:nth-child(4) {
  grid-column: span 2;
  background: #65766f;
}

.zone-board span:nth-child(5) {
  background: #8b7a62;
}

.channel-list {
  display: grid;
  gap: 14px;
}

.channel-list article,
.pain-grid article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.space-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  position: relative;
  color: #fff;
  background: var(--steel);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(20, 33, 31, 0.10);
}

.space-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.92;
}

.space-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
}

.space-card > * {
  position: relative;
  z-index: 1;
}

.space-card.bath::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(135deg, #dcd8ce, #65766f);
  background-size: 42px 42px, 42px 42px, auto;
}

.space-card.hotel::before {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.32), transparent 20%),
    linear-gradient(135deg, #80523e, #d6b28e);
}

.space-card.outdoor::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #2f6b5d, #b2ad8d);
  background-size: 56px 56px, auto;
}

.space-card.facade::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 28px),
    linear-gradient(135deg, #31434a, #8b7a62);
}

.space-card span {
  width: max-content;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.space-card h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.space-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.proof {
  padding-top: 0;
}

.proof-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 38px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(246, 244, 234, 0.94), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(45deg, rgba(47, 107, 93, 0.06) 0 12px, transparent 12px 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-card h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.proof-items {
  display: grid;
  gap: 10px;
}

.proof-items article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(217, 224, 220, 0.86);
  border-radius: 7px;
}

.proof-items strong {
  display: block;
  font-size: 15px;
}

.proof-items p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.operations {
  width: 100%;
  padding: 94px max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(20, 33, 31, 0.94), rgba(49, 67, 74, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 38px 38px;
  color: #fff;
}

.operations .section-head h2,
.operations .section-head p,
.operations .eyebrow {
  color: #fff;
}

.operations .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.journey {
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.journey article {
  min-height: 190px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.journey span {
  display: block;
  color: var(--clay-2);
  font-size: 12px;
  font-weight: 850;
}

.journey strong {
  display: block;
  margin: 62px 0 8px;
  font-size: 17px;
}

.journey p {
  color: rgba(255, 255, 255, 0.64);
}

.operations-photo {
  position: relative;
  overflow: hidden;
  margin: 18px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.data-story {
  position: relative;
}

.data-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.data-stack article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(47, 107, 93, 0.12), rgba(168, 86, 55, 0.08));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 33, 31, 0.07);
}

.data-stack span {
  width: max-content;
  margin-bottom: auto;
  padding: 7px 9px;
  color: var(--green);
  background: rgba(47, 107, 93, 0.09);
  border: 1px solid rgba(47, 107, 93, 0.16);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.data-stack h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.data-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.data-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.data-metrics article {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-metrics span {
  display: block;
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.data-metrics p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.report-line {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  margin-top: 16px;
  padding: 24px;
  color: #fff;
  background: var(--steel);
  border-radius: 8px;
}

.report-line strong {
  color: #f4d5c4;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.report-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.6;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
}

.why-copy {
  position: sticky;
  top: 110px;
}

.why-copy p:not(.eyebrow) {
  margin-top: 22px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pain-grid article {
  min-height: 180px;
}

.pain-grid strong {
  display: block;
}

.bi-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 52px;
  align-items: center;
  padding: 38px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(207, 122, 74, 0.28), transparent 26rem),
    var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bi-panel h2,
.bi-panel .eyebrow,
.bi-panel p {
  color: #fff;
}

.bi-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.protected-note {
  margin-top: 16px !important;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.84) !important;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  font-size: 14px !important;
}

.bi-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.bi-proof article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
}

.bi-proof span {
  display: block;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.bi-proof p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-login-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 33, 31, 0.16);
}

.demo-login-card span {
  display: block;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.demo-login-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.demo-login-card p {
  margin: 6px 0 0;
  color: var(--muted) !important;
  font-size: 13.5px !important;
  line-height: 1.45;
}

.demo-login-card dl {
  display: grid;
  grid-template-columns: minmax(88px, 0.65fr) minmax(160px, 1.35fr);
  gap: 8px;
  margin: 0;
}

.demo-login-card dl div {
  display: grid;
  gap: 4px;
  align-items: start;
  padding: 9px 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.demo-login-card dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.demo-login-card dd {
  margin: 0;
}

.demo-login-card code {
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}

.role-access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.role-access-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  min-width: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.role-access-card.elevated {
  border-color: rgba(168, 86, 55, 0.26);
  background: rgba(168, 86, 55, 0.08);
}

.role-access-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  margin-bottom: 0;
}

.role-access-head b {
  color: var(--ink);
  font-size: 15px;
}

.role-access-head small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: normal;
}

.bi-panel .button {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.bi-panel .button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.24);
}

.dashboard-mini {
  padding: 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.mini-top {
  height: 34px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 5px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-grid span,
.mini-rows span {
  display: block;
  height: 74px;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 5px;
}

.mini-chart {
  height: 150px;
  margin: 12px 0;
  background:
    linear-gradient(180deg, transparent 68%, rgba(255, 255, 255, 0.16) 68%),
    linear-gradient(90deg, transparent 12%, rgba(255, 255, 255, 0.34) 12% 18%, transparent 18% 28%, rgba(255, 255, 255, 0.45) 28% 36%, transparent 36% 50%, rgba(255, 255, 255, 0.26) 50% 56%, transparent 56% 70%, rgba(255, 255, 255, 0.56) 70% 82%, transparent 82%);
  border-radius: 5px;
}

.mini-rows {
  display: grid;
  gap: 8px;
}

.mini-rows span {
  height: 16px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer a,
.footer-links a {
  color: var(--green);
  font-weight: 800;
}

.legal-section {
  padding-top: 0;
}

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

.legal-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-grid span {
  display: block;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.legal-grid h3 {
  margin: 10px 0 8px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.legal-grid p,
.legal-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.legal-note {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  margin-top: 12px;
  padding: 18px 20px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-note strong {
  color: var(--ink);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  max-width: 460px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    padding: 10px;
    background: rgba(251, 251, 247, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .header-actions {
    order: 3;
  }

  .hero,
  .section-head,
  .market-layout,
  .proof-card,
  .why,
  .bi-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .stats-strip,
  .timeline,
  .product-grid,
  .collection-list,
  .space-grid,
  .data-stack,
  .data-metrics,
  .legal-grid,
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .brand small,
  .header-actions .button {
    display: none;
  }

  .journey {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .section,
  .section-band,
  .stats-strip {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    gap: 28px;
    padding: 38px 0 62px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual::before {
    inset: 22px 0 0 20px;
  }

  .hero-photo {
    inset: 18px 0 0 8px;
    width: calc(100% - 8px);
    height: calc(100% - 18px);
  }

  .hero-photo-card {
    right: 10px;
    bottom: 20px;
    left: 18px;
    max-width: none;
    padding: 16px;
  }

  .stats-strip,
  .timeline,
  .product-grid,
  .collection-list,
  .space-grid,
  .data-stack,
  .data-metrics,
  .legal-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .section-head h2,
  .why h2,
  .bi-panel h2 {
    font-size: 36px;
  }

  .zone-board {
    grid-template-columns: 1fr;
    grid-auto-rows: 96px;
  }

  .zone-board span:nth-child(4) {
    grid-column: auto;
  }

  .collection-board-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-photo img,
  .operations-photo img {
    height: 300px;
  }

  .collection-photo figcaption,
  .operations-photo figcaption {
    position: static;
    max-width: none;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }

  .proof-card {
    padding: 24px;
  }

  .demo-login-card {
    grid-template-columns: 1fr;
  }

  .role-access-grid {
    grid-template-columns: 1fr;
  }

  .role-access-card,
  .demo-login-card dl {
    grid-template-columns: 1fr;
  }

  .demo-login-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .report-line {
    grid-template-columns: 1fr;
  }

  .legal-note {
    grid-template-columns: 1fr;
  }

  .operations {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .bi-panel {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
