/* ==========================================================================
   Awava — Intelligent Systems
   Design system: Geist-grade. One ink ladder, 1px hairlines, one accent.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --canvas: #FAFAFA;
  --elevated: #FFFFFF;
  --panel: #F2F2F2;

  /* Ink ladder */
  --ink: #171717;
  --body: #4D4D4D;
  --mute: #8F8F8F;
  --faint: #A1A1A1;

  /* The only border colour */
  --hairline: #EBEBEB;

  /* Accent */
  --blue: #2E6BE6;
  --blue-bright: #56A2F2;
  --blue-deep: #1E4FB0;
  --blue-wash: #D3E5FF;
  --blue-hairline: rgba(46, 107, 230, 0.45);

  /* Support (used only for the demo's success chip) */
  --green-ink: #0C6B3F;
  --green-wash: #E4F3EA;

  /* Depth: a hairline, and at most this */
  --whisper: 0 1px 1px rgba(0, 0, 0, 0.04);

  /* Type */
  --sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo,
    Consolas, monospace;

  /* Spacing scale: 4px base */
  --s1: 4px;   --s2: 8px;   --s3: 12px;  --s4: 16px;
  --s6: 24px;  --s8: 32px;  --s10: 40px; --s16: 64px;
  --s24: 96px; --s32: 128px;

  --radius-card: 12px;
  --radius-lg: 16px;
  --container: 1200px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" 1, "cv01" 1;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--blue-deep); }

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

::selection { background: var(--blue-wash); color: var(--ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--elevated);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.skip-link:focus { left: 16px; top: 16px; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  display: block;
  margin-bottom: var(--s4);
}
.eyebrow--blue { color: var(--blue); }

.display {
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -2.4px;
  font-weight: 600;
  color: var(--ink);
}

.h-lg {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1.28px;
  font-weight: 600;
  color: var(--ink);
}

.h-md {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4px;
  font-weight: 600;
  color: var(--ink);
}

.h-sm {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.2px;
  font-weight: 600;
  color: var(--ink);
}

.body-lg { font-size: 16px; line-height: 24px; }
.body-md { font-size: 14px; line-height: 20px; }
.body-sm { font-size: 12px; line-height: 16px; }

.mono { font-family: var(--mono); }
.ink { color: var(--ink); }
.mute { color: var(--mute); }
.faint { color: var(--faint); }
.blue { color: var(--blue); }

.measure { max-width: 640px; }
.measure-sm { max-width: 520px; }
.measure-article { max-width: 680px; }

.stack-2 > * + * { margin-top: var(--s2); }
.stack-3 > * + * { margin-top: var(--s3); }
.stack-4 > * + * { margin-top: var(--s4); }
.stack-6 > * + * { margin-top: var(--s6); }
.stack-8 > * + * { margin-top: var(--s8); }

@media (max-width: 768px) {
  .display { font-size: 36px; line-height: 38px; letter-spacing: -1.6px; }
  .h-lg { font-size: 26px; line-height: 32px; letter-spacing: -0.9px; }
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.container--narrow { max-width: 880px; }

.section { padding: var(--s24) 0; }
.section--lg { padding: var(--s32) 0; }
.section--sm { padding: var(--s16) 0; }
.section--panel { background: var(--panel); }
.section--hairline-top { border-top: 1px solid var(--hairline); }

.section__head { margin-bottom: var(--s10); }
.section__head--center { text-align: center; }
.section__head--center .measure { margin: 0 auto; }

.grid { display: grid; gap: var(--s6); }
.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)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s16);
  align-items: center;
}

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: minmax(0, 1fr); gap: var(--s10); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .section { padding: var(--s16) 0; }
  .section--lg { padding: 80px 0; }
}

.hairline { height: 1px; background: var(--hairline); border: 0; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border-radius: 100px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.14px;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(0.5px); }

/* The signature button */
.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--primary:hover { background: #2A61D2; border-color: #2A61D2; color: #fff; }
.btn--primary:active { background: var(--blue-deep); border-color: var(--blue-deep); }

.btn--secondary {
  background: var(--elevated);
  color: var(--ink);
  border-color: var(--hairline);
}
.btn--secondary:hover { border-color: #D6D6D6; color: var(--ink); background: var(--elevated); }
.btn--secondary:active { background: var(--panel); }

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

.btn--lg { height: 44px; padding: 0 20px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }

/* Nav / app controls: tight 6px-square ghost buttons */
.btn--ghost {
  background: var(--elevated);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  height: 32px;
  padding: 0 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.btn--ghost:hover { background: var(--panel); color: var(--ink); }
.btn--icon { width: 32px; padding: 0; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center; }

/* Inline text link with blue underline on hover */
.link {
  color: var(--blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link:hover { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.link:hover svg { transform: translateX(2px); }

/* --------------------------------------------------------------------------
   6. Nav
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}
.nav__left { display: flex; align-items: center; gap: var(--s6); flex: none; }

.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  transition: opacity 0.15s ease;
}
.wordmark:hover { color: var(--ink); opacity: 0.7; }
.wordmark__svg { height: 20px; width: auto; display: block; }
.wordmark__img {
  height: 20px;
  width: auto;
  max-width: none;   /* the global img reset would squash it */
  display: block;
}
.wordmark--lg .wordmark__svg { height: 26px; }
.wordmark--lg .wordmark__img { height: 26px; }
.mark__svg { height: 100%; width: auto; display: block; }
.w__svg { height: 100%; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--body);
  position: relative;
}
.nav__link:hover { color: var(--ink); background: var(--panel); }
.nav__link[aria-current="page"] { color: var(--blue); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -17px;
  height: 1px;
  background: var(--blue);
}
.nav__right { display: flex; align-items: center; gap: var(--s2); }

.nav__toggle { display: none; }

.nav__mobile {
  display: none;
  border-top: 1px solid var(--hairline);
  background: var(--canvas);
  padding: var(--s3) 0 var(--s4);
}
.nav__mobile.is-open { display: block; }
.nav__mobile a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.nav__mobile a[aria-current="page"] { color: var(--blue); }
.nav__mobile a:last-of-type { border-bottom: 0; }

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 480px) {
  /* the fixed bottom bar already provides this CTA below 768px */
  .nav__right .btn--primary { display: none; }
}
@media (max-width: 420px) {
  .wordmark__svg, .wordmark__img { height: 17px; }
}

/* Persistent mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 10px var(--s6) calc(10px + env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 68px; }
}

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--s6);
  transition: border-color 0.18s ease;
}
.card:hover { border-color: var(--blue-hairline); }
.card--pad { padding: var(--s8); }
.card--flush { padding: 0; overflow: hidden; }
.card--whisper { box-shadow: var(--whisper); }

a.card { color: var(--body); display: block; }
a.card:hover { color: var(--body); }

.card__icon {
  width: 24px;
  height: 24px;
  color: var(--blue);
  margin-bottom: var(--s4);
}
.card__icon svg { width: 24px; height: 24px; }

.card__title { margin-bottom: var(--s2); }
.card__text { font-size: 14px; line-height: 20px; color: var(--body); }
.card__foot { margin-top: var(--s4); font-size: 14px; font-weight: 500; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; }
a.card:hover .card__foot svg { transform: translateX(2px); }
.card__foot svg { width: 14px; height: 14px; transition: transform 0.15s ease; }

.card__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: 0.04em;
}

/* Elevated add-on tile */
.card--addon {
  background: var(--elevated);
  border-color: var(--blue-hairline);
  box-shadow: var(--whisper);
  position: relative;
}
.card--addon::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 2px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue), var(--blue-bright));
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 100px;
  background: var(--blue-wash);
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--grey { background: var(--panel); color: var(--mute); }
.badge--green { background: var(--green-wash); color: var(--green-ink); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--elevated);
  border-bottom: 1px solid var(--hairline);
  padding: 88px 0 var(--s24);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--s16);
  align-items: center;
}
.hero__phone { display: flex; justify-content: center; position: relative; }

/* The single decorative gradient on the entire site */
.mesh {
  position: absolute;
  width: 620px;
  height: 620px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  pointer-events: none;
  z-index: 0;
  filter: blur(72px);
  opacity: 0.42;
  background:
    radial-gradient(38% 38% at 32% 28%, #1E4FB0 0%, rgba(30, 79, 176, 0) 72%),
    radial-gradient(42% 42% at 62% 44%, #2E6BE6 0%, rgba(46, 107, 230, 0) 72%),
    radial-gradient(40% 40% at 46% 72%, #56A2F2 0%, rgba(86, 162, 242, 0) 72%),
    radial-gradient(26% 26% at 84% 18%, rgba(121, 40, 202, 0.30) 0%, rgba(121, 40, 202, 0) 70%),
    radial-gradient(26% 26% at 14% 82%, rgba(80, 227, 194, 0.26) 0%, rgba(80, 227, 194, 0) 70%);
}
.hero__phone .phone { position: relative; z-index: 1; }

.hero__note {
  margin-top: var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 13px;
  color: var(--mute);
}
.hero__note svg { width: 15px; height: 15px; color: var(--blue); flex: none; }

@media (max-width: 980px) {
  .hero { padding: 56px 0 72px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .mesh { width: 460px; height: 460px; opacity: 0.34; }
}

/* Page header (interior pages) */
.pagehead {
  background: var(--elevated);
  border-bottom: 1px solid var(--hairline);
  padding: 72px 0;
}
.pagehead .display { margin-bottom: var(--s4); }
@media (max-width: 640px) { .pagehead { padding: 48px 0; } }

/* --------------------------------------------------------------------------
   9. Trust strip
   -------------------------------------------------------------------------- */
.trust {
  border-bottom: 1px solid var(--hairline);
  background: var(--canvas);
  padding: var(--s10) 0;
}
.trust__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
  margin-bottom: var(--s6);
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s6) var(--s10);
}
.trust__logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--faint);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
  filter: grayscale(1);
  transition: color 0.18s ease;
}
.trust__logo:hover { color: var(--mute); }
.trust__logo svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stat {
  background: var(--elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--s8) var(--s6);
  transition: border-color 0.18s ease;
}
.stat:hover { border-color: var(--blue-hairline); }
.stat__num {
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -2.2px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: var(--s2);
}
.stat__num--gradient {
  background: linear-gradient(96deg, var(--blue-deep), var(--blue) 46%, var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label { font-size: 14px; line-height: 20px; color: var(--body); }
.stat__meta {
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   11. Steps
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border: 1px solid var(--hairline); border-radius: var(--radius-card); overflow: hidden; background: var(--elevated); }
.step { padding: var(--s8); border-right: 1px solid var(--hairline); }
.step:last-child { border-right: 0; }
.step__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin-bottom: var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.step__num::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }
.step--active .step__num { color: var(--blue); }
.step--active .step__num::after { background: linear-gradient(90deg, var(--blue-hairline), var(--hairline)); }
.step__title { margin-bottom: var(--s2); }
.step__text { font-size: 14px; line-height: 20px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: minmax(0, 1fr); }
  .step { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .step:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   12. Lists
   -------------------------------------------------------------------------- */
.checklist { display: grid; gap: var(--s3); }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 14px;
  line-height: 20px;
  color: var(--body);
}
.checklist svg { width: 16px; height: 16px; color: var(--blue); flex: none; margin-top: 2px; }
.checklist strong { color: var(--ink); font-weight: 500; }

.hairline-list {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  overflow: hidden;
}
.hairline-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4) var(--s6);
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  line-height: 20px;
}
.hairline-list li:last-child { border-bottom: 0; }
.hairline-list svg { width: 16px; height: 16px; color: var(--blue); flex: none; margin-top: 2px; }
.hairline-list b { color: var(--ink); font-weight: 500; display: block; }
.hairline-list span { color: var(--body); }

/* Definition rows */
.rows { border-top: 1px solid var(--hairline); }
.row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: var(--s6);
  padding: var(--s6) 0;
  border-bottom: 1px solid var(--hairline);
}
.row__k { font-size: 14px; font-weight: 500; color: var(--ink); }
.row__v { font-size: 14px; line-height: 20px; color: var(--body); }
@media (max-width: 720px) { .row { grid-template-columns: minmax(0, 1fr); gap: var(--s2); } }

/* --------------------------------------------------------------------------
   13. Pricing
   -------------------------------------------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--s6);
  align-items: start;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: minmax(0, 1fr); } }

.plan {
  background: var(--elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--s8);
  position: relative;
  transition: border-color 0.18s ease;
}
.plan:hover { border-color: var(--blue-hairline); }

.plan--popular {
  border-color: var(--blue);
  border-top-width: 2px;
  box-shadow: var(--whisper);
}
.plan--popular:hover { border-color: var(--blue); }
.plan__ribbon {
  position: absolute;
  top: var(--s6);
  right: var(--s6);
}
.plan__name { margin-bottom: var(--s2); }
.plan__desc { font-size: 14px; line-height: 20px; margin-bottom: var(--s6); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: var(--s2);
}
.plan__amount {
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -2.2px;
  font-weight: 600;
  color: var(--blue);
}
.plan--neutral .plan__amount { color: var(--ink); }
.plan__per { font-size: 14px; color: var(--mute); }
.plan__note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--faint); margin-bottom: var(--s6); }
.plan__wash {
  background: var(--blue-wash);
  border-radius: 10px;
  padding: var(--s3) var(--s4);
  font-size: 13px;
  line-height: 18px;
  color: var(--blue-deep);
  margin-bottom: var(--s6);
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
}
.plan__wash svg { width: 15px; height: 15px; flex: none; margin-top: 1px; }
.plan__divider { height: 1px; background: var(--hairline); margin: var(--s6) 0; }
.plan .checklist { margin-bottom: var(--s6); }

/* FAQ */
.faq { border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: var(--s6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--ink);
}
.faq__q:hover { color: var(--blue); }
.faq__sign { width: 16px; height: 16px; flex: none; color: var(--mute); transition: transform 0.2s ease, color 0.2s ease; }
.faq__q[aria-expanded="true"] .faq__sign { transform: rotate(45deg); color: var(--blue); }
.faq__a {
  display: none;
  padding: 0 var(--s10) var(--s6) 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--body);
  max-width: 720px;
}
.faq__q[aria-expanded="true"] + .faq__a { display: block; }

/* --------------------------------------------------------------------------
   14. Website mockups

   Miniatures of real client builds: one large hero photograph, a fully built
   menu, and the Awava lead-capture card sitting on the hero. Laid out at a
   fixed 560 x 470 and scaled to whatever width the card happens to be, so
   every mockup stays optically identical across grids.

   Each site carries its own --acc, because real clients have their own
   brands. Awava's own chrome around them stays strictly ink + Awava blue.
   -------------------------------------------------------------------------- */
.mock {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  overflow: hidden;
  box-shadow: var(--whisper);
  transition: border-color 0.18s ease;
}
a:hover > .mock, .card:hover .mock { border-color: var(--blue-hairline); }

.mock__chrome {
  height: 32px;
  border-bottom: 1px solid var(--hairline);
  background: var(--canvas);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
}
.mock__dot { width: 7px; height: 7px; border-radius: 50%; background: #E0E0E0; flex: none; }
.mock__url {
  margin-left: 6px;
  flex: 1;
  height: 18px;
  border-radius: 100px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--faint);
}
.mock__url::before {
  content: "";
  width: 6px; height: 6px;
  border: 1.2px solid var(--faint);
  border-radius: 2px 2px 1px 1px;
  border-bottom-width: 2.4px;
}

.mock__viewport {
  container-type: inline-size;
  position: relative;
  overflow: hidden;
  aspect-ratio: 560 / 500;
  background: #fff;
}
.mock__page {
  width: 560px;
  height: 500px;
  display: flex;
  flex-direction: column;
  transform-origin: top left;
  transform: scale(calc(100cqw / 560px));
  position: relative;
  overflow: hidden;
  font-family: var(--sans);
  background: #fff;
  --acc: #2E6BE6;
  --acc-deep: #1E4FB0;
}

/* ------------------------------------------------------------ utility bar */
.w-util {
  flex: none;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: #121821;
  color: rgba(255, 255, 255, 0.66);
  font-size: 7.5px;
  letter-spacing: 0.01em;
}
.w-util strong { color: #fff; font-weight: 600; }
.w-util > span { white-space: nowrap; }
.w-util span { display: flex; align-items: center; gap: 10px; }

/* -------------------------------------------------------------- main menu */
.w-nav {
  flex: none;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  z-index: 3;
}
.w-brand { display: flex; align-items: center; gap: 7px; flex: none; }
.w-brand__mark {
  width: 21px; height: 21px;
  border-radius: 6px;
  background: var(--acc);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; letter-spacing: -0.3px;
  flex: none;
}
.w-brand__txt b {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: -0.35px;
  color: var(--ink); line-height: 1.15; white-space: nowrap;
}
.w-brand__txt i {
  display: block; font-style: normal;
  font-size: 6px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute); margin-top: 1px;
}
.w-links { display: flex; align-items: center; gap: 9px; flex: none; }
.w-links span {
  font-size: 8px; font-weight: 500; color: #3F4855;
  display: flex; align-items: center; gap: 3px;
  white-space: nowrap;
}
.w-links span.on { color: var(--acc); font-weight: 600; }
.w-caret {
  width: 0; height: 0;
  border-left: 2.5px solid transparent;
  border-right: 2.5px solid transparent;
  border-top: 3px solid currentColor;
  opacity: 0.45;
}
.w-navcta { display: flex; align-items: center; gap: 9px; flex: none; }
.w-phone { text-align: right; }
.w-phone b { display: block; font-size: 9.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.2px; white-space: nowrap; }
.w-phone i { display: block; font-style: normal; font-size: 6.5px; color: var(--mute); }

.w-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--acc);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: -0.1px;
  padding: 7px 12px;
  border-radius: 6px;
  white-space: nowrap;
}
.w-btn--pill { border-radius: 100px; }
.w-btn--ghost { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); }
.w-btn--lg { font-size: 10px; padding: 9px 15px; }

/* ------------------------------------------------------------------- hero */
.w-hero {
  flex: 1 1 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 198px;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  overflow: hidden;
  min-height: 0;
}
.w-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.w-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(7, 11, 18, 0.9) 0%, rgba(7, 11, 18, 0.72) 34%,
    rgba(7, 11, 18, 0.34) 62%, rgba(7, 11, 18, 0.1) 100%);
}
.w-hero > .w-hcopy, .w-hero > .w-lead { position: relative; z-index: 2; }

.w-eyebrow {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.82;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.w-eyebrow::before {
  content: "";
  width: 14px; height: 1.5px;
  background: var(--acc);
  border-radius: 2px;
}
.w-h1 {
  font-size: 29px;
  line-height: 30px;
  letter-spacing: -1.3px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.w-sub {
  font-size: 9.5px;
  line-height: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 250px;
  margin-bottom: 13px;
}
.w-row { display: flex; gap: 7px; align-items: center; }
.w-hprox { display: flex; align-items: center; gap: 7px; margin-top: 13px; }
.w-stars { display: flex; gap: 1.5px; color: #F5B544; }
.w-stars svg { width: 9px; height: 9px; }
.w-hprox em { font-style: normal; font-size: 8.5px; font-weight: 600; color: #fff; }
.w-hprox span { font-size: 8px; color: rgba(255, 255, 255, 0.6); }

/* ------------------------------------------------------- lead capture card */
.w-lead {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 18px 40px -16px rgba(4, 8, 14, 0.7);
}
.w-lead__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 6px;
}
.w-lead__tag::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--acc);
  animation: pulse 1.7s ease-in-out infinite;
}
.w-lead b {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: -0.35px;
  color: var(--ink); margin-bottom: 2px;
}
.w-lead i {
  display: block; font-style: normal;
  font-size: 8px; color: var(--mute); margin-bottom: 9px;
}
.w-input {
  height: 20px;
  border: 1px solid var(--hairline);
  border-radius: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  padding: 0 7px;
  font-size: 8px;
  color: var(--faint);
  background: #FCFCFD;
}
.w-input--focus {
  border-color: var(--acc);
  box-shadow: 0 0 0 2.5px color-mix(in srgb, var(--acc) 18%, transparent);
  color: var(--ink);
  background: #fff;
}
.w-input--focus::after {
  content: "";
  width: 1px; height: 9px;
  background: var(--acc);
  margin-left: 1px;
  animation: caret 1.1s step-end infinite;
}
@keyframes caret { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.w-input--split { display: flex; gap: 5px; margin-bottom: 5px; }
.w-input--split .w-input { flex: 1; margin-bottom: 0; }
.w-submit {
  height: 24px;
  border-radius: 6px;
  background: var(--acc);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 7px;
}
.w-submit svg { width: 10px; height: 10px; }
.w-formnote {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  color: var(--mute);
  margin-top: 7px;
  justify-content: center;
}
.w-formnote::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #12A150;
}

/* ------------------------------------------------------------ bottom strip */
.w-strip {
  flex: none;
  border-top: 1px solid var(--hairline);
  background: #fff;
  padding: 13px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}
.w-svcs { display: flex; gap: 9px; }
.w-svc {
  flex: 1;
  border: 1px solid var(--hairline);
  border-radius: 7px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.w-svc__ic {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: color-mix(in srgb, var(--acc) 12%, #fff);
  color: var(--acc);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.w-svc__ic svg { width: 10px; height: 10px; }
.w-svc b { display: block; font-size: 8.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.1px; }
.w-svc span { display: block; font-size: 7px; color: var(--mute); }

.w-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--hairline);
  padding-top: 10px;
}
.w-badges span { font-size: 7.5px; color: var(--mute); display: flex; align-items: center; gap: 4px; }
.w-badges svg { width: 9px; height: 9px; color: var(--acc); }

/* ------------------------------------------------------- the Awava layer */
.w-chat {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 152px;
  background: #fff;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 16px 38px -14px rgba(6, 10, 18, 0.55);
  z-index: 6;
}
.w-chat__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 9px;
  background: #121821;
  color: #fff;
}
.w-chat__av {
  width: 17px; height: 17px;
  border-radius: 50%;
  background: linear-gradient(150deg, #56A2F2, #1E4FB0);
  flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: #fff;
}
.w-chat__bar b { font-size: 9px; font-weight: 600; letter-spacing: -0.2px; display: block; }
.w-chat__bar span { font-size: 7px; color: rgba(255, 255, 255, 0.6); display: flex; align-items: center; gap: 3px; }
.w-chat__bar span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: #2ED47A; }
.w-chat__body { padding: 8px; display: grid; gap: 4px; background: #fff; }
.w-msg { font-size: 7.5px; line-height: 11px; padding: 4px 6px; border-radius: 8px; max-width: 92%; }
.w-msg--ai { background: var(--panel); color: var(--ink); border-bottom-left-radius: 3px; }
.w-msg--me { background: #2E6BE6; color: #fff; margin-left: auto; border-bottom-right-radius: 3px; }
.w-chat__dots {
  display: flex; gap: 2.5px; padding: 6px 7px;
  background: var(--panel); border-radius: 9px; border-bottom-left-radius: 3px; width: fit-content;
}
.w-chat__dots i { width: 3.5px; height: 3.5px; border-radius: 50%; background: #2E6BE6; display: block; animation: dot 1.25s ease-in-out infinite; }
.w-chat__dots i:nth-child(2) { animation-delay: 0.16s; }
.w-chat__dots i:nth-child(3) { animation-delay: 0.32s; }
.w-chat__in {
  border-top: 1px solid var(--hairline);
  padding: 6px 9px;
  font-size: 7.5px;
  color: var(--faint);
  display: flex; justify-content: space-between; align-items: center;
}
.w-chat__send { width: 12px; height: 12px; border-radius: 50%; background: #2E6BE6; }

.w-launcher {
  position: absolute;
  right: 15px; bottom: 15px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(150deg, #56A2F2, #1E4FB0);
  box-shadow: 0 10px 22px -8px rgba(30, 79, 176, 0.75);
  z-index: 6;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.w-launcher svg { width: 15px; height: 15px; }
.w-launcher::after {
  content: "";
  position: absolute; top: -1px; right: -1px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #FF4D4D;
  border: 1.5px solid #fff;
}

.w-toast {
  position: absolute;
  left: 14px; bottom: 122px;
  z-index: 7;
  display: flex; align-items: center; gap: 7px;
  background: #fff;
  border-radius: 8px;
  border-left: 2px solid #12A150;
  padding: 7px 10px;
  box-shadow: 0 12px 28px -12px rgba(6, 10, 18, 0.5);
}
.w-toast b { display: block; font-size: 8.5px; font-weight: 600; color: var(--ink); }
.w-toast span { display: block; font-size: 7.5px; color: var(--mute); }
.w-toast__ic {
  width: 16px; height: 16px; border-radius: 50%;
  background: #E4F3EA; color: #0C6B3F;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.w-toast__ic svg { width: 9px; height: 9px; }

/* --------------------------------------------------------------- caption */
.mock__caption {
  border-top: 1px solid var(--hairline);
  padding: var(--s4) var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  background: var(--elevated);
}
.mock__name { font-size: 15px; font-weight: 500; color: var(--ink); letter-spacing: -0.2px; display: block; }
.mock__trade {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}
.mock__result { font-size: 14px; font-weight: 500; color: var(--blue); white-space: nowrap; }

.mock__feats { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 var(--s6) var(--s4); background: var(--elevated); }
.mock__feat {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 3px 9px;
  font-size: 11px;
  color: var(--body);
}
.mock__feat svg { width: 11px; height: 11px; color: var(--blue); }

/* --------------------------------------------------------------------------
   15. iPhone demo
   -------------------------------------------------------------------------- */
.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s16);
  align-items: center;
}
@media (max-width: 980px) { .demo-grid { grid-template-columns: minmax(0, 1fr); justify-items: start; } }

.phone {
  width: 300px;
  height: 650px;
  flex: none;
  position: relative;
  border-radius: 54px;
  padding: 3px;
  background: linear-gradient(150deg, #E4E4E4 0%, #C9C9C9 26%, #EFEFEF 52%, #C2C2C2 78%, #DCDCDC 100%);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04), 0 18px 44px -22px rgba(23, 23, 23, 0.28);
}
.phone__btn {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #D2D2D2, #B8B8B8);
}
.phone__btn--silent { left: -1px; top: 116px; height: 26px; }
.phone__btn--up { left: -1px; top: 162px; height: 50px; }
.phone__btn--down { left: -1px; top: 224px; height: 50px; }
.phone__btn--power { right: -1px; top: 186px; height: 76px; }

.phone__bezel {
  position: absolute;
  inset: 3px;
  border-radius: 51px;
  background: #0B0B0B;
  padding: 9px;
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 43px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone__island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 25px;
  border-radius: 100px;
  background: #0B0B0B;
  z-index: 5;
}
.phone__island::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16181C;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone__status {
  height: 42px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #0B0B0B;
}
.phone__status-icons { display: flex; align-items: center; gap: 4px; }
.phone__status-icons svg { height: 11px; width: auto; }

.phone__header {
  flex: none;
  border-bottom: 1px solid var(--hairline);
  padding: 6px 12px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.98);
}
.phone__back { width: 14px; height: 14px; color: var(--blue); flex: none; }
.phone__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; letter-spacing: -0.2px;
  flex: none;
}
.phone__contact { min-width: 0; }
.phone__contact b { display: block; font-size: 12px; font-weight: 600; letter-spacing: -0.2px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.phone__contact span { display: block; font-size: 9.5px; color: var(--mute); }

.thread {
  flex: 1;
  min-height: 0;
  padding: 10px 10px 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  overflow: hidden;
}

.bub {
  max-width: 80%;
  padding: 7px 11px;
  border-radius: 17px;
  font-size: 12.5px;
  line-height: 17px;
  letter-spacing: -0.1px;
  word-wrap: break-word;
  animation: bub-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.bub--in {
  align-self: flex-start;
  background: var(--panel);
  color: var(--ink);
  border-bottom-left-radius: 5px;
}
.bub--out {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 5px;
}
@keyframes bub-in {
  from { transform: translateY(7px) scale(0.97); }
  to { transform: none; }
}

.chip {
  align-self: center;
  max-width: 92%;
  text-align: center;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--panel);
  color: var(--mute);
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
  letter-spacing: -0.05px;
  animation: bub-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.chip--live::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 1.4s ease-in-out infinite;
}
.chip--done {
  background: var(--green-wash);
  color: var(--green-ink);
  font-weight: 600;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.typing {
  align-self: flex-start;
  background: var(--panel);
  border-radius: 17px;
  border-bottom-left-radius: 5px;
  padding: 10px 12px;
  display: flex;
  gap: 4px;
  animation: bub-in 0.22s ease;
}
.typing i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  display: block;
  animation: dot 1.25s ease-in-out infinite;
}
.typing i:nth-child(2) { animation-delay: 0.16s; }
.typing i:nth-child(3) { animation-delay: 0.32s; }
@keyframes dot {
  0%, 60%, 100% { opacity: 0.28; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

.phone__input {
  flex: none;
  padding: 6px 10px 4px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.phone__field {
  flex: 1;
  height: 27px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  font-size: 11.5px;
  color: var(--faint);
}
.phone__send {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--panel);
  color: var(--faint);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.phone__send svg { width: 12px; height: 12px; }
.phone__home {
  flex: none;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone__home::after {
  content: "";
  width: 108px; height: 4px;
  border-radius: 100px;
  background: #0B0B0B;
  opacity: 0.85;
}

/* Scenario switcher */
.tabs {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  background: var(--elevated);
  gap: 2px;
}
.tab {
  height: 30px;
  padding: 0 14px;
  border: 0;
  border-radius: 100px;
  background: none;
  color: var(--body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { background: var(--blue); color: #fff; }

@media (max-width: 380px) {
  .phone { width: 276px; height: 598px; }
  .phone__island { width: 78px; }
}

/* --------------------------------------------------------------------------
   16. Testimonials
   -------------------------------------------------------------------------- */
.quote {
  background: var(--elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: border-color 0.18s ease;
}
.quote:hover { border-color: var(--blue-hairline); }
.stars { display: flex; gap: 2px; color: var(--blue); }
.stars svg { width: 14px; height: 14px; }
.quote__text { font-size: 15px; line-height: 24px; color: var(--ink); letter-spacing: -0.2px; flex: 1; }
.quote__by {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: var(--s4);
  border-top: 1px solid var(--hairline);
}
.quote__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  flex: none;
}
.quote__name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--ink);
  letter-spacing: -0.1px;
}
.quote__trade {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  background: var(--elevated);
  padding: 8px 16px 8px 12px;
}
.rating-badge__score { font-size: 18px; font-weight: 600; letter-spacing: -0.4px; color: var(--ink); }
.rating-badge__meta { font-size: 12px; color: var(--mute); }

.video-thumb {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--panel);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: flex-end;
  padding: var(--s4);
  overflow: hidden;
  transition: border-color 0.18s ease;
}
.video-thumb:hover { border-color: var(--blue-hairline); }
.video-thumb__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--elevated);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.video-thumb__play svg { width: 15px; height: 15px; margin-left: 2px; }
.video-thumb__label { font-size: 13px; font-weight: 500; color: var(--ink); position: relative; }

/* --------------------------------------------------------------------------
   17. Blog
   -------------------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 100px;
  background: var(--blue-wash);
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag--plain { background: none; color: var(--blue); padding: 0; }

.filters { display: flex; flex-wrap: wrap; gap: var(--s2); }
.filter {
  height: 30px;
  padding: 0 12px;
  border-radius: 100px;
  border: 1px solid var(--hairline);
  background: var(--elevated);
  color: var(--body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter:hover { color: var(--ink); border-color: #D6D6D6; }
.filter[aria-pressed="true"] { background: var(--blue-wash); border-color: transparent; color: var(--blue-deep); }

.post-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  align-items: center;
}
.post-meta span::after { content: ""; }

.featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  overflow: hidden;
  transition: border-color 0.18s ease;
}
.featured:hover { border-color: var(--blue-hairline); }
.featured__body { padding: var(--s8); display: flex; flex-direction: column; justify-content: center; gap: var(--s4); }
.featured__art {
  border-left: 1px solid var(--hairline);
  background: var(--canvas);
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .featured { grid-template-columns: minmax(0, 1fr); }
  .featured__art { border-left: 0; border-top: 1px solid var(--hairline); min-height: 180px; }
}

/* Editorial art: hairline grid + one blue element */
.art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--hairline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hairline) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000 30%, transparent 100%);
}
.art-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.art-bar { width: 10px; border-radius: 100px; background: var(--hairline); }
.art-bar--blue { background: var(--blue); }

.article h2 { font-size: 24px; line-height: 32px; letter-spacing: -0.9px; font-weight: 600; color: var(--ink); margin: var(--s10) 0 var(--s4); }
.article h3 { font-size: 18px; line-height: 26px; letter-spacing: -0.4px; font-weight: 600; color: var(--ink); margin: var(--s8) 0 var(--s3); }
.article p { margin-bottom: var(--s4); font-size: 16px; line-height: 27px; }
.article ul { margin: 0 0 var(--s4); display: grid; gap: var(--s2); }
.article ul li { position: relative; padding-left: 20px; font-size: 16px; line-height: 27px; }
.article ul li::before { content: ""; position: absolute; left: 4px; top: 12px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.article blockquote {
  border-left: 2px solid var(--blue);
  padding: 2px 0 2px var(--s6);
  margin: var(--s8) 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.article strong { color: var(--ink); font-weight: 500; }

.author {
  display: flex;
  align-items: center;
  gap: var(--s4);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  padding: var(--s6);
}
.author__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.author__avatar svg { height: 11px; width: auto; }

.inline-cta {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  padding: var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  margin: var(--s10) 0;
}
@media (max-width: 640px) { .inline-cta { flex-direction: column; align-items: flex-start; } }

/* --------------------------------------------------------------------------
   18. Forms
   -------------------------------------------------------------------------- */
.field { display: grid; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.1px;
}
.field input, .field select, .field textarea {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  background: var(--elevated);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
}
.field textarea { height: auto; padding: 10px 12px; min-height: 96px; resize: vertical; line-height: 20px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #D6D6D6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 107, 230, 0.14);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238F8F8F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
}
.field__hint { font-size: 12px; color: var(--mute); }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s4); }
.form-grid .span-2 { grid-column: span 2; }
@media (max-width: 560px) {
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .form-grid .span-2 { grid-column: span 1; }
}

.form-note {
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
  font-size: 12px;
  line-height: 18px;
  color: var(--mute);
}
.form-note svg { width: 14px; height: 14px; color: var(--blue); flex: none; margin-top: 2px; }

.consent {
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
  font-size: 12px;
  line-height: 18px;
  color: var(--mute);
  cursor: pointer;
}
.consent input {
  width: 15px;
  height: 15px;
  flex: none;
  margin-top: 1px;
  accent-color: var(--blue);
}
.consent a { color: var(--blue); }

.calendar-embed {
  border: 1px dashed var(--hairline);
  border-radius: var(--radius-card);
  background: var(--canvas);
  padding: var(--s8);
  text-align: center;
}

/* --------------------------------------------------------------------------
   19. CTA band + footer
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--elevated);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--s24) 0;
  text-align: center;
}
.cta-band .display { margin-bottom: var(--s4); }
.cta-band p { margin: 0 auto var(--s8); max-width: 520px; }
.cta-band .btn-row { justify-content: center; }

.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--s16) 0 var(--s10);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: var(--s10) var(--s6);
}
.footer__tag { font-size: 14px; line-height: 20px; color: var(--mute); margin-top: var(--s3); max-width: 260px; }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: var(--s4);
}
.footer ul { display: grid; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--body); }
.footer ul a:hover { color: var(--blue); }
.footer__bottom {
  margin-top: var(--s16);
  padding-top: var(--s6);
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--faint);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: var(--s8); }
}

/* --------------------------------------------------------------------------
   20. Motion
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21. Product UI panels (the "what it actually looks like" art)
   -------------------------------------------------------------------------- */
.ui {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  overflow: hidden;
  box-shadow: var(--whisper);
}
.ui__bar {
  height: 40px;
  border-bottom: 1px solid var(--hairline);
  background: var(--canvas);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 var(--s4);
}
.ui__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex: none; }
.ui__title { font-size: 12px; font-weight: 500; color: var(--ink); letter-spacing: -0.1px; }
.ui__body { padding: var(--s6); }

/* timeline */
.tl__row { display: grid; grid-template-columns: 62px 16px minmax(0, 1fr); gap: var(--s3); padding: 9px 0; }
.tl__t {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--faint); padding-top: 2px;
}
.tl__rail { position: relative; display: flex; justify-content: center; }
.tl__rail::before {
  content: ""; position: absolute; top: 14px; bottom: -13px;
  width: 1px; background: var(--hairline);
}
.tl__row:last-child .tl__rail::before { display: none; }
.tl__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid var(--blue); background: #fff;
  margin-top: 4px; position: relative; z-index: 1;
}
.tl__dot--done { background: var(--blue); }
.tl__c b { display: block; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.tl__c span { font-size: 12.5px; line-height: 18px; color: var(--body); }

/* review funnel */
.rv { display: grid; gap: var(--s3); }
.rv__ask { border: 1px solid var(--hairline); border-radius: 10px; padding: var(--s4); text-align: center; }
.rv__stars { display: flex; justify-content: center; gap: 4px; color: var(--blue); margin-top: 10px; }
.rv__stars svg { width: 20px; height: 20px; }
.rv__branch { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.rv__b { border: 1px solid var(--hairline); border-radius: 10px; padding: var(--s3) var(--s4); }
.rv__b b { display: block; font-size: 12.5px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.rv__b span { font-size: 12px; line-height: 17px; color: var(--body); }
.rv__b--blue { background: var(--blue-wash); border-color: transparent; }
.rv__b--blue b { color: var(--blue-deep); }
.rv__b--blue span { color: #24406F; }
@media (max-width: 520px) { .rv__branch { grid-template-columns: minmax(0, 1fr); } }

/* campaign composer */
.cp { display: grid; gap: var(--s4); }
.cp__label {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 6px;
}
.cp__field {
  border: 1px solid var(--hairline); border-radius: 8px;
  padding: 10px 12px; font-size: 13px; line-height: 19px; color: var(--body);
}
.cp__msg { min-height: 74px; }
.cp .btn { pointer-events: none; }

/* search preview */
.serp { border: 1px solid var(--hairline); border-radius: 10px; padding: var(--s4); }
.serp__url { font-family: var(--mono); font-size: 11px; color: var(--mute); }
.serp__title { font-size: 14px; font-weight: 500; color: var(--blue); letter-spacing: -0.2px; margin: 4px 0 4px; }
.serp__desc { font-size: 12.5px; line-height: 18px; color: var(--body); }
.rank {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--hairline); font-size: 13px; color: var(--body);
}
.rank:last-child { border-bottom: 0; }
.rank b { color: var(--blue); font-weight: 600; font-size: 14px; }

/* call card */
.call { display: grid; gap: var(--s4); }
.call__head { display: flex; align-items: center; gap: var(--s3); }
.call__head .quote__avatar { color: var(--blue); background: var(--blue-wash); }
.call__head .quote__avatar svg { width: 15px; height: 15px; }
.call__wave { display: flex; align-items: center; gap: 3px; height: 32px; }
.call__wave i {
  width: 3px; height: 6px; border-radius: 2px; background: var(--blue);
  display: block; opacity: 0.3; animation: wave 1.3s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { height: 5px; opacity: 0.28; }
  50% { height: 26px; opacity: 1; }
}
.transcript { display: grid; gap: var(--s3); }
.transcript div { font-size: 13px; line-height: 19px; color: var(--body); }
.transcript b {
  display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 3px; font-weight: 500;
}

/* --------------------------------------------------------------------------
   22. Brand page
   -------------------------------------------------------------------------- */
.asset__hero {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  padding: 64px var(--s8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.asset__hero--dark { background: var(--ink); border-color: var(--ink); }

.asset {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  overflow: hidden;
  transition: border-color 0.18s ease;
}
.asset:hover { border-color: var(--blue-hairline); }
.asset__stage {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s6);
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
}
.asset__stage--dark { background: var(--ink); border-bottom-color: var(--ink); color: #fff; }
.asset__stage img { max-height: 64px; width: auto; max-width: 100%; }
.asset figcaption { padding: var(--s4) var(--s6); }
.asset figcaption b { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.asset figcaption span { font-size: 12.5px; line-height: 18px; color: var(--body); }

.favrow {
  display: flex;
  align-items: flex-end;
  gap: var(--s10);
  flex-wrap: wrap;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  padding: var(--s8);
}
.favrow__item { display: grid; justify-items: center; gap: 10px; }
.favrow__item img { image-rendering: auto; }
.favrow__item .mono { font-size: 11px; color: var(--faint); letter-spacing: 0.04em; }

.constr { display: grid; gap: var(--s4); }
.constr__row { display: flex; align-items: center; gap: var(--s4); }
.constr__g {
  width: 64px; height: 48px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.constr__g svg { height: 40px; width: auto; }
.constr__row b { display: block; font-size: 14px; font-weight: 500; color: var(--ink); }
.constr__row span span { font-size: 12.5px; line-height: 18px; color: var(--body); }

.sw {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  padding: var(--s4);
  display: grid;
  gap: 3px;
  transition: border-color 0.18s ease;
}
.sw:hover { border-color: var(--blue-hairline); }
.sw__chip { height: 48px; border-radius: 8px; display: block; margin-bottom: 10px; }
.sw b { font-size: 13px; font-weight: 500; color: var(--ink); }
.sw .mono { font-family: var(--mono); font-size: 11.5px; color: var(--mute); }
.sw__role { font-size: 12px; color: var(--faint); }

.checklist--no svg { color: var(--faint); }
.x-mark { transform: rotate(45deg); }

/* --------------------------------------------------------------------------
   23. Utilities
   -------------------------------------------------------------------------- */
.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;
}
.center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--s2); }
.gap-3 { gap: var(--s3); }
.gap-4 { gap: var(--s4); }
.gap-6 { gap: var(--s6); }
.wrap { flex-wrap: wrap; }
.mt-4 { margin-top: var(--s4); }
.mt-6 { margin-top: var(--s6); }
.mt-8 { margin-top: var(--s8); }
.mt-10 { margin-top: var(--s10); }
.mb-4 { margin-bottom: var(--s4); }
.mb-6 { margin-bottom: var(--s6); }
.mb-8 { margin-bottom: var(--s8); }
.mb-10 { margin-bottom: var(--s10); }

/* --------------------------------------------------------------------------
   24. Legal pages
   -------------------------------------------------------------------------- */
.legal {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: var(--s16);
  align-items: start;
}
.legal__toc {
  position: sticky;
  top: 88px;
  border-right: 1px solid var(--hairline);
  padding-right: var(--s6);
}
.legal__toc ol { display: grid; gap: 9px; counter-reset: toc; }
.legal__toc a {
  font-size: 13px;
  line-height: 18px;
  color: var(--body);
  display: block;
}
.legal__toc a:hover { color: var(--blue); }

.legal__section { scroll-margin-top: 88px; }
.legal__section + .legal__section { margin-top: var(--s10); }
.legal__body h2 {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin: 0 0 var(--s4);
  display: flex;
  align-items: baseline;
  gap: var(--s3);
}
.legal__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--blue);
  flex: none;
}
.legal__body p, .legal__body li { font-size: 15px; line-height: 25px; }
.legal__body h3 {
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.2px;
  font-weight: 600;
  color: var(--ink);
  margin: var(--s6) 0 var(--s2);
}

/* The line carriers check for. Called out so it cannot be missed on review. */
.legal__callout {
  border: 1px solid var(--blue-hairline);
  background: var(--blue-wash);
  border-radius: var(--radius-card);
  padding: var(--s4) var(--s6);
  margin: var(--s4) 0;
}
.legal__callout p { color: #1C3A6E; font-weight: 500; margin: 0; }

.legal__contact {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--elevated);
  padding: var(--s6);
  display: grid;
  gap: 6px;
  margin-top: var(--s4);
}
.legal__contact li { font-size: 14px; line-height: 21px; color: var(--body); }
.legal__contact b { color: var(--ink); font-weight: 600; }

.footer__legal { display: flex; gap: var(--s4); }
.footer__legal a { color: var(--body); }
.footer__legal a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .legal { grid-template-columns: minmax(0, 1fr); gap: var(--s8); }
  .legal__toc { position: static; border-right: 0; border-bottom: 1px solid var(--hairline); padding: 0 0 var(--s6); }
  .legal__toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); display: grid; }
}
