/* =========================================================
   DatabaseOnline — site.css
   Brand blue #045CB4 taken from the DATABASE ONLINE EXPERTS logo.
   Type: Anton (logo word), Barlow Condensed (display),
         IBM Plex Sans (body), IBM Plex Mono (code & figures).
   ========================================================= */

:root {
  /* brand */
  --brand: #045CB4;
  --accent: #045CB4;          /* links, eyebrows, icons */
  --accent-strong: #03468A;   /* hover */
  --btn: #045CB4;
  --btn-hover: #03468A;
  --signal: #FF4F1F;          /* Genesys marker only */

  /* ground & surfaces */
  --paper: #F5F8FC;
  --surface: #FFFFFF;
  --surface-2: #EEF3F9;
  --tint: #E7F0FB;
  --panel: #0A1F3D;           /* dark panels, footer */
  --panel-2: #10294D;
  --panel-text: #F2F6FC;
  --panel-muted: #A9BAD3;
  --panel-line: #224067;

  /* text */
  --heading: #0A1F3D;
  --ink: #16243A;
  --slate: #56677E;
  --muted: #7E8FA6;

  /* lines */
  --line: #D6DFEA;
  --line-strong: #B7C5D8;

  /* status (semantic, separate from the accent) */
  --ok: #1B9A57;
  --warn: #D6890A;
  --crit: #D23A2E;
  --ok-bg: #E3F5EA;
  --warn-bg: #FBF0DA;
  --crit-bg: #FBE4E1;

  /* console */
  --console-bg: #0B1A31;
  --console-bar: #0F2242;
  --console-line: #1D3152;
  --console-text: #DCE6F5;
  --console-muted: #8DA1BF;

  --shadow: 0 14px 40px rgba(10, 31, 61, .12);
  --shadow-soft: 0 2px 10px rgba(10, 31, 61, .06);
  --radius: 6px;

  --font-display: 'Barlow Condensed', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', Consolas, 'Courier New', monospace;
  --font-logo: 'Anton', Impact, 'Arial Narrow Bold', 'Arial Black', sans-serif;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --accent: #5CA8F5;
    --accent-strong: #86BFF8;
    --btn: #1670D3;
    --btn-hover: #2B82E4;
    --paper: #0A1424;
    --surface: #101C30;
    --surface-2: #142338;
    --tint: #122440;
    --panel: #0D1E38;
    --panel-2: #132A4D;
    --panel-text: #F2F6FC;
    --panel-muted: #A9BAD3;
    --panel-line: #274670;
    --heading: #EEF3FA;
    --ink: #DDE6F2;
    --slate: #A5B4CA;
    --muted: #8395AF;
    --line: #223650;
    --line-strong: #34496A;
    --ok: #3FC27A;
    --warn: #F0AB2E;
    --crit: #F0685C;
    --ok-bg: #123322;
    --warn-bg: #3A2A0C;
    --crit-bg: #3E1814;
    --console-bg: #060F1F;
    --console-bar: #0B182E;
    --console-line: #1A2B48;
    --shadow: 0 14px 40px rgba(0, 0, 0, .45);
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, .3);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --accent: #5CA8F5;
  --accent-strong: #86BFF8;
  --btn: #1670D3;
  --btn-hover: #2B82E4;
  --paper: #0A1424;
  --surface: #101C30;
  --surface-2: #142338;
  --tint: #122440;
  --panel: #0D1E38;
  --panel-2: #132A4D;
  --panel-text: #F2F6FC;
  --panel-muted: #A9BAD3;
  --panel-line: #274670;
  --heading: #EEF3FA;
  --ink: #DDE6F2;
  --slate: #A5B4CA;
  --muted: #8395AF;
  --line: #223650;
  --line-strong: #34496A;
  --ok: #3FC27A;
  --warn: #F0AB2E;
  --crit: #F0685C;
  --ok-bg: #123322;
  --warn-bg: #3A2A0C;
  --crit-bg: #3E1814;
  --console-bg: #060F1F;
  --console-bar: #0B182E;
  --console-line: #1A2B48;
  --shadow: 0 14px 40px rgba(0, 0, 0, .45);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, .3);
  color-scheme: dark;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
code, pre, kbd { font-family: var(--font-mono); }
strong { font-weight: 600; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  margin: 0;
  text-wrap: balance;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(42px, 5.6vw, 70px); font-weight: 700; line-height: .98; }
h2 { font-size: clamp(32px, 3.8vw, 50px); font-weight: 600; line-height: 1.02; }
h3 { font-size: 26px; font-weight: 600; line-height: 1.1; }
h4 { font-size: 21px; font-weight: 600; line-height: 1.15; }
.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; color: var(--slate); max-width: 62ch; }
.measure { max-width: 65ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow--signal { color: var(--signal); }
.eyebrow--light { color: var(--panel-muted); }
.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--tint { background: var(--tint); }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { display: grid; gap: 12px; max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head p { color: var(--slate); font-size: 18px; margin: 0; }
.section-head--split { max-width: none; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: end; gap: 32px; }
.section-head--split p { max-width: 52ch; }
@media (max-width: 800px) { .section-head--split { grid-template-columns: 1fr; } }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--btn); color: #fff; padding: 8px 14px; border-radius: 4px; z-index: 100; }
.skip-link:focus { left: 8px; color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--btn); color: #fff; }
.btn--primary:hover { background: var(--btn-hover); color: #fff; }
.btn--ghost { background: transparent; color: var(--heading); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--light { background: #fff; color: #0A1F3D; }
.btn--light:hover { background: #E7F0FB; color: #0A1F3D; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { border-color: #fff; color: #fff; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 15px; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.textlink { font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.textlink .arrow { transition: transform .15s ease; }
.textlink:hover .arrow { transform: translateX(3px); }

/* ---------- logo ---------- */
.logo {
  display: inline-flex; align-items: stretch; gap: .1em;
  font-size: var(--logo-size, 42px); line-height: 1; text-decoration: none;
  color: var(--heading);
}
.logo:hover { color: var(--heading); }
.logo__main {
  font-family: var(--font-logo); font-weight: 400; font-size: 1em; line-height: .86;
  color: var(--brand); letter-spacing: -.005em; text-transform: uppercase;
  padding-top: .04em;
}
.logo__side {
  font-family: var(--font-display); font-weight: 700; font-size: .215em; letter-spacing: .03em;
  text-transform: uppercase; line-height: 1;
  writing-mode: vertical-rl; text-orientation: mixed;
  display: flex; align-items: center; justify-content: center;
}
.logo__side--l { transform: rotate(180deg); }
.logo--light { color: #fff; }
.logo--light:hover { color: #fff; }
.logo--light .logo__main { color: #5CA8F5; }
:root[data-theme="dark"] .logo__main { color: #5CA8F5; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .logo__main { color: #5CA8F5; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; position: relative; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: inline-block; padding: 10px 14px; border-radius: 4px;
  color: var(--ink); font-weight: 500; font-size: 15.5px;
}
.nav a:hover { color: var(--accent); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--accent); box-shadow: inset 0 -2px 0 var(--accent); border-radius: 0; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 4px;
  background: transparent; color: var(--heading); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .nav {
    display: none; position: absolute; left: calc(-1 * var(--gutter)); right: calc(-1 * var(--gutter)); top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px var(--gutter) 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 17px; }
  .nav a[aria-current="page"] { box-shadow: none; border-left: 3px solid var(--accent); padding-left: 12px; }
  .nav .btn { margin-top: 12px; border-bottom: 0; }
}
@media (min-width: 961px) { .nav .btn { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--line) 55%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--line) 55%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 40%, rgba(0,0,0,.9), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, rgba(0,0,0,.9), transparent 70%);
}
.hero .wrap { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(56px, 7vw, 104px); }
.hero__copy h1 { margin-bottom: 22px; }
.hero__copy h1 em { font-style: normal; color: var(--accent); }
.hero__copy .lead { margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.proof { display: flex; flex-wrap: wrap; gap: 10px 28px; list-style: none; color: var(--slate); font-size: 15px; }
.proof li { display: inline-flex; align-items: flex-start; gap: 9px; }
.proof li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; margin-top: .5em; }
.proof li.proof--signal::before { background: var(--signal); }
@media (max-width: 960px) { .hero .wrap { grid-template-columns: 1fr; } }

/* ---------- monitoring console ---------- */
.console {
  background: var(--console-bg); color: var(--console-text);
  border: 1px solid var(--console-line); border-radius: 10px;
  box-shadow: var(--shadow); overflow: hidden;
  font-family: var(--font-mono); font-size: 13px; font-variant-numeric: tabular-nums;
}
.console__bar {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  background: var(--console-bar); border-bottom: 1px solid var(--console-line);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
}
.console__bar .meta { margin-left: auto; color: var(--console-muted); font-weight: 400; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); flex: none; position: relative; }
.dot--live::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--ok); opacity: .6; animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.console__scroll { overflow-x: auto; }
.console table { width: 100%; border-collapse: collapse; min-width: 520px; }
.console th, .console td { padding: 10px 12px; text-align: left; white-space: nowrap; border-bottom: 1px solid var(--console-line); }
.console th { color: var(--console-muted); font-weight: 500; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; }
.console th:first-child, .console td:first-child { padding-left: 16px; }
.console th:last-child, .console td:last-child { padding-right: 16px; }
.console td.num, .console th.num { text-align: right; }
.console tr:last-child td { border-bottom: 0; }
.console td.warn-val { color: var(--warn); }
.console td.crit-val { color: var(--crit); }
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: 999px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600; line-height: 1.4;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill--ok { color: var(--ok); background: color-mix(in srgb, var(--ok) 16%, transparent); }
.pill--warn { color: var(--warn); background: color-mix(in srgb, var(--warn) 16%, transparent); }
.pill--crit { color: var(--crit); background: color-mix(in srgb, var(--crit) 16%, transparent); }
.console__alert {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
  padding: 12px 16px; border-top: 1px solid var(--console-line);
  background: color-mix(in srgb, var(--warn) 9%, transparent);
  font-family: var(--font-body); font-size: 13px;
}
.console__alert .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--warn); font-weight: 600; }
.console__alert .who { color: var(--console-muted); }
.console__foot { padding: 9px 16px; font-family: var(--font-body); font-size: 12px; color: var(--console-muted); border-top: 1px solid var(--console-line); }
@media (max-width: 560px) { .console__alert { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar { border-radius: 10px; padding: clamp(28px, 3.4vw, 48px); display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden; }
.pillar h2 { font-size: clamp(30px, 3vw, 42px); }
.pillar p { margin: 0; }
.pillar--sql { background: var(--tint); border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); }
.pillar--sql .textlink { margin-top: auto; }
.pillar--genesys { background: var(--panel); color: var(--panel-text); border: 1px solid var(--panel-line); }
.pillar--genesys::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: var(--signal); }
.pillar--genesys h2 { color: #fff; }
.pillar--genesys p { color: var(--panel-muted); }
.pillar--genesys .textlink { color: #fff; margin-top: auto; }
.pillar--genesys .textlink:hover { color: #FFB39F; }
.pillar__list { list-style: none; display: grid; gap: 8px; font-size: 15.5px; }
.pillar__list li { display: flex; gap: 10px; align-items: flex-start; }
.pillar__list li::before { content: ""; flex: none; width: 14px; height: 14px; margin-top: 5px; border-radius: 3px; background: var(--accent); clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 22%, 84% 5%, 40% 66%); }
.pillar--genesys .pillar__list li::before { background: var(--signal); }
.snippet {
  margin: 0; padding: 16px 18px; border-radius: 8px; overflow-x: auto;
  background: var(--console-bg); color: var(--console-text); border: 1px solid var(--console-line);
  font-size: 12.5px; line-height: 1.6; font-family: var(--font-mono);
}
.snippet .c { color: var(--console-muted); }
.snippet .k { color: #7FB8F5; }
.snippet .s { color: #F5C26B; }
.snippet .m { color: #FFB39F; }
.snippet__cap { font-family: var(--font-body); font-size: 12.5px; color: var(--muted); margin-top: 8px; }
.pillar--genesys .snippet { background: #061226; }
.pillar--genesys .snippet__cap { color: var(--panel-muted); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- expertise list ---------- */
.expertise { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 40px; }
.expertise li { border-top: 2px solid var(--line-strong); padding: 20px 0 26px; }
.expertise li:nth-child(-n+3) { border-top-color: var(--accent); }
.expertise h3 { font-size: 24px; margin-bottom: 6px; }
.expertise p { margin: 0; color: var(--slate); font-size: 15.5px; }
@media (max-width: 900px) { .expertise { grid-template-columns: repeat(2, minmax(0, 1fr)); } .expertise li:nth-child(-n+3) { border-top-color: var(--line-strong); } .expertise li:nth-child(-n+2) { border-top-color: var(--accent); } }
@media (max-width: 560px) { .expertise { grid-template-columns: 1fr; } .expertise li:nth-child(-n+2) { border-top-color: var(--line-strong); } .expertise li:first-child { border-top-color: var(--accent); } }

/* ---------- packages ---------- */
.packages { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.package {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 30px 28px 28px; display: flex; flex-direction: column; gap: 18px; position: relative;
}
.package--featured { border-color: var(--accent); box-shadow: var(--shadow); }
.package__flag {
  position: absolute; top: -13px; left: 28px; padding: 4px 10px; border-radius: 999px;
  background: var(--btn); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
}
.package__tier { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; color: var(--heading); display: flex; align-items: center; gap: 12px; }
.package__tier::before { content: ""; width: 14px; height: 14px; border-radius: 3px; transform: rotate(45deg); background: var(--tier); }
.package--silver { --tier: #9AA7B8; }
.package--gold { --tier: #D2A227; }
.package--platinum { --tier: #4B7BAE; }
.package__for { color: var(--slate); font-size: 15.5px; margin: 0; min-height: 3em; }
.package__price { display: grid; gap: 2px; }
.package__price .amt { font-family: var(--font-display); font-weight: 700; font-size: 44px; line-height: 1; color: var(--heading); font-variant-numeric: tabular-nums; }
.package__price .amt small { font-size: 16px; font-weight: 600; color: var(--slate); margin-left: 6px; }
.package__price .per { font-size: 14px; color: var(--slate); }
.package__price .usd { font-family: var(--font-mono); font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.package__kv { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; font-size: 14.5px; padding: 14px 0; border-block: 1px solid var(--line); margin: 0; }
.package__kv dt { color: var(--muted); }
.package__kv dd { margin: 0; font-weight: 600; color: var(--heading); text-align: right; font-variant-numeric: tabular-nums; }
.package__list { list-style: none; display: grid; gap: 9px; font-size: 15px; }
.package__list li { display: flex; gap: 10px; align-items: flex-start; }
.package__list li::before { content: ""; flex: none; width: 14px; height: 14px; margin-top: 5px; border-radius: 3px; background: var(--accent); clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 22%, 84% 5%, 40% 66%); }
.package__list li.inherit { color: var(--slate); font-style: italic; }
.package__list li.inherit::before { background: var(--muted); }
.package .btn { margin-top: auto; }
@media (max-width: 900px) { .packages { grid-template-columns: 1fr; max-width: 560px; } }

/* ---------- comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.compare { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 15px; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { background: var(--surface-2); font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--heading); }
.compare thead th:not(:first-child), .compare td { text-align: center; width: 18%; }
.compare tbody th { font-weight: 500; color: var(--ink); }
.compare tbody th small { display: block; color: var(--muted); font-size: 13px; font-weight: 400; }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: 0; }
.compare .yes { color: var(--ok); font-weight: 700; }
.compare .no { color: var(--muted); }
.compare .val { font-weight: 600; color: var(--heading); font-variant-numeric: tabular-nums; }
.compare .sub { display: block; font-weight: 400; font-size: 13px; color: var(--muted); font-family: var(--font-mono); }
.compare .group th { background: var(--tint); font-family: var(--font-display); font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); padding: 10px 18px; }

/* ---------- brands ---------- */
.brands { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.brand {
  display: flex; flex-direction: column; gap: 10px; padding: 24px 24px 22px; min-height: 200px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px; color: inherit;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.brand:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-soft); color: inherit; }
.brand--featured { grid-column: span 2; background: linear-gradient(135deg, var(--tint), var(--surface)); }
.brand__kind { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1; color: var(--heading); }
.brand--featured .brand__name { font-size: 36px; }
.brand p { margin: 0; color: var(--slate); font-size: 15px; flex: 1; }
.brand__domain { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.brand__domain .arrow { transition: transform .15s ease; }
.brand:hover .brand__domain .arrow { transform: translateX(3px); }
.brand__status { display: inline-flex; align-items: center; font-family: var(--font-body); letter-spacing: 0; text-transform: none; font-size: 12px; font-weight: 600; color: var(--warn); background: var(--warn-bg); padding: 2px 8px; border-radius: 999px; }
@media (max-width: 1000px) { .brands { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .brands { grid-template-columns: 1fr; } .brand--featured { grid-column: auto; } }

/* ---------- tech strip ---------- */
.tech { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.tech li {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px; font-size: 14.5px; font-weight: 500; color: var(--ink);
}
.tech img { width: 30px; height: 30px; object-fit: contain; flex: none; }
.tech img.tech__wide { width: 72px; height: 26px; }
.tech img.tech__badge { background: #fff; border-radius: 4px; padding: 2px; }

/* ---------- certifications ---------- */
.certs { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; }
.certs__badges { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.certs__badges figure { margin: 0; width: 150px; text-align: center; font-size: 13px; color: var(--slate); line-height: 1.35; }
.certs__badges img { width: 120px; height: 120px; object-fit: contain; border-radius: 8px; display: block; margin: 0 auto 8px; }
@media (max-width: 900px) { .certs { grid-template-columns: 1fr; } .certs__badges { justify-content: flex-start; } }

/* ---------- regions / facts ---------- */
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--surface); margin: 0; }
.facts div { padding: 24px 24px 22px; border-right: 1px solid var(--line); }
.facts div:last-child { border-right: 0; }
.facts dt { font-family: var(--font-display); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.facts dd { margin: 0; font-size: 17px; font-weight: 500; color: var(--heading); }
.facts dd small { display: block; font-weight: 400; font-size: 14px; color: var(--slate); margin-top: 4px; }
@media (max-width: 900px) { .facts { grid-template-columns: 1fr 1fr; } .facts div:nth-child(2) { border-right: 0; } .facts div:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } .facts div { border-right: 0; border-bottom: 1px solid var(--line); } .facts div:last-child { border-bottom: 0; } }

/* ---------- CTA band ---------- */
.cta {
  background: var(--panel); color: var(--panel-text); border-block: 1px solid var(--panel-line);
  background-image: radial-gradient(ellipse at 85% 20%, color-mix(in srgb, var(--brand) 55%, transparent), transparent 55%);
}
.cta .wrap { display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 28px; align-items: center; padding-block: clamp(48px, 6vw, 80px); }
.cta h2 { color: #fff; margin-bottom: 10px; }
.cta p { color: var(--panel-muted); margin: 0; max-width: 56ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 800px) { .cta .wrap { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--panel); color: var(--panel-muted); padding: clamp(48px, 6vw, 72px) 0 28px; font-size: 14.5px; }
.site-footer a { color: var(--panel-text); }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .logo { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid var(--panel-line); }
.footer-grid h4 { font-family: var(--font-display); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--panel-muted); font-weight: 600; margin-bottom: 14px; }
.footer-grid ul { list-style: none; display: grid; gap: 9px; }
.footer-brand p { margin: 16px 0 0; max-width: 34ch; }
.footer-address { font-style: normal; margin: 16px 0 0; line-height: 1.7; color: var(--panel-muted); }
.footer-address a { color: var(--panel-text); }
.site-version { font-family: var(--font-mono); font-size: 12.5px; color: var(--panel-muted); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; padding-top: 22px; font-size: 13.5px; }
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- subpage header ---------- */
.page-hero { background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero .wrap { padding-block: clamp(48px, 6vw, 88px); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 40px; align-items: end; }
.page-hero h1 { font-size: clamp(38px, 4.8vw, 62px); margin-bottom: 18px; }
.page-hero .lead { margin: 0; }
.page-hero__aside { display: grid; gap: 12px; }
.page-hero--dark { background: var(--panel); color: var(--panel-text); border-bottom-color: var(--panel-line); }
.page-hero--dark h1 { color: #fff; }
.page-hero--dark .lead { color: var(--panel-muted); }
@media (max-width: 900px) { .page-hero .wrap { grid-template-columns: 1fr; } }

/* ---------- generic content blocks ---------- */
.cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.cols-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cols-main { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .cols-2, .cols-3, .cols-main { grid-template-columns: 1fr; } }
.services { display: grid; }
.service { display: grid; gap: 12px; padding: 28px 0; border-top: 1px solid var(--line); }
.service:first-child { border-top: 0; padding-top: 0; }
.service h3 { font-size: 28px; }
.service p { margin: 0; color: var(--slate); }
.service ul { list-style: none; display: grid; gap: 7px; font-size: 15.5px; color: var(--ink); }
.service ul li { display: flex; gap: 10px; }
.service ul li::before { content: ""; flex: none; width: 14px; height: 14px; margin-top: 6px; border-radius: 3px; background: var(--accent); clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 22%, 84% 5%, 40% 66%); }
.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 26px; display: grid; gap: 12px; }
.aside-card h3 { font-size: 24px; }
.aside-card p { margin: 0; color: var(--slate); font-size: 15.5px; }
.aside-card ul { list-style: none; display: grid; gap: 8px; font-size: 15px; }
.aside-card--tint { background: var(--tint); border-color: color-mix(in srgb, var(--accent) 22%, transparent); }
.aside-stack { display: grid; gap: 18px; }
.sticky { position: static; } /* sidebars scroll with the page; sticky cards read as floating dialogs */
.steps { list-style: none; counter-reset: step; display: grid; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; color: var(--accent); }
.steps h3 { font-size: 26px; margin-bottom: 6px; }
.steps p { margin: 0; color: var(--slate); }
.steps--compact li { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; padding: 14px 0; }
.steps--compact li:first-child { border-top: 0; padding-top: 4px; }
.steps--compact li::before { font-size: 24px; }
.steps--compact h3 { font-size: 20px; margin-bottom: 3px; }
.steps--compact p { font-size: 14.5px; }
.metrics { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.metrics li { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; font-size: 15px; }
.metrics li strong { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--heading); margin-bottom: 4px; }
.metrics li span { color: var(--slate); font-size: 14.5px; }
.faq { display: grid; }
.faq details { border-top: 1px solid var(--line); padding: 4px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; font-family: var(--font-display); font-size: 23px; font-weight: 600; color: var(--heading); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 28px; color: var(--accent); font-weight: 400; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--slate); margin: 0 0 18px; max-width: 65ch; }
.note { font-size: 14px; color: var(--muted); }

/* ---------- draft markers (delete the <span class="draft-tag"> elements before go-live) ---------- */
.draft-tag {
  display: inline-flex; align-items: center; gap: 6px; vertical-align: middle;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600; letter-spacing: .02em; text-transform: none;
  color: var(--warn); background: var(--warn-bg); border: 1px dashed var(--warn); border-radius: 4px; padding: 2px 7px; margin-left: 8px;
}

/* ---------- entry offer (hero) ---------- */
.offer {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px 24px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 8px;
  padding: 18px 22px; margin-bottom: 30px; box-shadow: var(--shadow-soft);
}
.offer__kicker { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 4px; }
.offer__title { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--heading); line-height: 1.1; margin-bottom: 8px; }
.offer__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 14.5px; color: var(--slate); }
.offer__facts li { display: inline-flex; align-items: center; gap: 7px; }
.offer__facts li::before { content: ""; width: 12px; height: 12px; border-radius: 3px; background: var(--accent); clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 22%, 84% 5%, 40% 66%); }
.offer__price { text-align: right; display: grid; gap: 8px; justify-items: end; }
.offer__amount { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; color: var(--heading); font-variant-numeric: tabular-nums; }
.offer__amount small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--muted); margin-top: 4px; }
@media (max-width: 600px) { .offer { grid-template-columns: 1fr; } .offer__price { text-align: left; justify-items: start; } }

/* ---------- trusted-by strip ---------- */
.trust { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px 32px; align-items: center; }
.trust__label { font-family: var(--font-display); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; white-space: nowrap; }
.trust__label small { display: block; font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0; text-transform: none; font-weight: 400; margin-top: 2px; }
.logos { list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.logos li {
  display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 64px; padding: 10px 14px; text-align: center;
  border: 1px solid var(--line); border-radius: 8px; background: var(--surface);
  font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: .02em; color: var(--slate);
}
.logos li img { max-height: 36px; width: auto; filter: grayscale(1); opacity: .8; }
.logos li small { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 400; color: var(--muted); }
@media (max-width: 900px) { .trust { grid-template-columns: 1fr; } .logos { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .logos { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- case studies ---------- */
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: clamp(24px, 3vw, 36px); display: grid; gap: 16px; align-content: start; }
.case__meta { font-family: var(--font-display); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 600; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.case__meta span + span:not(.draft-tag)::before { content: "·"; margin-right: 10px; color: var(--muted); }
.case h3 { font-size: 28px; }
.case dl { margin: 0; display: grid; gap: 10px; }
.case dt { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.case dd { margin: 0 0 4px; color: var(--ink); font-size: 15.5px; }
.case__numbers { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 4px; }
.case__numbers li { background: var(--tint); border-radius: 8px; padding: 14px 14px 12px; }
.case__numbers strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1; color: var(--heading); font-variant-numeric: tabular-nums; margin-bottom: 6px; }
.case__numbers span { font-size: 13px; color: var(--slate); line-height: 1.35; display: block; }
.case__quote { border-left: 3px solid var(--line-strong); padding-left: 14px; font-size: 15px; color: var(--slate); font-style: italic; }
.case__quote cite { display: block; font-style: normal; font-size: 13.5px; color: var(--muted); margin-top: 6px; }
@media (max-width: 900px) { .cases { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .case__numbers { grid-template-columns: 1fr; } }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 26px; display: grid; gap: 12px; align-content: start; }
.person__head { display: flex; align-items: center; gap: 16px; }
.avatar {
  width: 72px; height: 72px; border-radius: 50%; flex: none; object-fit: cover;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--panel); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: .02em;
}
.person__name { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1; color: var(--heading); }
.person__role { font-size: 14.5px; color: var(--accent); font-weight: 600; margin-top: 4px; }
.person p { margin: 0; color: var(--slate); font-size: 15px; }
.person__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.person__tags li { font-size: 12.5px; font-weight: 600; color: var(--heading); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.person--oncall { background: var(--panel); color: var(--panel-text); border-color: var(--panel-line); }
.person--oncall .person__name, .person--oncall h3 { color: #fff; }
.person--oncall p { color: var(--panel-muted); }
.person--oncall .rota { list-style: none; display: grid; gap: 10px; font-size: 14.5px; }
.person--oncall .rota li { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 10px; padding-top: 10px; border-top: 1px solid var(--panel-line); }
.person--oncall .rota b { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--panel-muted); }
@media (max-width: 900px) { .team { grid-template-columns: 1fr; max-width: 560px; } }

/* ---------- legal & information pages ---------- */
.page-hero--plain .wrap { grid-template-columns: minmax(0, 1fr); }
.page-hero__meta { font-size: 14px; color: var(--muted); margin: 14px 0 0; }
.legal { max-width: 72ch; }
.legal h2 { font-size: 28px; margin: 40px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 22px; margin: 24px 0 8px; }
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { padding-left: 22px; margin: 0 0 16px; display: grid; gap: 6px; }
.legal li { color: var(--ink); }
.legal table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 0 0 20px; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.legal th { font-weight: 600; color: var(--heading); background: var(--surface-2); }
.legal .table-wrap { margin: 0 0 20px; }
.legal address { font-style: normal; }
.toc { list-style: none; display: grid; gap: 6px; font-size: 15px; }
.toc a { color: var(--ink); }
.toc a:hover { color: var(--accent); }
.toc li::before { content: "—"; color: var(--line-strong); margin-right: 8px; }
.sitemap { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.sitemap h2 { font-size: 22px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); }
.sitemap ul { list-style: none; display: grid; gap: 8px; }
.sitemap ul ul { margin: 6px 0 0 16px; gap: 5px; font-size: 14.5px; }
.sitemap a { color: var(--ink); }
.sitemap a:hover { color: var(--accent); }

/* ---------- language switcher ---------- */
.lang { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 4px; overflow: hidden; }
.lang a { display: inline-block; padding: 8px 10px; font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; letter-spacing: .04em; color: var(--slate); line-height: 1; }
.lang a + a { border-left: 1px solid var(--line-strong); }
.lang a:hover { color: var(--accent); background: var(--surface-2); }
.lang a[aria-current="true"] { color: #fff; background: var(--btn); }

/* ---------- founder message ---------- */
.ceo { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.ceo__portrait { margin: 0; display: grid; gap: 12px; justify-items: start; }
.avatar--xl { width: 200px; height: 200px; border-radius: 14px; font-size: 64px; }
img.avatar--xl { object-fit: cover; }
.ceo__portrait figcaption { font-size: 14.5px; color: var(--slate); line-height: 1.5; }
.ceo__portrait figcaption strong { display: block; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--heading); line-height: 1.1; margin-bottom: 4px; }
.ceo__message h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 20px; }
.ceo__message p { max-width: 62ch; }
.ceo__sign { margin-top: 24px; font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--heading); line-height: 1.2; }
.ceo__sign small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 14.5px; color: var(--slate); margin-top: 4px; }
@media (max-width: 760px) { .ceo { grid-template-columns: 1fr; } }

/* ---------- expert profile & badges ---------- */
.expert { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: 24px; margin-bottom: 40px; }
.expert__card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 28px; display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 26px; align-items: start; }
.expert__card p { margin: 0 0 12px; color: var(--ink); font-size: 15.5px; }
.expert__card .person__name { margin-bottom: 0; }
.expert__card .person__role { margin-bottom: 14px; }
.expert__photo { width: 160px; height: 160px; border-radius: 12px; object-fit: cover; border: 1px solid var(--line); }
.expert__skills { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.expert__skills h3 { font-size: 22px; margin-bottom: 14px; }
.badges__title { font-size: 22px; margin-bottom: 18px; }
.badge-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 14px; }
.badge-grid li { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 16px 14px 14px; display: grid; justify-items: center; align-content: start; text-align: center; gap: 8px; }
.badge-grid li.community { background: var(--surface-2); }
.badge-grid img { width: 96px; height: 96px; object-fit: contain; }
.badge__name { font-family: var(--font-display); font-weight: 600; font-size: 16px; line-height: 1.15; color: var(--heading); text-wrap: balance; }
.badge__meta { font-size: 12.5px; color: var(--muted); }
@media (max-width: 900px) { .expert { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .expert__card { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 14.5px; color: var(--heading); }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  padding: 12px 14px; min-height: 48px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.form__status { font-size: 14.5px; color: var(--slate); }
.form__status[data-state="ok"] { color: var(--ok); font-weight: 600; }
.form__status[data-state="err"] { color: var(--crit); font-weight: 600; }
.contact-lines { list-style: none; display: grid; gap: 14px; }
.contact-lines li { display: grid; gap: 2px; }
.contact-lines .k { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-lines .v { font-size: 17px; font-weight: 500; color: var(--heading); }
.contact-lines .v small { display: block; font-weight: 400; font-size: 14px; color: var(--slate); }
