/* ==========================================================================
   Charlie Company Media — design system
   Apple-style typography, light surfaces, hues instead of color blocks.
   ========================================================================== */
/* ==========================================================================
   Palette — the emblem's navy and off-white, used only as hues.
   Every accent is a tint or shade of the same navy: navy → steel → sky → mist.
   ========================================================================== */
:root {
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --navy: #0b1f3f;
  --navy-2: #16305a;
  --steel: #2a5a9c;
  --sky: #4f86c6;
  --slate: #5a6e96;
  --mist: #8a9bbb;
  --deep: #14325f;
  --brass: #c8a75a;

  --ink: var(--navy);
  --ink-2: var(--navy-2);
  --text: #3d4a63;
  --muted: #6b7890;
  --faint: #9aa5b8;
  --line: rgba(11, 31, 63, 0.09);
  --line-2: rgba(11, 31, 63, 0.16);

  --bg: #ffffff;
  --paper: #f5f6fa;
  --paper-2: #eceef4;

  --blue: var(--navy);
  --blue-deep: #1e4b8f;
  --teal: var(--steel);
  --violet: var(--slate);
  --amber: var(--brass);
  --rose: var(--mist);
  --green: var(--sky);

  --blue-t: rgba(11, 31, 63, 0.07);
  --teal-t: rgba(42, 90, 156, 0.10);
  --violet-t: rgba(90, 110, 150, 0.11);
  --amber-t: rgba(138, 155, 187, 0.16);
  --rose-t: rgba(138, 155, 187, 0.13);
  --green-t: rgba(79, 134, 198, 0.11);

  --grad: linear-gradient(120deg, var(--navy) 0%, var(--steel) 55%, var(--sky) 120%);
  --grad-soft: linear-gradient(120deg, rgba(11,31,63,.10), rgba(42,90,156,.09) 50%, rgba(79,134,198,.10));

  --radius: 22px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --shadow-1: 0 1px 2px rgba(11, 31, 63, 0.05), 0 6px 20px -8px rgba(11, 31, 63, 0.10);
  --shadow-2: 0 2px 4px rgba(11, 31, 63, 0.05), 0 24px 48px -20px rgba(11, 31, 63, 0.22);
  --shadow-3: 0 10px 30px -10px rgba(11, 31, 63, 0.30);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.7s;

  --header-h: 68px;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  color-scheme: light;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-deep); text-decoration: none; }
a:hover { text-decoration: none; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin: 0.35em 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
button { font: inherit; }
::selection { background: rgba(11, 31, 63, 0.18); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 1000; }
.skip-link:focus { left: 8px; }
.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; }

/* ---------- typography ---------- */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.12;
  text-wrap: balance;
}
h1, .display { font-size: clamp(2.5rem, 5.4vw, 4.4rem); letter-spacing: -0.035em; line-height: 1.04; font-weight: 700; }
h2, .h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); letter-spacing: -0.03em; }
h3, .h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4, .h4 { font-size: 1.2rem; letter-spacing: -0.012em; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); line-height: 1.55; color: var(--muted); font-weight: 400; text-wrap: pretty; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 1rem;
}
.eyebrow.teal { color: var(--steel); }
.eyebrow.violet { color: var(--slate); }
.eyebrow.amber { color: var(--deep); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.balance { text-wrap: balance; }
small, .small { font-size: 0.88rem; }
strong { color: var(--ink-2); font-weight: 600; }

/* ---------- layout ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2 * var(--gutter), 780px); margin-inline: auto; }
.wide { width: min(100% - 2 * var(--gutter), 1320px); margin-inline: auto; }
.section { padding: clamp(60px, 8vw, 112px) 0; position: relative; }
.section.tight { padding: clamp(36px, 5vw, 64px) 0; }
.section.paper { background: var(--paper); }
.section.hairline { border-top: 1px solid var(--line); }
.section-head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { margin-bottom: 0.45em; }
.section-head .lead { margin: 0; }
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.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)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 84px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.split .prose > :last-child { margin-bottom: 0; }
.stack > * + * { margin-top: 1rem; }
@media (max-width: 1024px) {
  .grid-4, .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: 0; }
}

/* ---------- buttons (Apple-style pills) ---------- */
.btn {
  --btn-bg: rgba(11,31,63,.08); --btn-fg: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 22px; min-height: 44px;
  border-radius: 980px; border: 0;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 500; font-size: 1rem; letter-spacing: -0.012em; line-height: 1.2;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s var(--ease), box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { background: rgba(11,31,63,.13); }
.btn:active { transform: scale(.98); }
.btn .arrow, .btn .chev { width: 14px; height: 14px; }
.btn-primary { --btn-bg: rgba(42,90,156,.12); --btn-fg: var(--deep); }
.btn-primary:hover { background: rgba(42,90,156,.18); }
.btn-blue { --btn-bg: rgba(42,90,156,.12); --btn-fg: var(--deep); }
.btn-blue:hover { background: rgba(42,90,156,.18); }
.btn-ghost { --btn-bg: #fff; --btn-fg: var(--navy); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-ghost:hover { background: var(--paper); }
.btn-soft { --btn-bg: var(--blue-t); --btn-fg: var(--navy); }
.btn-soft:hover { background: rgba(11,31,63,.11); }
.btn-lg { padding: 14px 28px; min-height: 52px; font-size: 1.06rem; }
.btn-sm { padding: 8px 16px; min-height: 36px; font-size: .9rem; }
.btn-link {
  display: inline-flex; align-items: center; gap: 3px; font-weight: 500; color: var(--blue-deep);
  padding: 0; background: none; border: 0; cursor: pointer; letter-spacing: -0.01em;
}
.btn-link .chev, .btn-link .arrow { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.btn-link:hover .chev, .btn-link:hover .arrow { transform: translateX(2px); }
.btn-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row.center { justify-content: center; }
.btn[disabled] { opacity: .5; cursor: default; transform: none; }

/* ---------- chips / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 980px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0;
  background: var(--blue-t); color: var(--navy);
}
.chip.teal { background: var(--teal-t); color: var(--steel); }
.chip.violet { background: var(--violet-t); color: var(--slate); }
.chip.amber { background: var(--amber-t); color: var(--deep); }
.chip.rose { background: var(--rose-t); color: var(--slate); }
.chip.green { background: var(--green-t); color: var(--steel); }
.chip.ghost { background: #fff; color: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .8; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- icons (bare SF-style symbols, no boxes) ---------- */
.icon-tile { width: 32px; height: 32px; display: grid; place-items: center; color: var(--navy); flex: none; background: none; }
.icon-tile svg { width: 30px; height: 30px; stroke-width: 1.5; }
.icon-tile.teal { color: var(--steel); }
.icon-tile.violet { color: var(--slate); }
.icon-tile.amber { color: var(--deep); }
.icon-tile.rose { color: var(--slate); }
.icon-tile.green { color: var(--sky); }
.icon-tile.lg { width: 40px; height: 40px; }
.icon-tile.lg svg { width: 38px; height: 38px; stroke-width: 1.4; }

/* ---------- cards ---------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: var(--shadow-1);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .3s;
  overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: rgba(11,31,63,.18); }
.card h3, .card h4 { margin-top: 0; font-size: 1.18rem; margin-bottom: .5rem; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card .icon-tile { margin-bottom: 16px; }
.card-link { position: absolute; inset: 0; z-index: 2; }
.card ul { padding-left: 0; list-style: none; }
.card ul li { position: relative; padding-left: 26px; margin: .5em 0; }
.card ul li::before, .checks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-t) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a5a9c' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/10px no-repeat;
}
.card.tint-blue { background: linear-gradient(160deg, rgba(11,31,63,.06), #fff 60%); }
.card.tint-teal { background: linear-gradient(160deg, rgba(79,134,198,.07), #fff 60%); }
.card.tint-violet { background: linear-gradient(160deg, rgba(42,90,156,.07), #fff 60%); }
.card.tint-amber { background: linear-gradient(160deg, rgba(138,155,187,.09), #fff 60%); }
.card.glass { background: rgba(255,255,255,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.card .num { font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--faint); margin-bottom: 14px; font-variant-numeric: tabular-nums; }
.card-media { margin: calc(-1 * clamp(22px, 2.6vw, 32px)) calc(-1 * clamp(22px, 2.6vw, 32px)) 20px; aspect-ratio: 16/9; overflow: hidden; background: var(--paper); }
.card-media img, .card-media .art-wrap, .card-media svg.art { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); display: block; }
.card:hover .card-media svg.art { transform: scale(1.04); }
.art-wrap { position: relative; overflow: hidden; border-radius: inherit; }
svg.art { width: 100%; height: 100%; display: block; }
.img-wrap.rounded svg.art, .img-wrap.rounded .art-wrap { border-radius: var(--radius); }
.img-wrap.shadow .art-wrap { box-shadow: var(--shadow-2); border-radius: var(--radius); }
.map-wrap { border-radius: 26px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-2); background: #fff; }
.map-wrap svg { width: 100%; height: auto; display: block; }
.map-pin { cursor: pointer; }
.map-pin circle { transition: transform .3s var(--ease); transform-box: fill-box; transform-origin: center; }
.map-pin:hover circle:last-of-type { transform: scale(1.5); }
.checks { list-style: none; padding: 0; }
.checks li { position: relative; padding-left: 28px; margin: .55em 0; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.86); box-shadow: 0 6px 24px -20px rgba(11,31,63,.3); }
.site-header .bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: var(--header-h); gap: 20px; }
.site-header .header-cta { justify-self: end; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; font-size: 1.2rem; }
.brand svg.emblem { width: auto; height: 38px; color: var(--navy); }
.brand .word { display: inline-flex; flex-direction: column; line-height: 1; }
.brand .word small { font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); margin-top: 3px; }
.nav { display: flex; align-items: center; justify-content: center; gap: 2px; position: static; }
.nav > li { list-style: none; position: static; }
.nav { margin: 0; padding: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 999px;
  color: var(--ink-2); font-weight: 500; font-size: .95rem; background: none; border: 0; cursor: pointer;
  transition: background .25s, color .25s;
}
.nav-link:hover, .nav > li.open > .nav-link { background: var(--paper-2); color: var(--ink); }
.nav-link svg { width: 11px; height: 11px; opacity: .55; transition: transform .3s var(--ease); }
.nav > li.open > .nav-link svg { transform: rotate(180deg); }
.mega {
  position: absolute; left: 0; right: 0; top: var(--header-h);
  opacity: 0; pointer-events: none; visibility: hidden; transform: translateY(-6px);
  background: rgba(255,255,255,.985); -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line); box-shadow: 0 30px 60px -40px rgba(11,31,63,.35);
  padding: 36px 0 44px;
  transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .35s;
  z-index: 50;
}
.nav > li.open > .mega { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.mega-cols { display: grid; gap: 12px 48px; grid-template-columns: repeat(var(--cols, 2), max-content); justify-content: center; align-items: start; }
.mega-cols > div { display: flex; flex-direction: column; gap: 2px; }
.mega-title { display: block; font-size: .74rem; font-weight: 500; letter-spacing: .02em; color: var(--muted); margin: 0 0 10px; line-height: 1; }
.mega a.item { display: inline-flex; align-items: center; gap: 4px; padding: 6px 0; color: var(--ink); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; transition: color .2s; }
.mega a.item:hover { color: var(--steel); }
.mega a.item.big { font-size: 1.35rem; letter-spacing: -0.025em; }
.mega a.item .chev { width: 16px; height: 16px; opacity: .6; }
.mega .promo { padding-left: 48px; border-left: 1px solid var(--line); min-height: 100%; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .phone { font-weight: 600; color: var(--ink-2); font-size: .92rem; padding: 8px 10px; white-space: nowrap; }
.header-cta .login-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; color: var(--ink-2); font-size: .92rem; padding: 8px 10px; border-radius: 999px; white-space: nowrap; transition: background .25s; }
.header-cta .login-link:hover { background: var(--paper-2); color: var(--ink); }
.header-cta .login-link svg { width: 16px; height: 16px; stroke-width: 1.8; }
@media (max-width: 1180px) { .header-cta .login-link span { display: none; } .header-cta .login-link { width: 40px; height: 40px; justify-content: center; padding: 0; } }
@media (max-width: 900px) { .header-cta .login-link { display: none; } }
.nav .mobile-cta { display: none; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); background: #fff; place-items: center; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .3s, background .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, top .3s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
.search-btn { width: 40px; height: 40px; border-radius: 50%; border: 0; background: transparent; display: grid; place-items: center; cursor: pointer; color: var(--ink-2); }
.search-btn:hover { background: var(--paper-2); }
.search-btn svg { width: 18px; height: 18px; }

@media (max-width: 1080px) {
  .header-cta .phone { display: none; }
  .nav-link { padding: 10px 10px; font-size: .9rem; }
}
@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .site-header .bar { display: flex; justify-content: space-between; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 40px; overflow: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity .3s, transform .4s var(--ease), visibility .3s;
  }
  body.nav-open .nav { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav > li { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 16px 4px; border-radius: 0; font-size: 1.05rem; }
  .mega { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: 0; padding: 0 0 16px; width: auto; max-width: none; display: none; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .mega .container { width: auto; }
  .mega-title { display: none; }
  .mega a.item { font-size: 1rem; padding: 9px 0; }
  .mega a.item.big { font-size: 1rem; }
  .nav > li.open > .mega { display: block; transform: none; }
  .nav { position: fixed; }
  .mega-cols { grid-template-columns: 1fr; gap: 0; justify-content: start; }
  .mega .promo { padding-left: 0; border: 0; }
  .nav .mobile-cta { display: block; padding: 18px 0 0; border: 0; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + clamp(56px, 8vw, 110px)) 0 clamp(48px, 7vw, 96px); overflow: hidden; }
.hero.compact { padding-bottom: clamp(36px, 5vw, 64px); }
.orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; animation: drift 22s var(--ease-io) infinite alternate; }
.orb.a { width: 560px; height: 560px; left: -160px; top: -180px; background: radial-gradient(circle, rgba(11,31,63,.28), rgba(11,31,63,0) 65%); }
.orb.b { width: 620px; height: 620px; right: -220px; top: -120px; background: radial-gradient(circle, rgba(42,90,156,.22), rgba(42,90,156,0) 65%); animation-duration: 28s; animation-delay: -6s; }
.orb.c { width: 480px; height: 480px; right: 18%; bottom: -260px; background: radial-gradient(circle, rgba(79,134,198,.22), rgba(79,134,198,0) 65%); animation-duration: 26s; animation-delay: -12s; }
.orb.d { width: 360px; height: 360px; left: 30%; bottom: -200px; background: radial-gradient(circle, rgba(138,155,187,.16), rgba(138,155,187,0) 65%); animation-duration: 30s; animation-delay: -3s; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(60px, 40px, 0) scale(1.08); } }
.hero .container, .hero .narrow { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy .lead { max-width: 560px; }
.hero-copy .btn-row { margin-top: 28px; }
.hero-copy .h1-sub { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 500; color: var(--ink-2); letter-spacing: -0.02em; margin: 0 0 18px; line-height: 1.3; }
.hero-note { display: flex; align-items: center; gap: 14px; margin-top: 26px; color: var(--muted); font-size: .9rem; }
.hero-note .gmark { width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-1); display: grid; place-items: center; flex: none; }
.hero-note .gmark svg { width: 22px; height: 22px; }
.hero-note .rating { display: inline-flex; align-items: center; gap: 8px; }
.hero-note .rating strong { font-size: 1.15rem; color: var(--navy); font-weight: 700; letter-spacing: -.02em; }
.hero-note .stars { color: #f5b400; letter-spacing: 1px; font-size: 1rem; }
.hero-center { text-align: center; max-width: 860px; margin-inline: auto; }
.hero-center .lead { margin-inline: auto; max-width: 680px; }
.hero-center .btn-row { justify-content: center; }
.hero-art { position: relative; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-art { max-width: 560px; margin: 0 auto; } }

/* word-by-word headline reveal */
.words .w { display: inline-block; opacity: 0; transform: translateY(18px); filter: blur(6px); animation: wordIn .9s var(--ease) forwards; animation-delay: calc(var(--i) * 70ms); }
@keyframes wordIn { to { opacity: 1; transform: none; filter: blur(0); } }

/* ---------- reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); will-change: opacity, transform; }
[data-reveal="left"] { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- product mockups ---------- */
.device {
  position: relative; border-radius: 26px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255,255,255,.7);
  overflow: hidden;
  transform-style: preserve-3d;
}
.device.float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.device img { width: 100%; height: auto; }
.device.frame { padding: 10px; background: linear-gradient(180deg, #f8f9fc, #eef1f6); }
.device.frame img { border-radius: 18px; }
.device .topbar { display: flex; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.device .topbar i { width: 10px; height: 10px; border-radius: 50%; background: var(--paper-2); }
.glow { position: absolute; inset: -10% -10% auto; height: 60%; background: var(--grad-soft); filter: blur(60px); z-index: -1; border-radius: 50%; opacity: .8; }
.img-wrap { position: relative; }
.img-wrap.rounded, .img-wrap.rounded img { border-radius: var(--radius); }
.img-wrap.shadow img { box-shadow: var(--shadow-2); }
.img-fallback { background: var(--grad-soft); display: grid; place-items: center; color: var(--blue-deep); font-weight: 600; aspect-ratio: 4/3; border-radius: var(--radius); }
.img-fallback svg { width: 42%; max-width: 160px; opacity: .8; }
img.broken { display: none; }
.floating-card {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px 14px;
  box-shadow: var(--shadow-2); display: flex; gap: 10px; align-items: center; font-size: .85rem; color: var(--ink-2);
  animation: float 6s ease-in-out infinite;
}
.floating-card strong { display: block; font-size: .95rem; }
.floating-card .icon-tile { width: 24px; height: 24px; }
.floating-card .icon-tile svg { width: 22px; height: 22px; stroke-width: 1.7; }
.floating-card.tl { top: 6%; left: -8%; animation-delay: -2s; }
.floating-card.br { bottom: 8%; right: -6%; animation-delay: -4s; }
.floating-card.tr { top: 12%; right: -6%; animation-delay: -1s; }
@media (max-width: 720px) { .floating-card { display: none; } }

/* svg mockups */
.mock { width: 100%; height: auto; display: block; margin-inline: auto; max-width: 560px; }
.mock .bar { animation: barGrow 1.6s var(--ease) forwards; transform-origin: bottom; transform: scaleY(0); }
.mock .bar:nth-child(2) { animation-delay: .1s; } .mock .bar:nth-child(3) { animation-delay: .2s; } .mock .bar:nth-child(4) { animation-delay: .3s; } .mock .bar:nth-child(5) { animation-delay: .4s; } .mock .bar:nth-child(6) { animation-delay: .5s; } .mock .bar:nth-child(7) { animation-delay: .6s; }
@keyframes barGrow { to { transform: scaleY(1); } }
.mock .line-anim { stroke-dasharray: 600; stroke-dashoffset: 600; animation: dash 2.2s var(--ease) forwards .4s; }
@keyframes dash { to { stroke-dashoffset: 0; } }
.mock .pulse { animation: pulse 2.6s ease-in-out infinite; transform-origin: center; }
@keyframes pulse { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.mock .ring { animation: ring 3.2s ease-out infinite; transform-origin: center; }
@keyframes ring { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.mock .spin { animation: spin 40s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.mock .type { animation: fadeUp .8s var(--ease) both; }
.mock .type:nth-child(2) { animation-delay: .25s; } .mock .type:nth-child(3) { animation-delay: .5s; } .mock .type:nth-child(4) { animation-delay: .75s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stat { padding: 26px 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-1); position: relative; overflow: hidden; }
.stat::after { content: ""; position: absolute; inset: auto -30% -60% auto; width: 180px; height: 180px; border-radius: 50%; background: var(--blue-t); filter: blur(30px); }
.stat:nth-child(2)::after { background: var(--teal-t); } .stat:nth-child(3)::after { background: var(--violet-t); } .stat:nth-child(4)::after { background: var(--amber-t); }
.stat-value { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 700; letter-spacing: -0.04em; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-label { color: var(--muted); font-size: .92rem; margin-top: 8px; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-inline { display: flex; align-items: baseline; gap: 12px; }
.stat-inline .stat-value { font-size: clamp(2.6rem, 5vw, 4rem); }

/* ---------- feature accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 4px; text-align: left;
  background: none; border: 0; cursor: pointer; color: var(--ink); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.012em;
}
.acc-head .icon-tile { width: 28px; height: 28px; }
.acc-head .icon-tile svg { width: 26px; height: 26px; stroke-width: 1.6; }
.acc-head .plus { margin-left: auto; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; flex: none; transition: transform .45s var(--ease), background .3s, border-color .3s; }
.acc-head .plus svg { width: 12px; height: 12px; }
.acc-item.open .acc-head .plus { transform: rotate(45deg); background: rgba(11,31,63,.08); color: var(--navy); border-color: transparent; }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; }
.acc-body .inner { padding: 0 4px 22px 60px; color: var(--text); }
.acc-body .inner p { margin-bottom: .8em; }
.acc-body .inner .btn-link { margin-top: 2px; }
@media (max-width: 600px) { .acc-body .inner { padding-left: 4px; } }

/* ---------- faq ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: 18px; background: #fff; margin-bottom: 12px; overflow: hidden; transition: box-shadow .4s var(--ease), border-color .3s; }
.faq details[open] { box-shadow: var(--shadow-1); border-color: rgba(11,31,63,.2); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 16px; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { margin-left: auto; flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform .45s var(--ease), background .3s; }
.faq summary .plus svg { width: 12px; height: 12px; }
.faq details[open] summary .plus { transform: rotate(45deg); background: rgba(11,31,63,.08); color: var(--navy); border-color: transparent; }
.faq .answer { padding: 0 24px 22px; color: var(--text); animation: fadeUp .5s var(--ease); }
.faq .answer p:last-child { margin: 0; }

/* ---------- pricing / plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 30px 28px; box-shadow: var(--shadow-1); display: flex; flex-direction: column; transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.plan.featured::before { content: ""; position: absolute; inset: -1px; border-radius: 27px; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.plan .plan-kicker { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 8px; }
.plan h3 { font-size: 1.5rem; margin-bottom: 4px; }
.plan .sub { color: var(--muted); margin-bottom: 18px; }
.plan .price { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); margin-bottom: 16px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan li { position: relative; padding-left: 28px; margin: .6em 0; color: var(--text); }
.plan li::before { content: ""; position: absolute; left: 0; top: .32em; width: 18px; height: 18px; border-radius: 50%; background: var(--blue-t) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4fd7' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/11px no-repeat; }
.plan:nth-child(2) li::before { background-color: var(--teal-t); }
.plan:nth-child(3) li::before { background-color: var(--violet-t); }
.plan .btn { width: 100%; }
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* steps (numbered process) */
.steps { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: relative; box-shadow: var(--shadow-1); }
.step .step-no { width: 44px; height: 44px; border-radius: 14px; background: rgba(42,90,156,.12); color: var(--deep); font-weight: 700; display: grid; place-items: center; margin-bottom: 16px; font-size: 1rem; letter-spacing: -0.02em; box-shadow: var(--shadow-3); }
.step h3 { font-size: 1.15rem; }
.step .sub { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.step ul { padding-left: 0; list-style: none; }
.step li { position: relative; padding-left: 24px; margin: .45em 0; }
.step li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }

/* ---------- testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-1); display: flex; flex-direction: column; gap: 16px; height: 100%; }
.quote-card .stars { color: var(--amber); font-size: .95rem; letter-spacing: 2px; }
.quote-card blockquote { margin: 0; color: var(--ink-2); font-size: 1.05rem; line-height: 1.6; font-weight: 400; flex: 1; }
.quote-card blockquote::before { content: "\201C"; font-size: 3rem; line-height: 0; vertical-align: -0.45em; color: var(--blue); opacity: .5; margin-right: 4px; font-family: Georgia, serif; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: var(--navy); background: rgba(11,31,63,.08); font-size: .85rem; flex: none; }
.quote-card .who strong { display: block; color: var(--ink); font-size: .95rem; }
.quote-card .who span { color: var(--muted); font-size: .85rem; }

.carousel { position: relative; }
.carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 4px 20px; -webkit-overflow-scrolling: touch; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { flex: 0 0 min(100%, 380px); scroll-snap-align: start; }
.carousel-nav { display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 8px; }
.carousel-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; display: grid; place-items: center; cursor: pointer; transition: background .25s, transform .3s var(--ease); }
.carousel-nav button:hover { background: var(--paper); transform: translateY(-1px); }
.carousel-nav button svg { width: 16px; height: 16px; }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); transition: width .3s var(--ease), background .3s; }
.carousel-dots i.on { width: 18px; background: var(--steel); }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee .chip { font-size: .9rem; padding: 10px 18px; background: #fff; border-color: var(--line); color: var(--ink-2); box-shadow: var(--shadow-1); }
.marquee .chip .icon-tile { width: 18px; height: 18px; }
.marquee .chip .icon-tile svg { width: 17px; height: 17px; stroke-width: 1.8; }

/* ---------- forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-2); position: relative; }
.form-card .form-title { font-size: 1.25rem; margin-bottom: 4px; }
.form-card .form-sub { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; padding: 13px 15px; border-radius: 13px; border: 1px solid var(--line-2); background: #fff; color: var(--ink);
  transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,31,63,.14); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(138,155,187,.14); }
.field .error { color: #8a2b3f; font-size: .8rem; display: none; }
.field.invalid .error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); margin: 8px 0; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex: none; }
.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-row label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--line-2); border-radius: 999px; cursor: pointer; font-weight: 500; color: var(--ink-2); font-size: .92rem; }
.radio-row label:has(input:checked) { border-color: var(--blue); background: var(--blue-t); color: var(--blue-deep); }
.radio-row input { accent-color: var(--blue); }
.form-progress { height: 4px; border-radius: 4px; background: var(--paper-2); overflow: hidden; margin-bottom: 18px; }
.form-progress i { display: block; height: 100%; width: 50%; background: var(--grad); border-radius: 4px; transition: width .6s var(--ease); }
.form-steps { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.form-step { display: none; animation: fadeUp .45s var(--ease); }
.form-step.active { display: block; }
.form-actions { display: flex; gap: 10px; justify-content: space-between; align-items: center; margin-top: 8px; }
.form-actions .btn { flex: 1; }
.form-fine { font-size: .74rem; color: var(--faint); line-height: 1.45; margin-top: 14px; }
.form-fine a { color: var(--muted); text-decoration: underline; }
.form-success { text-align: center; padding: 20px 6px; }
.form-success .icon-tile { margin: 0 auto 16px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- prose (articles, legal) ---------- */
.prose { font-size: 1.08rem; line-height: 1.75; color: var(--text); }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); margin-top: 2.2em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.8em; }
.prose h4 { font-size: 1.1rem; margin-top: 1.5em; }
.prose p { margin: 0; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin: .4em 0; }
.prose li::marker { color: var(--blue); }
.prose a { color: var(--blue-deep); text-decoration: underline; text-decoration-color: rgba(11,31,63,.35); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--blue-deep); }
.prose img { border-radius: 16px; margin-inline: auto; }
.prose figure { margin: 2em 0; }
.prose blockquote { margin: 1.8em 0; padding: 18px 24px; border-left: 3px solid var(--blue); background: var(--paper); border-radius: 0 16px 16px 0; color: var(--ink-2); font-size: 1.1rem; }
.prose blockquote p { margin: 0; }
.prose .embed { aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: var(--paper); }
.prose .embed iframe, .prose .embed video { width: 100%; height: 100%; border: 0; }
.prose .table-wrap { overflow-x: auto; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose td, .prose th { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose hr { margin: 2.5em 0; }
.prose .cta-inline { margin: 2.4em 0; }
.legal .prose { font-size: 1rem; }
.legal .prose h2 { font-size: 1.4rem; }
.legal .prose h3 { font-size: 1.15rem; }
.toc { position: sticky; top: calc(var(--header-h) + 24px); font-size: .9rem; }
.toc a { display: block; padding: 6px 0 6px 14px; border-left: 2px solid var(--line); color: var(--muted); transition: color .2s, border-color .2s; }
.toc a:hover, .toc a.on { color: var(--ink); border-left-color: var(--blue); }
.two-col-doc { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 60px; align-items: start; }
@media (max-width: 900px) { .two-col-doc { grid-template-columns: 1fr; } .toc { position: static; display: flex; flex-wrap: wrap; gap: 8px; } .toc a { border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; } }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 1000px) { .post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); transition: transform .55s var(--ease), box-shadow .55s var(--ease); position: relative; height: 100%; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--grad-soft); position: relative; }
.post-card .thumb img, .post-card .thumb svg.art { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); display: block; }
.post-card:hover .thumb img, .post-card:hover .thumb svg.art { transform: scale(1.05); }
.post-card .thumb svg.mock { width: 100%; height: 100%; }
.post-card .thumb .ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--blue-deep); opacity: .55; }
.post-card .thumb .ph svg { width: 54px; height: 54px; }
.post-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 1.12rem; line-height: 1.3; margin: 0; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card .excerpt { color: var(--muted); font-size: .95rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card .meta { display: flex; gap: 10px; align-items: center; font-size: .8rem; color: var(--faint); margin-top: auto; padding-top: 6px; }
.cats { position: relative; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; }
.cats a, .cats span { font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--blue-deep); background: var(--blue-t); padding: 4px 9px; border-radius: 999px; }
.post-featured { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-2); }
.post-featured .thumb { aspect-ratio: 16/11; background: var(--grad-soft); }
.post-featured .thumb img, .post-featured .thumb svg.art { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-featured .body { padding: clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px) 0; }
.post-featured h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.post-featured h2 a { color: var(--ink); }
@media (max-width: 860px) { .post-featured { grid-template-columns: 1fr; } .post-featured .body { padding: 0 24px 28px; } }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: start; }
@media (max-width: 1000px) { .blog-layout { grid-template-columns: 1fr; } }
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 22px; }
.sidebar .card { padding: 22px; }
.sidebar h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
.taglist { display: flex; flex-wrap: wrap; gap: 6px; }
.taglist a { font-size: .8rem; padding: 5px 10px; border-radius: 999px; background: var(--paper); color: var(--ink-2); border: 1px solid var(--line); transition: background .2s, border-color .2s; }
.taglist a:hover { background: var(--blue-t); border-color: rgba(11,31,63,.25); color: var(--blue-deep); }
.catlist { list-style: none; padding: 0; margin: 0; columns: 1; }
.catlist li { margin: 0; }
.catlist a { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); color: var(--ink-2); font-size: .92rem; }
.catlist a span { color: var(--faint); font-size: .8rem; font-variant-numeric: tabular-nums; }
.catlist a:hover { color: var(--blue-deep); }
.article-hero { padding-top: calc(var(--header-h) + 48px); }
.article-hero .meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; color: var(--muted); font-size: .92rem; margin-top: 18px; }
.article-hero .meta .avatar { width: 34px; height: 34px; border-radius: 50%; background: rgba(11,31,63,.08); color: var(--navy); display: grid; place-items: center; font-weight: 700; font-size: .8rem; }
.article-hero .hero-img { margin-top: 36px; border-radius: 26px; overflow: hidden; aspect-ratio: 16/8; background: var(--grad-soft); box-shadow: var(--shadow-2); }
.article-hero .hero-img img, .article-hero .hero-img svg.art { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { padding: clamp(40px, 6vw, 72px) 0; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.post-nav a { display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); background: #fff; transition: border-color .25s, transform .4s var(--ease); }
.post-nav a:hover { border-color: rgba(11,31,63,.3); transform: translateY(-2px); }
.post-nav a small { display: block; color: var(--faint); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.post-nav a.next { text-align: right; }
@media (max-width: 600px) { .post-nav { grid-template-columns: 1fr; } }
.share { display: flex; gap: 8px; align-items: center; margin-top: 28px; }
.share a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-2); background: #fff; }
.share a svg { width: 16px; height: 16px; }
.share a:hover { background: var(--paper); }
.pagination { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.pagination a, .pagination span { min-width: 42px; height: 42px; padding: 0 12px; display: inline-grid; place-items: center; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-2); font-weight: 500; background: #fff; font-size: .92rem; }
.pagination a:hover { background: var(--paper); }
.pagination .current { background: rgba(11,31,63,.08); color: var(--navy); border-color: transparent; }
.pagination .gap { border: 0; background: none; }
.archive-hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 32px; }
.author-card { display: flex; gap: 18px; align-items: center; }
.author-card .avatar { width: 64px; height: 64px; border-radius: 50%; background: rgba(11,31,63,.08); color: var(--navy); display: grid; place-items: center; font-weight: 700; font-size: 1.2rem; flex: none; }
.search-box { display: flex; gap: 10px; }
.search-box input { flex: 1; font: inherit; font-size: 1.05rem; padding: 14px 18px; border-radius: 999px; border: 1px solid var(--line-2); }
.search-box input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,31,63,.14); }
.results-meta { color: var(--muted); margin: 18px 0 24px; font-size: .95rem; }
mark { background: rgba(138,155,187,.35); border-radius: 3px; padding: 0 2px; color: inherit; }

/* ---------- people ---------- */
.people { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
@media (max-width: 1000px) { .people { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .people { grid-template-columns: repeat(2, 1fr); } }
.person { text-align: center; }
.person .photo { width: 100%; aspect-ratio: 1; border-radius: 24px; overflow: hidden; background: var(--grad-soft); margin-bottom: 14px; position: relative; box-shadow: var(--shadow-1); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.person:hover .photo { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.person .photo img { width: 100%; height: 100%; object-fit: cover; }
.person .photo .initials { position: absolute; inset: 0; display: grid; place-items: center; font-size: 2rem; font-weight: 700; color: var(--blue-deep); opacity: .7; }
.person strong { display: block; color: var(--ink); font-size: 1rem; }
.person span { color: var(--muted); font-size: .88rem; }

/* ---------- gallery / lightbox ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery a, .gallery .tile { display: block; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-1); aspect-ratio: 1; position: relative; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.gallery a:hover, .gallery .tile-art:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.gallery .tile-art { display: block; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-1); aspect-ratio: 1; position: relative; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.gallery .tile-art svg.art { width: 100%; height: 100%; }
.gallery .tile-art .cap { position: absolute; left: 14px; bottom: 14px; background: #fff; border-radius: 980px; padding: 5px 12px; font-size: .78rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-1); }
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: object-position 3s ease; }
.gallery a:hover img { object-position: bottom; }
.gallery .cap { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-radius: 999px; padding: 6px 12px; font-size: .78rem; font-weight: 600; color: var(--ink-2); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.filter-bar button { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; color: var(--ink-2); font-weight: 500; cursor: pointer; font-size: .9rem; transition: background .25s, color .25s, border-color .25s; }
.filter-bar button.on, .filter-bar button:hover { background: rgba(11,31,63,.08); color: var(--navy); border-color: transparent; }
.lightbox { position: fixed; inset: 0; background: rgba(11,18,32,.82); backdrop-filter: blur(8px); display: none; place-items: center; z-index: 200; padding: 30px; }
.lightbox.open { display: grid; animation: fadeIn .3s; }
.lightbox img { max-width: min(100%, 1100px); max-height: 85vh; width: auto; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox button { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: #fff; cursor: pointer; display: grid; place-items: center; }
.lightbox iframe { width: min(100%, 1000px); aspect-ratio: 16/9; border: 0; border-radius: 16px; background: #000; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- video ---------- */
.video-card { position: relative; border-radius: 22px; overflow: hidden; background: var(--paper-2); aspect-ratio: 16/9; box-shadow: var(--shadow-2); }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card .play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35)); cursor: pointer; border: 0; color: #fff; }
.video-card .play i { width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow-2); transition: transform .4s var(--ease); }
.video-card .play:hover i { transform: scale(1.08); }
.video-card .play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-card.playing .play { display: none; }
.video-card .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bg-video { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.bg-video video { width: 100%; height: 100%; object-fit: cover; opacity: .18; filter: saturate(.7); }
.bg-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.6), #fff 90%); }

/* ---------- app promo ---------- */
.app-promo { border-radius: 30px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(11,31,63,.07), rgba(42,90,156,.06) 45%, rgba(79,134,198,.07)); padding: clamp(28px, 4vw, 56px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; overflow: hidden; position: relative; }
.app-promo h2, .app-promo h3 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.badge-store { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px; background: rgba(11,31,63,.07); color: var(--navy); line-height: 1.05; transition: background .25s; }
.badge-store:hover { background: rgba(11,31,63,.12); }
.badge-store svg { width: 24px; height: 24px; }
.badge-store small { display: block; font-size: .62rem; opacity: .8; letter-spacing: .04em; }
.badge-store strong { display: block; font-size: 1rem; color: var(--navy); }
.phone-mock { width: min(100%, 300px); margin-inline: auto; }
@media (max-width: 800px) { .app-promo { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: 32px; padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px); text-align: center; overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-1); }
.cta-band::before { content: ""; position: absolute; inset: -40% -20% auto; height: 120%; background: var(--grad-soft); filter: blur(70px); opacity: .9; z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
/* photo backdrops: the image sits behind a soft paper veil that thins towards the right so the copy stays legible */
.has-photo .bg-photo { position: absolute; inset: 0; z-index: 0; }
.has-photo .bg-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.has-photo .bg-veil { position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(245,246,250,.97) 0%, rgba(245,246,250,.92) 42%, rgba(245,246,250,.62) 100%); }
.cta-band.has-photo::before { display: none; }
.cta-band.has-photo .bg-veil { background: linear-gradient(90deg, rgba(245,246,250,.96) 0%, rgba(245,246,250,.9) 55%, rgba(245,246,250,.55) 100%); }
.cta-band.has-photo h2, .cta-band.has-photo .btn-row { position: relative; z-index: 1; }
.app-promo.has-photo { background: #fff; }
.app-promo.has-photo > *:not(.bg-photo):not(.bg-veil) { position: relative; z-index: 1; }
.app-promo.has-photo .bg-photo, .app-promo.has-photo .bg-veil { position: absolute; inset: 0; z-index: 0; }
.app-promo.has-photo .bg-veil { background: linear-gradient(90deg, rgba(245,246,250,.98) 0%, rgba(245,246,250,.92) 48%, rgba(245,246,250,.5) 100%); }
@media (max-width: 720px) { .has-photo .bg-veil, .cta-band.has-photo .bg-veil, .app-promo.has-photo .bg-veil { background: rgba(245,246,250,.9); } }
.cta-band h2 { max-width: 720px; margin-inline: auto; }
.cta-band .lead { max-width: 620px; margin: 0 auto 28px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--paper); padding: clamp(48px, 6vw, 80px) 0 32px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } .footer-grid > :first-child { grid-column: 1 / -1; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.site-footer h4 { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 9px; }
.site-footer li a { color: var(--ink-2); transition: color .2s; }
.site-footer li a:hover { color: var(--blue-deep); }
.footer-brand p { color: var(--muted); max-width: 320px; margin: 14px 0 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; border-top: 1px solid var(--line); margin-top: 44px; padding-top: 24px; color: var(--muted); font-size: .84rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }
.social { display: flex; gap: 8px; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; background: #fff; box-shadow: var(--shadow-1); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.social a:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.social svg { width: 20px; height: 20px; display: block; }
.reviews-badge { display: inline-flex; align-items: center; gap: 12px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.reviews-badge .stars { color: var(--amber); letter-spacing: 1px; }
.reviews-badge strong { display: block; font-size: .95rem; color: var(--ink); }
.reviews-badge span { font-size: .8rem; color: var(--muted); }

/* ---------- misc components ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .85rem; color: var(--faint); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .5; }
.tabs .tab-list { display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.tabs .tab-list button { padding: 12px 16px; border: 0; background: none; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs .tab-list button.on { color: var(--ink); border-bottom-color: var(--ink); }
.tabs .tab-pane { display: none; animation: fadeUp .4s var(--ease); }
.tabs .tab-pane.on { display: block; }
.rotator { text-align: center; }
.rotator h3 { margin: 0 0 6px; color: var(--text); font-weight: 500; }
.rotating { display: grid; justify-items: center; margin: 0; }
.rotating > span { grid-area: 1 / 1; opacity: 0; transform: translateY(14px); transition: opacity .3s var(--ease), transform .4s var(--ease); white-space: nowrap; pointer-events: none; }
.rotating > span.out { opacity: 0; transform: translateY(-14px); transition: opacity .22s ease, transform .3s var(--ease); }
.rotating > span.on { opacity: 1; transform: none; transition-delay: .18s; }
@media (max-width: 720px) { .rotating > span { white-space: normal; } }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.timeline::before { content: ""; position: absolute; left: 6%; right: 6%; top: 26px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--violet), var(--teal)); opacity: .35; }
.timeline .step { padding-top: 22px; background: transparent; border: 0; box-shadow: none; }
.timeline .step .step-no { margin-bottom: 18px; }
@media (max-width: 900px) { .timeline { grid-template-columns: repeat(2, 1fr); } .timeline::before { display: none; } }
@media (max-width: 520px) { .timeline { grid-template-columns: 1fr; } }
.state-block h3 { font-size: 1.05rem; color: var(--faint); letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px; }
.city-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: var(--shadow-1); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.city-card strong { display: flex; align-items: center; gap: 8px; color: var(--ink); font-size: 1.05rem; margin-bottom: 10px; }
.city-card strong svg { width: 16px; height: 16px; color: var(--blue); }
.city-card .links { display: flex; flex-wrap: wrap; gap: 6px; }
.city-card .links a { font-size: .8rem; padding: 6px 10px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--ink-2); }
.city-card .links a:hover { background: var(--blue-t); color: var(--blue-deep); border-color: rgba(11,31,63,.25); }
.state-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
@media (max-width: 900px) { .state-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .state-grid { grid-template-columns: 1fr; } }
.state-jump { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 40px; justify-content: center; }
.state-jump a { font-size: .82rem; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink-2); }
.state-jump a:hover { border-color: var(--ink); }
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150; margin-inline: auto; max-width: 560px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-2); padding: 16px 18px; display: none; gap: 14px; align-items: center; font-size: .86rem; color: var(--text); }
.cookie.show { display: flex; animation: fadeUp .5s var(--ease); }
.cookie p { margin: 0; flex: 1; }
.cookie a { text-decoration: underline; color: var(--ink-2); }
.notice { border-radius: 16px; padding: 14px 18px; background: var(--amber-t); color: #7a4a05; font-size: .9rem; }
.hours { display: grid; gap: 10px; }
.hours div { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.contact-tiles { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
@media (max-width: 800px) { .contact-tiles { grid-template-columns: 1fr; } }
.kicker-list { display: grid; gap: 10px; }
.kicker-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.tile-link { display: flex; gap: 12px; align-items: center; padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 600; box-shadow: var(--shadow-1); transition: transform .4s var(--ease), border-color .25s; }
.tile-link:hover { transform: translateY(-3px); border-color: rgba(11,31,63,.3); }
.tile-link .icon-tile { width: 28px; height: 28px; }
.tile-link .icon-tile svg { width: 26px; height: 26px; stroke-width: 1.6; }
.logo-wall { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.logo-wall img { height: 64px; width: auto; opacity: .9; }
.award { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 22px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-1); }
.award .icon-tile { width: 40px; height: 40px; }
.award strong { color: var(--ink); }
.award img { max-height: 90px; width: auto; }
.industry-card { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; background: var(--grad-soft); border: 1px solid var(--line); box-shadow: var(--shadow-1); display: flex; align-items: flex-end; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.industry-card:hover img { transform: scale(1.05); }
.industry-card .label { position: relative; z-index: 1; margin: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: 999px; padding: 8px 14px 8px 10px; font-weight: 600; color: var(--ink); font-size: .95rem; display: inline-flex; align-items: center; gap: 8px; }
.industry-card .label .icon-tile { width: 28px; height: 28px; border-radius: 8px; }
.industry-card .label .icon-tile svg { width: 14px; height: 14px; }
.industry-card .label .arrow { width: 14px; height: 14px; margin-left: 4px; }
.pill-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-nav a { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; color: var(--ink-2); font-size: .9rem; font-weight: 500; }
.pill-nav a.on, .pill-nav a:hover { background: rgba(11,31,63,.08); color: var(--navy); border-color: transparent; }
.pill-nav a svg { width: 15px; height: 15px; vertical-align: -3px; margin-right: 6px; }
.hero-form-note { font-size: .8rem; color: var(--faint); margin-top: 10px; text-align: center; }
.result-band { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
@media (max-width: 720px) { .result-band { grid-template-columns: 1fr; } }
.result-band .stat { padding: 20px 22px; }
.quote-big { font-size: clamp(1.3rem, 2.2vw, 1.75rem); line-height: 1.4; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; }
.quote-big + .attrib { color: var(--muted); margin-top: 16px; font-weight: 500; }
.login-card { max-width: 440px; margin-inline: auto; }
.login-card .links { display: flex; justify-content: space-between; font-size: .88rem; margin-top: 14px; }
.login-card .divider { display: flex; align-items: center; gap: 12px; color: var(--faint); font-size: .8rem; margin: 18px 0; }
.login-card .divider::before, .login-card .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.big-404 { font-size: clamp(5rem, 16vw, 11rem); font-weight: 800; letter-spacing: -0.06em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.parallax { will-change: transform; }
.tilt { transition: transform .6s var(--ease); transform-style: preserve-3d; }

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

/* print */
@media print { .site-header, .site-footer, .cookie, .orbs, .btn { display: none !important; } body { color: #000; } .hero { padding-top: 20px; } }

/* feature list inside splits */
.feature-list { display: grid; gap: 14px; }
.feature-list .item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-1); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.feature-list .item:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.feature-list .item .icon-tile { width: 28px; height: 28px; margin-top: 2px; }
.feature-list .item .icon-tile svg { width: 26px; height: 26px; stroke-width: 1.6; }
.feature-list .item strong { display: block; color: var(--ink); margin-bottom: 4px; }
.feature-list .item p { margin: 0; font-size: .95rem; color: var(--text); }
.btn-only { display: flex; justify-content: center; }
.statement { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 5vw, 72px); align-items: start; }
.statement h2 { margin-bottom: .4em; }
.statement .lead { margin-bottom: 0; }
@media (max-width: 800px) { .statement { grid-template-columns: 1fr; } }


/* ==========================================================================
   Brand texture & motion — emblem watermarks, section orbs, photo backdrops,
   scroll progress, parallax targets, hover glows, drawn-in meridian lines
   ========================================================================== */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; }
.scroll-progress i { display: block; height: 100%; width: 0; background: var(--grad); transition: width .12s linear; }

.section { position: relative; overflow: hidden; }
.section > .container, .section > .narrow, .section > .wide { position: relative; z-index: 1; }
.section.paper::before, .site-footer::before, .section.wm::before {
  content: ""; position: absolute; right: -4%; top: 50%; width: clamp(360px, 40vw, 640px); aspect-ratio: 900/1060; transform: translateY(-50%) rotate(-6deg);
  background: var(--navy); opacity: .035; pointer-events: none; z-index: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20900%201060%22%20role=%22img%22%20aria-label=%22Charlie%20Company%20Media%20emblem%22%3E%20%3Cg%20fill=%22currentColor%22%20stroke=%22currentColor%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%20color=%22%23000%22%3E%20%3C%21--%20anchor:%20ring,%20stock%20--%3E%20%3Ccircle%20cx=%22150%22%20cy=%22230%22%20r=%2246%22%20fill=%22none%22%20stroke-width=%2226%22/%3E%20%3Cpath%20d=%22M184%20264l32%2032%22%20fill=%22none%22%20stroke-width=%2226%22/%3E%20%3Cpath%20d=%22M110%20406L334%20236%22%20fill=%22none%22%20stroke-width=%2234%22/%3E%20%3Cpath%20d=%22M236%20262l-24%2034%22%20fill=%22none%22%20stroke-width=%2214%22/%3E%20%3C%21--%20anchor:%20shank%20below%20the%20globe,%20crown,%20arms%20--%3E%20%3Cpath%20d=%22M560%20772L704%20876%22%20fill=%22none%22%20stroke-width=%2232%22/%3E%20%3Cpath%20d=%22M500%20942C540%20990%20600%201010%20660%20998C730%20984%20786%20934%20806%20862C820%20812%20812%20764%20786%20726%22%20fill=%22none%22%20stroke-width=%2230%22/%3E%20%3Cpath%20d=%22M428%20878L444%201012L566%20986L520%20946Z%22%20stroke-width=%2214%22/%3E%20%3Cpath%20d=%22M716%20654L836%20694L792%20810L754%20732Z%22%20stroke-width=%2214%22/%3E%20%3C%21--%20globe%20--%3E%20%3Ccircle%20cx=%22445%22%20cy=%22516%22%20r=%22288%22%20fill=%22none%22%20stroke-width=%2224%22/%3E%20%3Cg%20fill=%22none%22%20stroke-width=%2212%22%3E%20%3Cellipse%20cx=%22445%22%20cy=%22516%22%20rx=%2292%22%20ry=%22288%22/%3E%20%3Cellipse%20cx=%22445%22%20cy=%22516%22%20rx=%22194%22%20ry=%22288%22/%3E%20%3Cpath%20d=%22M445%20228v576%22/%3E%20%3Cpath%20d=%22M225%20372h440M158%20516h574M225%20660h440%22/%3E%20%3C/g%3E%20%3C%21--%20North%20%26%20Central%20America%20--%3E%20%3Cpath%20d=%22M246%20332c30-26%2074-36%20118-36%2030%200%2058-4%2086-2%2028%202%2054%208%2078%2020%2014%208%2024%2022%2018%2038-6%2014-24%2018-36%2028-14%2012-6%2032-14%2048-10%2020-34%2026-46%2044-8%2012-8%2030-14%2044-4%2012-12%2022-22%2030-8-22-20-42-40-56-20-12-46-14-64-30-14-12-18-32-30-46-10-12-28-14-38-26-10-14-8-38%204-56z%22%20stroke-width=%2210%22/%3E%20%3Cpath%20d=%22M486%20292c14-6%2034-4%2050%206-8%2012-24%2018-42%2016z%22%20stroke-width=%228%22/%3E%20%3C%21--%20South%20America%20--%3E%20%3Cpath%20d=%22M434%20536c30-12%2066-10%2092%2012%2026%2020%2038%2052%2034%2084-4%2040-26%2074-54%20100-10%2010-18%2024-26%2036-6-26-14-52-22-78-8-28-24-54-24-84%200-24%204-48%2012-70z%22%20stroke-width=%2210%22/%3E%20%3C%21--%20eagle%20--%3E%20%3Cg%20stroke-width=%229%22%3E%20%3Cpath%20d=%22M432%20156C330%20118%20210%2092%2070%2062c30%2014%2060%2026%2092%2038-40-2-80-2-120%202%2040%2010%2080%2018%20120%2030-30%208-60%2018-88%2032%2038-4%2076-6%20114-4-22%2012-44%2026-64%2042%2056-18%20114-30%20174-30%2046%200%2092%2010%20134%2026z%22/%3E%20%3Cpath%20d=%22M468%20156C570%20118%20690%2092%20830%2062c-30%2014-60%2026-92%2038%2040-2%2080-2%20120%202-40%2010-80%2018-120%2030%2030%208%2060%2018%2088%2032-38-4-76-6-114-4%2022%2012%2044%2026%2064%2042-56-18-114-30-174-30-46%200-92%2010-134%2026z%22/%3E%20%3Cpath%20d=%22M404%20132c10-28%2030-44%2050-44s40%2016%2048%2044c8%2028%204%2060-12%2084-10%2016-24%2024-40%2024s-30-8-40-24c-16-24-20-56-6-84z%22/%3E%20%3Cpath%20d=%22M418%20268l-16%2030%2034-4%208%2026%208-26%2034%204-16-30z%22%20stroke-width=%228%22/%3E%20%3Cpath%20d=%22M428%20112c-20-22-46-36-66-56-8-8-8-20%200-28%2010-8%2024-4%2032%206%2020%2024%2034%2050%2050%2076z%22/%3E%20%3Cpath%20fill-rule=%22evenodd%22%20d=%22M394%2030a28%2028%200%201%200%20.1%200zM400%2050a5%205%200%201%200%20.1%200z%22%20stroke=%22none%22/%3E%20%3Cpath%20d=%22M372%2048l-40%204%2036%2016z%22%20stroke-width=%228%22/%3E%20%3Cpath%20d=%22M426%20292l-14%2022M436%20294v22M446%20292l12%2022%22%20fill=%22none%22%20stroke-width=%229%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3C/svg%3E%20") no-repeat center / contain; mask: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20900%201060%22%20role=%22img%22%20aria-label=%22Charlie%20Company%20Media%20emblem%22%3E%20%3Cg%20fill=%22currentColor%22%20stroke=%22currentColor%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%20color=%22%23000%22%3E%20%3C%21--%20anchor:%20ring,%20stock%20--%3E%20%3Ccircle%20cx=%22150%22%20cy=%22230%22%20r=%2246%22%20fill=%22none%22%20stroke-width=%2226%22/%3E%20%3Cpath%20d=%22M184%20264l32%2032%22%20fill=%22none%22%20stroke-width=%2226%22/%3E%20%3Cpath%20d=%22M110%20406L334%20236%22%20fill=%22none%22%20stroke-width=%2234%22/%3E%20%3Cpath%20d=%22M236%20262l-24%2034%22%20fill=%22none%22%20stroke-width=%2214%22/%3E%20%3C%21--%20anchor:%20shank%20below%20the%20globe,%20crown,%20arms%20--%3E%20%3Cpath%20d=%22M560%20772L704%20876%22%20fill=%22none%22%20stroke-width=%2232%22/%3E%20%3Cpath%20d=%22M500%20942C540%20990%20600%201010%20660%20998C730%20984%20786%20934%20806%20862C820%20812%20812%20764%20786%20726%22%20fill=%22none%22%20stroke-width=%2230%22/%3E%20%3Cpath%20d=%22M428%20878L444%201012L566%20986L520%20946Z%22%20stroke-width=%2214%22/%3E%20%3Cpath%20d=%22M716%20654L836%20694L792%20810L754%20732Z%22%20stroke-width=%2214%22/%3E%20%3C%21--%20globe%20--%3E%20%3Ccircle%20cx=%22445%22%20cy=%22516%22%20r=%22288%22%20fill=%22none%22%20stroke-width=%2224%22/%3E%20%3Cg%20fill=%22none%22%20stroke-width=%2212%22%3E%20%3Cellipse%20cx=%22445%22%20cy=%22516%22%20rx=%2292%22%20ry=%22288%22/%3E%20%3Cellipse%20cx=%22445%22%20cy=%22516%22%20rx=%22194%22%20ry=%22288%22/%3E%20%3Cpath%20d=%22M445%20228v576%22/%3E%20%3Cpath%20d=%22M225%20372h440M158%20516h574M225%20660h440%22/%3E%20%3C/g%3E%20%3C%21--%20North%20%26%20Central%20America%20--%3E%20%3Cpath%20d=%22M246%20332c30-26%2074-36%20118-36%2030%200%2058-4%2086-2%2028%202%2054%208%2078%2020%2014%208%2024%2022%2018%2038-6%2014-24%2018-36%2028-14%2012-6%2032-14%2048-10%2020-34%2026-46%2044-8%2012-8%2030-14%2044-4%2012-12%2022-22%2030-8-22-20-42-40-56-20-12-46-14-64-30-14-12-18-32-30-46-10-12-28-14-38-26-10-14-8-38%204-56z%22%20stroke-width=%2210%22/%3E%20%3Cpath%20d=%22M486%20292c14-6%2034-4%2050%206-8%2012-24%2018-42%2016z%22%20stroke-width=%228%22/%3E%20%3C%21--%20South%20America%20--%3E%20%3Cpath%20d=%22M434%20536c30-12%2066-10%2092%2012%2026%2020%2038%2052%2034%2084-4%2040-26%2074-54%20100-10%2010-18%2024-26%2036-6-26-14-52-22-78-8-28-24-54-24-84%200-24%204-48%2012-70z%22%20stroke-width=%2210%22/%3E%20%3C%21--%20eagle%20--%3E%20%3Cg%20stroke-width=%229%22%3E%20%3Cpath%20d=%22M432%20156C330%20118%20210%2092%2070%2062c30%2014%2060%2026%2092%2038-40-2-80-2-120%202%2040%2010%2080%2018%20120%2030-30%208-60%2018-88%2032%2038-4%2076-6%20114-4-22%2012-44%2026-64%2042%2056-18%20114-30%20174-30%2046%200%2092%2010%20134%2026z%22/%3E%20%3Cpath%20d=%22M468%20156C570%20118%20690%2092%20830%2062c-30%2014-60%2026-92%2038%2040-2%2080-2%20120%202-40%2010-80%2018-120%2030%2030%208%2060%2018%2088%2032-38-4-76-6-114-4%2022%2012%2044%2026%2064%2042-56-18-114-30-174-30-46%200-92%2010-134%2026z%22/%3E%20%3Cpath%20d=%22M404%20132c10-28%2030-44%2050-44s40%2016%2048%2044c8%2028%204%2060-12%2084-10%2016-24%2024-40%2024s-30-8-40-24c-16-24-20-56-6-84z%22/%3E%20%3Cpath%20d=%22M418%20268l-16%2030%2034-4%208%2026%208-26%2034%204-16-30z%22%20stroke-width=%228%22/%3E%20%3Cpath%20d=%22M428%20112c-20-22-46-36-66-56-8-8-8-20%200-28%2010-8%2024-4%2032%206%2020%2024%2034%2050%2050%2076z%22/%3E%20%3Cpath%20fill-rule=%22evenodd%22%20d=%22M394%2030a28%2028%200%201%200%20.1%200zM400%2050a5%205%200%201%200%20.1%200z%22%20stroke=%22none%22/%3E%20%3Cpath%20d=%22M372%2048l-40%204%2036%2016z%22%20stroke-width=%228%22/%3E%20%3Cpath%20d=%22M426%20292l-14%2022M436%20294v22M446%20292l12%2022%22%20fill=%22none%22%20stroke-width=%229%22/%3E%20%3C/g%3E%20%3C/g%3E%20%3C/svg%3E%20") no-repeat center / contain;
}
.section.wm::before { left: -6%; right: auto; transform: translateY(-50%) rotate(6deg); }
.section:not(.paper):not(.hero)::after, .section.paper::after {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(80px);
  background: radial-gradient(circle, rgba(42,90,156,.16), rgba(42,90,156,0) 65%); right: -180px; top: -160px; animation: drift 26s var(--ease-io) infinite alternate;
}
.section:nth-of-type(even)::after { right: auto; left: -200px; top: auto; bottom: -220px; background: radial-gradient(circle, rgba(79,134,198,.16), rgba(79,134,198,0) 65%); }
.section.tight::after { display: none; }
.section.has-photo .bg-photo { position: absolute; inset: 0; z-index: 0; }
.section.has-photo .bg-photo img { width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; }
.section.has-photo .bg-veil { position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(245,246,250,.97) 0%, rgba(245,246,250,.9) 50%, rgba(245,246,250,.7) 100%); }
.section.has-photo::before, .section.has-photo::after { display: none; }
.site-footer { position: relative; overflow: hidden; }
.site-footer > .container { position: relative; z-index: 1; }
.site-footer::before { opacity: .05; right: -8%; top: 46%; width: clamp(420px, 44vw, 720px); }


/* cards glow with a gradient hairline on hover */
.card::after, .industry-card::after, .post-card::after, .plan::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; opacity: 0; pointer-events: none; z-index: 3;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity .45s var(--ease);
}
.card:hover::after, .industry-card:hover::after, .post-card:hover::after, .plan:hover::after { opacity: .9; }
.post-card, .plan { position: relative; }

/* primary button sheen */
.btn-primary, .btn-blue { position: relative; overflow: hidden; }
.btn-primary::after, .btn-blue::after { content: ""; position: absolute; top: -50%; bottom: -50%; left: -60%; width: 40%; background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.7), rgba(255,255,255,0)); transform: skewX(-18deg); transition: left .7s var(--ease); pointer-events: none; }
.btn-primary:hover::after, .btn-blue:hover::after { left: 130%; }

/* industry tiles: label rises, photo zooms */
.industry-card .label { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.industry-card:hover .label { transform: translateY(-4px); box-shadow: var(--shadow-2); }

/* photo collage (home → industries) */
.collage { position: relative; aspect-ratio: 5/4; }
.collage img { position: absolute; border-radius: 22px; object-fit: cover; box-shadow: var(--shadow-2); border: 4px solid #fff; }
.collage img:first-child { left: 0; top: 0; width: 74%; height: 76%; }
.collage img:nth-child(2) { right: 0; bottom: 0; width: 52%; height: 56%; animation: float 8s ease-in-out infinite; }
.collage-chip { position: absolute; left: 6%; bottom: 8%; background: #fff; border-radius: 16px; padding: 10px 14px; display: flex; gap: 10px; align-items: center; font-size: .85rem; color: var(--ink-2); box-shadow: var(--shadow-2); animation: float 6s ease-in-out infinite; animation-delay: -3s; }
.collage-chip strong { display: block; font-size: .95rem; }
.collage-chip .icon-tile { width: 28px; height: 28px; }
.collage-chip .icon-tile svg { width: 22px; height: 22px; }
@media (max-width: 720px) { .collage { aspect-ratio: 4/3; } }

/* hero art photo: gentle breathing so heroes never sit still */
.hero-art .img-wrap.tilt { animation: float 9s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .section::after, .collage img, .collage-chip, .hero-art .img-wrap.tilt { animation: none !important; }
}

/* ---------- portfolio photo tiles ---------- */
.gallery .tile-art.photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 1.4s var(--ease); }
.gallery .tile-art.photo:hover img { transform: scale(1.06); }
.gallery .tile-art .tile-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,31,63,0) 45%, rgba(11,31,63,.62) 100%); pointer-events: none; }
.gallery .tile-art .name { position: absolute; left: 16px; right: 16px; top: 16px; color: #fff; font-weight: 600; font-size: .95rem; letter-spacing: -0.01em; text-shadow: 0 1px 8px rgba(11,31,63,.45); opacity: 0; transform: translateY(-6px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.gallery .tile-art:hover .name { opacity: 1; transform: none; }
.gallery .tile-art.photo .cap { background: rgba(255,255,255,.92); backdrop-filter: blur(10px); }
.device.frame img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 18px; }

/* ---------- section rhythm ---------- */
.section.lead-in { padding-bottom: 0; background: transparent; }
.section.lead-in .section-head { margin-bottom: 0; }
.section.lead-in + .section { padding-top: clamp(28px, 4vw, 44px); }
.section.lead-in::before, .section.lead-in::after { display: none; }

/* ---------- page-detail blocks ---------- */
.stat-value.text { font-size: clamp(1.35rem, 2.2vw, 1.7rem); letter-spacing: -0.02em; line-height: 1.15; }
.compare { overflow-x: auto; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-1); }
.compare table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .97rem; }
.compare th, .compare td { padding: 16px 22px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare thead th { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.compare thead th.hl { color: var(--deep); }
.compare tbody th { font-weight: 600; color: var(--ink); width: 24%; }
.compare tbody td { color: var(--muted); }
.compare tbody td.yes { color: var(--ink); background: rgba(42,90,156,.05); font-weight: 500; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; margin-inline: auto; }
.chip { padding: 10px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line-2); color: var(--ink-2); font-size: .95rem; font-weight: 500; box-shadow: var(--shadow-3); }
.quote-big-card { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-1); }
.quote-big-card .qphoto { min-height: 320px; }
.quote-big-card .qphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote-big-card .qbody { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.quote-big-card .stars { color: var(--brass); letter-spacing: 3px; font-size: 1rem; }
.quote-big-card blockquote { margin: 0; font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.5; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.quote-big-card .who strong { display: block; color: var(--ink); }
.quote-big-card .who span { color: var(--muted); font-size: .92rem; }
.card.link-card { display: block; color: inherit; text-decoration: none; }
.card.link-card .btn-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; }
.filter-bar button small { font-weight: 500; opacity: .6; margin-left: 4px; }
@media (max-width: 720px) {
  .quote-big-card { grid-template-columns: 1fr; }
  .quote-big-card .qphoto { min-height: 220px; }
  .stats[style] { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .steps[style] { grid-template-columns: 1fr !important; }
}
