:root {
  font-family: "Public Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Public Sans";
  src: url("assets/fonts/Fonts/Public_Sans/static/PublicSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Public Sans";
  src: url("assets/fonts/Fonts/Public_Sans/static/PublicSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Condensed";
  src: url("assets/fonts/Fonts/Archivo/static/Archivo_Condensed/Archivo_Condensed-Black.ttf") format("truetype");
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/Fonts/Archivo/static/Archivo/Archivo-Black.ttf") format("truetype");
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik Fono";
  src: url("assets/fonts/mergdata/AeonikFono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik Trial";
  src: url("assets/fonts/mergdata/AeonikTRIAL-Bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Agrandir";
  src: url("assets/fonts/mergdata/PPAgrandir-Bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #071713;
  --muted: #61706b;
  --soft: #f4f1e8;
  --paper: #fffdf5;
  --white: #ffffff;
  --teal: #18b69e;
  --deep: #003f38;
  --mint: #d8ff52;
  --yellow: #ffd426;
  --sand: #e9dfcd;
  --black: #060706;
  --line: rgba(7, 23, 19, 0.13);
  --shadow: 0 28px 80px rgba(4, 17, 14, 0.2);
  font-family: "Public Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.presentation-index {
  background:
    linear-gradient(120deg, rgba(0, 63, 56, 0.94), rgba(6, 7, 6, 0.82)),
    url("assets/web/covers/farmers.jpg") center / cover fixed;
  color: var(--white);
}

body.stretch {
  --ink: #f9f7ed;
  --paper: #09080f;
  --muted: #aaa5b8;
  --line: rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(120deg, rgba(44, 24, 13, 0.94), rgba(8, 20, 16, 0.88)),
    url("assets/web/covers/call-to-action.jpg") center / cover fixed;
  color: var(--ink);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

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

.top-nav {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100vw - 28px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.dark-nav .top-nav,
.stretch .top-nav {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(5, 8, 7, 0.72);
}

.logo-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0;
}

.logo-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 950;
}

.dark-nav .logo-mark,
.stretch .logo-mark {
  color: var(--black);
  background: var(--mint);
}

.nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  flex: 0 0 auto;
  padding: 12px 13px;
  border-radius: 999px;
  color: rgba(7, 23, 19, 0.68);
  font-size: 13px;
  font-weight: 850;
}

.dark-nav .nav-links a,
.stretch .nav-links a {
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--black);
  background: var(--mint);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--deep);
}

.dark-nav .nav-cta,
.stretch .nav-cta,
.button.yellow {
  color: var(--black);
  background: var(--yellow);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  color: var(--white);
  background: var(--black);
}

.page-section {
  padding: 110px max(22px, calc((100vw - 1180px) / 2)) 74px;
}

.hero {
  min-height: 100vh;
  padding-top: 126px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stretch .eyebrow {
  color: #4deeea;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.45;
}

.dark-section .lede,
.dark-nav .lede,
.stretch .lede,
.index-hero .lede {
  color: rgba(255, 255, 255, 0.76);
}

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

.microcopy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.metric {
  display: grid;
  gap: 6px;
}

.metric strong {
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.95;
}

.metric span {
  color: var(--muted);
  font-weight: 750;
}

.dark-section .metric span,
.dark-nav .metric span {
  color: rgba(255, 255, 255, 0.68);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.dark-nav .chip,
.dark-section .chip,
.stretch .chip {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr minmax(290px, 390px);
  gap: 24px;
  align-items: center;
  padding: 70px max(22px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--black);
}

.footer-cta h2 {
  margin: 0;
  max-width: 800px;
}

.footer-cta form {
  display: flex;
  gap: 8px;
}

.footer-cta input {
  min-width: 0;
  min-height: 48px;
  flex: 1;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.footer-cta button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 950;
  cursor: pointer;
}

/* Index */
.index-hero {
  min-height: 100vh;
  padding-top: 130px;
}

.index-hero h1 {
  max-width: 1040px;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.index-card {
  min-height: 330px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.index-card strong {
  display: block;
  margin: 24px 0 12px;
  font-size: 28px;
  line-height: 1;
}

.index-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.index-card nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.index-card a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--black);
  background: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.index-card a.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

/* Concept 01 */
.impact-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 48, 42, 0.96), rgba(0, 23, 19, 0.68)),
    url("assets/web/covers/farmers.jpg") center / cover;
}

.brand-faithful h1,
.brand-faithful h2,
.brand-faithful h3,
.brand-faithful .metric-tile strong {
  font-family: "Archivo Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 950;
}

.brand-faithful h1 {
  max-width: 900px;
  font-size: clamp(58px, 8.2vw, 118px);
  line-height: 0.84;
}

.brand-faithful .eyebrow {
  color: var(--yellow);
}

.brand-faithful .product-card h3,
.brand-faithful .proof-card h3 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(400px, 0.78fr);
  gap: 46px;
  align-items: center;
}

.impact-hero h1 {
  max-width: 840px;
}

.impact-console {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 46px;
  background: rgba(4, 15, 13, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.radar {
  position: absolute;
  inset: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 16%, rgba(24, 182, 158, 0.22) 17% 18%, transparent 19% 34%, rgba(24, 182, 158, 0.2) 35% 36%, transparent 37% 56%, rgba(24, 182, 158, 0.18) 57% 58%, transparent 59%),
    conic-gradient(from 0deg, rgba(216, 255, 82, 0.52), transparent 74deg);
  animation: rotate 12s linear infinite;
}

.pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 30px var(--mint);
}

.pulse.one { left: 30%; top: 34%; }
.pulse.two { right: 22%; top: 20%; }
.pulse.three { right: 31%; bottom: 26%; }

.console-card {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
}

.console-card small {
  display: block;
  color: var(--muted);
  font-weight: 850;
}

.console-card strong {
  display: block;
  margin: 7px 0;
  font-size: 34px;
  line-height: 1;
}

.console-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.25;
}

.console-card.a { left: 28px; top: 36px; }
.console-card.b { right: 24px; top: 132px; }
.console-card.c { left: 44px; bottom: 84px; }
.console-card.d { right: 50px; bottom: 34px; }

.impact-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 46px;
}

.impact-step {
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.11);
  transition: transform 180ms ease, background 180ms ease;
}

.impact-step:hover,
.impact-step.is-active {
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-7px);
}

.impact-step span {
  display: block;
  margin-bottom: 56px;
  font-weight: 950;
}

.impact-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--paper);
}

.proof-card {
  min-height: 440px;
  padding: 24px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 23, 19, 0.08);
}

.proof-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 22px;
}

/* Concept 02 */
.darli-page {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 212, 38, 0.48), transparent 28%),
    linear-gradient(135deg, #f8f5eb 0%, #dff6ee 55%, #10110f 100%);
}

.darli-hero {
  display: grid;
  grid-template-columns: 0.92fr minmax(340px, 430px) 0.5fr;
  gap: 34px;
  align-items: center;
}

.darli-hero h1 {
  max-width: 650px;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 0.96;
}

.persona-stack {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  max-width: 430px;
}

.persona {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  cursor: pointer;
}

.persona.is-active {
  border-color: var(--black);
  color: var(--yellow);
  background: var(--black);
}

.phone {
  min-height: 690px;
  padding: 18px;
  border: 10px solid var(--black);
  border-radius: 48px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.92)),
    url("assets/web/covers/darli.jpg") center / cover;
  box-shadow: var(--shadow);
}

.chat {
  display: flex;
  min-height: 570px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 13px;
}

.bubble,
.answer-card {
  max-width: 88%;
  padding: 16px;
  border-radius: 22px;
  line-height: 1.35;
}

.bubble.bot {
  color: var(--white);
  background: var(--deep);
}

.bubble.user {
  align-self: flex-end;
  background: var(--mint);
}

.answer-card {
  max-width: 100%;
  background: var(--white);
}

.answer-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.answer-card p {
  margin-bottom: 14px;
}

.answer-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.ask-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.ask-form input {
  min-width: 0;
  min-height: 48px;
  flex: 1;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.ask-form button {
  min-height: 48px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 950;
  cursor: pointer;
}

.quick-cards {
  display: grid;
  gap: 12px;
}

.quick-card {
  padding: 18px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(5, 8, 7, 0.55);
  backdrop-filter: blur(14px);
}

.quick-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.darli-use-cases {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
  align-items: center;
}

.darli-use-cases .media-frame {
  min-height: 560px;
}

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

.use-case-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 23, 19, 0.08);
}

.use-case-list img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
}

/* Concept 03 */
.map-page {
  background:
    linear-gradient(180deg, rgba(246, 244, 238, 0.94), rgba(246, 244, 238, 0.76)),
    url("assets/web/covers/maps.jpg") center / cover fixed;
}

.map-hero h1 {
  max-width: 1000px;
  font-size: clamp(46px, 6.2vw, 88px);
}

.supply-stage {
  position: relative;
  min-height: 660px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 46px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.supply-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route {
  fill: none;
  stroke: var(--teal);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 18 24;
  opacity: 0.72;
  animation: route 16s linear infinite;
}

.route.alt {
  stroke: var(--yellow);
  animation-duration: 22s;
}

.map-node {
  position: absolute;
  width: 132px;
  height: 132px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 22px 50px rgba(0, 63, 56, 0.24);
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}

.map-node:hover,
.map-node.is-active {
  color: var(--black);
  background: var(--yellow);
}

.map-node.farmer { left: 7%; bottom: 18%; }
.map-node.agent { left: 22%; top: 22%; }
.map-node.platform { left: 44%; top: 42%; }
.map-node.finance { right: 29%; bottom: 16%; }
.map-node.market { right: 10%; top: 22%; }
.map-node.proof { right: 8%; bottom: 10%; }

.map-inspector {
  position: absolute;
  left: 34px;
  top: 34px;
  max-width: 365px;
  padding: 24px;
  border-radius: 28px;
  color: var(--white);
  background: var(--black);
}

.map-inspector small {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.map-inspector strong {
  display: block;
  margin: 8px 0;
  font-size: 36px;
}

.network-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.network-panel article {
  min-height: 210px;
  padding: 20px;
  border-radius: 24px;
  background: var(--white);
}

/* Concept 04 */
.film-page {
  color: var(--white);
  background: var(--black);
}

.film-page .lede {
  color: rgba(255, 255, 255, 0.8);
}

.film-hero {
  min-height: 100vh;
  padding: 110px max(22px, calc((100vw - 1180px) / 2)) 42px;
}

.film-frame {
  position: relative;
  display: grid;
  min-height: calc(100vh - 150px);
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 58px 58px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18)),
    var(--scene-image, url("assets/web/covers/traceability.jpg")) center / cover;
}

.film-copy {
  max-width: 920px;
  padding: 0 0 72px;
}

.film-copy h1 {
  font-size: clamp(46px, 6.1vw, 86px);
}

.scene-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.scene-control {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.scene-control.is-active {
  color: var(--black);
  background: var(--yellow);
}

.film-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.film-strip article {
  min-height: 300px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
}

.film-strip img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.film-strip div {
  padding: 16px;
}

.marquee {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 24px 0 0;
  font-size: clamp(24px, 4vw, 58px);
  font-weight: 950;
  white-space: nowrap;
}

.marquee span {
  animation: marquee 20s linear infinite;
}

/* Concept 05 */
.market-nav {
  position: fixed;
  z-index: 60;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100vw - 28px));
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(34, 22, 13, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.market-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff8e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 900;
}

.market-brand span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #2c180d;
  background: #f3cf7a;
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
}

.market-nav nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.market-nav nav::-webkit-scrollbar {
  display: none;
}

.market-nav a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 248, 232, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.market-nav a:hover,
.market-nav .market-cta {
  color: #2c180d;
  background: #f3cf7a;
}

.market-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.84fr);
  gap: 42px;
  align-items: center;
  min-height: 100vh;
}

.market-hero h1 {
  max-width: 820px;
  color: #fff8e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7vw, 102px);
  font-weight: 900;
  line-height: 0.94;
}

.market-hero .lede {
  color: rgba(255, 248, 232, 0.8);
}

.market-plate {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 232, 0.18);
  border-radius: 38px;
  background: rgba(255, 248, 232, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.market-plate .media-frame {
  min-height: 360px;
  border-radius: 28px;
  box-shadow: none;
}

.market-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.market-proof article {
  min-height: 150px;
  padding: 18px;
  border-radius: 24px;
  color: #2c180d;
  background: #fff8e8;
}

.market-proof strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.9;
}

.market-proof span {
  color: #695d4d;
  font-weight: 800;
}

.market-section {
  color: #2c180d;
  background: #fff8e8;
}

.market-section h2,
.market-section h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.market-section .lede {
  color: #665c4f;
}

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

.market-lane {
  min-height: 380px;
  padding: 18px;
  border-radius: 30px;
  background: #f2eadb;
}

.market-lane img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.market-lane span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff8e8;
  background: #2c180d;
  font-size: 12px;
  font-weight: 900;
}

.market-table {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 26px;
  align-items: center;
}

.market-table .media-frame {
  min-height: 560px;
}

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

.market-list article {
  padding: 20px;
  border-left: 5px solid #bf8a32;
  border-radius: 18px;
  background: #f2eadb;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes route {
  to { stroke-dashoffset: -420; }
}

@keyframes marquee {
  to { transform: translateX(-100%); }
}

@media (max-width: 1100px) {
  .index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid,
  .darli-hero,
  .darli-use-cases,
  .market-hero,
  .market-table,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .impact-path,
  .film-strip,
  .network-panel,
  .impact-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone {
    max-width: 480px;
  }

  .quick-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .top-nav {
    top: 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: calc(100vw - 16px);
    min-height: 0;
    padding: 10px;
    border-radius: 26px;
  }

  .nav-cta {
    display: none;
  }

  .logo-link {
    min-height: 34px;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a {
    padding: 10px 12px;
  }

  .page-section,
  .hero,
  .film-hero {
    padding: 136px 16px 54px;
  }

  h1 {
    font-size: clamp(39px, 13.5vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .lede {
    font-size: 17px;
  }

  .hero-actions,
  .footer-cta form,
  .ask-form {
    flex-direction: column;
  }

  .button,
  .footer-cta button,
  .ask-form button {
    width: 100%;
  }

  .index-grid,
  .impact-path,
  .impact-proof,
  .film-strip,
  .network-panel,
  .quick-cards {
    grid-template-columns: 1fr;
  }

  .index-card {
    min-height: 250px;
  }

  .impact-console {
    min-height: 670px;
    border-radius: 30px;
  }

  .radar {
    inset: 110px 28px;
  }

  .console-card {
    width: calc(50% - 30px);
    padding: 14px;
  }

  .console-card strong {
    font-size: 26px;
  }

  .console-card.a { left: 14px; top: 18px; }
  .console-card.b { right: 14px; top: 102px; }
  .console-card.c { left: 14px; bottom: 128px; }
  .console-card.d { right: 14px; bottom: 28px; }

  .impact-step {
    min-height: 220px;
  }

  .impact-step span {
    margin-bottom: 26px;
  }

  .phone {
    min-height: 610px;
    border-width: 7px;
    border-radius: 34px;
  }

  .chat {
    min-height: 490px;
  }

  .supply-stage {
    min-height: 720px;
    border-radius: 30px;
  }

  .map-node {
    width: 92px;
    height: 92px;
    font-size: 14px;
  }

  .map-inspector {
    left: 14px;
    right: 14px;
    top: 14px;
    max-width: none;
  }

  .map-node.farmer { left: 6%; bottom: 24%; }
  .map-node.agent { left: 9%; top: 43%; }
  .map-node.platform { left: 42%; top: 50%; }
  .map-node.finance { right: 6%; bottom: 26%; }
  .map-node.market { right: 7%; top: 40%; }
  .map-node.proof { left: 36%; bottom: 8%; }

  .film-frame {
    min-height: 720px;
    border-radius: 0 0 34px 34px;
  }

  .film-copy {
    padding-bottom: 44px;
  }

  .marquee {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-top: 18px;
    font-size: 17px;
    white-space: normal;
  }

  .marquee span {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(255, 248, 0, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    animation: none;
  }

  .terminal-grid {
    grid-template-columns: 1fr;
  }

  .radical-hero {
    gap: 28px;
  }
}

/* Distinct full-site navigation systems */
.os-nav {
  position: fixed;
  z-index: 60;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100vw - 28px));
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 24, 20, 0.72);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.os-nav .brand-word,
.darli-brand,
.map-brand,
.film-brand,
.signal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.os-nav img,
.darli-brand img,
.map-brand img,
.film-brand img,
.signal-brand img {
  display: block;
  width: auto;
  height: 26px;
  object-fit: contain;
}

.os-nav nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.os-nav nav::-webkit-scrollbar,
.darli-dock nav::-webkit-scrollbar,
.map-rail nav::-webkit-scrollbar,
.film-nav .reel-nav::-webkit-scrollbar,
.signal-command nav::-webkit-scrollbar,
.nav-links::-webkit-scrollbar {
  display: none;
}

.os-nav nav a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.os-nav nav a:hover {
  color: var(--black);
  background: var(--mint);
}

.os-nav .os-status {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--black);
  background: var(--mint);
  font-size: 13px;
  font-weight: 950;
}

.darli-dock {
  position: fixed;
  z-index: 60;
  top: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 245px;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(7, 23, 19, 0.1);
  border-radius: 32px;
  background: rgba(255, 253, 245, 0.86);
  box-shadow: 0 18px 60px rgba(7, 23, 19, 0.14);
  backdrop-filter: blur(18px);
}

.darli-dock nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.darli-dock nav a {
  padding: 13px 14px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
}

.darli-dock nav a:hover {
  color: var(--yellow);
  background: var(--black);
}

.darli-dock .dock-question {
  padding: 14px;
  border-radius: 20px;
  color: var(--white);
  background: var(--deep);
  font-size: 14px;
  line-height: 1.35;
}

.darli-main {
  padding-right: 285px;
}

.map-rail {
  position: fixed;
  z-index: 60;
  top: 22px;
  bottom: 22px;
  left: 18px;
  display: grid;
  width: 92px;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  padding: 16px 10px;
  border: 1px solid rgba(7, 23, 19, 0.13);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.82);
  box-shadow: 0 16px 50px rgba(7, 23, 19, 0.12);
  backdrop-filter: blur(18px);
}

.map-rail img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.map-rail nav {
  display: grid;
  align-content: center;
  gap: 10px;
}

.map-rail a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep);
  font-size: 12px;
  font-weight: 950;
}

.map-rail a:hover {
  color: var(--black);
  background: var(--yellow);
}

.map-main {
  padding-left: 100px;
}

.film-nav {
  position: fixed;
  z-index: 60;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100vw - 28px));
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.film-nav .reel-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(52px, 1fr));
  gap: 7px;
}

.film-nav a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.film-nav a:hover {
  color: var(--black);
  background: var(--yellow);
}

.film-nav .frame-count {
  color: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 900;
}

.signal-command {
  position: fixed;
  z-index: 60;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100vw - 28px));
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(77, 238, 234, 0.32);
  border-radius: 16px;
  background: rgba(8, 8, 13, 0.84);
  box-shadow: 0 0 70px rgba(255, 43, 109, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.signal-command nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.signal-command a {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(77, 238, 234, 0.22);
  border-radius: 10px;
  color: #4deeea;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.signal-command a:hover {
  color: #060706;
  background: #4deeea;
}

.signal-command .live {
  color: #ff2b6d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 900;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

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

.product-card {
  min-height: 330px;
  padding: 18px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 23, 19, 0.08);
}

.product-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 16px;
}

.product-card .tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 950;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1fr;
  gap: 30px;
  align-items: center;
}

.story-stack {
  display: grid;
  gap: 14px;
}

.story-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.dark-section {
  color: var(--white);
  background: var(--black);
}

.dark-section .story-item,
.dark-section .product-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

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

.metric-tile {
  min-height: 180px;
  padding: 20px;
  border-radius: 26px;
  background: var(--white);
}

.dark-section .metric-tile,
.stretch .metric-tile {
  background: rgba(255, 255, 255, 0.08);
}

.stretch .product-card {
  color: #07070b;
  background: #f8f6ed;
}

.stretch .product-card p {
  color: #37323e;
}

.stretch .product-card .tag {
  color: #07070b;
  background: #4deeea;
}

.metric-tile strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
}

.metric-tile span {
  color: var(--muted);
  font-weight: 800;
}

.dark-section .metric-tile span,
.stretch .metric-tile span {
  color: rgba(255, 255, 255, 0.68);
}

.brief-page {
  background: #f7f4ec;
}

.brief-header {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  min-height: 100vh;
  align-items: center;
  padding: 70px max(22px, calc((100vw - 1180px) / 2));
}

.brief-card {
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(7, 23, 19, 0.1);
}

.brief-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

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

.brief-meta div {
  padding: 14px;
  border-radius: 18px;
  background: #f3f0e7;
}

.brief-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-section {
  padding: 70px max(22px, calc((100vw - 1180px) / 2));
}

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

.brief-grid article {
  min-height: 250px;
  padding: 22px;
  border-radius: 24px;
  background: var(--white);
}

.brief-linkbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.brief-page {
  --brief-ink: #0a0a0a;
  --brief-paper: #f7f4ec;
  --brief-card: #fffdf5;
  --brief-muted: #5f6965;
  --brief-line: rgba(10, 10, 10, 0.12);
  --brief-accent: #00c9ba;
  --brief-accent-2: #fff800;
  --brief-accent-3: #ffa000;
  color: var(--brief-ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(234, 226, 218, 0.42)),
    var(--brief-paper);
  font-family: "Public Sans", Arial, sans-serif;
}

.brief-page h1,
.brief-page h2,
.brief-page h3,
.brief-page .brief-display,
.brief-page .brief-section-number {
  font-family: "Archivo Condensed", "Archivo Black", Impact, sans-serif;
  letter-spacing: 0;
}

.brief-page h1 {
  margin: 0;
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.82;
  max-width: 980px;
}

.brief-page h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.88;
}

.brief-page h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 0.94;
}

.brief-page p {
  color: var(--brief-muted);
  line-height: 1.55;
}

.brief-page .lede {
  color: var(--brief-muted);
}

.brief-cover {
  min-height: 100vh;
  padding: 38px max(22px, calc((100vw - 1180px) / 2)) 70px;
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--brief-accent-2), transparent 35%), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--brief-accent), transparent 82%), transparent 52%);
}

.brief-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 60px;
}

.brief-topline img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.brief-topline span {
  padding: 9px 14px;
  border: 1px solid var(--brief-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: end;
}

.brief-cover-copy {
  max-width: 860px;
}

.brief-kicker {
  margin: 0 0 18px;
  color: var(--brief-accent);
  font-family: "Aeonik Fono", "Public Sans", monospace;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-summary {
  max-width: 760px;
  margin-top: 26px;
  color: var(--brief-ink);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.22;
}

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.brief-preview-card {
  overflow: hidden;
  border: 1px solid var(--brief-line);
  border-radius: 34px;
  background: var(--brief-card);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.12);
}

.brief-preview-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.brief-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--brief-line);
}

.brief-meta-row div {
  min-height: 104px;
  padding: 17px;
  background: var(--brief-card);
}

.brief-meta-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--brief-muted);
  font-family: "Aeonik Fono", "Public Sans", monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-meta-row strong {
  font-size: 19px;
  line-height: 1.08;
}

.brief-index {
  position: sticky;
  z-index: 35;
  top: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px max(16px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--brief-line);
  border-bottom: 1px solid var(--brief-line);
  background: color-mix(in srgb, var(--brief-paper), white 68%);
  backdrop-filter: blur(16px);
}

.brief-index a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid var(--brief-line);
  border-radius: 999px;
  color: var(--brief-ink);
  background: rgba(255, 255, 255, 0.48);
  font-family: "Aeonik Fono", "Public Sans", monospace;
  font-size: 12px;
  font-weight: 900;
}

.brief-index a:hover {
  background: var(--brief-accent-2);
}

.brief-chapter {
  padding: 86px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--brief-line);
}

.brief-chapter.alt {
  background: color-mix(in srgb, var(--brief-accent), white 91%);
}

.brief-chapter.dark {
  color: #fff;
  background:
    radial-gradient(circle at 84% 12%, color-mix(in srgb, var(--brief-accent), transparent 58%), transparent 34%),
    #0a0a0a;
}

.brief-chapter.dark p,
.brief-chapter.dark .brief-note,
.brief-chapter.dark .brief-lead {
  color: rgba(255, 255, 255, 0.72);
}

.brief-chapter.dark .brief-card-block,
.brief-chapter.dark .brief-principle,
.brief-chapter.dark .brief-token,
.brief-chapter.dark .brief-do,
.brief-chapter.dark .brief-dont {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.brief-chapter.dark .brief-token span,
.brief-chapter.dark .brief-do span,
.brief-chapter.dark .brief-dont span {
  color: rgba(255, 255, 255, 0.64);
}

.brief-section-head {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.brief-section-number {
  color: var(--brief-accent);
  font-size: clamp(44px, 5vw, 80px);
  line-height: 0.8;
}

.brief-lead {
  max-width: 760px;
  color: var(--brief-muted);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.28;
}

.brief-note {
  color: var(--brief-muted);
  font-size: 15px;
}

.brief-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.brief-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brief-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brief-card-block,
.brief-principle,
.brief-token,
.brief-do,
.brief-dont {
  padding: 24px;
  border: 1px solid var(--brief-line);
  border-radius: 24px;
  background: var(--brief-card);
}

.brief-card-block img {
  width: 100%;
  height: 220px;
  margin-bottom: 18px;
  border-radius: 18px;
  object-fit: cover;
}

.brief-principle strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.brief-swatch-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.brief-swatch {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  padding: 16px;
  border: 1px solid var(--brief-line);
  border-radius: 24px;
  color: var(--brief-ink);
  background: var(--swatch);
}

.brief-swatch.dark-swatch {
  color: #fff;
}

.brief-swatch span {
  font-family: "Aeonik Fono", "Public Sans", monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-swatch strong {
  font-size: 20px;
}

.brief-type-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
}

.brief-type-sample {
  min-height: 360px;
  padding: 26px;
  border: 1px solid var(--brief-line);
  border-radius: 28px;
  background: var(--brief-card);
}

.brief-type-sample .brief-display {
  margin-bottom: 22px;
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.82;
}

.brief-font-list {
  display: grid;
  gap: 12px;
}

.brief-token span,
.brief-do span,
.brief-dont span {
  display: block;
  margin-bottom: 10px;
  color: var(--brief-muted);
  font-family: "Aeonik Fono", "Public Sans", monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-token strong {
  font-size: 20px;
}

.brief-wire {
  display: grid;
  min-height: 420px;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--brief-line);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(10, 10, 10, 0.04) 1px, transparent 1px),
    var(--brief-card);
  background-size: 28px 28px;
}

.wire-hero,
.wire-band,
.wire-card,
.wire-chip {
  border: 1px solid color-mix(in srgb, var(--brief-accent), black 18%);
  border-radius: 22px;
  background: color-mix(in srgb, var(--brief-accent), white 78%);
}

.wire-hero {
  min-height: 150px;
}

.wire-band {
  min-height: 70px;
}

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

.wire-card {
  min-height: 96px;
}

.wire-chip {
  width: 46%;
  min-height: 44px;
}

.brief-journey {
  display: grid;
  gap: 14px;
}

.brief-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--brief-line);
  border-radius: 22px;
  background: var(--brief-card);
}

.brief-step span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--brief-ink);
  background: var(--brief-accent-2);
  font-weight: 950;
}

.brief-rule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brief-do {
  border-color: color-mix(in srgb, var(--brief-accent), black 12%);
}

.brief-dont {
  border-color: rgba(10, 10, 10, 0.16);
  opacity: 0.82;
}

.brief-quote {
  padding: 42px;
  border-radius: 32px;
  color: var(--brief-ink);
  background: linear-gradient(135deg, var(--brief-accent-2), var(--brief-accent-3));
}

.brief-quote p {
  margin: 0;
  max-width: 980px;
  color: var(--brief-ink);
  font-family: "Archivo Condensed", "Archivo Black", Impact, sans-serif;
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 950;
  line-height: 0.92;
}

.brief-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 34px max(22px, calc((100vw - 1180px) / 2));
  background: #0a0a0a;
  color: #fff;
}

.brief-footer a {
  color: #fff800;
  font-weight: 900;
}

.brief-impact {
  --brief-paper: #ebeae5;
  --brief-accent: #00c9ba;
  --brief-accent-2: #fff800;
  --brief-accent-3: #ffa000;
}

.brief-darli {
  --brief-paper: #fffde4;
  --brief-accent: #00c9ba;
  --brief-accent-2: #fff800;
  --brief-accent-3: #289bff;
}

.brief-darli h1,
.brief-darli h2,
.brief-darli h3,
.brief-darli .brief-display {
  font-family: "PP Agrandir", "Archivo Condensed", Arial Black, sans-serif;
}

.brief-map {
  --brief-paper: #f3efe7;
  --brief-accent: #00a894;
  --brief-accent-2: #d7ff42;
  --brief-accent-3: #289bff;
}

.brief-map h1,
.brief-map h2,
.brief-map h3,
.brief-map .brief-display {
  font-family: "PP Agrandir", "Archivo Condensed", Arial Black, sans-serif;
}

.brief-film {
  --brief-paper: #111208;
  --brief-card: #202014;
  --brief-ink: #f8f3e8;
  --brief-muted: rgba(248, 243, 232, 0.68);
  --brief-line: rgba(255, 255, 255, 0.14);
  --brief-accent: #00c9ba;
  --brief-accent-2: #fff800;
  --brief-accent-3: #d86f3d;
}

.brief-film .brief-cover,
.brief-film .brief-index {
  background-color: #111208;
}

.brief-film .brief-card-block,
.brief-film .brief-principle,
.brief-film .brief-token,
.brief-film .brief-do,
.brief-film .brief-dont,
.brief-film .brief-type-sample,
.brief-film .brief-step,
.brief-film .brief-preview-card {
  background: #202014;
}

.brief-market {
  --brief-paper: #f4eadb;
  --brief-card: #fff8ea;
  --brief-ink: #29170e;
  --brief-muted: #725f51;
  --brief-accent: #00a894;
  --brief-accent-2: #ffe457;
  --brief-accent-3: #b96838;
}

.brief-market h1,
.brief-market h2,
.brief-market h3,
.brief-market .brief-display {
  font-family: "PP Agrandir", Georgia, serif;
}

@media (max-width: 1100px) {
  .darli-main,
  .map-main {
    padding-right: 0;
    padding-left: 0;
  }

  .darli-dock,
  .map-rail {
    position: static;
    width: auto;
    margin: 12px;
    border-radius: 26px;
  }

  .darli-dock {
    grid-template-columns: 1fr;
  }

  .darli-dock nav {
    display: flex;
    overflow-x: auto;
  }

  .map-rail {
    display: flex;
    justify-content: space-between;
  }

  .map-rail nav {
    display: flex;
    overflow-x: auto;
  }

  .product-grid,
  .metric-row,
  .market-lanes {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-kicker,
  .story-split,
  .brief-header,
  .brief-grid {
    grid-template-columns: 1fr;
  }

  .brief-cover-grid,
  .brief-section-head,
  .brief-type-board,
  .brief-two-col {
    grid-template-columns: 1fr;
  }

  .brief-three-col,
  .brief-four-col,
  .brief-swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief-cover {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .os-nav,
  .film-nav {
    top: 8px;
    grid-template-columns: 1fr;
    width: calc(100vw - 16px);
    border-radius: 24px;
  }

  .market-nav {
    position: static;
    width: auto;
    margin: 8px;
    grid-template-columns: 1fr;
    border-radius: 24px;
    transform: none;
  }

  .os-nav nav,
  .film-nav .reel-nav,
  .market-nav nav {
    justify-content: start;
    overflow-x: auto;
  }

  .os-nav nav {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .os-nav nav a {
    flex: 1 1 calc(33.333% - 6px);
    padding: 7px 6px;
    font-size: 12px;
    text-align: center;
    white-space: normal;
  }

  .brand-faithful .impact-hero {
    padding-top: 184px;
  }

  .darli-dock {
    gap: 12px;
    padding: 16px;
  }

  .darli-dock nav {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .darli-dock nav a {
    flex: 1 1 calc(50% - 10px);
    padding: 11px 12px;
    text-align: center;
    white-space: normal;
  }

  .os-nav .os-status,
  .film-nav .frame-count {
    display: none;
  }

  .product-grid,
  .metric-row,
  .brief-meta,
  .market-lanes,
  .market-proof {
    grid-template-columns: 1fr;
  }

  .darli-main .hero,
  .map-main .hero {
    padding-top: 54px;
  }

  .stretch .hero {
    padding-top: 34px;
  }

  .market-hero h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .market-plate .media-frame {
    min-height: 260px;
  }

  .market-table .media-frame {
    min-height: 360px;
  }

  .film-page .lede {
    color: rgba(255, 255, 255, 0.8);
  }

  .product-card {
    min-height: auto;
  }

  .brief-header {
    padding: 138px 16px 50px;
  }

  .brief-section {
    padding: 46px 16px;
  }

  .brief-cover {
    padding: 26px 16px 48px;
  }

  .brief-topline {
    align-items: flex-start;
    margin-bottom: 46px;
  }

  .brief-cover-grid {
    gap: 28px;
  }

  .brief-preview-card img {
    height: 240px;
  }

  .brief-meta-row,
  .brief-three-col,
  .brief-four-col,
  .brief-swatch-grid,
  .brief-rule-grid,
  .wire-row {
    grid-template-columns: 1fr;
  }

  .brief-chapter {
    padding: 56px 16px;
  }

  .brief-section-head {
    gap: 14px;
    margin-bottom: 26px;
  }

  .brief-step {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
  }

  .brief-quote {
    padding: 28px;
  }

  .brief-footer {
    padding: 26px 16px;
  }
}

/* Hybrid Farmerline x Mergdata palette experiments */
.brand-faithful {
  --fusion-teal: #00c9ba;
  --fusion-acid: #fff800;
  --fusion-amber: #ffa000;
  --fusion-black: #0a0a0a;
  --fusion-ivory: #eae2da;
  --fusion-forest: #002f2a;
}

.brand-faithful .impact-hero {
  background:
    linear-gradient(90deg, rgba(0, 47, 42, 0.94), rgba(10, 10, 10, 0.76) 56%, rgba(255, 248, 0, 0.14)),
    url("assets/web/covers/farmers.jpg") center / cover;
}

.brand-faithful .os-nav {
  background: linear-gradient(90deg, rgba(0, 47, 42, 0.86), rgba(10, 10, 10, 0.82));
  border-color: rgba(0, 201, 186, 0.32);
}

.brand-faithful .os-nav .os-status,
.brand-faithful .button.yellow,
.brand-faithful .product-card .tag {
  background: linear-gradient(135deg, var(--fusion-acid), var(--fusion-amber));
  color: var(--fusion-black);
}

.brand-faithful .eyebrow {
  color: var(--fusion-acid);
}

.brand-faithful .impact-console {
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 248, 0, 0.17), transparent 34%),
    rgba(5, 12, 10, 0.78);
  border-color: rgba(0, 201, 186, 0.2);
}

.brand-faithful .console-card {
  background: linear-gradient(145deg, #ffffff, var(--fusion-ivory));
}

.brand-faithful .impact-step:hover,
.brand-faithful .impact-step.is-active {
  background: linear-gradient(135deg, var(--fusion-acid), var(--fusion-teal));
}

.brand-faithful .product-card h3,
.brand-faithful .proof-card h3 {
  font-family: "PP Agrandir", "Archivo Condensed", Impact, sans-serif;
}

.brand-faithful .product-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 0, 0.08), rgba(0, 201, 186, 0.08)),
    #fffdf5;
}

.darli-page {
  --darli-ink: #0a0a0a;
  --darli-yellow: #fff800;
  --darli-gold: #ffa000;
  --darli-teal: #00c9ba;
  --darli-ivory: #eae2da;
  --darli-blue: #289bff;
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 248, 0, 0.58), transparent 28%),
    radial-gradient(circle at 18% 70%, rgba(0, 201, 186, 0.34), transparent 34%),
    linear-gradient(135deg, #fffdf5 0%, var(--darli-ivory) 54%, #10110f 100%);
}

.darli-page h1,
.darli-page h2,
.darli-page h3 {
  font-family: "PP Agrandir", "Archivo", sans-serif;
}

.darli-page .lede,
.darli-page p,
.darli-page button,
.darli-page a {
  font-family: "Aeonik Fono", "Public Sans", sans-serif;
}

.darli-dock {
  background:
    linear-gradient(180deg, rgba(234, 226, 218, 0.94), rgba(255, 248, 0, 0.18)),
    rgba(255, 253, 245, 0.9);
  border-color: rgba(255, 160, 0, 0.24);
}

.darli-dock nav a {
  background: rgba(255, 253, 245, 0.78);
}

.darli-dock nav a:hover,
.persona.is-active {
  background: var(--darli-ink);
  color: var(--darli-yellow);
}

.darli-dock .dock-question,
.bubble.bot {
  background: linear-gradient(135deg, #003f38, #0a0a0a);
}

.bubble.user,
.chat-form button,
.ask-form button {
  background: linear-gradient(135deg, var(--darli-yellow), var(--darli-teal));
}

.quick-card {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.72), rgba(0, 63, 56, 0.72));
}

.answer-card strong {
  font-family: "PP Agrandir", "Archivo", sans-serif;
}

.map-page {
  --map-ink: #071713;
  --map-teal: #00c9ba;
  --map-yellow: #fff800;
  --map-amber: #ffa000;
  --map-ivory: #eae2da;
  --map-blue: #289bff;
  --map-cocoa: #352016;
  background:
    linear-gradient(180deg, rgba(234, 226, 218, 0.94), rgba(255, 253, 245, 0.76)),
    url("assets/web/covers/maps.jpg") center / cover fixed;
}

.map-page h1,
.map-page h2,
.map-page h3 {
  font-family: "PP Agrandir", "Archivo", sans-serif;
}

.map-page p,
.map-page a,
.map-page button {
  font-family: "Aeonik Fono", "Public Sans", sans-serif;
}

.map-rail {
  background: linear-gradient(180deg, rgba(255, 248, 0, 0.22), rgba(255, 253, 245, 0.9));
  border-color: rgba(0, 201, 186, 0.22);
}

.map-rail a,
.map-node {
  background: var(--map-cocoa);
}

.map-rail a:hover,
.map-node:hover,
.map-node.is-active {
  background: linear-gradient(135deg, var(--map-yellow), var(--map-teal));
  color: var(--map-ink);
}

.route {
  stroke: var(--map-teal);
}

.route.alt {
  stroke: var(--map-amber);
}

.map-inspector {
  background: linear-gradient(145deg, var(--map-cocoa), #0a0a0a);
}

.network-panel article,
.story-item {
  background: rgba(255, 253, 245, 0.82);
}

.film-page {
  --film-black: #0a0a0a;
  --film-yellow: #fff800;
  --film-teal: #00c9ba;
  --film-ivory: #eae2da;
  --film-ember: #ffa000;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 248, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #0a0a0a, #15110d);
}

.film-page h1,
.film-page h2,
.film-page h3 {
  font-family: "Archivo Condensed", "PP Agrandir", Impact, sans-serif;
}

.film-page p,
.film-page a,
.film-page button,
.film-page .frame-count {
  font-family: "Aeonik Fono", "Public Sans", sans-serif;
}

.film-nav {
  background: rgba(10, 10, 10, 0.82);
  border-color: rgba(255, 248, 0, 0.18);
}

.film-nav a {
  color: rgba(234, 226, 218, 0.76);
}

.film-nav a:hover,
.scene-control.is-active {
  background: linear-gradient(135deg, var(--film-yellow), var(--film-ember));
  color: var(--film-black);
}

.film-frame {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78), rgba(0, 201, 186, 0.18), rgba(10, 10, 10, 0.16)),
    var(--scene-image, url("assets/web/covers/traceability.jpg")) center / cover;
}

.film-strip article {
  background: linear-gradient(180deg, rgba(255, 248, 0, 0.08), rgba(0, 201, 186, 0.06));
}

.stretch {
  --market-cocoa: #29170e;
  --market-espresso: #0a0a0a;
  --market-cream: #fff4dc;
  --market-ivory: #eae2da;
  --market-gold: #fff800;
  --market-amber: #ffa000;
  --market-teal: #00c9ba;
  --market-blue: #289bff;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 248, 0, 0.18), transparent 22%),
    radial-gradient(circle at 86% 8%, rgba(0, 201, 186, 0.24), transparent 26%),
    linear-gradient(120deg, rgba(41, 23, 14, 0.94), rgba(8, 20, 16, 0.9)),
    url("assets/web/covers/call-to-action.jpg") center / cover fixed;
}

.market-nav {
  background: linear-gradient(90deg, rgba(41, 23, 14, 0.82), rgba(10, 10, 10, 0.72), rgba(0, 63, 56, 0.62));
}

.market-brand,
.market-hero h1,
.market-section h2,
.market-section h3,
.market-proof strong {
  font-family: "PP Agrandir", Georgia, serif;
}

.market-hero .lede,
.market-nav a,
.market-lane p,
.market-list p,
.market-proof span {
  font-family: "Aeonik Fono", "Public Sans", sans-serif;
}

.market-brand span:first-child,
.market-nav a:hover,
.market-nav .market-cta,
.market-lane span,
.market-list article {
  background: linear-gradient(135deg, var(--market-gold), var(--market-amber));
  color: var(--market-espresso);
}

.market-plate {
  background:
    linear-gradient(180deg, rgba(0, 201, 186, 0.12), rgba(255, 248, 0, 0.12)),
    rgba(255, 244, 220, 0.12);
  border-color: rgba(255, 248, 0, 0.18);
}

.market-proof article,
.market-lane {
  background: linear-gradient(145deg, var(--market-cream), var(--market-ivory));
}

.market-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 201, 186, 0.13), transparent 28%),
    linear-gradient(180deg, #fff7e5, #eae2da);
}

.market-list article {
  border-left-color: var(--market-teal);
}
