/* Zeal Digital one-pager */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--zeal-paper); color: var(--zeal-ink); font-family: var(--font-sans); }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--zeal-teal); color: #fff; }

/* --------- accent tokens, controlled by data-accent --------- */
:root {
  --accent: var(--zeal-teal);
  --accent-mid: var(--zeal-teal-mid);
  --accent-pale: var(--zeal-teal-pale);
  --accent-second: var(--zeal-lime);
  --accent-second-ink: #36400A;
}
[data-accent="teal"] {
  --accent-second: var(--zeal-teal);
  --accent-second-ink: #fff;
}
[data-accent="teal-lime"] {
  --accent-second: var(--zeal-lime);
  --accent-second-ink: #36400A;
}
[data-accent="teal-pink"] {
  --accent-second: var(--zeal-pink);
  --accent-second-ink: #7A1E26;
}

em.em { font-style: normal; color: var(--zeal-teal); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap--wide { max-width: 1360px; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--zeal-teal);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}
.eyebrow.no-bar::before { display: none; }
.eyebrow--muted { color: var(--zeal-gray); }
.eyebrow--lime { color: var(--zeal-lime); }

/* ============ NAV ============ */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245, 241, 234, 0.78);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.25s ease;
}
nav.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 32px; max-width: none; }
nav.top .brand { display: flex; align-items: center; gap: 14px; }
nav.top .brand img { height: 26px; }
nav.top .brand a { display: inline-flex; align-items: center; }
nav.top .brand .mark {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--zeal-teal); padding: 4px 10px; border: 1px solid var(--zeal-teal); border-radius: 999px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
nav.top .brand .mark:hover { background: var(--zeal-teal); color: #fff; }
nav.top ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; font-size: 14px; font-weight: 500; }
nav.top ul a { color: var(--zeal-gray); transition: color 0.15s; }
nav.top ul a:hover { color: var(--zeal-teal); }
nav.top .right { display: flex; align-items: center; gap: 20px; }
nav.top .lang { font-size: 12px; color: var(--zeal-gray-mid); letter-spacing: 0.06em; }
nav.top .lang b { color: var(--zeal-ink); font-weight: 700; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; letter-spacing: 0.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: all 0.18s ease; font-family: inherit;
}
.btn--primary { background: var(--zeal-teal); color: #fff; }
.btn--primary:hover { background: var(--zeal-teal-mid); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,105,113,0.28); }
.btn--ghost { background: transparent; color: var(--zeal-ink); border-color: rgba(0,0,0,0.16); }
.btn--ghost:hover { border-color: var(--zeal-teal); color: var(--zeal-teal); }
.btn--light { background: #fff; color: var(--zeal-teal); }
.btn--light:hover { background: var(--zeal-lime); color: #36400A; }
.btn svg { width: 14px; height: 14px; }

/* ============ HERO ============ */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.hero h1 {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 24px 0 24px;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--zeal-teal); }
.hero p.lead {
  font-size: 21px; line-height: 1.5;
  color: var(--zeal-gray);
  max-width: 500px; margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__meta {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.08);
}
.hero__meta .k { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--zeal-ink); line-height: 1; }
.hero__meta .k em { color: var(--zeal-teal); font-style: normal; }
.hero__meta .v { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--zeal-gray-mid); font-weight: 600; margin-top: 8px; }

.hero__art { position: relative; }
.hero__art img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-painterly);
}
.hero__float {
  position: absolute; bottom: 32px; left: -28px;
  background: #fff; border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow-2);
  display: flex; align-items: center; gap: 16px;
  max-width: 290px;
}
.hero__float .dot {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--zeal-teal-pale); color: var(--zeal-teal);
  display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.hero__float p { font-size: 13px; color: var(--zeal-gray); line-height: 1.4; margin: 0; }
.hero__float p b { color: var(--zeal-ink); font-weight: 700; display: block; font-size: 14px; margin-bottom: 2px; }
.hero__badge {
  position: absolute; top: 28px; right: -20px;
  background: var(--accent-second);
  color: var(--accent-second-ink);
  padding: 10px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: var(--shadow-2);
  transform: rotate(3deg);
}

/* ============ SECTION HEAD ============ */
.section__head {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px;
  align-items: flex-end;
  margin-bottom: 64px;
}
.section__head h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02; letter-spacing: -0.025em;
  font-weight: 800; margin: 16px 0 0;
  text-wrap: balance; max-width: 16ch;
}
.section__head h2 em { font-style: normal; color: var(--zeal-teal); }
.section__head .kicker {
  font-size: 18px; color: var(--zeal-gray); line-height: 1.55;
  max-width: 420px; margin: 0;
}

/* ============ WHO WE ARE ============ */
.who { padding: 120px 0 100px; }
.who__split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.who__card {
  border-radius: 24px;
  padding: 40px 36px 44px;
  position: relative;
  transition: transform 0.2s ease;
}
.who__card:hover { transform: translateY(-4px); }
.who__card--sourcing { background: #fff; border: 1px solid rgba(0,0,0,0.08); }
.who__card--digital { background: var(--zeal-ink); color: #fff; }

.who__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--zeal-teal);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--zeal-teal);
}
.who__card--digital .who__label {
  color: var(--zeal-lime); border-color: var(--zeal-lime);
}
.who__card h3 {
  font-size: 38px; line-height: 1.02; letter-spacing: -0.02em;
  font-weight: 800; margin: 20px 0 16px;
}
.who__card h3 em { color: var(--zeal-teal); font-style: normal; }
.who__card--digital h3 em { color: var(--zeal-lime); }
.who__card > p { font-size: 16px; line-height: 1.55; color: var(--zeal-gray); margin: 0 0 28px; max-width: 44ch; }
.who__card--digital > p { color: rgba(255,255,255,0.72); }

.who__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.who__list li {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 15px; font-weight: 500;
}
.who__card--digital .who__list li { border-top-color: rgba(255,255,255,0.14); }
.who__list li:first-child { border-top: 0; }
.who__list .n {
  font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 600;
  color: var(--zeal-gray-mid); padding-top: 3px; letter-spacing: 0.02em;
}
.who__card--digital .who__list .n { color: rgba(255,255,255,0.4); }
.who__list .t { line-height: 1.45; color: var(--zeal-ink); }
.who__card--digital .who__list .t { color: #fff; }
.who__list .t small {
  display: block; font-size: 13px; color: var(--zeal-gray);
  font-weight: 400; margin-top: 3px;
}
.who__card--digital .who__list .t small { color: rgba(255,255,255,0.55); }

/* ============ MARQUEE ============ */
.marquee {
  padding: 48px 0 56px;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.marquee__label {
  text-align: center;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--zeal-gray); font-weight: 600; margin-bottom: 32px;
}
.marquee__track {
  display: flex; gap: 72px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee__track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__item {
  font-size: 24px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--zeal-gray-mid);
  opacity: 0.78;
  display: flex; align-items: center; gap: 14px;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.marquee__item svg { width: 28px; height: 28px; flex-shrink: 0; }
.marquee__item--serif { font-family: var(--font-display-serif); font-weight: 500; font-size: 28px; letter-spacing: 0; }
.marquee__item--thin { font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; font-size: 18px; }
.marquee__item--mono { font-family: "JetBrains Mono", monospace; font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.marquee__item--caps { font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 18px; }

/* ============ CHALLENGE ============ */
.challenge { padding: 140px 0 120px; background: #fff; }
.challenge__head { max-width: 900px; margin-bottom: 72px; }
.challenge__head .eyebrow { margin-bottom: 24px; }
.challenge__head h2 {
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.02; letter-spacing: -0.025em;
  font-weight: 800; margin: 0 0 24px;
  text-wrap: balance;
}
.challenge__head h2 em { font-style: normal; color: var(--zeal-teal); }
.challenge__head p { font-size: 20px; line-height: 1.55; color: var(--zeal-gray); max-width: 640px; margin: 0; }

.diagram {
  background: var(--zeal-paper);
  border-radius: 28px;
  padding: 56px 48px 48px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}
.diagram__legend {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px; flex-wrap: wrap; gap: 20px;
}
.diagram__legend .t {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--zeal-gray-mid);
}
.diagram__legend .keys { display: flex; gap: 20px; flex-wrap: wrap; }
.diagram__legend .key {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600; color: var(--zeal-gray);
}
.diagram__legend .key .sw {
  width: 12px; height: 12px; border-radius: 3px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.pain {
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px; padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.pain .n {
  font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 700;
  color: var(--zeal-red); letter-spacing: 0.06em;
}
.pain h4 { font-size: 16px; font-weight: 700; line-height: 1.25; margin: 0; color: var(--zeal-ink); }
.pain p { font-size: 13px; line-height: 1.5; color: var(--zeal-gray); margin: 0; }

/* ============ BRIDGE IMAGE BAND ============ */
.bridge {
  padding: 120px 0;
  background: var(--zeal-paper);
  position: relative;
}
.bridge__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.bridge__art { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-painterly); aspect-ratio: 3/2; }
.bridge__art img { width: 100%; height: 100%; object-fit: cover; }
.bridge h3 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em; font-weight: 800;
  margin: 16px 0 24px;
  text-wrap: balance;
}
.bridge h3 em { font-style: normal; color: var(--zeal-teal); }
.bridge p { font-size: 18px; line-height: 1.6; color: var(--zeal-gray); margin: 0 0 20px; max-width: 520px; }

/* ============ SMART SECTIONS ============ */
.smart { padding: 140px 0 120px; }
.smart--dark { background: var(--zeal-ink); color: #fff; }
.smart--dark .section__head h2 { color: #fff; }
.smart--dark .section__head h2 em { color: var(--zeal-lime); }
.smart--dark .section__head .kicker { color: rgba(255,255,255,0.72); }
.smart--dark .section__head .eyebrow { color: var(--zeal-lime); }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row--flip { grid-template-columns: 1fr 1fr; }
.feature-row h3 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.03; letter-spacing: -0.025em; font-weight: 800;
  margin: 18px 0 20px;
  text-wrap: balance; max-width: 14ch;
}
.feature-row h3 em { font-style: normal; color: var(--zeal-teal); }
.smart--dark .feature-row h3 em { color: var(--zeal-lime); }
.feature-row p.intro {
  font-size: 18px; line-height: 1.6;
  color: var(--zeal-gray); margin: 0 0 32px; max-width: 48ch;
}
.smart--dark .feature-row p.intro { color: rgba(255,255,255,0.72); }

.pillars { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pillars li {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.smart--dark .pillars li { border-top-color: rgba(255,255,255,0.14); }
.pillars .n {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--zeal-teal-pale); color: var(--zeal-teal);
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700;
}
.smart--dark .pillars .n { background: rgba(211,222,50,0.15); color: var(--zeal-lime); }
.pillars b { font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; letter-spacing: -0.005em; }
.pillars .d { font-size: 14px; line-height: 1.5; color: var(--zeal-gray); }
.smart--dark .pillars .d { color: rgba(255,255,255,0.65); }

/* ============ SMART SOLUTIONS CATALOG ============ */
.solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.solution {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.2s ease;
}
.smart:not(.smart--dark) .solution {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
.solution:hover { transform: translateY(-3px); border-color: var(--zeal-lime); }
.smart:not(.smart--dark) .solution:hover { border-color: var(--zeal-teal); }
.solution__head { display: flex; align-items: center; gap: 12px; }
.solution__num {
  font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 700;
  color: var(--zeal-lime); letter-spacing: 0.04em;
}
.smart:not(.smart--dark) .solution__num { color: var(--zeal-teal); }
.solution__tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  margin-left: auto;
}
.smart:not(.smart--dark) .solution__tag { color: var(--zeal-gray); background: var(--zeal-paper); }
.solution h4 { font-size: 22px; font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; margin: 0; }
.solution p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.62); margin: 0; }
.smart:not(.smart--dark) .solution p { color: var(--zeal-gray); }
.solution__conn {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px;
}
.solution__conn span {
  font-family: "JetBrains Mono", monospace; font-size: 10px;
  letter-spacing: 0.04em; padding: 3px 8px;
  border-radius: 4px; background: rgba(211,222,50,0.12); color: var(--zeal-lime);
}
.smart:not(.smart--dark) .solution__conn span {
  background: var(--zeal-teal-pale); color: var(--zeal-teal);
}

/* ============ INTEGRATIONS TAG CLOUD ============ */
.integrations {
  padding: 100px 0;
  background: var(--zeal-paper);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.integrations__grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 72px; align-items: center; }
.integrations h3 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05; letter-spacing: -0.02em;
  font-weight: 800; margin: 14px 0 16px;
  text-wrap: balance;
}
.integrations h3 em { font-style: normal; color: var(--zeal-teal); }
.integrations p { font-size: 16px; line-height: 1.55; color: var(--zeal-gray); margin: 0; max-width: 36ch; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 12px 20px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(0,0,0,0.1);
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  color: var(--zeal-ink);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--zeal-teal); color: var(--zeal-teal); transform: translateY(-2px); }
.chip--mono { font-family: "JetBrains Mono", monospace; font-weight: 600; letter-spacing: -0.01em; }

/* ============ CTA ============ */
.cta {
  background: var(--zeal-teal); color: #fff;
  padding: 120px 0 110px;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: url('assets/textures/stucco-pale-teal.jpg') center/cover;
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.cta .wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.cta h2 {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1; letter-spacing: -0.025em;
  margin: 20px 0 24px; font-weight: 800;
  text-wrap: balance;
}
.cta h2 em { font-style: normal; color: var(--zeal-lime); }
.cta p { font-size: 19px; color: rgba(255,255,255,0.78); margin: 0 0 36px; line-height: 1.55; max-width: 520px; }
.cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .btn--ghost { border-color: rgba(255,255,255,0.3); color: #fff; }
.cta .btn--ghost:hover { border-color: var(--zeal-lime); color: var(--zeal-lime); }

.cta__card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px; padding: 32px;
}
.cta__card h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 22px; opacity: 0.75; font-weight: 700; color: var(--zeal-lime); }
.cta__office {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.cta__office:last-child { border: 0; padding-bottom: 0; }
.cta__office b { font-size: 16px; font-weight: 700; letter-spacing: -0.005em; }
.cta__office span { font-size: 12px; opacity: 0.65; letter-spacing: 0.04em; }

/* ============ FOOTER ============ */
footer { background: var(--zeal-ink); color: rgba(255,255,255,0.7); padding: 72px 0 40px; }
footer .wrap {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
}
footer h5 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin: 0 0 20px; font-weight: 700; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
footer ul a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
footer ul a:hover { color: var(--zeal-lime); }
footer img.flogo { height: 28px; margin-bottom: 20px; }
footer .desc { font-size: 14px; line-height: 1.55; max-width: 34ch; margin: 0 0 24px; color: rgba(255,255,255,0.6); }
footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 56px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.45);
  grid-template-columns: unset;
}
footer .bottom span { letter-spacing: 0.04em; }

/* ============ FADE-IN ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ TWEAKS PANEL ============ */
.tweaks {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: #fff; border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 20px 22px;
  width: 280px;
  display: none;
  font-family: var(--font-sans);
}
.tweaks.on { display: block; }
.tweaks h6 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--zeal-gray); margin: 0 0 14px; font-weight: 700; }
.tweaks__group { margin-bottom: 18px; }
.tweaks__group:last-child { margin-bottom: 0; }
.tweaks__label { font-size: 11px; font-weight: 600; color: var(--zeal-ink); margin-bottom: 8px; letter-spacing: 0.03em; text-transform: uppercase; }
.tweaks__row { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks__btn {
  flex: 1 1 auto; min-width: 0;
  padding: 8px 10px; border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1); background: var(--zeal-paper);
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
  cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all 0.12s;
}
.tweaks__btn:hover { border-color: var(--zeal-teal); }
.tweaks__btn.sel { background: var(--zeal-ink); color: #fff; border-color: var(--zeal-ink); }
.tweaks__sw { width: 12px; height: 12px; border-radius: 4px; }

/* Responsive-ish */
@media (max-width: 1100px) {
  nav.top ul { gap: 22px; }
  nav.top ul li:nth-child(2) { display: none; } /* hide "The challenge" first */
}
@media (max-width: 960px) {
  .hero__grid, .bridge__grid, .feature-row, .integrations__grid, .cta .wrap, .section__head, .who__split { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid, .solutions { grid-template-columns: repeat(2, 1fr); }
  footer .wrap { grid-template-columns: 1fr 1fr; }
  nav.top ul { display: none; }
}
