/* ============================================================
   KAIXCEL — Driving Growth through AI Solutions
   Light theme on white. Brand palette:
   #001f17 ink · #00493a pine · #00a385 teal · #d7d7a8 sage

   Two gradients carry the brand:
   --grad      vibrant, used as a fill with dark text on top
   --grad-deep deepened, used for clipped text and fine details
               (the sage end of --grad is invisible on white)
   ============================================================ */

:root {
  --ink: #ffffff;              /* page background */
  --pine: #00493a;
  --teal: #00a385;
  --teal-ink: #00755e;         /* teal darkened for text/icons on white */
  --sage: #d7d7a8;

  --ink-2: #f3f8f4;            /* elevated surface */
  --teal-soft: rgba(0, 163, 133, 0.08);
  --line: rgba(0, 73, 58, 0.22);
  --line-faint: rgba(0, 73, 58, 0.10);

  --text: #33473d;             /* body */
  --text-dim: #5d7268;
  --heading: #001f17;

  /* Vibrant brand gradient — for fills that carry dark text on top */
  --grad: linear-gradient(115deg, #00a385 0%, #7ec89a 48%, #d7d7a8 100%);
  /* Deepened gradient — for clipped text and fine details on white */
  --grad-deep: linear-gradient(115deg, #00a385 0%, #007a63 55%, #00493a 100%);

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 18px;
  --shadow: 0 22px 50px -28px rgba(0, 31, 23, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}
.container--narrow { width: min(820px, 92vw); }

::selection { background: var(--teal); color: var(--ink); }

/* ---------- Shared bits ---------- */

.grad-text {
  background: var(--grad-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin-bottom: 1rem;
}

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.section--panel {
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(0, 163, 133, 0.10), transparent 60%),
    var(--ink-2);
  border-block: 1px solid var(--line-faint);
}

.section__title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  max-width: 22ch;
  margin-bottom: 1.1rem;
}

.section__sub {
  color: var(--text-dim);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad);
  color: var(--heading);
  box-shadow: 0 10px 26px -12px rgba(0, 163, 133, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(0, 163, 133, 0.65);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--teal-ink);
  background: rgba(0, 163, 133, 0.06);
}
.btn--ghost:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  transform: translateY(-2px);
}

.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background-color 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-faint);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1rem;
}

.nav__logo img { width: clamp(150px, 16vw, 190px); height: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__links > a:not(.btn) {
  color: var(--text);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.25s;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--heading); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(8rem, 16vh, 11rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}
.orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0, 163, 133, 0.16), transparent 65%);
  top: -140px; right: -80px;
}
.orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0, 163, 133, 0.12), transparent 65%);
  bottom: -120px; left: -120px;
}
.orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(215, 215, 168, 0.42), transparent 60%);
  top: 30%; left: 38%;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 73, 58, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 73, 58, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(75% 65% at 50% 35%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 35%, black 30%, transparent 75%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.5rem, 5.6vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 50ch;
  margin-bottom: 2.2rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  justify-content: start;
}
.hero__stats dt {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--heading);
}
.hero__stats dd {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Hero dashboard visual */

.hero__visual { position: relative; }

.dash {
  position: relative;
  display: grid;
  gap: 1rem;
  transform: rotate(-1.2deg);
}

.dash__card {
  background: linear-gradient(160deg, #ffffff, var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.dash__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.dash__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.dash__big {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.spark { width: 100%; height: 72px; }
.spark__line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawline 2.2s 0.5s var(--ease) forwards;
}
@keyframes drawline { to { stroke-dashoffset: 0; } }

.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--teal-soft);
  color: var(--teal-ink);
}
.chip--up { color: var(--teal-ink); }

.chip--float {
  position: absolute;
  box-shadow: var(--shadow);
  background: #ffffff;
  animation: floaty 5.5s ease-in-out infinite;
}
.chip--f1 { top: -16px; left: -22px; }
.chip--f2 { bottom: -14px; right: -14px; animation-delay: -2.7s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.alloc { display: grid; gap: 0.65rem; margin-top: 0.9rem; }
.alloc__row {
  display: grid;
  grid-template-columns: 56px 1fr 38px;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
}
.alloc__row span { color: var(--text-dim); }
.alloc__row b { color: var(--heading); font-weight: 600; text-align: right; }
.alloc__bar {
  height: 8px;
  background: rgba(0, 73, 58, 0.10);
  border-radius: 99px;
  overflow: hidden;
}
.alloc__bar i {
  display: block;
  height: 100%;
  width: var(--w);
  background: var(--grad-deep);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  animation: growbar 1.4s 0.8s var(--ease) forwards;
}
@keyframes growbar { to { transform: scaleX(1); } }

.dash__card--signal {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding-block: 1.1rem;
}
.dash__card--signal p { font-size: 0.9rem; color: var(--text); margin-top: 0.15rem; }
.dash__card--signal b { color: var(--heading); }

.pulse {
  flex: 0 0 10px;
  width: 10px; height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(0, 163, 133, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 163, 133, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(0, 163, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 163, 133, 0); }
}

/* ---------- Platforms strip ---------- */

.platforms {
  border-block: 1px solid var(--line-faint);
  padding: 1.4rem 0;
  background: var(--ink-2);
}
.platforms__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.platforms__label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.platforms ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
  list-style: none;
}
.platforms li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-dim);
  transition: color 0.3s;
}
.platforms li:hover { color: var(--heading); }

/* ---------- Services pillars ----------
   Full-width blocks rather than a card grid: the narrative runs long and
   varies a lot in length between pillars, which a multi-column grid would
   ragged out badly. */

.pillars {
  display: grid;
  gap: 1.5rem;
}

.pillar {
  position: relative;
  background: linear-gradient(165deg, #ffffff, var(--ink-2));
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3.4vw, 2.8rem);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 260px at var(--mx, 50%) var(--my, 0%), rgba(0, 163, 133, 0.10), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--shadow); }
.pillar:hover::before { opacity: 1; }

.pillar > * { position: relative; }

.pillar__head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.pillar__icon {
  width: 60px; height: 60px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--teal-soft);
  border: 1px solid var(--line);
  color: var(--teal-ink);
}
.pillar__icon svg { width: 28px; height: 28px; }

.pillar__num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin-bottom: 0.25rem;
}
.pillar h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }

.pillar__body { max-width: 74ch; }
.pillar__body p {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
}
.pillar__body p:last-child { margin-bottom: 0; }

.pillar__lead {
  font-family: var(--font-head);
  font-size: 1.06rem !important;
  font-weight: 500;
  line-height: 1.5;
  color: var(--heading) !important;
  margin-bottom: 1.1rem !important;
}
.pillar__close {
  color: var(--heading) !important;
  font-weight: 500;
}

.pillar__questions {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
  border-left: 2px solid transparent;
  border-image: var(--grad-deep) 1;
}
.pillar__questions li {
  font-size: 0.93rem;
  color: var(--text);
}

.pillar__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem 1.4rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-faint);
}
.pillar__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.86rem;
  color: var(--text);
}
.pillar__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.42em;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--teal-ink);
  border-bottom: 2px solid var(--teal-ink);
  transform: rotate(-45deg);
}

/* ---------- Edge ---------- */

.edge {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.edge__list { list-style: none; display: grid; gap: 1.1rem; margin-top: 0.5rem; }
.edge__list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.97rem;
  color: var(--text-dim);
}
.edge__list b { color: var(--heading); font-weight: 600; }
.edge__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.34em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(var(--ink-2), var(--ink-2)) padding-box,
    var(--grad-deep) border-box;
  border: 1.5px solid transparent;
}
.edge__list li::after {
  content: "";
  position: absolute;
  left: 5px; top: calc(0.34em + 5px);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-deep);
}

/* Loop visual */

.loop {
  position: relative;
  width: min(380px, 80vw);
  aspect-ratio: 1;
  margin-inline: auto;
}
.loop__ring {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 73, 58, 0.3);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loop__core {
  position: absolute;
  width: 108px; height: 108px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 28px;
  /* stays dark: it frames the light K mark, which needs a dark backing */
  background: linear-gradient(160deg, #00493a, #001f17);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px -12px rgba(0, 73, 58, 0.45);
}
.loop__core img { width: 52px; height: auto; }

.loop__node {
  position: absolute;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heading);
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
/* centering uses the `translate` property so the floaty transform animation composes with it */
.loop__node--1 { top: 2%; left: 50%; translate: -50% 0; }
.loop__node--2 { top: 50%; right: -4%; translate: 0 -50%; animation-delay: -1.5s; }
.loop__node--3 { bottom: 2%; left: 50%; translate: -50% 0; animation-delay: -3s; }
.loop__node--4 { top: 50%; left: -4%; translate: 0 -50%; animation-delay: -4.5s; }

/* ---------- Process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-faint);
  background: linear-gradient(165deg, var(--ink-2), transparent);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.step:hover { transform: translateY(-5px); border-color: var(--line); }

.step__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
  display: block;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.91rem; color: var(--text-dim); }

/* ---------- Results ---------- */

.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.result {
  background: linear-gradient(165deg, #ffffff, var(--ink-2));
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.result:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }

.result__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-ink);
  border: 1px solid var(--line);
  background: var(--teal-soft);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.4rem;
}

.result__big {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  background: var(--grad-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.result__what { font-weight: 600; color: var(--heading); margin-bottom: 0.5rem; font-family: var(--font-head); font-size: 0.98rem; }
.result__how { font-size: 0.9rem; color: var(--text-dim); }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 0.9rem; }

.faq details {
  border: 1px solid var(--line-faint);
  border-radius: 14px;
  background: var(--ink-2);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq details[open] { border-color: var(--line); }

.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading);
}
.faq summary::-webkit-details-marker { display: none; }

.faq__icon {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--teal-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
.faq details[open] .faq__icon::after { transform: rotate(90deg); }

.faq details p {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.94rem;
  color: var(--text-dim);
  max-width: 65ch;
}

/* ---------- CTA band ---------- */

.cta-band {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(0, 163, 133, 0.12), transparent 65%),
    var(--ink-2);
  border-block: 1px solid var(--line-faint);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.9rem; }
.cta-band p { color: var(--text-dim); margin-bottom: 2rem; }

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__points { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 2rem; }
.contact__points li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text);
  font-size: 0.97rem;
}
.contact__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  border: 1px solid var(--line);
}
.contact__points li::after {
  content: "";
  position: absolute;
  left: 5px; top: calc(0.28em + 4px);
  width: 8px; height: 5px;
  border-left: 2px solid var(--teal-ink);
  border-bottom: 2px solid var(--teal-ink);
  transform: rotate(-45deg);
}

.contact__email {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--teal-ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.contact__email:hover { color: var(--heading); border-color: var(--heading); }

.form {
  background: linear-gradient(165deg, #ffffff, var(--ink-2));
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.1rem;
  box-shadow: var(--shadow);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.form label {
  display: grid;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heading);
}

.form input, .form select, .form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--heading);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form textarea { resize: vertical; min-height: 110px; }
.form input::placeholder, .form textarea::placeholder { color: rgba(93, 114, 104, 0.65); }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 163, 133, 0.18);
}
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--teal) 50%), linear-gradient(135deg, var(--teal) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.form select option { background: var(--ink-2); color: var(--heading); }

.form__hint {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: -0.1rem;
}
.form__hint b { font-weight: 600; color: var(--heading); }

/* Consent opt-in: two columns so the text wraps beside the box, and the
   shared .form input sizing (full width, padding) is undone for the box.
   Selector needs `label` to outrank `.form label` on the type/weight/colour. */
.form label.form__consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-dim);
  cursor: pointer;
  margin-top: 0.2rem;
}
.form__consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex: none;
  margin: 2px 0 0;
  padding: 0;
  border-radius: 5px;
  accent-color: var(--teal-ink);
  cursor: pointer;
}
.form__consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--teal-ink);
  outline-offset: 2px;
}

.form .btn { justify-self: start; margin-top: 0.3rem; }

.form__note { font-size: 0.85rem; color: var(--teal-ink); min-height: 1.2em; }
.form__note--error { color: #a3341f; }
.form__note--error a { color: inherit; text-decoration: underline; }

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Sent state: collapse the fields so the confirmation is all that remains,
   which also makes a double submission impossible. */
.form.is-sent > *:not(.form__note) { display: none; }
.form.is-sent {
  place-items: center;
  text-align: center;
  padding-block: clamp(2rem, 5vw, 3rem);
}
.form.is-sent .form__note {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--heading);
  max-width: 32ch;
}
.form.is-sent .form__note::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--teal-ink);
  background: var(--teal-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300755e' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 24px 24px no-repeat;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line-faint);
  background: var(--ink-2);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand img { width: min(230px, 60vw); margin-bottom: 0.9rem; }
.footer__brand p { font-size: 0.9rem; color: var(--text-dim); max-width: 34ch; }
.footer__slogan {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--heading) !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.8rem;
}

.footer__col { display: grid; gap: 0.6rem; align-content: start; }
.footer__col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin-bottom: 0.4rem;
}
.footer__col a {
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: color 0.25s;
  width: fit-content;
}
.footer__col a:hover { color: var(--heading); }

.footer__social { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid var(--line-faint);
  color: var(--text-dim);
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.footer__social a:hover { color: var(--teal-ink); border-color: var(--teal); transform: translateY(-2px); }
.footer__social svg { width: 17px; height: 17px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-faint);
  font-size: 0.83rem;
  color: var(--text-dim);
}
.footer__tagline { color: var(--text-dim); }

/* ---------- About page ---------- */

.nav__links > a.is-active { color: var(--heading); }
.nav__links > a.is-active::after { transform: scaleX(1); }

.page-hero {
  position: relative;
  padding: clamp(8rem, 16vh, 11rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.page-hero__inner { position: relative; max-width: 780px; }
.page-hero__title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.page-hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 54ch;
}

.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.page-hero--short { padding-bottom: clamp(1rem, 2vw, 1.5rem); }

/* ---------- Legal pages ---------- */

.legal { counter-reset: legal; }

.legal__meta {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.8;
  padding-bottom: 1.6rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid var(--line-faint);
}
.legal__meta strong { color: var(--heading); font-weight: 600; }

.legal__section { margin-bottom: 2.4rem; }

.legal__section h2 {
  counter-increment: legal;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  margin-bottom: 0.8rem;
  padding-left: 2.6rem;
  position: relative;
}
.legal__section h2::before {
  content: counter(legal);
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1.9rem;
  height: 1.9rem;
  padding: 0 0.4rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-soft);
  border: 1px solid var(--line);
  color: var(--teal-ink);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
}

.legal p,
.legal li {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}
.legal p:last-child, .legal li:last-child { margin-bottom: 0; }

.legal ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0 0 0.95rem;
  padding-left: 1.15rem;
  border-left: 2px solid transparent;
  border-image: var(--grad-deep) 1;
}
.legal ul li { margin-bottom: 0; }

.legal strong { color: var(--heading); font-weight: 600; }
.legal em { font-style: italic; }

.legal a {
  color: var(--teal-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--heading); }

.story p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.4rem;
  max-width: 65ch;
}
.story p:last-child { margin-bottom: 0; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.value {
  border-left: 2px solid transparent;
  border-image: var(--grad-deep) 1;
  padding: 0.4rem 0 0.4rem 1.4rem;
}
.value h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.value p { font-size: 0.92rem; color: var(--text-dim); }

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.member {
  background: linear-gradient(165deg, #ffffff, var(--ink-2));
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 1.9rem;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.member:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }

.member__avatar {
  width: 124px;
  height: 124px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  padding: 3px;
  background: var(--grad-deep);
  display: grid;
  place-items: center;
}
.member__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--ink-2);
}

.member h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.member__role {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-ink);
}

@media (max-width: 1020px) {
  .team { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 720px) {
  .team { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ============================================================
   FUNNEL PAGE (/strategy)
   ============================================================ */

/* Pulsating CTA — an expanding ring, killed by prefers-reduced-motion below */
.btn--pulse { animation: ctaPulse 2.6s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 10px 26px -12px rgba(0, 163, 133, 0.55),
                0 0 0 0 rgba(0, 163, 133, 0.42);
  }
  50% {
    box-shadow: 0 14px 32px -12px rgba(0, 163, 133, 0.65),
                0 0 0 16px rgba(0, 163, 133, 0);
  }
}
.btn--pulse:hover { animation-play-state: paused; }

/* Header / footer */

.funnel-nav {
  border-bottom: 1px solid var(--line-faint);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 90;
}
.funnel-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.funnel-nav img { width: clamp(140px, 15vw, 175px); height: auto; }
.funnel-nav__tag {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-ink);
  border: 1px solid var(--line);
  background: var(--teal-soft);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.funnel-foot {
  border-top: 1px solid var(--line-faint);
  background: var(--ink-2);
  padding-block: 1.5rem;
  font-size: 0.83rem;
  color: var(--text-dim);
}
.funnel-foot__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.funnel-foot a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 2px; }
.funnel-foot a:hover { color: var(--heading); }

/* Hook */

.fhero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.fhero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.fhero__title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.14;
  max-width: 15ch;
  margin-bottom: 1.3rem;
}
.fhero__sub {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  color: var(--text-dim);
  max-width: 52ch;
  margin-bottom: 1rem;
}
.fhero__cta { margin-top: 1.8rem; }
.fhero__note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 0.9rem;
}

/* Shared visualisation shell */

.viz {
  background: linear-gradient(165deg, #ffffff, var(--ink-2));
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.2rem;
  box-shadow: var(--shadow);
}
.viz__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.viz__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.viz__caption {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.9rem;
  line-height: 1.55;
}

.funnelviz { width: 100%; height: auto; display: block; }
.funnelviz__t {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  fill: #ffffff;
}

.linechart { width: 100%; height: auto; display: block; }
.linechart__grid line { stroke: var(--line-faint); stroke-width: 1; }
.linechart__axis { stroke: var(--line); stroke-width: 1.5; }
.linechart__ylab, .linechart__xlab {
  font-family: var(--font-body);
  font-size: 10px;
  fill: var(--text-dim);
}
.linechart__lab {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  fill: var(--text-dim);
}
.linechart__lab--rise { fill: var(--teal-ink); }
.linechart__gap { stroke: var(--teal-ink); stroke-width: 1; stroke-dasharray: 3 3; }
.linechart__gaplab {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  fill: var(--teal-ink);
}
.linechart__rise {
  stroke-dasharray: 460;
  stroke-dashoffset: 460;
  animation: drawline 2s 0.4s var(--ease) forwards;
}

/* Agitate list */

.painlist { list-style: none; display: grid; gap: 1.1rem; }
.painlist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: linear-gradient(165deg, #ffffff, var(--ink-2));
  border: 1px solid var(--line-faint);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.painlist li:hover { border-color: var(--line); transform: translateX(4px); }
.painlist__icon {
  width: 40px; height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--teal-soft);
  border: 1px solid var(--line);
  color: var(--teal-ink);
}
.painlist__icon svg { width: 20px; height: 20px; }
.painlist h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.painlist p { font-size: 0.9rem; color: var(--text-dim); }
.painlist__after {
  margin-top: 1.8rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.55;
}

/* Cost of waiting */

.fcost {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.fcost__copy p {
  font-size: 0.98rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  max-width: 54ch;
}
.fcost__kicker {
  font-family: var(--font-head);
  font-size: 1.05rem !important;
  font-weight: 500;
  color: var(--heading) !important;
}

/* The shift */

.section__title--center { margin-inline: auto; }
.fshift__lead {
  font-size: 1.02rem;
  color: var(--text-dim);
  max-width: 58ch;
  margin: 0 auto 1.1rem;
}
.fshift__lead + .fshift__lead { margin-bottom: 2.2rem; }

/* Steps get an icon on this page */
.step__icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--teal-soft);
  border: 1px solid var(--line);
  color: var(--teal-ink);
  margin-bottom: 0.9rem;
}
.step__icon svg { width: 21px; height: 21px; }

/* Risk reversal */

.notlist {
  background: linear-gradient(165deg, #ffffff, var(--ink-2));
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.notlist h2 { font-size: 1.3rem; margin-bottom: 1.1rem; }
.notlist ul { list-style: none; display: grid; gap: 0.75rem; }
.notlist li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.96rem;
  color: var(--text-dim);
}
.notlist li::before,
.notlist li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 13px;
  height: 2px;
  background: var(--teal-ink);
  border-radius: 2px;
}
.notlist li::before { transform: rotate(45deg); }
.notlist li::after { transform: rotate(-45deg); }

/* Close */

.fclose {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(0, 163, 133, 0.14), transparent 65%),
    var(--ink-2);
  border-top: 1px solid var(--line-faint);
  text-align: center;
}
.fclose__inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.fclose__inner > p {
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 auto 2rem;
}

/* Booking modal */

.modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(680px, 94vw);
  width: 100%;
  max-height: 92dvh;
  overflow: visible;
  margin: auto;
  color: var(--text);
}
.modal::backdrop {
  background: rgba(0, 31, 23, 0.55);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: 0 40px 80px -30px rgba(0, 31, 23, 0.45);
  max-height: 92dvh;
  overflow-y: auto;
}
.modal[open] .modal__panel { animation: modalIn 0.32s var(--ease); }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line-faint);
  background: #ffffff;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}
.modal__close:hover { color: var(--heading); border-color: var(--line); }
.modal__close svg { width: 17px; height: 17px; }

.modal__title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.5rem; }
.modal__sub {
  font-size: 0.94rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  max-width: 46ch;
}
/* The modal supplies its own surface — the form must not double up on it. */
.modal .form {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

@media (max-width: 1020px) {
  .fhero__inner { grid-template-columns: 1fr; }
  .fcost { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .funnel-nav__tag { display: none; }
  .funnel-foot__inner { flex-direction: column; }
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; }
  .pillar__list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .results { grid-template-columns: 1fr; max-width: 560px; }
  .edge { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }

  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line-faint);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    font-size: 1.1rem;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__stats { grid-template-columns: repeat(2, auto); gap: 1.2rem 2.4rem; }
  .pillar__list { grid-template-columns: 1fr; }
  .pillar__head { gap: 0.9rem; }
  .pillar__icon { width: 50px; height: 50px; border-radius: 14px; }
  .pillar__icon svg { width: 24px; height: 24px; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .chip--f1 { left: 0; }
  .chip--f2 { right: 0; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .spark__line { stroke-dashoffset: 0; }
  .alloc__bar i { transform: scaleX(1); }
}
