/* =========================================================
   Hepziben Technologies — Brand Stylesheet
   Per Brand Guidelines v1.0 (May 2026)
   Anchor: Deep Indigo  Accent: Electric Cyan
   Ratios: ~60% white  ~30% indigo  ~10% cyan
   ========================================================= */

:root {
  --indigo: #0F2060;
  --midnight: #08123C;
  --cyan: #00BCD4;
  --teal: #0097A7;
  --ink: #181C28;
  --slate: #495057;
  --stone: #6C757D;
  --mist: #F4F6FA;
  --white: #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 32, 96, .06), 0 1px 3px rgba(15, 32, 96, .04);
  --shadow-md: 0 6px 18px rgba(15, 32, 96, .08), 0 2px 6px rgba(15, 32, 96, .05);
  --shadow-lg: 0 18px 48px rgba(15, 32, 96, .14);

  --container: 1180px;
  --pad: clamp(20px, 4vw, 48px);

  --t: 220ms cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Calibri, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--indigo); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--teal); }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  color: var(--indigo);
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.18rem; font-weight: 600; }
p  { margin: 0 0 1em; color: var(--slate); }
small { color: var(--stone); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 880px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15, 32, 96, .06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--indigo);
  font-size: 1.02rem;
  letter-spacing: -.005em;
}
.brand svg { width: 36px; height: 36px; }
.brand .brand-sub { display: block; font-size: .7rem; font-weight: 500; color: var(--stone); letter-spacing: .04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.nav-cta) {
  display: inline-block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
}
.nav-links a:hover:not(.nav-cta) { background: var(--mist); color: var(--indigo); }
.nav-links a.active { color: var(--indigo); background: var(--mist); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform var(--t), background var(--t), box-shadow var(--t);
}
.nav-cta:hover { background: var(--midnight); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(15, 32, 96, .12);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--indigo);
  margin: 4px 0;
  border-radius: 1px;
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px var(--pad) 18px;
    background: var(--white);
    border-bottom: 1px solid rgba(15, 32, 96, .08);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t), opacity var(--t);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; }
  .nav-cta { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t), border-color var(--t);
  text-decoration: none;
}
.btn-primary { background: var(--cyan); color: var(--midnight); }
.btn-primary:hover { background: var(--teal); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--indigo); border: 1px solid rgba(15, 32, 96, .18); }
.btn-secondary:hover { background: var(--indigo); color: var(--white); border-color: var(--indigo); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: var(--white); color: var(--indigo); }

.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 540px at 88% -10%, rgba(0, 188, 212, .18), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(0, 151, 167, .14), transparent 60%),
    linear-gradient(160deg, var(--midnight) 0%, var(--indigo) 60%, #15296f 100%);
  color: var(--white);
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 12vw, 140px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 .accent { color: var(--cyan); }
.hero p.lead { font-size: 1.12rem; color: rgba(255, 255, 255, .82); margin-bottom: 28px; max-width: 58ch; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .meta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
}
.hero .meta div { display: flex; align-items: center; gap: 8px; }
.hero .meta .dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }

/* Hero illustration card */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.hero-card .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 188, 212, .14);
  color: var(--cyan);
  padding: 6px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 188, 212, .35);
  margin-bottom: 14px;
}
.code-window {
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.code-window .bar {
  display: flex; gap: 6px; align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.code-window .bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.code-window .bar i.r { background: #ff5f57; }
.code-window .bar i.y { background: #febc2e; }
.code-window .bar i.g { background: #28c840; }
.code-window pre {
  margin: 0;
  padding: 16px 18px;
  color: #d3def0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .85rem;
  line-height: 1.65;
  overflow-x: auto;
  white-space: pre;
}
.code-window .k { color: #79c0ff; }
.code-window .s { color: #a5e3b6; }
.code-window .c { color: #7a88a8; font-style: italic; }
.code-window .n { color: #ffcb6b; }
.code-window .t { color: var(--cyan); }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--mist);
  border-top: 1px solid rgba(15, 32, 96, .04);
  border-bottom: 1px solid rgba(15, 32, 96, .04);
  padding: 26px 0;
}
.trust .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}
@media (max-width: 720px) { .trust .row { grid-template-columns: repeat(2, 1fr); } }
.trust .stat { text-align: center; }
.trust .stat strong { display: block; color: var(--indigo); font-size: 1.6rem; line-height: 1.1; }
.trust .stat span { color: var(--stone); font-size: .85rem; }

/* ---------- Section heading ---------- */
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--slate); font-size: 1.05rem; }

/* ---------- Service cards ---------- */
.service {
  background: var(--white);
  border: 1px solid rgba(15, 32, 96, .08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.service::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.service:hover { transform: translateY(-3px); border-color: rgba(15, 32, 96, .16); box-shadow: var(--shadow-md); }
.service:hover::after { transform: scaleX(1); }
.service .icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0, 188, 212, .14), rgba(15, 32, 96, .06));
  border: 1px solid rgba(0, 188, 212, .22);
  color: var(--indigo);
  border-radius: 14px;
  margin-bottom: 18px;
}
.service .icon svg { width: 24px; height: 24px; }
.service p { font-size: .96rem; }
.service-tag {
  display: inline-flex; align-items: center;
  font-size: .78rem; font-weight: 600;
  color: var(--teal);
  letter-spacing: .06em; text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- Why us / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.points { list-style: none; padding: 0; margin: 24px 0 0; }
.points li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(15, 32, 96, .08);
}
.points li:last-child { border-bottom: 1px solid rgba(15, 32, 96, .08); }
.points .tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: var(--cyan); color: var(--midnight);
  border-radius: 50%;
}
.points strong { display: block; color: var(--indigo); margin-bottom: 2px; }

/* Mosaic — image-free, geometric */
.mosaic {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(0, 188, 212, .25), transparent 60%),
    linear-gradient(160deg, #1a2c70 0%, var(--midnight) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mosaic::before, .mosaic::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 30% 30%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 30%, #000 40%, transparent 80%);
}
.mosaic .chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .85rem; font-weight: 600; letter-spacing: .02em;
  backdrop-filter: blur(6px);
}
.mosaic .chip .d { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }
.mosaic .c1 { top: 14%; left: 8%; }
.mosaic .c2 { top: 32%; right: 10%; }
.mosaic .c3 { bottom: 22%; left: 14%; }
.mosaic .c4 { bottom: 10%; right: 18%; }
.mosaic .c5 { top: 56%; left: 38%; }

/* ---------- Industries ---------- */
.industries-bg { background: var(--mist); }
.chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.chip-static {
  background: var(--white);
  border: 1px solid rgba(15, 32, 96, .1);
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--indigo);
  font-weight: 500;
  font-size: .95rem;
  transition: transform var(--t), border-color var(--t), color var(--t);
}
.chip-static:hover { transform: translateY(-2px); border-color: var(--cyan); color: var(--teal); }

/* ---------- Founder / quote ---------- */
.founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(180deg, var(--midnight), var(--indigo));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
@media (max-width: 880px) { .founder { grid-template-columns: 1fr; padding: 32px; text-align: center; } }
.founder h2 { color: #fff; }
.founder p { color: rgba(255, 255, 255, .82); }
.founder .avatar {
  width: 240px; height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 188, 212, .35), transparent 60%),
    linear-gradient(135deg, #1d3490, #0a164a);
  border: 4px solid rgba(0, 188, 212, .4);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.4rem; font-weight: 700; color: #fff;
  letter-spacing: -.02em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
  margin: 0 auto;
}
.founder cite { display: block; margin-top: 18px; color: var(--cyan); font-style: normal; font-weight: 600; }

/* ---------- Featured work / project cards ---------- */
.project {
  background: var(--white);
  border: 1px solid rgba(15, 32, 96, .08);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.project:hover { transform: translateY(-3px); border-color: rgba(15, 32, 96, .16); box-shadow: var(--shadow-md); }
.project .pill {
  align-self: flex-start;
  background: rgba(0, 188, 212, .1);
  color: var(--teal);
  border: 1px solid rgba(0, 188, 212, .22);
  padding: 4px 10px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
}
.project h3 a { color: var(--indigo); }
.project h3 a:hover { color: var(--teal); }
.project .stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.project .stack span {
  font-size: .76rem;
  background: var(--mist);
  color: var(--slate);
  padding: 4px 10px;
  border-radius: 999px;
}
.project .external {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .9rem;
  color: var(--indigo);
}
.project .external:hover { color: var(--teal); }

/* ---------- Contact / CTA section ---------- */
.cta-band {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(0, 188, 212, .22), transparent 60%),
    linear-gradient(120deg, var(--midnight), var(--indigo));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .82); margin-bottom: 0; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Inline contact list */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(15, 32, 96, .08);
  align-items: center;
}
.contact-list li:last-child { border-bottom: 1px solid rgba(15, 32, 96, .08); }
.contact-list .ic {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--mist); color: var(--indigo);
  border-radius: 10px;
}
.contact-list strong { color: var(--indigo); display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-list a, .contact-list span { color: var(--slate); }

/* ---------- Forms ---------- */
.form {
  background: var(--white);
  border: 1px solid rgba(15, 32, 96, .08);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .form .row { grid-template-columns: 1fr; } }
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--indigo); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(15, 32, 96, .14);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, .18);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--stone); margin-top: 6px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--midnight);
  color: rgba(255, 255, 255, .78);
  padding: 64px 0 28px;
}
.footer .grid-foot {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 32px;
}
@media (max-width: 880px) { .footer .grid-foot { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer .grid-foot { grid-template-columns: 1fr; } }
.footer h4 {
  color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 14px; font-weight: 600;
}
.footer a { color: rgba(255, 255, 255, .78); }
.footer a:hover { color: var(--cyan); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; font-size: .94rem; }
.footer .brand-foot { display: flex; gap: 12px; align-items: center; color: #fff; font-weight: 700; margin-bottom: 14px; }
.footer .brand-foot svg { width: 36px; height: 36px; }
.footer .legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

/* ---------- Subpage hero (smaller) ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(0, 188, 212, .18), transparent 60%),
    linear-gradient(160deg, var(--midnight), var(--indigo));
  color: #fff;
  padding: clamp(72px, 10vw, 110px) 0 clamp(56px, 8vw, 80px);
}
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero p { color: rgba(255, 255, 255, .8); max-width: 60ch; }
.crumbs { font-size: .85rem; color: rgba(255, 255, 255, .6); margin-bottom: 18px; }
.crumbs a { color: rgba(255, 255, 255, .8); }
.crumbs a:hover { color: var(--cyan); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.muted { color: var(--stone); }
.divider { height: 1px; background: rgba(15, 32, 96, .08); margin: 28px 0; }
.kicker { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.flag-band {
  height: 4px;
  background: linear-gradient(90deg, #008751 0 33%, #ffffff 33% 66%, #008751 66% 100%);
}

/* Print + reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
