/* ==========================================================================
   All-In-One Software Solutions
   Brand: deep navy (#132340) + vibrant blue (#1B6EF3), taken from the logo.
   Approach: mobile-first, CSS custom properties, no frameworks.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --navy-950: #070E1B;
  --navy-900: #0C1628;
  --navy-800: #132340;
  --navy-700: #1C3059;
  --blue: #1B6EF3;
  --blue-600: #0F5BD8;
  --blue-400: #4E92FF;
  --blue-50: #EAF2FF;

  /* Neutrals */
  --ink: #0E1726;
  --body: #51637E;
  --muted: #8496AF;
  --line: #E4EBF6;
  --surface: #FFFFFF;
  --surface-alt: #F5F8FE;

  /* Type */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Shape */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;

  /* Elevation */
  --sh-sm: 0 2px 8px rgba(19, 35, 64, .06);
  --sh-md: 0 14px 34px -14px rgba(19, 35, 64, .18);
  --sh-lg: 0 30px 60px -24px rgba(19, 35, 64, .28);
  --sh-blue: 0 14px 30px -10px rgba(27, 110, 243, .45);

  /* Layout */
  --hh: 68px;
  --gutter: 20px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hh) + 16px);
  -webkit-text-size-adjust: 100%;
}

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

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-xs);
  font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(64px, 9vw, 116px);
}
.section--alt { background: var(--surface-alt); }
.section--dark {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
}

.section__head {
  max-width: 660px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}
.section__title {
  font-size: clamp(1.75rem, 4.4vw, 2.6rem);
  margin-bottom: 16px;
}
.section__title--light { color: #fff; }
.section__lead { font-size: clamp(1rem, 1.6vw, 1.08rem); }
.section__lead--light { color: rgba(255, 255, 255, .72); }

.subsection__title {
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  text-align: center;
  margin-bottom: 34px;
  position: relative;
  padding-bottom: 16px;
}
.subsection__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--navy-800), var(--blue));
}

.eyebrow {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--blue); }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: 1fr; }

.grad {
  background: linear-gradient(100deg, #fff 10%, var(--blue-400) 55%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.btn svg { transition: transform .25s var(--ease); }

.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-3px); box-shadow: 0 20px 34px -12px rgba(27,110,243,.6); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost { border-color: rgba(255, 255, 255, .3); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); transform: translateY(-3px); }

.btn--sm { padding: 11px 20px; font-size: .88rem; }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(-1px); }

/* ---------- 5. Header + navigation ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--hh);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -14px rgba(19, 35, 64, .3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
  transition: transform .45s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .06em;
  color: var(--navy-800);
}
.brand__accent { color: var(--blue); }
.brand__dash { color: var(--muted); }
.brand__sub {
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

/* mobile panel */
.nav {
  position: fixed;
  top: var(--hh);
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px var(--gutter) 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 24px 40px -22px rgba(19, 35, 64, .45);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nav__list { display: flex; flex-direction: column; }
.nav__link {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy-800);
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--blue); padding-left: 10px; }
.nav__cta { margin-top: 18px; align-self: stretch; }

.nav-scrim {
  position: fixed;
  inset: var(--hh) 0 0 0;
  z-index: 98;
  background: rgba(7, 14, 27, .45);
  opacity: 0;
  transition: opacity .28s var(--ease);
}
.nav-scrim.is-visible { opacity: 1; }

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border-radius: var(--r-xs);
  flex: none;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--hh) + clamp(52px, 9vw, 96px));
  padding-bottom: clamp(64px, 10vw, 120px);
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, #16305C 100%);
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 35%, transparent 78%);
}
.hero__circuit { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  animation: float 16s ease-in-out infinite;
}
.hero__glow--a {
  width: 46vw; height: 46vw; min-width: 300px; min-height: 300px;
  top: -14%; right: -10%;
  background: radial-gradient(circle, rgba(27, 110, 243, .85), transparent 68%);
}
.hero__glow--b {
  width: 40vw; height: 40vw; min-width: 260px; min-height: 260px;
  bottom: -18%; left: -12%;
  background: radial-gradient(circle, rgba(78, 146, 255, .5), transparent 68%);
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(0, -34px, 0) scale(1.08); }
}

.hero__inner { display: grid; gap: clamp(44px, 6vw, 64px); align-items: center; }
.hero__title {
  color: #fff;
  font-size: clamp(1.95rem, 5.4vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(1.02rem, 2.1vw, 1.17rem);
  color: rgba(255, 255, 255, .72);
  max-width: 34em;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
  color: rgba(255, 255, 255, .68);
}
.hero__trust li { display: flex; align-items: center; gap: 9px; }
.hero__trust svg { width: 17px; height: 17px; color: var(--blue-400); flex: none; }

/* code card */
.hero__visual { position: relative; }
.code-card {
  background: rgba(9, 18, 36, .72);
  border: 1px solid rgba(120, 165, 255, .22);
  border-radius: var(--r-md);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.hero__visual:hover .code-card { transform: translateY(-6px); }
.code-card__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(120, 165, 255, .16);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--r { background: #FF5F57; } .dot--y { background: #FEBC2E; } .dot--g { background: #28C840; }
.code-card__file {
  margin-left: auto;
  font-size: .74rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .45);
}
.code-card__body {
  padding: 20px 18px 24px;
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;
  font-size: clamp(.68rem, 2vw, .8rem);
  line-height: 1.85;
  color: #C9D9F5;
  overflow-x: auto;
}
.c-m { color: #7FB0FF; } .c-k { color: #4E92FF; } .c-f { color: #7FE7C4; }
.c-s { color: #FFC98A; } .c-c { color: #5E7395; font-style: italic; }

.chip {
  position: absolute;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 600;
  color: var(--navy-800);
  background: #fff;
  padding: 9px 15px;
  border-radius: 100px;
  box-shadow: var(--sh-lg);
  animation: bob 9s ease-in-out infinite;
}
.chip--1 { top: -16px; right: 6%; }
.chip--2 { bottom: 16%; left: -28px; animation-delay: -3s; }
.chip--3 { bottom: -18px; right: 10%; animation-delay: -6s; }
@media (max-width: 479px) {
  .chip { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}

/* ---------- 7. Cards, services, tags ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px;
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: rgba(27, 110, 243, .35); }

.service { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-800), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.service:hover::before { transform: scaleX(1); }
.service__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  border-radius: var(--r-sm);
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--blue-50);
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.service__icon svg { width: 30px; height: 30px; }
.service:hover .service__icon {
  background: linear-gradient(135deg, var(--navy-800), var(--blue));
  color: #fff;
  transform: rotate(-6deg);
}
.service__title { font-size: 1.22rem; margin-bottom: 12px; }
.service__text { font-size: .96rem; margin-bottom: 22px; }
.service .tags { margin-top: auto; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags--center { justify-content: center; }
.tags li {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--navy-700);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 100px;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.card:hover .tags li { border-color: rgba(27, 110, 243, .25); color: var(--blue-600); background: var(--blue-50); }

/* ---------- 8. Team ---------- */
.founders {
  display: grid;
  gap: 24px;
  margin-bottom: clamp(56px, 8vw, 84px);
  max-width: 880px;
  margin-inline: auto;
}
/* Team grid: five cards, so the final short row centres instead of
   leaving an orphan hanging on the left of a rigid 3-column grid. */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.team-grid > * { flex: 0 1 100%; }

.person { text-align: center; }
.person__avatar {
  position: relative;
  width: 116px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(140deg, var(--navy-800), var(--blue));
  transition: transform .4s var(--ease);
}
.person__avatar--lg { width: 148px; }
.person__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: var(--surface-alt);
}
.person:hover .person__avatar { transform: scale(1.06) rotate(3deg); }
.person__name { font-size: 1.1rem; margin-bottom: 5px; }
.person--founder .person__name {
  font-size: 1.28rem;
  /* Founders carry no job title, so the name needs its own breathing room. */
  margin-bottom: 14px;
  text-wrap: balance;
}
.person__role {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.person__bio { font-size: .95rem; margin-bottom: 18px; }
.person__links { display: flex; justify-content: center; gap: 10px; }
.person__links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--navy-700);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.person__links a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-3px); }
.person__links svg { width: 17px; height: 17px; }

/* ---------- 9. Portfolio ---------- */
.work {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.work:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: rgba(27, 110, 243, .35); }
.work__media { position: relative; overflow: hidden; background: var(--navy-900); }
.work__media img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  transition: transform .6s var(--ease), opacity .35s var(--ease);
}
.work:hover .work__media img { transform: scale(1.07); opacity: .82; }
.work__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(27, 110, 243, .92);
  padding: 6px 12px;
  border-radius: 100px;
}
.work__body { padding: 24px 24px 26px; }
.work__title { font-size: 1.12rem; margin-bottom: 10px; }
.work__text { font-size: .93rem; margin-bottom: 16px; }
.work__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .86rem;
  color: var(--blue);
}
.work__link svg { transition: transform .25s var(--ease); }
.work:hover .work__link svg { transform: translateX(5px); }

/* ---------- 10. Contact / order form ---------- */
.contact__bg { position: absolute; inset: 0; opacity: .6; }
.contact__inner { position: relative; display: grid; gap: clamp(38px, 5vw, 56px); align-items: start; }
.contact__list { margin-top: 34px; display: grid; gap: 18px; }
.contact__list li { display: flex; align-items: flex-start; gap: 14px; }
.contact__list span:last-child { display: flex; flex-direction: column; font-size: .95rem; }
.contact__list strong {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 2px;
}
.contact__list a { color: #fff; transition: color .2s var(--ease); }
.contact__list a:hover { color: var(--blue-400); }
.contact__ico {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-content: center;
  border-radius: var(--r-xs);
  color: var(--blue-400);
  background: rgba(78, 146, 255, .12);
  border: 1px solid rgba(78, 146, 255, .22);
}
.contact__ico svg { width: 19px; height: 19px; }

.form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, .6);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font-size: .95rem;
  color: var(--ink);
  background: var(--surface-alt);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 110, 243, .14);
}
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #E5484D; background: #FFF5F5; }
.field__error { font-size: .8rem; color: #E5484D; margin-top: 6px; min-height: 0; }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 44px; }
.select-wrap svg {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--body);
  pointer-events: none;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-status {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  text-align: center;
  display: none;
}
.form-status.is-success { display: block; color: #0B7A4B; background: #E7F8F0; border: 1px solid #B6E7D2; }
.form-status.is-error { display: block; color: #C13539; background: #FFF0F0; border: 1px solid #F5C6C7; }

/* ---------- 11. Footer ---------- */
.footer { background: var(--navy-950); color: rgba(255, 255, 255, .62); font-size: .93rem; }
.footer__top {
  display: grid;
  gap: 38px;
  padding-block: clamp(48px, 7vw, 76px) clamp(32px, 4vw, 46px);
}
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: rgba(255, 255, 255, .45); }
.brand--footer .brand__mark { width: 52px; height: 52px; }
.footer__blurb { margin-top: 18px; max-width: 34em; line-height: 1.75; }
.footer h3 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer__links ul, .footer__contact ul { display: grid; gap: 11px; }
.footer__links a, .footer__contact a { transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer__links a:hover, .footer__contact a:hover { color: var(--blue-400); padding-left: 5px; }

.socials { display: flex !important; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .25s var(--ease);
}
.socials a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-4px); padding-left: 0; }
.socials svg { width: 17px; height: 17px; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}
.footer__bottom ul { display: flex; gap: 22px; }
.footer__bottom a:hover { color: var(--blue-400); }

/* ---------- 12. Back to top ---------- */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: var(--sh-blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background-color .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy-800); transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- 13. Entrance animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 14. Breakpoints ---------- */
@media (min-width: 600px) {
  :root { --gutter: 28px; }
  .founders { grid-template-columns: 1fr 1fr; }
  .team-grid > * { flex: 0 1 calc((100% - 24px) / 2); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 900px) {
  :root { --hh: 78px; --gutter: 32px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .team-grid { gap: 28px; }
  .team-grid > * { flex: 0 1 calc((100% - 2 * 28px) / 3); }
  .contact__inner { grid-template-columns: 1fr 1.05fr; gap: 64px; }
  .section__head { text-align: center; }
  .contact__aside { text-align: left; }
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; }
  .brand__mark { width: 46px; height: 46px; }
  .brand__name { font-size: 1.08rem; }
  .brand__sub { font-size: .62rem; }
  .to-top { right: 28px; bottom: 28px; }
  .footer__bottom { padding-right: 68px; }

  /* desktop nav */
  .nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .nav__list { flex-direction: row; align-items: center; gap: 4px; }
  .nav__link {
    position: relative;
    font-size: .93rem;
    padding: 8px 14px;
    border: 0;
    border-radius: 100px;
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
    transform: translateX(-50%);
    transition: width .3s var(--ease);
  }
  .nav__link:hover { padding-left: 14px; }
  .nav__link:hover::after, .nav__link.is-active::after { width: 20px; }
  .nav__cta { margin: 0 0 0 12px; }
  .nav-toggle, .nav-scrim { display: none; }
}

@media (min-width: 1040px) {
  .hero__inner { grid-template-columns: 1.08fr .92fr; gap: 64px; }
  .hero__copy { max-width: 640px; }
}

@media (min-width: 1240px) {
  .hero__inner { gap: 80px; }
}

/* ---------- 15. Motion / print preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 16. Team photo preview ----------
   The avatars are circular crops, so most of each photo is hidden.
   Hovering (or tapping) one shows the full, uncropped picture. */
.person__avatar[data-full] { cursor: zoom-in; }
.person__avatar[data-full]:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 5px;
}

.photo-preview {
  position: fixed;
  z-index: 120;
  width: min(330px, 78vw);
  padding: 8px 8px 0;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px -18px rgba(7, 14, 27, .5), 0 0 0 1px rgba(19, 35, 64, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.96);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  pointer-events: none;
}
.photo-preview.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.photo-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-sm);
  background: var(--surface-alt);
}
.photo-preview__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .87rem;
  color: var(--ink);
  text-align: center;
  padding: 11px 6px 13px;
}

/* ---------- 17. Welcome section ---------- */
.welcome { background: linear-gradient(165deg, #F8FBFF 0%, #EBF2FF 100%); }
.welcome__inner { display: grid; gap: 44px; align-items: center; }

.welcome__lead {
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  margin-bottom: 30px;
}
.welcome__subtitle {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 18px;
}
.welcome__list { display: grid; gap: 13px; margin-bottom: 26px; }
.welcome__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .96rem;
  color: var(--ink);
  font-weight: 500;
}
.welcome__list svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 2px;
  color: var(--blue);
}
.welcome__tagline {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--navy-700);
  padding-left: 16px;
  border-left: 3px solid var(--blue);
  margin-bottom: 30px;
}

.welcome__media { position: relative; }
.welcome__media picture { display: block; }
.welcome__media img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  height: auto;
  filter: drop-shadow(0 26px 40px rgba(19, 35, 64, .22));
}
/* Shown only if assets/welcome.png has not been added yet, so the
   layout still reads as intentional instead of a broken image. */
.welcome__media.is-missing::after {
  content: "";
  display: block;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 2 / 3;
  border-radius: var(--r-lg);
  border: 2px dashed rgba(27, 110, 243, .3);
  background:
    url("assets/logo.svg") center / 88px no-repeat,
    rgba(255, 255, 255, .55);
}

@media (min-width: 900px) {
  .welcome__inner { grid-template-columns: 1.05fr .95fr; gap: 64px; }
  .welcome__list { grid-template-columns: 1fr 1fr; gap: 13px 22px; }
  .welcome .section__title { text-align: left; }
}

/* ---------- 18. WhatsApp button (founders) ---------- */
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 100px;
  color: #0F7A43;
  background: #E9F9F0;
  border: 1.5px solid #B9EBD2;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-btn svg { width: 18px; height: 18px; flex: none; }
.wa-btn:hover,
.wa-btn:focus-visible {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -10px rgba(37, 211, 102, .6);
}
.wa-btn:active { transform: translateY(-1px); }

/* ---------- 19. Welcome section on black ----------
   Pure black rather than navy: the photo was shot on black, so any residual
   dark fringe left by the cut-out disappears completely against it. */
.welcome {
  background: #000;
  color: rgba(255, 255, 255, .74);
}
.welcome .eyebrow--dark { color: var(--blue-400); }
.welcome .section__title { color: #fff; }
.welcome__lead { color: rgba(255, 255, 255, .74); }
.welcome__subtitle { color: #fff; }
.welcome__list li { color: rgba(255, 255, 255, .9); }
.welcome__list svg { color: var(--blue-400); }
.welcome__tagline {
  color: #fff;
  border-left-color: var(--blue-400);
}

/* A shadow is invisible on black - use a soft blue glow behind the figure instead. */
.welcome__media img { filter: none; }
.welcome__media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 110, 243, .22), transparent 68%);
  filter: blur(46px);
  pointer-events: none;
  z-index: 0;
}
.welcome__media picture { position: relative; z-index: 1; }

/* Placeholder styling, if the photo is ever missing on a dark background. */
.welcome__media.is-missing::after {
  border-color: rgba(78, 146, 255, .35);
  background:
    url("assets/logo.svg") center / 88px no-repeat,
    rgba(255, 255, 255, .04);
}

/* ==========================================================================
   20. Device mockups - phone, laptop, browser
   Drawn in CSS rather than photographed: crisp at any size, on-brand,
   and no stock imagery to license.
   ========================================================================== */

/* ---------- Phone ---------- */
.phone {
  position: relative;
  width: min(280px, 74vw);
  aspect-ratio: 300 / 610;
  margin-inline: auto;
  background: linear-gradient(160deg, #26334D, #0E1626);
  border-radius: 42px;
  padding: 11px;
  box-shadow: 0 40px 70px -28px rgba(7, 14, 27, .75), 0 0 0 1.5px rgba(255, 255, 255, .09) inset;
}
.phone::after {                       /* notch */
  content: "";
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 42%; height: 22px;
  background: #0E1626;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #F4F7FD;
  display: flex;
  flex-direction: column;
}
.phone__bar {
  background: linear-gradient(135deg, var(--navy-800), var(--blue));
  color: #fff;
  padding: 34px 18px 20px;
  flex: none;
}
.phone__bar small { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }
.phone__bar b { display: block; font-family: var(--font-head); font-size: 1.02rem; margin-top: 3px; }
.phone__body { padding: 14px; display: grid; gap: 10px; align-content: start; }

.ui-card {
  background: #fff;
  border-radius: 12px;
  padding: 11px 12px;
  box-shadow: 0 6px 16px -8px rgba(19, 35, 64, .3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  color: var(--ink);
  animation: uiIn .6s var(--ease) backwards;
}
.ui-card:nth-child(1) { animation-delay: .1s; }
.ui-card:nth-child(2) { animation-delay: .25s; }
.ui-card:nth-child(3) { animation-delay: .4s; }
.ui-card:nth-child(4) { animation-delay: .55s; }
.ui-card__dot {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  background: var(--blue-50); color: var(--blue);
  display: grid; place-content: center; font-size: .8rem;
}
.ui-card b { display: block; font-size: .72rem; }
.ui-card span { color: var(--muted); font-size: .64rem; }
@keyframes uiIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* the "building an app" progress strip */
.ui-build { background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 6px 16px -8px rgba(19,35,64,.3); }
.ui-build__row { display: flex; justify-content: space-between; font-size: .62rem; color: var(--muted); margin-bottom: 7px; }
.ui-build__track { height: 6px; border-radius: 6px; background: var(--surface-alt); overflow: hidden; }
.ui-build__fill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--navy-800), var(--blue));
  animation: build 3.4s var(--ease) infinite;
}
@keyframes build {
  0%   { width: 8%; }
  55%  { width: 92%; }
  70%  { width: 96%; }
  100% { width: 8%; }
}

/* ---------- Laptop ---------- */
.laptop { width: min(560px, 100%); margin-inline: auto; }
.laptop__lid {
  background: linear-gradient(160deg, #26334D, #0E1626);
  border-radius: 14px 14px 6px 6px;
  padding: 10px 10px 12px;
  box-shadow: 0 30px 60px -26px rgba(7, 14, 27, .7), 0 0 0 1.5px rgba(255,255,255,.08) inset;
}
.laptop__screen {
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
}
.laptop__base {
  height: 13px;
  background: linear-gradient(180deg, #C6CEDC, #8E9AAE);
  border-radius: 0 0 12px 12px;
  position: relative;
  box-shadow: 0 14px 22px -14px rgba(7,14,27,.6);
}
.laptop__base::after {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 5px;
  background: rgba(7,14,27,.28);
  border-radius: 0 0 6px 6px;
}

/* browser chrome inside the lid */
.chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 10px;
  background: #EDF1F8;
  border-bottom: 1px solid #DCE4F0;
  flex: none;
}
.chrome__dot { width: 8px; height: 8px; border-radius: 50%; }
.chrome__url {
  flex: 1;
  background: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .64rem;
  color: var(--body);
  border: 1px solid #DCE4F0;
  display: flex; align-items: center; gap: 6px;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.chrome__url svg { width: 11px; height: 11px; color: #0B7A4B; flex: none; }
.viewport { flex: 1; overflow: hidden; position: relative; background: #fff; }

/* a miniature "beautiful website" rendered inside the laptop */
.mini { height: 100%; display: flex; flex-direction: column; font-size: .58rem; }
.mini__nav {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 11px; background: #fff; border-bottom: 1px solid var(--line); flex: none;
}
.mini__logo { width: 14px; height: 14px; border-radius: 4px; background: linear-gradient(135deg, var(--navy-800), var(--blue)); flex: none; }
.mini__nav i { display: block; height: 4px; width: 26px; border-radius: 4px; background: var(--line); font-style: normal; }
.mini__nav em { margin-left: auto; height: 12px; width: 42px; border-radius: 100px; background: var(--blue); }
.mini__hero {
  padding: 16px 14px;
  background: linear-gradient(150deg, var(--navy-900), #16305C);
  color: #fff; flex: none;
}
.mini__hero b { display: block; font-family: var(--font-head); font-size: .82rem; line-height: 1.25; }
.mini__hero b span { color: var(--blue-400); }
.mini__hero p { font-size: .56rem; color: rgba(255,255,255,.66); margin: 5px 0 9px; }
.mini__hero u { display: inline-block; text-decoration: none; background: var(--blue); color: #fff;
  padding: 4px 11px; border-radius: 100px; font-size: .56rem; font-weight: 600; }
.mini__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding: 11px; }
.mini__grid div { background: var(--surface-alt); border: 1px solid var(--line); border-radius: 7px; padding: 8px 7px; }
.mini__grid s { display: block; width: 14px; height: 14px; border-radius: 5px; background: var(--blue-50); margin-bottom: 5px; }
.mini__grid i { display: block; height: 3px; border-radius: 3px; background: var(--line); margin-bottom: 3px; }
.mini__grid i:first-of-type { width: 74%; background: #C3D2EA; }

/* ---------- LMS dashboard inside the laptop ---------- */
.dash { height: 100%; display: flex; background: #F4F7FD; font-size: .58rem; }
.dash__side { width: 26%; background: var(--navy-900); padding: 10px 8px; flex: none; }
.dash__side b { display: block; color: #fff; font-size: .58rem; letter-spacing: .1em; margin-bottom: 9px; }
.dash__side i { display: block; height: 5px; border-radius: 4px; background: rgba(255,255,255,.16); margin-bottom: 6px; }
.dash__side i.on { background: var(--blue); width: 80%; }
.dash__main { flex: 1; padding: 10px; display: grid; gap: 8px; align-content: start; }
.dash__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.dash__stats div { background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 7px 8px; }
.dash__stats b { display: block; color: var(--ink); font-size: .78rem; font-family: var(--font-head); }
.dash__stats span { color: var(--muted); font-size: .52rem; }
.dash__chart { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 9px; }
.dash__chart b { display: block; color: var(--ink); font-size: .6rem; margin-bottom: 8px; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 62px; }
.bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--blue-400), var(--blue));
  transform-origin: bottom;
  animation: grow 2.6s var(--ease) infinite alternate;
}
.bars span:nth-child(1){ height:42%; animation-delay:0s }
.bars span:nth-child(2){ height:66%; animation-delay:.12s }
.bars span:nth-child(3){ height:34%; animation-delay:.24s }
.bars span:nth-child(4){ height:82%; animation-delay:.36s }
.bars span:nth-child(5){ height:56%; animation-delay:.48s }
.bars span:nth-child(6){ height:94%; animation-delay:.6s }
.bars span:nth-child(7){ height:70%; animation-delay:.72s }
@keyframes grow { from { transform: scaleY(.45); } to { transform: scaleY(1); } }
.spark { width: 100%; height: 42px; display: block; }
.spark path { stroke-dasharray: 300; stroke-dashoffset: 300; animation: draw 3s var(--ease) infinite; }
@keyframes draw { 0%{stroke-dashoffset:300} 55%{stroke-dashoffset:0} 90%{stroke-dashoffset:0} 100%{stroke-dashoffset:300} }

/* ---------- Alternating feature rows ---------- */
.feature { padding-block: clamp(56px, 8vw, 96px); }
.feature--alt { background: var(--surface-alt); }
.feature--dark { background: var(--navy-900); color: rgba(255,255,255,.75); }
.feature--dark .section__title, .feature--dark .feature__title { color: #fff; }
.feature--dark .feature__list li { color: rgba(255,255,255,.86); }
.feature__inner { display: grid; gap: clamp(36px, 5vw, 60px); align-items: center; }
.feature__title { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 14px; }
.feature__text { font-size: 1.02rem; margin-bottom: 22px; }
.feature__list { display: grid; gap: 11px; margin-bottom: 26px; }
.feature__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--ink); font-weight: 500; }
.feature__list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--blue); }
.feature--dark .feature__list svg { color: var(--blue-400); }
.feature__media { position: relative; }
@media (min-width: 900px) {
  .feature__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
  .feature--flip .feature__media { order: -1; }
}

/* ---------- 21. Inner page hero ---------- */
.page-hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--hh) + clamp(48px, 7vw, 82px));
  padding-bottom: clamp(44px, 6vw, 72px);
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, #16305C 100%);
  color: rgba(255, 255, 255, .74);
  overflow: hidden;
  text-align: center;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -1; opacity: .6; }
.page-hero__inner { max-width: 780px; margin-inline: auto; }
.page-hero__title {
  color: #fff;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.page-hero__lead { font-size: clamp(1rem, 2vw, 1.14rem); color: rgba(255, 255, 255, .72); }
.page-hero .eyebrow { color: var(--blue-400); }

/* ---------- 22. Project cards (real client work) ---------- */
.projects { display: grid; gap: 26px; }
@media (min-width: 860px) { .projects { grid-template-columns: 1fr 1fr; } }

.project {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.project:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(27,110,243,.35); }
.project__screen { background: linear-gradient(160deg, #0C1628, #16305C); padding: 22px 22px 0; }
.project__screen .laptop { width: 100%; }
.project__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.project__client {
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.project__title { font-size: 1.24rem; margin-bottom: 10px; }
.project__text { font-size: .96rem; margin-bottom: 18px; }
.project__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.project__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.project__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--blue);
}
.project__link svg { transition: transform .25s var(--ease); }
.project:hover .project__link svg { transform: translateX(5px); }
.project__badge {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #0B7A4B; background: #E7F8F0; border: 1px solid #B6E7D2;
  padding: 4px 10px; border-radius: 100px;
}

/* stats strip */
.figures { display: grid; gap: 18px; text-align: center; }
@media (min-width: 700px) { .figures { grid-template-columns: repeat(4, 1fr); } }
.figure b {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--blue); line-height: 1.1;
}
.figure span { font-size: .88rem; color: var(--muted); }
.feature--dark .figure span { color: rgba(255,255,255,.6); }
