/* =====================================================================
   KAVAYA INFOTECH — Stylesheet
   Palette: ink navy / stone paper / school-bus signal yellow / transit teal
   Type: Space Grotesk (display) · Work Sans (body) · IBM Plex Mono (data)
===================================================================== */

:root {
  --ink: #12161F;
  --ink-soft: #52586A;
  --ink-faint: #8A8F9E;
  --paper: #F5F6F5;
  --stone: #EAEDEC;
  --surface: #FFFFFF;
  --line: rgba(18, 22, 31, 0.11);
  --line-strong: rgba(18, 22, 31, 0.20);

  --signal: #3db9c7;
  --signal-deep: #165c67;
  --signal-soft: rgba(255, 180, 0, 0.16);

  --transit: #0E6E80;
  --transit-deep: #0A5462;
  --transit-soft: rgba(14, 110, 128, 0.10);

  --go: #1F9D52;
  --go-soft: rgba(31, 157, 82, 0.12);
  --alert: #D6453B;

  --shadow-sm: 0 2px 10px -4px rgba(18, 22, 31, 0.10);
  --shadow-md: 0 18px 40px -18px rgba(18, 22, 31, 0.20);
  --shadow-lg: 0 28px 60px -22px rgba(18, 22, 31, 0.26);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;

  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --maxw: 1180px;
  --nav-h: 78px;
}

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

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
}

strong {
  font-weight: 700;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  z-index: 300;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* ---------------------------------------------------------------- */
/* LAYOUT HELPERS                                                    */
/* ---------------------------------------------------------------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section--tight {
  padding: 84px 0;
}

.section--white {
  background: var(--surface);
}

.section--stone {
  background: var(--stone);
}

.section--ink {
  background: var(--ink);
  color: #fff;
}

.section--ink h2,
.section--ink h3,
.section--ink h4 {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--transit);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--signal);
}

.section--ink .eyebrow {
  color: var(--signal);
}

.section-head {
  max-width: 660px;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 17.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section--ink .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s cubic-bezier(.2, .7, .2, 1), transform .65s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--signal);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--signal-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.section--ink .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.section--ink .btn--ghost:hover {
  border-color: #fff;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13.5px;
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--live {
  background: var(--go-soft);
  color: var(--go);
}

.badge--live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--go);
  animation: pulse 1.7s infinite;
}

.badge--soon {
  background: var(--stone);
  color: var(--ink-soft);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--stone);
  border: 1px solid var(--line);
  padding: 6px 11px;
  border-radius: 6px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ---------------------------------------------------------------- */
/* SCROLL PROGRESS                                                   */
/* ---------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--signal);
  z-index: 1000;
  width: 0%;
  transition: width .1s linear;
}

/* ---------------------------------------------------------------- */
/* NAV                                                                */
/* ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 1px 0 var(--line), 0 12px 24px -20px rgba(18, 22, 31, 0.18);
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav__logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 9px 14px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}

.nav__link:hover {
  color: var(--ink);
  background: var(--stone);
}

.nav__link.active {
  color: var(--ink);
  background: var(--signal-soft);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .25s ease, opacity .25s ease;
}

.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

.hamburger.open span {
  opacity: 0;
}

.hamburger.open span::before {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 480;
  background: var(--surface);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  padding: 20px 28px 40px;
  overflow-y: auto;
}

.mobile-drawer.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mobile-drawer .nav__link {
  display: block;
  font-size: 19px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.mobile-drawer .btn {
  margin-top: 20px;
}

/* ---------------------------------------------------------------- */
/* MARQUEE / DEPARTURE TICKER                                        */
/* ---------------------------------------------------------------- */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__seg {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
}

.marquee__seg span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.marquee__seg .dot {
  color: var(--signal);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------------------------------------------------------------- */
/* PAGE HEADER (sub-page hero banner)                                */
/* ---------------------------------------------------------------- */
.page-header {
  padding: calc(var(--nav-h) + 70px) 0 70px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-header .eyebrow {
  color: var(--signal);
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  max-width: 760px;
}

.page-header p {
  margin-top: 18px;
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  line-height: 1.65;
}

.page-header__grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
}

/* ---------------------------------------------------------------- */
/* HOME HERO                                                          */
/* ---------------------------------------------------------------- */
.hero {
  padding: calc(var(--nav-h) + 64px) 0 90px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 7px;
  background: var(--signal-soft);
  color: var(--signal-deep);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 58px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* live route demo card */
.route-demo {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.route-demo__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.route-demo__title {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
}

.route-demo__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--stone);
  border-radius: var(--r-md);
  overflow: hidden;
}

.route-demo__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-demo__line {
  fill: none;
  stroke: var(--transit);
  stroke-width: 2.5;
  stroke-dasharray: 7 8;
}

.route-stop {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--transit);
  color: var(--transit);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.route-stop:hover,
.route-stop:focus-visible {
  transform: translate(-50%, -50%) scale(1.12);
}

.route-stop.active {
  background: var(--signal);
  border-color: var(--signal-deep);
  color: var(--ink);
}

.route-demo__bus {
  position: absolute;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 8px rgba(18, 22, 31, 0.25));
  transition: left .9s cubic-bezier(.3, .7, .3, 1), top .9s cubic-bezier(.3, .7, .3, 1);
}

.route-demo__bus svg {
  width: 100%;
  height: 100%;
}

.route-demo__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.route-demo__eta {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--ink);
}

.route-demo__eta strong {
  color: var(--transit-deep);
}

.route-demo__name {
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---------------------------------------------------------------- */
/* SERVICE LIST (numbered, replacing generic 3-up icon grid)         */
/* ---------------------------------------------------------------- */
.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.service-row__num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--transit);
  font-weight: 600;
}

.service-row h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-row p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ---------------------------------------------------------------- */
/* PRODUCTS / BENTO                                                  */
/* ---------------------------------------------------------------- */
.product-spot {
  border-radius: var(--r-lg);
  padding: 42px;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.product-spot h3 {
  color: #fff;
  font-size: 27px;
  margin-bottom: 14px;
}

.product-spot p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.product-spot__visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 22px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 18px;
}

.bento-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: border-color .25s ease, transform .25s ease;
}

.bento-card:hover,
.bento-card.open {
  transform: translateY(-3px);
  border-color: var(--transit);
}

.bento-card--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--transit-soft);
  color: var(--transit);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}

.bento-card__icon svg {
  width: 20px;
  height: 20px;
}

.bento-card h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.bento-card__detail {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, opacity .25s ease, margin-top .3s ease;
}

.bento-card:hover .bento-card__detail,
.bento-card.open .bento-card__detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}

.coming-card {
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  background: var(--surface);
}

.coming-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--stone);
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.coming-card__icon svg {
  width: 22px;
  height: 22px;
}

.coming-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.coming-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

.notify-form {
  display: flex;
  gap: 8px;
}

.notify-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  font-size: 13.5px;
}

.notify-form input:focus {
  border-color: var(--transit);
}

.notify-msg {
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 10px;
  min-height: 16px;
}

/* ---------------------------------------------------------------- */
/* STATS                                                              */
/* ---------------------------------------------------------------- */
.stats-row {
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  flex: 1;
  text-align: center;
  padding: 46px 18px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat__num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--transit-deep);
  margin-bottom: 8px;
}

.stat__label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------- */
/* MASTER / DETAIL SWITCHER  (why-us)                                */
/* ---------------------------------------------------------------- */
.switcher {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.switcher__list {
  border-top: 1px solid var(--line);
}

.switcher__item {
  width: 100%;
  text-align: left;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.switcher__item span {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-soft);
}

.switcher__item.active span {
  color: var(--ink);
}

.switcher__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-faint);
}

.switcher__item.active .switcher__num {
  color: var(--transit);
}

.switcher__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  min-height: 240px;
}

.switcher__panel h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.switcher__panel p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------------------------------------------------------------- */
/* PROCESS STEPPER                                                    */
/* ---------------------------------------------------------------- */
.process-row {
  display: flex;
  border-top: 1px solid var(--line);
}

.process-step {
  flex: 1;
  padding: 32px 22px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: none;
}

.process-step__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--transit);
  margin-bottom: 14px;
}

.process-step h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------------------------------------------------------------- */
/* JOURNEY ACCORDION TIMELINE                                        */
/* ---------------------------------------------------------------- */
.journey {
  border-top: 1px solid var(--line);
}

.journey-item {
  border-bottom: 1px solid var(--line);
}

.journey-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 4px;
  text-align: left;
}

.journey-tag {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--transit);
  flex-shrink: 0;
  width: 100px;
}

.journey-q h4 {
  font-size: 18px;
  font-weight: 700;
  flex: 1;
}

.journey-q__icon {
  width: 18px;
  height: 18px;
  color: var(--ink-faint);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.journey-item.open .journey-q__icon {
  transform: rotate(45deg);
}

.journey-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.journey-a__inner {
  padding: 0 4px 28px 124px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
}

/* ---------------------------------------------------------------- */
/* TECH STACK                                                         */
/* ---------------------------------------------------------------- */
.stack-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.stack-pill {
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13.5px;
  background: var(--surface);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.stack-pill:hover {
  transform: translateY(-3px);
  border-color: var(--transit);
  color: var(--transit-deep);
}

/* ---------------------------------------------------------------- */
/* VALUES (numbered vertical)                                        */
/* ---------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-cell {
  background: var(--surface);
  padding: 36px;
}

.value-cell__num {
  font-family: var(--font-mono);
  color: var(--ink-faint);
  font-size: 13px;
  margin-bottom: 14px;
}

.value-cell h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.value-cell p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------------------------------------------------------------- */
/* MISSION / VISION                                                   */
/* ---------------------------------------------------------------- */
.mv-card {
  padding: 44px;
  border-radius: var(--r-lg);
}

.mv-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.mv-card--paper {
  background: var(--surface);
  border: 1px solid var(--line);
}

.mv-card--ink {
  background: var(--ink);
  color: #fff;
}

.mv-card--ink h3 {
  color: #fff;
}

.mv-card--ink p {
  color: rgba(255, 255, 255, 0.74);
}

/* ---------------------------------------------------------------- */
/* FOUNDER / TEAM                                                    */
/* ---------------------------------------------------------------- */
.founder-block {
  display: flex;
  gap: 54px;
  align-items: center;
}

.founder-avatar {
  width: 168px;
  height: 168px;
  border-radius: var(--r-lg);
  flex-shrink: 0;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--signal);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.founder-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 50%, rgba(255, 180, 0, 0.18));
}

.founder-info .role {
  display: inline-block;
  font-family: var(--font-mono);
  color: var(--transit);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.founder-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.founder-info p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 22px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: border-color .2s, color .2s, transform .2s;
  flex-shrink: 0;
}

.icon-btn svg {
  width: 17px;
  height: 17px;
}

.icon-btn:hover {
  border-color: var(--transit);
  color: var(--transit);
  transform: translateY(-2px);
}

.team-card {
  text-align: left;
}

.team-avatar {
  width: 50px;
  height: 50px;
  border-radius: 11px;
  margin-bottom: 18px;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--transit-deep);
}

.team-avatar svg {
  width: 22px;
  height: 22px;
}

.team-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------- */
/* CULTURE / HIRING PROCESS                                          */
/* ---------------------------------------------------------------- */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.culture-card {
  padding: 34px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--surface);
}

.culture-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--signal-soft);
  color: var(--signal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.culture-card__icon svg {
  width: 21px;
  height: 21px;
}

.culture-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.culture-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------------------------------------------------------------- */
/* CAREERS — filters + role list                                     */
/* ---------------------------------------------------------------- */
.filter-row {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 980px;
  border: 1px solid var(--line-strong);
  font-weight: 600;
  font-size: 13.5px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.filter-btn:not(.active):hover {
  border-color: var(--transit);
  color: var(--transit-deep);
}

.role-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  transition: border-color .25s ease, transform .25s ease;
}

.role-card:hover {
  border-color: var(--transit);
  transform: translateX(4px);
}

.role-card__info h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.role-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.role-card__meta span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  background: var(--stone);
  padding: 5px 10px;
  border-radius: 6px;
}

.careers-note {
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 15px;
}

.careers-note a {
  color: var(--transit-deep);
  font-weight: 700;
}

.hire-process {
  display: flex;
  border-top: 1px solid var(--line);
}

.hire-step {
  flex: 1;
  padding: 30px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.hire-step:last-child {
  border-right: none;
}

.hire-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.hire-step h4 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.hire-step p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------------------------------------------------------------- */
/* FAQ                                                                */
/* ---------------------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  font-family: var(--font-body);
}

.faq-q__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--transit);
}

.faq-item.open .faq-q__icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a__inner {
  padding: 0 4px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

/* ---------------------------------------------------------------- */
/* NEWSLETTER                                                         */
/* ---------------------------------------------------------------- */
.newsletter-box {
  border-radius: var(--r-lg);
  padding: 56px;
  text-align: center;
  background: var(--ink);
  color: #fff;
}

.newsletter-box h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin-bottom: 12px;
  color: #fff;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 30px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 430px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14.5px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-msg {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
}

/* ---------------------------------------------------------------- */
/* CONTACT                                                            */
/* ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 9px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  transition: border-color .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--transit);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field-error {
  color: var(--alert);
  font-size: 12.5px;
  margin-top: 6px;
  display: none;
  font-family: var(--font-mono);
}

.field.invalid input,
.field.invalid textarea {
  border-color: var(--alert);
}

.field.invalid .field-error {
  display: block;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-card svg {
  width: 20px;
  height: 20px;
  color: var(--transit);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

.contact-success {
  display: none;
  text-align: center;
  padding: 46px 16px;
}

.contact-success.show {
  display: block;
}

.contact-success svg {
  width: 46px;
  height: 46px;
  color: var(--go);
  margin: 0 auto 16px;
}

/* ---------------------------------------------------------------- */
/* CTA BANNER                                                         */
/* ---------------------------------------------------------------- */
.cta-banner {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------- */
/* FOOTER                                                             */
/* ---------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 76px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  margin: 18px 0 22px;
  max-width: 280px;
  line-height: 1.6;
}

.footer h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  transition: color .2s ease;
}

.footer ul li a:hover {
  color: var(--signal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--signal);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.footer .icon-btn {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.footer .icon-btn:hover {
  border-color: var(--signal);
  color: var(--signal);
}

/* ---------------------------------------------------------------- */
/* FLOATING ELEMENTS + COOKIE                                        */
/* ---------------------------------------------------------------- */
.float-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 400;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, opacity .25s ease;
  opacity: 0;
  pointer-events: none;
}

.float-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: #000;
}

.float-btn svg {
  width: 20px;
  height: 20px;
}

#contactFab {
  opacity: 1;
  pointer-events: auto;
  background: var(--signal);
  color: var(--ink);
}

#contactFab:hover {
  background: var(--signal-deep);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 540px;
  margin: 0 auto;
  z-index: 600;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(140%);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 13.5px;
  color: var(--ink-soft);
  flex: 1;
  min-width: 200px;
}

.cookie-banner .btn {
  flex-shrink: 0;
}

/* ---------------------------------------------------------------- */
/* RESPONSIVE                                                        */
/* ---------------------------------------------------------------- */
@media (max-width:980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero p {
    max-width: 100%;
  }

  .product-spot {
    grid-template-columns: 1fr;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card--lg {
    grid-column: span 2;
    grid-row: span 1;
  }

  .switcher {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .process-row,
  .hire-process {
    flex-wrap: wrap;
  }

  .process-step,
  .hire-step {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width:760px) {
  .nav__links {
    display: none;
  }

  .nav__right .btn--ghost {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card--lg {
    grid-column: span 1;
  }

  .section {
    padding: 80px 0;
  }

  .founder-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social-row {
    justify-content: center;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--line);
  }

  .process-step,
  .hire-step {
    flex: 1 1 100%;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mv-card {
    padding: 30px;
  }

  .newsletter-box,
  .cta-banner {
    padding: 38px 24px;
  }

  .role-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-spot {
    padding: 30px;
  }

  .journey-a__inner {
    padding-left: 4px;
  }

  .journey-tag {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
