@charset "UTF-8";
/* ==========================================================================
   BRIDGESOFT — styles.css
   Section-specific styling. Loads AFTER base.css and composes on top of it.

   base.css already owns: reset, design tokens, typography, .container,
   .section, .grid, .eyebrow, .btn, .card, .icon-tile, .tag, .link-more,
   .sr-only, .skip-link, .reveal, .marquee and the reduced-motion block.
   Nothing in that list is redefined here.

   CONTENTS
     1.  Utilities used across sections
     2.  Header / brand / primary nav
     3.  Mega panel
     4.  Mobile drawer
     5.  Hero
     6.  Intro
     7.  Industries
     8.  Technologies marquee
     9.  Services
     10. Clients marquee
     11. Development
     12. Process
     13. Why / stats
     14. FAQ accordion
     15. CTA band
     16. Contact + form
     17. Footer
     18. Print
   ========================================================================== */


/* ==========================================================================
   1. UTILITIES
   ========================================================================== */

/* The inlined icon sprite must never paint. */
.sprite {
  display: none;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

/* Brand glyphs in the sprite are solid silhouettes, not strokes. */
.icon--brand {
  stroke: none;
  fill: currentColor;
}

/* Scroll reveal is opt-in: <html> only gains .js when scripting is alive.
   Without it every .reveal stays painted, so the page can never go blank. */
html:not(.js) .reveal,
html:not(.js) .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}


/* ==========================================================================
   2. HEADER / BRAND / PRIMARY NAV
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease),
              border-color .3s var(--ease),
              backdrop-filter .3s var(--ease);
}

.site-header.is-scrolled {
  background-color: rgba(6, 10, 19, .86);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 26px);
  min-height: 72px;
  transition: min-height .3s var(--ease);
}

.site-header.is-scrolled .site-header__inner {
  min-height: 62px;
}

/* --- brand -------------------------------------------------------------- */

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--text);
  border-radius: 10px;
  transition: opacity .25s var(--ease);
}

.brand:hover {
  opacity: .85;
}

.brand__logo {
  width: 148px;
  height: 30px;
  fill: currentColor;
}

.brand--footer .brand__logo {
  width: 164px;
  height: 33px;
}

/* --- header actions ----------------------------------------------------- */

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__cta {
  display: none;
}

.nav-toggle {
  position: relative;
  z-index: 95;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  color: var(--text);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}

.nav-toggle:hover {
  border-color: rgba(53, 199, 244, .5);
  color: var(--accent);
}

.nav-toggle .icon {
  width: 22px;
  height: 22px;
}

.nav-toggle__close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: block;
}

/* --- nav links ---------------------------------------------------------- */

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-nav__item {
  position: static;
}

.site-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-2);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  transition: color .22s var(--ease), background-color .22s var(--ease);
}

.site-nav__link:hover {
  color: var(--text);
  background-color: rgba(255, 255, 255, .045);
}

.site-nav__link.is-active {
  color: var(--accent);
}

.site-nav__chevron {
  width: 18px;
  height: 18px;
  transition: transform .28s var(--ease);
}

.site-nav__item--mega.is-open > .site-nav__trigger .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__item--mega.is-open > .site-nav__trigger {
  color: var(--text);
}


/* ==========================================================================
   3. MEGA PANEL
   ========================================================================== */

/* Mobile: inline accordion inside the drawer. */
.mega {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows .32s var(--ease), visibility 0s linear .32s;
}

.site-nav__item--mega.is-open .mega {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows .32s var(--ease), visibility 0s linear 0s;
}

.mega__inner {
  min-height: 0;
  overflow: hidden;
}

.mega__grid {
  display: grid;
  gap: 18px;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  padding-block: 8px 14px;
}

.mega__col-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.mega__col-title .icon {
  width: 16px;
  height: 16px;
}

.mega__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
}

.mega__link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background-color .22s var(--ease), border-color .22s var(--ease);
}

.mega__link:hover {
  background-color: rgba(53, 199, 244, .06);
  border-color: rgba(53, 199, 244, .24);
}

.mega__link-label {
  color: var(--text);
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.35;
}

.mega__link-desc {
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.45;
}

.mega__link:hover .mega__link-label {
  color: var(--accent);
}


/* ==========================================================================
   4. MOBILE DRAWER
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(390px, 88vw);
  padding: 92px 20px 40px;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  box-shadow: -30px 0 70px -40px rgba(0, 0, 0, .95);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(102%);
  visibility: hidden;
  transition: transform .34s var(--ease), visibility 0s linear .34s;
}

.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .34s var(--ease), visibility 0s linear 0s;
}

.site-nav__foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}

.site-nav__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--text-muted);
  font-size: .9rem;
  transition: color .22s var(--ease);
}

.site-nav__contact:hover {
  color: var(--accent);
}

.site-nav__contact .icon {
  width: 17px;
  height: 17px;
  color: var(--accent);
}

.site-nav__scrim {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(3, 6, 12, .62);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.site-nav__scrim.is-visible {
  opacity: 1;
}


/* --- desktop navigation ------------------------------------------------- */

@media (min-width: 560px) {
  .site-header__cta {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .nav-toggle,
  .site-nav__foot {
    display: none;
  }

  .site-nav__scrim {
    display: none !important;
  }

  .site-nav {
    position: static;
    z-index: auto;
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: auto;
    margin-left: auto;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    overflow: visible;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .site-nav__link {
    width: auto;
    min-height: 40px;
    padding: 9px 13px;
    border-radius: var(--radius-pill);
    font-size: .93rem;
  }

  .site-nav__link.is-active {
    background-color: rgba(53, 199, 244, .09);
  }

  /* The panel is anchored to the header container, not to the list item. */
  .mega {
    position: absolute;
    top: 100%;
    left: var(--gutter);
    right: var(--gutter);
    display: block;
    grid-template-rows: none;
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .26s var(--ease),
                transform .26s var(--ease),
                visibility 0s linear .26s;
  }

  .site-nav__item--mega.is-open .mega {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: opacity .26s var(--ease),
                transform .26s var(--ease),
                visibility 0s linear 0s;
  }

  .mega__inner {
    overflow: visible;
    background: rgba(10, 17, 32, .97);
    -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 34px 80px -34px rgba(0, 0, 0, .95);
  }

  .mega__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 32px);
    padding: clamp(22px, 2.4vw, 32px);
  }

  .mega__col + .mega__col {
    padding-left: clamp(18px, 2vw, 32px);
    border-left: 1px solid var(--border-soft);
  }
}


/* ==========================================================================
   5. HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(52px, 7vw, 104px) clamp(64px, 9vw, 128px);
}

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

.hero__grid {
  position: absolute;
  inset: -12% -12% 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(53, 199, 244, .075) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg,  rgba(53, 199, 244, .055) 0 1px, transparent 1px 88px);
  -webkit-mask-image: radial-gradient(ellipse 74% 62% at 50% 28%, #000 0%, rgba(0, 0, 0, .35) 55%, transparent 82%);
          mask-image: radial-gradient(ellipse 74% 62% at 50% 28%, #000 0%, rgba(0, 0, 0, .35) 55%, transparent 82%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.hero__glow--a {
  top: -26%;
  right: -16%;
  width: min(640px, 92vw);
  height: min(640px, 92vw);
  background: radial-gradient(circle, rgba(53, 199, 244, .26), transparent 66%);
}

.hero__glow--b {
  bottom: -32%;
  left: -18%;
  width: min(540px, 86vw);
  height: min(540px, 86vw);
  background: radial-gradient(circle, rgba(30, 127, 192, .24), transparent 68%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(44px, 6vw, 72px);
}

.hero__title {
  margin-top: 22px;
  max-width: 15ch;
}

.hero__accent {
  color: var(--accent);
  text-shadow: 0 0 42px rgba(53, 199, 244, .35);
}

.hero__sub {
  margin-top: 24px;
  max-width: 58ch;
  color: var(--text-2);
  font-size: clamp(1.02rem, 1.25vw, 1.14rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: clamp(32px, 4vw, 46px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--border-soft);
}

.hero__trust-item {
  padding: 7px 13px;
  font-size: .76rem;
}

.hero__trust-icon {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

/* --- decorative figure -------------------------------------------------- */

.hero__figure {
  display: none;
  position: relative;
}

.hero-span {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-span__pulse {
  animation: span-travel 8s var(--ease) infinite;
}

@keyframes span-travel {
  0%   { transform: translateX(0);     opacity: 0; }
  7%   { opacity: 1; }
  93%  { opacity: 1; }
  100% { transform: translateX(520px); opacity: 0; }
}

.hero-span__nodes circle {
  animation: node-breathe 4.5s var(--ease) infinite;
}

.hero-span__nodes circle:nth-child(2) { animation-delay: .5s; }
.hero-span__nodes circle:nth-child(3) { animation-delay: 1s; }

@keyframes node-breathe {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}

.hero-console {
  position: absolute;
  left: 0;
  bottom: 4%;
  width: min(272px, 62%);
  padding: 14px 16px 16px;
  background: rgba(14, 23, 41, .94);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .95);
  animation: console-float 9s ease-in-out infinite;
}

@keyframes console-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-console__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}

.hero-console__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--surface-3);
}

.hero-console__dot:first-child {
  background: var(--accent);
}

.hero-console__name {
  margin-left: 6px;
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--text-faint);
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

.hero-console__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 13px;
}

.hero-console__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .78rem;
}

.hero-console__key {
  color: var(--text-muted);
}

.hero-console__val {
  color: var(--accent);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .02em;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    align-items: center;
    gap: clamp(40px, 4vw, 72px);
  }

  .hero__figure {
    display: block;
  }
}


/* ==========================================================================
   6. INTRO
   ========================================================================== */

.intro__inner {
  display: grid;
  gap: clamp(38px, 5vw, 66px);
}

.intro__body {
  margin-top: 20px;
  max-width: 58ch;
}

.intro__link {
  padding-top: 26px;
}

.intro__pillars {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(14, 23, 41, 0) 100%);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.pillar:hover {
  border-color: rgba(53, 199, 244, .4);
  transform: translateY(-3px);
}

.pillar .icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.pillar .icon-tile svg {
  width: 20px;
  height: 20px;
}

.pillar:hover .icon-tile {
  background: rgba(53, 199, 244, .18);
}

.pillar__title {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.pillar__text {
  margin-top: 7px;
  font-size: .92rem;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .intro__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .intro__statement {
    position: sticky;
    top: 116px;
  }
}


/* ==========================================================================
   7. INDUSTRIES
   ========================================================================== */

.ind-card .card__text {
  font-size: .93rem;
  color: var(--text-muted);
}

.ind-card .link-more {
  font-size: .88rem;
}


/* ==========================================================================
   8. TECHNOLOGIES
   ========================================================================== */

.tech__title,
.clients__title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(.76rem, 1.1vw, .82rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-muted);
}

.tech__marquee,
.clients__marquee {
  margin-block: clamp(26px, 3.4vw, 42px);
}

/* Zero-width seam element: keeps the -50% loop mathematically exact. */
.marquee__seam {
  width: 0;
  padding: 0;
  border: 0;
}

.tech__pill {
  display: inline-flex;
  align-items: center;
  height: 58px;
  padding: 0 clamp(18px, 2vw, 28px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .015);
  color: var(--text-2);
  font-family: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}

.tech__pill:hover {
  color: var(--text);
  border-color: rgba(53, 199, 244, .45);
}

.tech__note {
  max-width: 74ch;
  margin-inline: auto;
  text-align: center;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--text-muted);
}


/* ==========================================================================
   9. SERVICES
   ========================================================================== */

.svc-card {
  padding: clamp(20px, 2vw, 26px);
}

.svc-card .card__title {
  margin-top: 16px;
  font-size: clamp(1.05rem, 1.3vw, 1.16rem);
}

.svc-card .card__text {
  margin-top: 9px;
  font-size: .89rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.svc-card .link-more {
  padding-top: 18px;
  font-size: .85rem;
}

.svc-card .icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 13px;
}

.svc-card .icon-tile svg {
  width: 21px;
  height: 21px;
}


/* ==========================================================================
   10. CLIENTS
   ========================================================================== */

.client-tile {
  display: grid;
  place-items: center;
  width: clamp(148px, 17vw, 188px);
  height: 84px;
  padding: 0 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .014);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}

/* Logos render monochrome so a mixed set of brand colours cannot fight the
   page palette. Colour returns on hover. */
.client-tile__logo {
  width: auto;
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.55) contrast(.85);
  opacity: .62;
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}

.clients__marquee:hover .client-tile__logo,
.client-tile:focus-within .client-tile__logo {
  opacity: 1;
  filter: grayscale(1) brightness(1.9) contrast(.9);
}

.client-tile:hover {
  border-color: rgba(53, 199, 244, .4);
  background: rgba(53, 199, 244, .05);
}

.clients__note {
  max-width: 68ch;
  margin-inline: auto;
  text-align: center;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--text-muted);
}


/* ==========================================================================
   11. DEVELOPMENT
   ========================================================================== */

.dev-card__bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

.dev-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .89rem;
  line-height: 1.5;
  color: var(--text-2);
}

.dev-card__tick {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  color: var(--accent);
}

@media (min-width: 560px) {
  .dev-card--wide {
    grid-column: span 2;
  }
}


/* ==========================================================================
   12. PROCESS
   ========================================================================== */

.proc-list {
  position: relative;
  display: grid;
  gap: clamp(26px, 3vw, 34px);
}

.proc-step {
  position: relative;
  z-index: 1;
}

.proc-step__num {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--accent);
  font-family: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}

.proc-step:hover .proc-step__num {
  border-color: rgba(53, 199, 244, .6);
  background-color: rgba(53, 199, 244, .1);
}

.proc-step__title {
  margin-top: 20px;
}

.proc-step__text {
  margin-top: 10px;
  font-size: .92rem;
  color: var(--text-muted);
  max-width: 42ch;
}

@media (min-width: 560px) {
  .proc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .proc-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.2vw, 30px);
  }

  /* Connecting line running behind the numbered markers. */
  .proc-list::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 29px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg,
                transparent,
                var(--border) 10%,
                var(--accent-deep) 50%,
                var(--border) 90%,
                transparent);
  }
}


/* ==========================================================================
   13. WHY / STATS
   ========================================================================== */

.stats {
  display: grid;
  /* Three stats: one per row on small screens, three across from 768px, so no
     empty cell is left showing a divider. */
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  margin-bottom: clamp(38px, 5vw, 62px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--border-soft);
  overflow: hidden;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: clamp(24px, 3vw, 34px) 14px;
  background: var(--bg);
  text-align: center;
}

.stat__value {
  font-family: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--accent);
}

.stat__label {
  font-size: .84rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 20ch;
}

.why-item {
  height: 100%;
  padding: clamp(20px, 2.2vw, 27px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgba(14, 23, 41, .5);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.why-item:hover {
  border-color: rgba(53, 199, 244, .4);
  transform: translateY(-3px);
}

.why-item .icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.why-item .icon-tile svg {
  width: 20px;
  height: 20px;
}

.why-item:hover .icon-tile {
  background: rgba(53, 199, 244, .18);
}

.why-item__title {
  margin-top: 17px;
}

.why-item__text {
  margin-top: 9px;
  font-size: .92rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* ==========================================================================
   14. FAQ ACCORDION
   ========================================================================== */

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(14, 23, 41, 0) 100%);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}

.faq__item.is-open {
  border-color: rgba(53, 199, 244, .45);
}

/* Neutralise the h3 scale — the button owns the typography here. */
.faq__q {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: normal;
}

.faq__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 60px;
  padding: 18px clamp(16px, 2.2vw, 26px);
  border-radius: var(--radius);
  color: var(--text);
  text-align: left;
}

.faq__q-text {
  font-family: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.01em;
}

.faq__chevron {
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform .3s var(--ease);
}

.faq__btn[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows .34s var(--ease), visibility 0s linear .34s;
}

.faq__item.is-open .faq__panel {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows .34s var(--ease), visibility 0s linear 0s;
}

.faq__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.faq__panel-inner p {
  padding: 0 clamp(16px, 2.2vw, 26px) 22px;
  font-size: .94rem;
  color: var(--text-2);
  max-width: 68ch;
}


/* ==========================================================================
   15. CTA BAND
   ========================================================================== */

.cta-band {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-block: clamp(48px, 6vw, 84px);
  background: var(--grad-accent);
  color: var(--accent-ink);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(5, 32, 44, .09) 0 1px, transparent 1px 68px);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.cta-band__eyebrow {
  color: var(--accent-ink);
}

.cta-band__eyebrow::before {
  background: var(--accent-ink);
}

.cta-band__title {
  margin-top: 14px;
  color: var(--accent-ink);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}

.cta-band__text {
  margin-top: 16px;
  max-width: 56ch;
  color: rgba(5, 32, 44, .84);
}

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

.cta-band__btn--solid {
  background: var(--accent-ink);
  color: #EAF9FF;
}

.cta-band__btn--solid:hover {
  background: #021018;
  transform: translateY(-2px);
}

.cta-band__btn--outline {
  background: transparent;
  color: var(--accent-ink);
  border-color: rgba(5, 32, 44, .42);
}

.cta-band__btn--outline:hover {
  background: rgba(5, 32, 44, .1);
  border-color: var(--accent-ink);
}

/* The cyan focus ring is invisible on a cyan band — use dark ink instead. */
.cta-band a:focus-visible {
  box-shadow: 0 0 0 3px rgba(5, 32, 44, .8);
}

@media (min-width: 1024px) {
  .cta-band__inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, auto);
  }
}


/* ==========================================================================
   16. CONTACT + FORM
   ========================================================================== */

.contact__inner {
  display: grid;
  gap: clamp(36px, 5vw, 62px);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: clamp(30px, 4vw, 42px);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.contact__detail-icon svg {
  width: 20px;
  height: 20px;
}

/* Opening hours, one day per row. A two-column grid with the day column sized
   to the longest day name, so every time starts at the same x position. The row
   div is display:contents so dt and dd become grid items directly - that is what
   keeps the two columns aligned across rows. */
.hours {
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: max-content auto;
  column-gap: clamp(16px, 3vw, 32px);
  align-items: baseline;
  max-width: 320px;
}

.hours__row {
  display: contents;
}

.hours__day,
.hours__time {
  margin: 0;
  padding: 4px 0;
  font-size: .88rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border-soft);
}

.hours__day {
  color: var(--text-2);
}

.hours__time {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hours__row:last-of-type .hours__day,
.hours__row:last-of-type .hours__time {
  border-bottom: 0;
}

.hours__row--closed .hours__day,
.hours__row--closed .hours__time {
  color: var(--text-muted);
}

.hours__note {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--text-muted);
}

.contact__detail-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact__detail-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact__detail-value {
  color: var(--text);
  font-size: .97rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact__detail-link {
  transition: color .22s var(--ease);
}

.contact__detail-link:hover {
  color: var(--accent);
}

/* --- form shell --------------------------------------------------------- */

.contact__form-wrap {
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  box-shadow: var(--shadow-card);
}

.form__title {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
}

.form__note {
  margin-top: 8px;
  font-size: .84rem;
  color: var(--text-muted);
}

.form {
  display: grid;
  gap: 18px;
  margin-top: clamp(22px, 2.6vw, 30px);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.field__label {
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-2);
}

.field__req {
  color: var(--accent);
}

.field__input {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid var(--border-field);
  border-radius: 12px;
  background: rgba(6, 10, 19, .62);
  color: var(--text);
  font-size: .97rem;
  line-height: 1.5;
  transition: border-color .22s var(--ease), background-color .22s var(--ease);
}

.field__input::placeholder {
  color: var(--text-faint);
}

.field__input:hover {
  border-color: var(--accent-strong);
}

.field__input:focus,
.field__input:focus-visible {
  border-color: var(--accent);
  background-color: rgba(6, 10, 19, .9);
}

.field__textarea {
  min-height: 148px;
  padding-top: 14px;
  resize: vertical;
}

.field__input[aria-invalid="true"] {
  border-color: #F87171;
  background-color: rgba(248, 113, 113, .06);
}

.field__error {
  display: block;
  font-size: .82rem;
  line-height: 1.45;
  color: #FCA5A5;
}

.field__error:empty {
  display: none;
}

.form__foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form__submit {
  align-self: flex-start;
}

.form__consent {
  font-size: .78rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 54ch;
}

/* Pre-launch honesty banner. Delete once a real endpoint is wired up. */
.form__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px dashed rgba(251, 191, 36, .42);
  border-radius: 12px;
  background: rgba(251, 191, 36, .05);
  font-size: .79rem;
  line-height: 1.55;
  color: var(--text-2);
}

.form__notice .icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--warn);
}

.form__notice a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__status {
  font-size: .86rem;
  line-height: 1.5;
  color: var(--warn);
}

.form__status:empty {
  display: none;
}

/* --- success state ------------------------------------------------------ */

.form__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: clamp(22px, 2.6vw, 30px);
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(52, 211, 153, .42);
  border-radius: var(--radius);
  background: rgba(52, 211, 153, .06);
}

.form__success-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(52, 211, 153, .14);
  color: var(--ok);
}

.form__success-icon .icon {
  width: 22px;
  height: 22px;
}

.form__success-title {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.4;
}

.form__success-text {
  font-size: .88rem;
  color: var(--text-muted);
}

.form__success-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field--full,
  .form__foot,
  .form__notice,
  .form__status {
    grid-column: 1 / -1;
  }

  .form__foot {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }

  .form__submit {
    align-self: auto;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .contact__inner {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    align-items: start;
  }
}


/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-2);
  padding-top: clamp(48px, 6vw, 82px);
}

.site-footer__grid {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.site-footer__about {
  margin-top: 18px;
  max-width: 48ch;
  font-size: .89rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social__link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.social__link:hover {
  color: var(--accent);
  border-color: rgba(53, 199, 244, .45);
  transform: translateY(-2px);
}

.social__link .icon {
  width: 18px;
  height: 18px;
}

.site-footer__heading {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.site-footer__links a {
  display: inline-block;
  padding: 11px 0;
  font-size: .89rem;
  line-height: 1.35;
  color: var(--text-muted);
  transition: color .22s var(--ease);
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: clamp(34px, 4.5vw, 54px);
  padding-block: 22px;
  border-top: 1px solid var(--border-soft);
}

.site-footer__copy {
  font-size: .82rem;
  color: var(--text-muted);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 22px;
}

.site-footer__legal a {
  display: inline-block;
  padding: 10px 0;
  font-size: .82rem;
  color: var(--text-muted);
  transition: color .22s var(--ease);
}

.site-footer__legal a:hover {
  color: var(--accent);
}

@media (min-width: 560px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .site-footer__bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.7fr) repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 2.6vw, 40px);
  }

  .site-footer__brand {
    grid-column: auto;
    padding-right: clamp(16px, 2vw, 32px);
  }
}


/* ==========================================================================
   18. 404 PAGE
   ========================================================================== */

.error-page {
  display: grid;
  place-items: center;
  min-height: 62vh;
  padding-block: clamp(60px, 9vw, 120px);
  text-align: center;
}

.error-page__code {
  font-family: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
  text-shadow: 0 0 60px rgba(53, 199, 244, .3);
}

.error-page__title {
  margin-top: 18px;
}

.error-page__text {
  margin-top: 16px;
  margin-inline: auto;
  max-width: 52ch;
  color: var(--text-2);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.error-page__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: clamp(34px, 5vw, 50px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--border-soft);
}

.error-page__links a {
  display: inline-block;
  padding: 10px 0;
  font-size: .89rem;
  color: var(--text-muted);
  transition: color .22s var(--ease);
}

.error-page__links a:hover {
  color: var(--accent);
}


/* ==========================================================================
   19. PRINT
   ========================================================================== */

@media print {
  html,
  body {
    background: #fff !important;
    color: #111 !important;
  }

  body::before,
  .hero__bg,
  .hero__figure,
  .site-nav,
  .site-nav__scrim,
  .nav-toggle,
  .site-header__cta,
  .marquee,
  .tech__marquee,
  .clients__marquee,
  .form__notice,
  .form__success,
  .cta-band__actions,
  .hero__actions,
  .social {
    display: none !important;
  }

  .site-header {
    position: static !important;
    background: none !important;
    border-bottom: 1px solid #bbb !important;
  }

  .site-header.is-scrolled {
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
  }

  .section,
  .hero,
  .cta-band,
  .site-footer {
    padding-block: 18pt !important;
    background: none !important;
    border-color: #ddd !important;
  }

  .section--alt,
  .cta-band,
  .site-footer {
    background: none !important;
    color: #111 !important;
  }

  .cta-band::before {
    display: none !important;
  }

  h1, h2, h3, h4, h5, h6,
  p, li, a,
  .card__title, .card__text,
  .stat__value, .stat__label,
  .cta-band__title, .cta-band__text,
  .contact__detail-value, .hero__sub {
    color: #111 !important;
  }

  .card,
  .pillar,
  .why-item,
  .faq__item,
  .contact__form-wrap,
  .stats,
  .stat {
    background: none !important;
    border-color: #ccc !important;
    box-shadow: none !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .icon-tile {
    background: none !important;
    border-color: #ccc !important;
    color: #111 !important;
  }

  /* Collapsed panels must print their content. */
  .faq__panel,
  .mega {
    grid-template-rows: 1fr !important;
    visibility: visible !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  a[href^="http"]::after,
  a[href^="mailto"]::after {
    content: " (" attr(href) ")";
    font-size: .8em;
    color: #555;
  }

  .site-footer__legal a::after,
  .site-nav__link::after {
    content: none !important;
  }
}
