/* ==========================================================================
   DINK AGRI — landing page
   Palette: charcoal #2E2E2E · steel blue #406E8E · sage #70A288 · orange #F58549
   ========================================================================== */

@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton-latin.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink-0: #17181a;
  --ink-1: #1d1f21;
  --ink-2: #232527;
  --ink-3: #2E2E2E;
  --ink-4: #3a3d40;
  --line: rgba(242, 241, 237, 0.10);
  --blue: #406E8E;
  --blue-bright: #6FA3C7;
  --blue-deep: #2f5269;
  --sage: #70A288;
  --orange: #F58549;
  --paper: #F2F1ED;
  --muted: #A6A9AB;
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink-1);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
i { font-style: normal; }

.container {
  width: min(1200px, 100% - 2 * var(--pad));
  margin-inline: auto;
}

/* --- brand ! device ------------------------------------------------------ */
.bang { color: var(--blue-bright); font-style: normal; }
.bang--onblue { color: var(--ink-1); }
.hl { color: var(--blue-bright); }
.dim { color: var(--muted); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad);
  transition: box-shadow .35s ease, padding .35s ease;
}
/* blur lives on a pseudo-element: backdrop-filter on .nav itself would turn it
   into the containing block for the fixed-position mobile menu overlay */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(23, 24, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .35s ease;
}
.nav.scrolled::before { opacity: 1; }
.nav.scrolled {
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  color: var(--paper);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.wordmark__agri {
  color: var(--blue-bright);
  font-size: 0.62em;
  letter-spacing: 0.22em;
  margin-left: 0.45em;
}
.wordmark--big { font-size: 2.4rem; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.nav__links a:not(.btn) { position: relative; transition: color .25s; padding-block: .3rem; }
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:not(.btn):hover { color: var(--paper); }
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }

.lang {
  position: relative;
  z-index: 110; /* stays clickable above the open mobile menu overlay */
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(242, 241, 237, 0.22);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: border-color .25s;
}
.lang:hover { border-color: var(--blue-bright); }
.lang__opt { transition: color .25s; }
.lang__opt.is-on { color: var(--blue-bright); }
.lang__sep { color: rgba(242, 241, 237, 0.25); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
  z-index: 110;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--paper);
  transition: transform .3s ease, opacity .3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn--solid {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(64, 110, 142, 0.55);
}
.btn--solid:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(111, 163, 199, 0.5);
}
.btn--ghost {
  border: 1px solid rgba(242, 241, 237, 0.25);
  color: var(--paper);
}
.btn--ghost:hover { border-color: var(--blue-bright); color: var(--blue-bright); transform: translateY(-2px); }
.btn--small { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn--big { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 72% 18%, rgba(64, 110, 142, 0.16), transparent 60%),
    radial-gradient(900px 700px at 12% 90%, rgba(112, 162, 136, 0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-0), var(--ink-1) 55%, #191b1d);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(closest-side at 50% 115%, rgba(64,110,142,.18), transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100% - 2 * var(--pad));
  margin-inline: auto;
  padding-top: 4rem;
  pointer-events: none;
}
.hero__inner a { pointer-events: auto; }

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.kicker-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(245, 133, 73, 0.8);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.2rem, 9.5vw, 8.2rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.hero__title .line { display: block; overflow: hidden; padding-block: 0.04em; }
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { transform: translateY(0); } }

.accent-word { color: var(--paper); }
.bang-drop {
  display: inline-block;
  animation: bangIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 1.1s;
}
@keyframes bangIn {
  0% { transform: translateY(-0.6em) scale(0.4); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.hero__sub {
  max-width: 34rem;
  margin-top: 2rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
}
.hero__sub strong { color: var(--paper); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.reveal-load {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--blue-bright), transparent);
  animation: drip 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drip {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(10px); opacity: 0; }
}

.hero__hint {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(166, 169, 171, 0.55);
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  position: relative;
  z-index: 3;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  transform: rotate(-1.1deg) scale(1.02);
  margin-block: -1rem 0;
  box-shadow: 0 20px 60px -30px rgba(0,0,0,.8);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 36s linear infinite;
}
.marquee__seq {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 0.9rem 0;
}
.marquee__seq i { color: var(--ink-1); padding-inline: 1.1rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTIONS — shared
   ========================================================================== */
.section { padding: clamp(5rem, 11vw, 9rem) 0; position: relative; }

.label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-bottom: 1.5rem;
}
.label--onblue { color: rgba(255,255,255,.85); }

.h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}

.section-intro {
  max-width: 40rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--sd, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  background: linear-gradient(180deg, #191b1d, var(--ink-1));
}
.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.split__left { position: sticky; top: 7rem; }

.giant {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--paper);
}
.giant__eq {
  color: var(--sage);
  font-size: 0.55em;
  display: inline-block;
  transform: translateY(-0.1em);
}

.split__right p { margin-bottom: 1.4rem; color: var(--muted); }
.split__right p strong { color: var(--paper); }
.split__right .lead {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: var(--paper);
  font-weight: 500;
}
.split__right em { color: var(--blue-bright); font-style: italic; }

.pull {
  margin-top: 2.4rem;
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--blue);
  background: linear-gradient(90deg, rgba(64,110,142,.12), transparent 70%);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--paper);
}

/* ==========================================================================
   MISSION
   ========================================================================== */
.mission { background: var(--ink-1); }
.mission__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.mcard {
  grid-column: span 2;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.mcard:nth-child(4) { grid-column: 2 / span 2; }
.mcard--wide { grid-column: 4 / span 2; }
.mcard:hover { transform: translateY(-6px); border-color: rgba(111, 163, 199, 0.45); background: #262a2d; }
.mcard__num {
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(111, 163, 199, 0.5);
  display: block;
  margin-bottom: 1rem;
  transition: color .45s ease;
}
.mcard:hover .mcard__num { color: rgba(111, 163, 199, 0.30); }
.mcard h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.mcard p { color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   WHAT WE CREATE
   ========================================================================== */
.create { background: linear-gradient(180deg, var(--ink-1), #1a1c1e); }
.bigq {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  max-width: 52rem;
  margin: 1.6rem 0 3.2rem;
}
.topics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.9rem;
}
.topic {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(35, 37, 39, 0.7);
  padding: 1.5rem 1.3rem 1.2rem;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  cursor: default;
}
.topic:hover { transform: translateY(-4px); border-color: rgba(111,163,199,.5); }
.topic__i {
  display: block;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 0.8rem;
}
/* pointer spotlight */
.spot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(111, 163, 199, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.spot:hover::before { opacity: 1; }

/* ==========================================================================
   PEOPLE
   ========================================================================== */
.people { background: #1a1c1e; overflow: hidden; }

/* --- conversation circle -------------------------------------------------- */
.circle {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1;
  margin: 2.2rem auto 0;
}
.circle__ring {
  position: absolute;
  left: 50%; top: 50%;
  translate: -50% -50%;
  border: 1px dashed rgba(111, 163, 199, 0.30);
  border-radius: 50%;
  animation: ringspin 140s linear infinite;
}
@keyframes ringspin { to { transform: rotate(360deg); } }

.circle__center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 39%;
  max-width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.2rem;
  background: radial-gradient(circle at 50% 32%, rgba(64, 110, 142, 0.30), rgba(64, 110, 142, 0.07) 72%);
  border: 1px solid rgba(111, 163, 199, 0.28);
  animation: centerpulse 7s ease-in-out infinite;
}
@keyframes centerpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(64, 110, 142, 0); }
  50% { box-shadow: 0 0 55px 0 rgba(64, 110, 142, 0.28); }
}
.circle__bang {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--blue-bright);
}
.circle__word {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin: 0;
}
.circle__desc {
  display: none;
  font-family: var(--body);
  font-size: clamp(0.85rem, 1.6vw, 0.98rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--paper);
  margin: 0;
}
.circle.hot .circle__word { display: none; }
.circle.hot .circle__desc { display: block; }

.orbit { list-style: none; position: absolute; inset: 0; margin: 0; padding: 0; }
.orbit__item {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(0.8rem, 1.6vw, 1.15rem);
  letter-spacing: 0.04em;
  color: var(--paper);
  white-space: nowrap;
  cursor: default;
  padding: 0.3rem 0.5rem;
  transition: color .25s, scale .3s ease;
  will-change: scale;
}
.orbit__item:hover,
.orbit__item:focus-visible {
  color: var(--blue-bright);
  scale: 1.28;
  z-index: 2;
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.roles__note {
  margin-top: 2.4rem;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   COMMUNITY BAND
   ========================================================================== */
.band {
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, var(--blue-deep), var(--blue) 65%);
  color: #fff;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
  overflow: hidden;
}
.band::after {
  content: '!';
  position: absolute;
  font-family: var(--display);
  font-size: 42rem;
  line-height: 0.8;
  right: -2rem;
  bottom: -8rem;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  transform-origin: 55% 82%;
  animation: bangSway 12s ease-in-out infinite alternate;
}
@keyframes bangSway {
  from { transform: rotate(-2deg); }
  to { transform: rotate(2.4deg); }
}
.band__inner { position: relative; z-index: 1; }
.band__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  margin-bottom: 2.2rem;
}
.band__pills { display: flex; flex-wrap: wrap; gap: 0.8rem; max-width: 46rem; }
.pill {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(2px);
  transition: background .3s, color .3s, transform .3s, border-color .3s;
  cursor: default;
}
.pill:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--blue-deep);
  transform: translateY(-3px);
}
.band__closer {
  margin-top: 2.6rem;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: rgba(255,255,255,.82);
}
.band__closer strong { color: #fff; font-weight: 700; }

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */
.philosophy {
  background: linear-gradient(180deg, #17181a, var(--ink-1) 30%);
  text-align: left;
}
.scrollfill {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.02;
  max-width: 20ch;
  margin-bottom: 4rem;
}
.scrollfill span {
  color: rgba(242, 241, 237, 0.16);
  transition: color 0.5s ease;
}
.scrollfill span.on { color: var(--paper); }
.scrollfill span.sf-hl.on { color: var(--blue-bright); }

.questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.q {
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
}
.q--no { background: var(--ink-2); }
.q--yes {
  background: linear-gradient(135deg, rgba(64,110,142,.28), rgba(64,110,142,.10));
  border-color: rgba(111, 163, 199, 0.4);
}
.q__tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--muted);
}
.q--no .q__tag { color: var(--orange); }
.q--yes .q__tag { color: var(--sage); }
.q__text {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
}
.q--no .q__text { color: var(--muted); }

.strike { position: relative; }
.strike::after {
  content: '';
  position: absolute;
  left: 0;
  top: 55%;
  height: 2.5px;
  width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
.q--no.in .strike::after { transform: scaleX(1); }

.philosophy__closer { max-width: 44rem; color: var(--muted); font-size: 1.1rem; }
.philosophy__closer strong { display: block; margin-top: 1rem; font-size: 1.2rem; }

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners { background: var(--ink-1); }
.pgrid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.4rem;
  margin-top: 3rem;
  align-items: start;
}
.pcard {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s;
}
.pcard:hover { transform: translateY(-5px); border-color: rgba(111,163,199,.4); }
.pcard--feature {
  background: linear-gradient(150deg, #28425466, #23252700 55%), var(--ink-2);
  border-color: rgba(111, 163, 199, 0.35);
}
.pcard__type {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 1.1rem;
}
.pcard--feature .pcard__type { color: var(--orange); }
.pcard__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.02;
  margin-bottom: 1.2rem;
}
.pcard__desc { color: var(--muted); margin-bottom: 1.6rem; }
.pcard__list { list-style: none; }
.pcard__list li {
  padding: 0.8rem 0 0.8rem 1.9rem;
  border-top: 1px solid var(--line);
  position: relative;
  font-weight: 500;
  font-size: 0.98rem;
}
.pcard__list li::before {
  content: '!';
  position: absolute;
  left: 0.35rem;
  font-family: var(--display);
  color: var(--blue-bright);
}

.journey { margin-block: 0.4rem 1.6rem; }
.journey__eg { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.2rem; }
.journey__eg strong { color: var(--paper); }
.journey__steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.journey__steps li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(23, 24, 26, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  font-weight: 500;
  font-size: 0.97rem;
  opacity: 0.25;
  transform: translateX(-12px);
  transition: opacity .6s ease, transform .6s cubic-bezier(0.16,1,0.3,1), border-color .6s, background .6s;
}
.journey__steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--sage);
  min-width: 1.6rem;
}
.journey__steps li.lit { opacity: 1; transform: none; }
.journey__steps .journey__brand {
  background: linear-gradient(90deg, rgba(64,110,142,.4), rgba(64,110,142,.15));
  border-color: rgba(111, 163, 199, 0.55);
  font-weight: 700;
}
.journey__steps .journey__brand::before { content: '!'; color: var(--orange); font-size: 1.1rem; }

.pcard__result {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  font-size: 1.05rem;
  color: var(--paper);
  font-weight: 500;
}
.pcard__result em { color: var(--blue-bright); font-style: italic; }

/* ==========================================================================
   CHANNELS
   ========================================================================== */
.channels { background: linear-gradient(180deg, var(--ink-1), #1a1c1e); }
.chgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.chcard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s;
}
.chcard:hover { transform: translateY(-6px); border-color: rgba(111,163,199,.5); }
.chcard svg {
  width: 34px; height: 34px;
  fill: var(--blue-bright);
  margin-bottom: 1.2rem;
  transition: transform .35s ease, fill .35s;
}
.chcard:hover svg { transform: scale(1.15); fill: var(--paper); }
.chcard__name {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.chcard__handle { color: var(--muted); font-size: 0.92rem; }
.channels__note {
  margin-top: 2.6rem;
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.08rem;
}

/* ==========================================================================
   FINALE
   ========================================================================== */
.finale {
  position: relative;
  padding: clamp(6rem, 13vw, 11rem) 0;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 50% 110%, rgba(64,110,142,.22), transparent 65%),
    linear-gradient(180deg, #1a1c1e, var(--ink-0));
  text-align: center;
}
.finale__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.finale__inner { position: relative; z-index: 2; }
.finale .label { margin-bottom: 2rem; }
.finale__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--muted);
}
.finale__punch {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.05;
  margin-top: 0.6rem;
  color: var(--paper);
}
.finale__vision {
  max-width: 42rem;
  margin: 2.2rem auto 0;
  color: var(--muted);
}
.finale__cta { margin-top: 3rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--ink-1); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__right {
  position: sticky;
  top: 6.5rem;
  text-align: center;
}
.mielie {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 340 / 470;
  margin-inline: auto;
  display: block;
}
.mielie__caption {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form { margin-top: 2rem; }

.who { border: 0; padding: 0; margin: 0 0 1.6rem; }
.who__legend {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 1rem;
}
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.who__card {
  position: relative;
  display: block;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem 1.1rem 2.4rem;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .25s ease;
}
.who__card:hover { transform: translateY(-3px); border-color: rgba(111, 163, 199, 0.45); }
.who__card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.who__i {
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(111, 163, 199, 0.4);
  transition: color .25s, transform .25s ease;
}
.who__name {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.who__desc {
  display: block;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
}
.who__card:has(input:checked) {
  border-color: var(--blue-bright);
  background: linear-gradient(135deg, rgba(64, 110, 142, 0.28), rgba(64, 110, 142, 0.10));
}
.who__card:has(input:checked) .who__i {
  color: var(--orange);
  transform: scale(1.25);
}
.who__card:has(input:focus-visible) { border-color: var(--blue-bright); }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.field { margin-bottom: 0.9rem; }
.field label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  transition: border-color .25s, box-shadow .25s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(166, 169, 171, 0.55); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(64, 110, 142, 0.25);
}

.form__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.form__foot .btn[disabled] { opacity: 0.55; pointer-events: none; }
.form__status { font-size: 0.95rem; color: var(--sage); margin: 0; min-height: 1.4em; }
.form__status.err { color: var(--orange); }

.footer__mail {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--blue-bright);
  font-size: 0.95rem;
}
.footer__mail:hover { text-decoration: underline; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-0);
  padding-top: 4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand p { color: var(--muted); margin-top: 1.1rem; font-size: 0.95rem; }
.footer__nav, .footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.footer__nav a:hover, .footer__social a:hover { color: var(--blue-bright); }
.footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer__palette { display: flex; gap: 0.45rem; }
.footer__palette i {
  width: 14px; height: 14px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,.12);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
.bp { display: none; }

@media (min-width: 861px) {
  .bp { display: block; }
}

@media (max-width: 980px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__right { position: static; margin-top: 1rem; }
  .split { grid-template-columns: 1fr; }
  .split__left { position: static; }
  .giant br { display: none; }
  .giant__eq { margin-inline: 0.2em; }
  .mission__grid { grid-template-columns: repeat(2, 1fr); }
  .mcard, .mcard:nth-child(4), .mcard--wide { grid-column: span 1; }
  .mcard--wide { grid-column: span 2; }
  .pgrid { grid-template-columns: 1fr; }
  .chgrid { grid-template-columns: 1fr; }
  .questions { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(23, 24, 26, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    font-size: 1.3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }
  .nav__links.open { opacity: 1; pointer-events: auto; }
  .nav__burger { display: flex; }
  .band::after { font-size: 24rem; bottom: -4rem; }
  .hero__hint { display: none; }
}

@media (max-width: 560px) {
  .mission__grid { grid-template-columns: 1fr; }
  .mcard--wide { grid-column: span 1; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 0.8rem; }
  .orbit__item { white-space: normal; text-align: center; max-width: 7rem; font-size: 0.76rem; }
  .circle__center { width: 47%; }
  .circle__bang { font-size: 1.6rem; }
  .who__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__title .word, .reveal-load, .bang-drop { animation-duration: 0.001s; animation-delay: 0s; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .journey__steps li { opacity: 1; transform: none; transition: none; }
  .scrollfill span { color: var(--paper); }
  .scrollfill span.sf-hl { color: var(--blue-bright); }
  .kicker-dot, .hero__scroll-line { animation: none; }
  .band::after, .circle__ring, .circle__center { animation: none; }
  .orbit__item { transition: color .25s; }
}
