/* ==========================================================================
   Reqon Technologies — design system
   Palette sampled directly from the corporate logo:
   navy #03193F · brand blue #0185F0 · node blue #0049A5
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:            oklch(100% 0 0);
  --surface:       oklch(97.6% 0.006 258);
  --surface-2:     oklch(94.5% 0.011 257);
  --border:        oklch(91.5% 0.012 256);
  --border-strong: oklch(86% 0.016 256);

  /* Ink */
  --fg:    oklch(22.3% 0.078 259.6);
  --ink:   oklch(33% 0.035 258);
  --muted: oklch(52.2% 0.047 260.8);

  /* Brand */
  --navy:        oklch(22.3% 0.078 259.6);
  --navy-lift:   oklch(28.5% 0.095 259);
  --accent:      oklch(61.5% 0.187 252.5);
  --accent-deep: oklch(45.5% 0.155 257);
  --accent-press:oklch(40% 0.14 257);
  --accent-lit:  oklch(70% 0.16 250);
  --accent-soft: oklch(96% 0.024 250);

  /* Type */
  --font-display: "Outfit", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Source Sans Pro", -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 8.5vw, 116px);
  --maxw: 1200px;
  --page-inset: max(var(--gutter), calc((100vw - 1200px) / 2));
  --radius: 4px;
  --shadow-sm: 0 1px 2px oklch(22.3% 0.078 259.6 / 0.06);
  --shadow-md: 0 10px 30px oklch(22.3% 0.078 259.6 / 0.09);
  --shadow-lg: 0 24px 60px oklch(22.3% 0.078 259.6 / 0.16);
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--fg);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.15rem); line-height: 1.08; letter-spacing: -0.022em; }
h2 { font-size: clamp(1.6rem, 1.25rem + 1.5vw, 2.35rem); line-height: 1.16; letter-spacing: -0.018em; }
h3 { font-size: 1.22rem; line-height: 1.3; letter-spacing: -0.01em; }
h4 { font-size: 1.02rem; line-height: 1.35; letter-spacing: -0.004em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-deep); text-underline-offset: 3px; }
a:hover { color: var(--accent-press); }

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

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px;
  border-radius: var(--radius); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 16px; color: #fff; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--surface { background: var(--surface); }
.section--navy { background: var(--navy); color: oklch(88% 0.02 258); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.lede { font-size: clamp(1.06rem, 1rem + 0.4vw, 1.24rem); line-height: 1.6; color: var(--ink); }
.measure { max-width: 68ch; }
.measure-narrow { max-width: 58ch; }

/* Section eyebrow — the single repeating brand motif (mirrors the rule
   under the headline in the corporate key visuals). */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  flex: none;
}
.section--navy .eyebrow,
.cta-band .eyebrow,
.page-banner .eyebrow { color: var(--accent-lit); }

.section-head { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head p { color: var(--muted); margin-top: 16px; }
.section--navy .section-head p { color: oklch(83% 0.024 258); }

/* ------------------------------------------------------------ buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn .ic { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--accent-deep); color: #fff; }
.btn--primary:hover { background: var(--accent-press); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--accent-deep);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--accent-soft); border-color: var(--accent-deep); color: var(--accent-press); }

.btn--on-navy {
  background: transparent;
  color: #fff;
  border-color: oklch(100% 0 0 / 0.4);
}
.btn--on-navy:hover { background: oklch(100% 0 0 / 0.12); border-color: #fff; color: #fff; }

/* Inline text link with arrow — used for every secondary entry point */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--accent-deep);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1.5px solid oklch(45.5% 0.155 257 / 0.28);
  transition: color .16s ease, border-color .16s ease, gap .16s ease;
}
.tlink:hover { color: var(--accent-press); border-color: var(--accent-press); gap: 13px; }
.tlink .ic { width: 16px; height: 16px; flex: none; }
.section--navy .tlink { color: #fff; border-color: oklch(100% 0 0 / 0.45); }
.section--navy .tlink:hover { color: var(--accent-lit); border-color: var(--accent-lit); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: auto; height: 46px; }

.header-nav { display: flex; align-items: center; gap: clamp(8px, 1.4vw, 20px); }

.nav { display: flex; align-items: center; gap: 4px; }

.nav a, .nav .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--fg);
  text-decoration: none;
  padding: 10px 14px;
  border: 0;
  background: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .16s ease, color .16s ease;
}
.nav a:hover, .nav .nav-trigger:hover { background: var(--surface-2); color: var(--fg); }
.nav a[aria-current="page"] { color: var(--accent-deep); font-weight: 600; }

.nav-item { position: relative; }
.nav-trigger .ic { width: 14px; height: 14px; transition: transform .18s ease; }
.nav-item.open .nav-trigger .ic { transform: rotate(180deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 256px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: none;
}
.nav-item.open .nav-menu { display: block; }
.nav-menu a {
  display: block;
  padding: 11px 14px;
  font-size: 0.95rem;
  border-radius: 3px;
}
.nav-menu a span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.83rem; color: var(--muted); margin-top: 2px; }
.nav-menu a:hover { background: var(--accent-soft); color: var(--accent-press); }
.nav-menu a:hover span { color: var(--ink); }

/* The dropdown opens on pointer and on keyboard focus without any JavaScript.
   The .open class is a progressive enhancement, not a dependency. */
@media (min-width: 981px) {
  .nav-item:hover > .nav-menu,
  .nav-item:focus-within > .nav-menu { display: block; }
  .nav-item:hover .nav-trigger .ic,
  .nav-item:focus-within .nav-trigger .ic { transform: rotate(180deg); }
  /* Invisible bridge across the 8px gap so the pointer can reach the menu. */
  .nav-menu::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: -12px;
    height: 12px;
  }
}

.header-cta { flex: none; }
.header-cta .btn { min-height: 44px; padding: 10px 20px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--fg);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--surface-2); }
.nav-toggle .ic { width: 22px; height: 22px; }
.nav-toggle .ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }
.nav-toggle[aria-expanded="true"] .ic-menu { display: none; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .header-bar { min-height: 68px; }
  .brand img { height: 38px; }
  .header-nav {
    position: fixed;
    inset: 68px 0 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 20px var(--gutter) 48px;
    overflow-y: auto;
    display: none;
  }
  .header-nav.open { display: block; }
  .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a, .nav .nav-trigger {
    width: 100%;
    justify-content: space-between;
    font-size: 1.08rem;
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .nav a:hover, .nav .nav-trigger:hover { background: transparent; color: var(--accent-deep); }
  .nav-menu {
    position: static;
    display: none;
    border: 0;
    box-shadow: none;
    padding: 4px 0 10px 16px;
    min-width: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-item.open .nav-menu { display: block; }
  .nav-menu a { border-bottom: 0; font-size: 1rem; padding: 12px 10px; }
  .header-cta { display: block; margin-top: 24px; }
  .header-cta .btn { width: 100%; min-height: 52px; }
  body.nav-open { overflow: hidden; }
}

/* If the drawer was left open and the viewport widens, snap back to the desktop row. */
@media (min-width: 981px) {
  .header-nav, .header-nav.open { display: flex; }
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  background: var(--navy);
  color: oklch(88% 0.02 258);
  overflow: hidden;
}

.hero-slide { display: none; }
.hero-slide.is-active { display: block; }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); }

.hero-copy-col {
  padding-inline: var(--gutter);
  padding-block: clamp(40px, 5.5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy { max-width: 40rem; }

.hero-kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(80% 0.028 258);
  margin: 0 0 18px;
}

.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--accent-lit); }

.hero-rule { width: 92px; height: 3px; background: var(--accent); margin: 26px 0 22px; }

.hero-sub {
  font-size: clamp(1.04rem, 0.98rem + 0.45vw, 1.24rem);
  line-height: 1.55;
  color: oklch(87% 0.022 258);
  max-width: 36ch;
  margin: 0;
}

.hero-marks {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px 30px;
  margin: 30px 0 32px;
  padding: 18px 0;
  border-top: 1px solid oklch(100% 0 0 / 0.14);
  border-bottom: 1px solid oklch(100% 0 0 / 0.14);
  list-style: none;
}
@media (min-width: 560px) { .hero-marks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.hero-marks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.35;
  color: oklch(89% 0.02 258);
}
.hero-marks .ic { width: 20px; height: 20px; color: oklch(78% 0.03 258); flex: none; }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px; }

.hero-media { position: relative; aspect-ratio: 16 / 10; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(22.3% 0.078 259.6 / 0.6) 0%, oklch(22.3% 0.078 259.6 / 0.1) 42%, oklch(22.3% 0.078 259.6 / 0.3) 100%);
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); min-height: 596px; }
  .hero-copy-col {
    padding-left: var(--page-inset);
    padding-right: clamp(36px, 4.4vw, 72px);
  }
  .hero-media { aspect-ratio: auto; height: 100%; }
  .hero-media::after {
    background: linear-gradient(90deg, oklch(22.3% 0.078 259.6 / 0.95) 0%, oklch(22.3% 0.078 259.6 / 0.42) 22%, oklch(22.3% 0.078 259.6 / 0.04) 58%);
  }
}

.hero-controls-wrap { padding-inline: var(--gutter); }
@media (min-width: 900px) { .hero-controls-wrap { padding-inline: var(--page-inset); } }

.hero-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 18px 20px;
  border-top: 1px solid oklch(100% 0 0 / 0.14);
}
.hero-dots { display: flex; gap: 10px; }
.hero-dot {
  position: relative;
  width: 36px; height: 4px;
  padding: 0; border: 0;
  background: oklch(100% 0 0 / 0.3);
  cursor: pointer;
  border-radius: 2px;
  transition: background-color .2s ease;
}
.hero-dot::before { content: ""; position: absolute; inset: -20px -5px; }
.hero-dot:hover { background: oklch(100% 0 0 / 0.6); }
.hero-dot.is-active { background: var(--accent-lit); }

.hero-count {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: oklch(78% 0.03 258);
}
.hero-count b { color: #fff; font-weight: 600; }

.hero-arrows { display: flex; gap: 8px; margin-left: auto; }
.hero-arrow {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid oklch(100% 0 0 / 0.28);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease;
}
.hero-arrow:hover { background: oklch(100% 0 0 / 0.15); border-color: #fff; color: #fff; }
.hero-arrow .ic { width: 18px; height: 18px; }

@media (max-width: 560px) {
  .hero-marks li { font-size: 0.88rem; }
  .hero-actions .btn { width: 100%; }
  .hero-count { display: none; }
}

/* -------------------------------------------------------- page banner -- */

.page-banner {
  position: relative;
  background: var(--navy);
  color: oklch(88% 0.02 258);
  overflow: hidden;
  isolation: isolate;
}
.page-banner img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, oklch(22.3% 0.078 259.6 / 0.96) 0%, oklch(22.3% 0.078 259.6 / 0.86) 48%, oklch(22.3% 0.078 259.6 / 0.6) 100%);
}
.page-banner .wrap { padding-block: clamp(36px, 4.2vw, 62px); }
.page-banner h1 {
  color: #fff;
  max-width: 20ch;
  font-size: clamp(1.78rem, 1.28rem + 2vw, 2.6rem);
}
.page-banner p { color: oklch(87% 0.022 258); max-width: 56ch; margin-top: 16px; font-size: 1.02rem; }

/* The first section after a banner tightens up, so the page reads as one
   continuous column instead of a blue block floating above a white gap. */
.page-banner + main > .section:first-child { padding-top: clamp(34px, 3.6vw, 52px); }

.crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; letter-spacing: 0.02em;
  color: oklch(78% 0.03 258);
  margin-bottom: 16px;
}
.crumbs a { color: oklch(85% 0.03 258); text-decoration: none; border-bottom: 1px solid transparent; }
.crumbs a:hover { color: #fff; border-color: var(--accent-lit); }
.crumbs span[aria-hidden] { color: oklch(62% 0.04 258); }

/* --------------------------------------------------------------- grids -- */

.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

.split {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .split--flip > *:first-child { order: 2; }
}

.figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-md);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 3 / 2; }

.figure-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  background: oklch(22.3% 0.078 259.6 / 0.9);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 3px;
  box-shadow: var(--shadow-sm);
  max-width: calc(100% - 36px);
}
.figure-tag .ic { width: 15px; height: 15px; color: var(--accent-lit); flex: none; }

/* --------------------------------------------------------------- cards -- */

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card h3 { margin: 0; }
.card p { color: var(--muted); font-size: 0.99rem; margin: 0; }
.card .tlink { margin-top: auto; align-self: flex-start; }

.card-ic {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  color: var(--fg);
  border-radius: 3px;
  flex: none;
  transition: background-color .18s ease, color .18s ease;
}
a.card:hover .card-ic, .card--hoverable:hover .card-ic {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.card-ic .ic { width: 23px; height: 23px; }

a.card { text-decoration: none; }
a.card:hover, .card--hoverable:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
a.card:hover .tlink { color: var(--accent-press); border-color: var(--accent-press); gap: 13px; }

.section--surface .card { background: #fff; }

/* Service feature card with image */
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.svc-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-card:hover .tlink { color: var(--accent-press); border-color: var(--accent-press); gap: 13px; }
.svc-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-media img { transform: scale(1.04); }
.svc-body { padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.svc-body h3 { color: var(--fg); }
.svc-body p { color: var(--muted); margin: 0; font-size: 0.99rem; }
.svc-card .tlink { margin-top: auto; align-self: flex-start; }

/* Numbered / bordered list blocks */
.tiles { display: grid; gap: 0; border-top: 1px solid var(--border); }
.tile {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 4px 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.tile-n {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  padding-top: 4px;
}
.tile h3 { margin: 0 0 8px; }
.tile p { color: var(--muted); margin: 0; }
.section--navy .tiles { border-color: oklch(100% 0 0 / 0.16); }
.section--navy .tile { border-color: oklch(100% 0 0 / 0.16); }
.section--navy .tile-n { color: var(--accent-lit); }
.section--navy .tile p { color: oklch(83% 0.024 258); }

@media (max-width: 560px) {
  .tile { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .tile-n { padding-top: 0; }
}

/* Capability chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.94rem;
  color: var(--ink);
}
.chips .ic { width: 15px; height: 15px; color: var(--muted); flex: none; }
.section--navy .chips li { background: oklch(100% 0 0 / 0.06); border-color: oklch(100% 0 0 / 0.18); color: oklch(92% 0.015 258); }
.section--navy .chips .ic { color: oklch(76% 0.03 258); }

/* Fact strip */
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.fact { padding: clamp(24px, 2.6vw, 34px); border-right: 1px solid var(--border); }
.fact:last-child { border-right: 0; }
.fact .ic { width: 22px; height: 22px; color: var(--accent-deep); margin-bottom: 14px; }
.fact h3 { font-size: 1.06rem; margin: 0 0 6px; }
.fact p { color: var(--muted); font-size: 0.95rem; margin: 0; }
@media (max-width: 780px) {
  .facts { grid-template-columns: minmax(0, 1fr); }
  .fact { border-right: 0; border-bottom: 1px solid var(--border); }
  .fact:last-child { border-bottom: 0; }
}

/* Prose blocks for long-form copy */
.prose { max-width: 70ch; }
.prose h2 { margin-top: clamp(38px, 4vw, 56px); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 32px; margin-bottom: 10px; }
.prose p + h2 { margin-top: clamp(38px, 4vw, 56px); }

.pullquote {
  margin: clamp(32px, 4vw, 48px) 0;
  padding: 0 0 0 clamp(20px, 2.4vw, 30px);
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.02rem + 0.6vw, 1.5rem);
  line-height: 1.36;
  letter-spacing: -0.012em;
  color: var(--fg);
  font-weight: 500;
}

/* ------------------------------------------------------------ cta band -- */

.cta-band { background: var(--navy); color: oklch(88% 0.02 258); position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 120% at 84% 0%, oklch(45.5% 0.155 257 / 0.55), transparent 62%);
}
.cta-band .wrap { position: relative; padding-block: clamp(56px, 7vw, 92px); }
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-inner h2 { color: #fff; max-width: 22ch; }
.cta-inner p { color: oklch(85% 0.024 258); max-width: 46ch; margin: 14px 0 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band .btn--primary { background: #fff; color: var(--navy); }
.cta-band .btn--primary:hover { background: var(--accent-lit); color: oklch(18% 0.06 259); }

/* ------------------------------------------------------------- contact -- */

.contact-grid {
  display: grid;
  gap: clamp(28px, 3vw, 44px);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); }
}

.info-list { display: grid; gap: 0; border-top: 1px solid var(--border); margin: 0; padding: 0; }
.info-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.info-item .ic { width: 22px; height: 22px; color: var(--accent-deep); margin-top: 4px; }
.info-item h3 { font-size: 1.02rem; margin: 0 0 6px; }
.info-item p, .info-item address {
  margin: 0; color: var(--muted); font-style: normal; font-size: 0.99rem; line-height: 1.6;
}
.info-item a { color: var(--accent-deep); text-decoration: none; border-bottom: 1px solid oklch(45.5% 0.155 257 / 0.3); }
.info-item a:hover { color: var(--accent-press); border-color: var(--accent-press); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px);
}
.field { display: block; margin-bottom: 18px; }
.field > span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 13px 14px;
  min-height: 48px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px oklch(61.5% 0.187 252.5 / 0.22);
}
.field-note { font-size: 0.86rem; color: var(--muted); margin: -6px 0 20px; }
.form-card .btn { width: 100%; }
.form-status {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--accent-deep);
  min-height: 1.4em;
}

/* --------------------------------------------------------------- modal -- */

.modal {
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 300;
  width: min(500px, calc(100vw - 2 * var(--gutter)));
  max-width: none;
  height: fit-content;
  max-height: calc(100dvh - 2 * var(--gutter));
  overflow-y: auto;
  padding: 0;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.modal:not([open]) { display: none; }
.modal::backdrop { background: oklch(22.3% 0.078 259.6 / 0.58); }
.modal[open] { animation: modal-in .26s cubic-bezier(.2, .7, .3, 1) both; }

@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

body.modal-open { overflow: hidden; }

.modal-inner { position: relative; padding: clamp(28px, 4vw, 42px); }

.modal-x {
  position: absolute;
  top: 12px; right: 12px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease;
}
.modal-x:hover { background: var(--surface-2); color: var(--fg); }
.modal-x .ic { width: 20px; height: 20px; }

.modal-icon {
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-bottom: 22px;
}
.modal-icon .ic { width: 26px; height: 26px; }
.modal-icon .ic-alert { display: none; }
.modal.is-error .modal-icon { background: oklch(95% 0.032 42); color: oklch(45% 0.16 32); }
.modal.is-error .modal-icon .ic-check { display: none; }
.modal.is-error .modal-icon .ic-alert { display: block; }

.modal-title {
  font-size: clamp(1.34rem, 1.16rem + 0.62vw, 1.62rem);
  line-height: 1.2;
  letter-spacing: -0.014em;
  margin: 0 0 14px;
  padding-right: 40px;
}
.modal-body { color: var(--muted); font-size: 1rem; }
.modal-body p { margin: 0 0 0.85em; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-body a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid oklch(45.5% 0.155 257 / 0.32);
}
.modal-body a:hover { color: var(--accent-press); border-color: var(--accent-press); }

.modal-actions { display: flex; gap: 12px; margin-top: 28px; }

.btn:disabled { cursor: not-allowed; opacity: .68; }
.btn[aria-busy="true"] { cursor: progress; }

/* -------------------------------------------------------------- footer -- */

.site-footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-top {
  display: grid;
  gap: clamp(28px, 3vw, 44px);
  grid-template-columns: minmax(0, 1fr);
  padding-block: clamp(34px, 4vw, 48px);
}
@media (min-width: 820px) {
  .footer-top { grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr)); }
}
.footer-brand img { height: 58px; width: auto; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; margin: 16px 0 0; max-width: 36ch; line-height: 1.6; }

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.97rem;
  border-bottom: 1px solid transparent;
}
.footer-col a:hover { color: var(--accent-press); border-color: var(--accent-press); }
.footer-col address { font-style: normal; color: var(--muted); font-size: 0.97rem; line-height: 1.65; }
.footer-col p { color: var(--muted); font-size: 0.97rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-bottom p { margin: 0; }
.footer-tag {
  font-family: var(--font-display);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent-deep);
}

/* ------------------------------------------------------------ reveal -- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ------------------------------------------------------------ utilities -- */

.ic { width: 20px; height: 20px; flex: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Hero headline — h1 on the first slide, h2 on the rest, identical styling */
.hero-h {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2rem, 1.32rem + 2.7vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
.hero-h em { font-style: normal; color: var(--accent-lit); }
