/* ==========================================================================
   We Engineer Better — site.css
   Dark technical design system. No frameworks, no JS libraries.
   ========================================================================== */

:root {
  /* surfaces */
  --bg: #080b11;
  --bg-2: #0c1119;
  --panel: #111826;
  --panel-2: #151d2c;
  --line: #1e2839;
  --line-2: #2a3648;

  /* ink */
  --fg: #eef3fa;
  --fg-2: #a3b1c4;
  --fg-3: #6f8098;

  /* accent */
  --acc: #4fe3d1;
  --acc-2: #38bdf8;
  --acc-deep: #0e6f68;
  --acc-glow: rgba(79, 227, 209, .16);

  --wrap: 1180px;
  --r: 14px;
  --r-sm: 10px;

  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ambient background wash — fixed so it never scrolls away */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(56, 189, 248, .10), transparent 62%),
    radial-gradient(760px 460px at 8% 4%, rgba(79, 227, 209, .09), transparent 60%);
  pointer-events: none;
}

/* faint engineering grid */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(1100px 700px at 50% 0%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(1100px 700px at 50% 0%, #000 0%, transparent 78%);
  pointer-events: none;
}

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

a { color: var(--acc); text-decoration: none; }
a:hover { color: #7defdf; }

::selection { background: rgba(79, 227, 209, .28); color: #fff; }

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

code {
  font-family: var(--mono);
  font-size: .88em;
  color: var(--acc);
  background: rgba(79, 227, 209, .07);
  border: 1px solid rgba(79, 227, 209, .16);
  border-radius: 5px;
  padding: 1px 6px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.wrap-narrow { max-width: 820px; }

.skip {
  position: absolute; left: -9999px;
  background: var(--acc); color: #04120f; padding: 10px 18px;
  font-weight: 700; z-index: 200; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; top: 0; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-head {
  position: sticky; top: 0; z-index: 80;
  background: rgba(8, 11, 17, .72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.head-inner {
  display: flex; align-items: center; gap: 22px;
  min-height: 68px;
}

.brand { display: flex; align-items: center; gap: 11px; color: var(--fg); }
.brand:hover { color: var(--fg); }
.brand svg { flex: none; display: block; }
.brand-name {
  font-weight: 700; font-size: 16.5px; letter-spacing: -.015em; line-height: 1.1;
}
.brand-sub {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--fg-3); font-weight: 500;
  margin-top: 2px;
}

.site-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }

.site-nav a {
  color: var(--fg-2); font-size: 14.5px; font-weight: 500;
  padding: 8px 13px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.site-nav a:hover { color: var(--fg); background: rgba(255, 255, 255, .05); }
.site-nav a.is-current { color: var(--fg); }
.site-nav a.is-current::after {
  content: ""; display: block; height: 2px; margin-top: 5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--acc), var(--acc-2));
}
.site-nav .nav-cta {
  margin-left: 10px;
  background: linear-gradient(180deg, #5eeadb, #2fc9b8);
  color: #04120f; font-weight: 700;
  box-shadow: 0 0 0 1px rgba(79, 227, 209, .35), 0 6px 20px -6px rgba(79, 227, 209, .55);
}
.site-nav .nav-cta:hover { background: linear-gradient(180deg, #7defdf, #46d8c6); color: #04120f; }
.site-nav .nav-cta::after { display: none; }

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 { margin: 0 0 .55em; line-height: 1.14; letter-spacing: -.028em; font-weight: 700; }

h1 { font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.035em; }
h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 750; }
h3 { font-size: 19px; letter-spacing: -.018em; }
h4 { font-size: 15.5px; letter-spacing: -.01em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.grad {
  background: linear-gradient(100deg, var(--acc) 5%, var(--acc-2) 60%, #a5b4fc 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--acc);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--acc); opacity: .7;
}

.lede { font-size: clamp(17px, 1.75vw, 20.5px); line-height: 1.6; color: var(--fg-2); max-width: 60ch; }
.section-lede { font-size: 17.5px; color: var(--fg-2); max-width: 74ch; margin-bottom: 40px; }
.fine { font-size: 13.5px; line-height: 1.6; color: var(--fg-3); }

.section-head { margin-bottom: 44px; }
.section-head p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15.5px; font-weight: 650; line-height: 1;
  padding: 14px 24px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; font-family: inherit;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, #5eeadb, #2bc4b3);
  color: #04120f;
  box-shadow: 0 0 0 1px rgba(79, 227, 209, .4), 0 10px 30px -10px rgba(79, 227, 209, .7);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #7defdf, #3ad4c2);
  color: #04120f;
  box-shadow: 0 0 0 1px rgba(79, 227, 209, .6), 0 14px 38px -10px rgba(79, 227, 209, .85);
}

.btn-ghost {
  background: rgba(255, 255, 255, .035);
  border-color: var(--line-2);
  color: var(--fg);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .07); border-color: #3a4a63; color: var(--fg); }

.btn-block { display: flex; width: 100%; }
.btn .arw { transition: transform .18s ease; }
.btn:hover .arw { transform: translateX(3px); }

/* ==========================================================================
   Sections
   ========================================================================== */

.sec { padding: clamp(64px, 8vw, 108px) 0; }
.sec-tight { padding: clamp(48px, 6vw, 76px) 0; }
.sec-line { border-top: 1px solid var(--line); }

.hero {
  position: relative;
  padding: clamp(72px, 10vw, 128px) 0 clamp(60px, 8vw, 104px);
}

.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 56px; align-items: center;
}

.hero h1 { max-width: 30ch; margin-bottom: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 34px 0 0; }

/* hero visual */
.hero-art { position: relative; }
.hero-art .frame {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .03) inset;
}
.hero-art img { filter: brightness(.66) contrast(1.05); }
.hero-art .frame::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(155deg, rgba(79, 227, 209, .26), rgba(56, 189, 248, .10) 40%, transparent 62%),
    linear-gradient(0deg, rgba(8, 11, 17, .92), rgba(8, 11, 17, .12) 68%);
}
.hero-art .frame::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(79, 227, 209, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 227, 209, .07) 1px, transparent 1px);
  background-size: 34px 34px;
}

.art-tag {
  position: absolute; z-index: 2;
  background: rgba(12, 17, 25, .88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  border-radius: 10px; padding: 10px 14px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--fg-2);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .9);
}
.art-tag b { color: var(--acc); font-weight: 600; }
.art-tag-1 { left: -18px; bottom: 58px; }
.art-tag-2 { right: -14px; top: 40px; }

/* trust strip */
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(17, 24, 38, .5);
}
.strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
}
.strip-item { background: var(--bg-2); padding: 26px 24px; }
.strip-item .k {
  font-size: 25px; font-weight: 750; letter-spacing: -.03em; color: var(--fg);
  display: block; margin-bottom: 5px;
}
.strip-item .k.small { font-size: 19px; }
.strip-item .v {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--fg-3);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(272px, 100%), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card::before {
  content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 227, 209, .45), transparent);
  opacity: 0; transition: opacity .25s ease;
}
.card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.card:hover::before { opacity: 1; }
.card > *:last-child { margin-bottom: 0; }
.card p { color: var(--fg-2); }

.card-flat:hover { transform: none; }

.icn {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(79, 227, 209, .1);
  border: 1px solid rgba(79, 227, 209, .22);
  color: var(--acc);
}
.icn svg { display: block; }

.tick {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; color: var(--fg-3); display: block; margin-bottom: 10px;
}

/* lists */
ul.plain { list-style: none; margin: 0 0 1.05em; padding: 0; }
ul.plain li {
  position: relative; padding-left: 24px; margin-bottom: 10px;
  color: var(--fg-2); font-size: 15.3px; line-height: 1.55;
}
ul.plain li::before {
  content: ""; position: absolute; left: 3px; top: .52em;
  width: 9px; height: 5px;
  border-left: 1.8px solid var(--acc); border-bottom: 1.8px solid var(--acc);
  transform: rotate(-45deg);
}
ul.plain li:last-child { margin-bottom: 0; }

ul.dot { list-style: none; margin: 0 0 1.05em; padding: 0; }
ul.dot li {
  position: relative; padding-left: 20px; margin-bottom: 9px;
  color: var(--fg-2); font-size: 15.3px; line-height: 1.55;
}
ul.dot li::before {
  content: ""; position: absolute; left: 2px; top: .66em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--fg-3);
}

ul.no li::before {
  content: ""; position: absolute; left: 2px; top: .72em;
  width: 9px; height: 1.8px; border-radius: 2px; background: #7b4a55; border: none; transform: none;
}


/* certification badge */
.cert {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--fg-2); margin: 0;
  background: rgba(79, 227, 209, .07);
  border: 1px solid rgba(79, 227, 209, .22);
  border-radius: 99px; padding: 9px 18px 9px 15px;
}
.cert svg { flex: none; color: var(--acc); }
.cert b { color: var(--fg); font-weight: 650; }

/* linked card */
a.card-link { display: block; color: inherit; }
a.card-link:hover { color: inherit; }
a.card-link h3 { color: var(--fg); }
a.card-link .more {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px; color: var(--acc);
  font-size: 14.5px; font-weight: 600;
}
a.card-link .more .arw { transition: transform .18s ease; }
a.card-link:hover .more .arw { transform: translateX(3px); }

/* service block */
.svc { padding: clamp(26px, 4vw, 42px); }
.svc-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 4px;
}
.svc-head h2 { margin-bottom: 0; }
.svc-price { text-align: right; flex: none; }
.svc-price .amt {
  display: block; font-size: 32px; font-weight: 800; letter-spacing: -.04em; color: var(--fg);
}
.svc-price .terms {
  display: block; font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); margin-top: 3px;
}
.svc-lede { font-size: 17.5px; margin: 18px 0 28px; max-width: 80ch; }

.need { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.need h4 {
  color: var(--acc); font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px;
}
.need p { color: var(--fg-2); }
.need > *:last-child { margin-bottom: 0; }

/* inline note inside a step */
.inline-note {
  border-left: 2px solid var(--acc);
  background: rgba(79, 227, 209, .05);
  border-radius: 0 8px 8px 0;
  padding: 13px 18px; margin: 18px 0 0;
  font-size: 14.8px; color: var(--fg-2);
}
.inline-note b { color: var(--fg); }

/* bundle band */
.bundle {
  margin-top: 22px;
  display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, .85fr);
  gap: 36px; align-items: center;
  border: 1px solid rgba(79, 227, 209, .4);
  border-radius: var(--r);
  background:
    radial-gradient(600px 260px at 15% 0%, rgba(79, 227, 209, .12), transparent 70%),
    linear-gradient(180deg, var(--panel), var(--bg-2));
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 24px 60px -34px rgba(79, 227, 209, .45);
}
.bundle-copy h3 { font-size: 23px; margin-bottom: 12px; }
.bundle-copy p { color: var(--fg-2); }
.bundle-price { text-align: center; }
.bundle-price .amount {
  font-size: 48px; font-weight: 800; letter-spacing: -.045em; line-height: 1; margin: 0 0 8px;
}
.bundle-price .terms {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 20px;
}
.bundle-copy .badge-inline, .badge-inline {
  display: inline-block;
  color: #04120f !important; margin: 0 0 14px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(180deg, #5eeadb, #2bc4b3); color: #04120f;
  padding: 4px 12px; border-radius: 99px;
}

/* callout */
.callout {
  border: 1px solid var(--line);
  border-left: 2px solid var(--acc);
  background: linear-gradient(90deg, rgba(79, 227, 209, .055), rgba(17, 24, 38, .4) 40%);
  border-radius: var(--r-sm);
  padding: 20px 24px;
  color: var(--fg-2);
}
.callout strong { color: var(--fg); }

/* ==========================================================================
   Steps
   ========================================================================== */

.steps { counter-reset: s; list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.steps > li {
  counter-increment: s;
  position: relative;
  padding: 30px 0 30px 76px;
  border-top: 1px solid var(--line);
}
.steps > li:last-child { border-bottom: 1px solid var(--line); }
.steps > li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: 26px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: var(--acc);
  width: 46px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid rgba(79, 227, 209, .28);
  background: rgba(79, 227, 209, .07);
  border-radius: 8px;
}
.steps > li h3 { margin-bottom: 9px; }
.steps > li p { color: var(--fg-2); margin: 0 0 13px; max-width: 80ch; }
.steps > li > *:last-child { margin-bottom: 0; }
.steps > li ul { max-width: 80ch; }

/* ==========================================================================
   Pricing
   ========================================================================== */

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); gap: 20px; align-items: stretch; }

.plan {
  display: flex; flex-direction: column;
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 28px;
}
.plan.hot {
  border-color: rgba(79, 227, 209, .45);
  background: linear-gradient(180deg, rgba(79, 227, 209, .07), var(--bg-2) 46%);
  box-shadow: 0 0 0 1px rgba(79, 227, 209, .12), 0 24px 60px -30px rgba(79, 227, 209, .5);
}
.plan .badge {
  position: absolute; top: -11px; left: 28px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(180deg, #5eeadb, #2bc4b3); color: #04120f;
  padding: 4px 12px; border-radius: 99px; margin: 0;
}
.plan h3 { margin-bottom: 14px; }
.plan .amount {
  font-size: 46px; font-weight: 800; letter-spacing: -.045em; line-height: 1;
  margin: 0 0 8px;
}
.plan .terms {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 24px;
}
.plan ul.plain { flex: 1; margin-bottom: 26px; }

/* rate table */
.rates { width: 100%; border-collapse: collapse; font-size: 15px; }
.rates th, .rates td { text-align: left; padding: 17px 4px; border-top: 1px solid var(--line); vertical-align: top; }
.rates thead th {
  border-top: none; border-bottom: 1px solid var(--line-2);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--fg-3); font-weight: 600; padding-bottom: 12px;
}
.rates tbody th { font-weight: 600; color: var(--fg); width: 30%; }
.rates .amt { font-family: var(--mono); color: var(--acc); white-space: nowrap; width: 15%; font-size: 14.5px; }
.rates td.note { color: var(--fg-2); font-size: 14.5px; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 2px; font-weight: 600; font-size: 16.5px; color: var(--fg);
  transition: color .15s;
}
.faq summary:hover { color: var(--acc); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 1.8px solid var(--acc); border-bottom: 1.8px solid var(--acc);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq details p { color: var(--fg-2); margin: 0 0 20px; max-width: 84ch; padding-right: 30px; }

/* ==========================================================================
   Form
   ========================================================================== */

.form-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
}

.field { margin: 0 0 20px; }
.field > label, .field > legend {
  display: block; font-size: 13.5px; font-weight: 600; color: var(--fg);
  margin-bottom: 8px; letter-spacing: .005em;
}
.field .opt-note { color: var(--fg-3); font-weight: 400; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

input[type=text], input[type=email], textarea, select {
  width: 100%; font: inherit; font-size: 15.5px; color: var(--fg);
  background: rgba(8, 11, 17, .7);
  border: 1px solid var(--line-2);
  border-radius: 9px; padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
input::placeholder, textarea::placeholder { color: #566578; }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(79, 227, 209, .14);
  background: rgba(8, 11, 17, .95);
}
textarea { resize: vertical; min-height: 128px; }

fieldset.field {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 18px 14px; background: rgba(8, 11, 17, .35);
}
fieldset.field legend { padding: 0 8px; margin: 0; }

.opt {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 15px; color: var(--fg-2); margin: 9px 0; cursor: pointer; line-height: 1.5;
}
.opt input { accent-color: var(--acc); margin-top: 3px; flex: none; width: 16px; height: 16px; }
.opt:hover { color: var(--fg); }

.hp { position: absolute; left: -9999px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-foot {
  border-top: 1px solid var(--line);
  background: rgba(8, 11, 17, .8);
  padding: 56px 0 34px;
  margin-top: 0;
}
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-grid h4 {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--fg-3); font-weight: 600; margin-bottom: 16px;
}
.foot-links { display: flex; flex-direction: column; gap: 11px; }
.foot-links a { color: var(--fg-2); font-size: 15px; }
.foot-links a:hover { color: var(--acc); }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(79, 227, 209, .14), transparent 68%),
    linear-gradient(180deg, var(--panel), var(--bg-2));
  padding: clamp(38px, 5vw, 60px);
  text-align: center;
}
.cta-band h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }
.cta-band p { color: var(--fg-2); max-width: 58ch; margin-left: auto; margin-right: auto; }
.cta-band .btn { margin-top: 26px; }

/* page header block */
.page-head { padding: clamp(52px, 7vw, 88px) 0 clamp(30px, 4vw, 48px); }
.page-head h1 { max-width: 20ch; margin-bottom: 20px; font-size: clamp(32px, 4.4vw, 50px); }


/* ==========================================================================
   Nav label swap (full on desktop, abbreviated on mobile)
   ========================================================================== */
.nav-abbr { display: none; }

/* ==========================================================================
   Sample banner
   ========================================================================== */
.sample-banner {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 22px; align-items: start;
  border: 1px solid rgba(240, 164, 95, .38);
  background: linear-gradient(180deg, rgba(240, 164, 95, .09), rgba(17, 24, 38, .5));
  border-radius: var(--r); padding: 24px 26px;
}
.sb-mark {
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .18em;
  color: #f0a45f; border: 1px solid rgba(240, 164, 95, .5);
  border-radius: 8px; padding: 10px 14px; white-space: nowrap;
}
.sample-banner p { color: var(--fg-2); }
.sample-banner p:last-child { margin-bottom: 0; }
.sample-banner b { color: var(--fg); }

/* ==========================================================================
   Document (sample report)
   ========================================================================== */
.doc {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(24px, 4vw, 52px);
}

.doc-head { border-bottom: 1px solid var(--line-2); padding-bottom: 28px; margin-bottom: 8px; }
.doc-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--acc); margin-bottom: 10px;
}
.doc-head h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 24px; }

.doc-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.doc-meta > div { background: var(--bg-2); padding: 13px 16px; }
.doc-meta .k {
  display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 5px;
}
.doc-meta .v { display: block; font-size: 14.5px; color: var(--fg); font-weight: 550; }

.doc-sec { padding: 38px 0; border-bottom: 1px solid var(--line); }
.doc-sec:last-of-type { border-bottom: none; padding-bottom: 12px; }
.doc-sec p { color: var(--fg-2); max-width: 86ch; }

.doc-h2 {
  display: flex; align-items: center; gap: 14px;
  font-size: clamp(21px, 2.6vw, 27px); margin-bottom: 14px;
}
.doc-n {
  flex: none; width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--acc);
  background: rgba(79, 227, 209, .08); border: 1px solid rgba(79, 227, 209, .28);
}
.doc-h3 {
  font-size: 16px; margin: 32px 0 12px; color: var(--fg);
  font-family: var(--mono); font-weight: 600; letter-spacing: .02em;
}
.doc-lede { font-size: 16.5px; color: var(--fg-2) !important; margin-bottom: 22px; max-width: 84ch; }
.doc-note {
  border-left: 2px solid var(--acc); background: rgba(79, 227, 209, .05);
  border-radius: 0 8px 8px 0; padding: 15px 20px; margin-top: 24px;
}
.doc-note b { color: var(--fg); }

/* risk row */
.risk-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 12px; margin: 28px 0 4px;
}
.risk-cell {
  display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px; background: var(--bg-2);
}
.rk {
  flex: none; width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center;
  font-size: 18px; font-weight: 800;
}
.rk-high { background: rgba(255, 123, 114, .14); color: #ff8d85; border: 1px solid rgba(255, 123, 114, .34); }
.rk-med { background: rgba(240, 164, 95, .14); color: #f0a45f; border: 1px solid rgba(240, 164, 95, .34); }
.rk-low { background: rgba(163, 177, 196, .12); color: #a3b1c4; border: 1px solid rgba(163, 177, 196, .28); }
.rk-info { background: rgba(79, 227, 209, .12); color: var(--acc); border: 1px solid rgba(79, 227, 209, .3); }
.rv { font-size: 13.5px; color: var(--fg-2); line-height: 1.35; }

/* document tables */
.doc-table {
  width: 100%; border-collapse: collapse; font-size: 14.5px; margin: 0 0 8px;
  display: block; overflow-x: auto; min-width: 0;
}
.doc-table thead, .doc-table tbody { min-width: 620px; display: table; width: 100%; }
.doc-table thead th {
  text-align: left; font-family: var(--mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--fg-3); font-weight: 600;
  padding: 0 18px 10px 0; border-bottom: 1px solid var(--line-2);
}
.doc-table td {
  padding: 12px 18px 12px 0; border-bottom: 1px solid var(--line);
  color: var(--fg-2); vertical-align: top;
}
.doc-table tr:last-child td { border-bottom: none; }
.doc-table td:first-child { color: var(--fg); font-weight: 550; }
.doc-table .ok { color: #5ad6a8; }
.doc-table .bad { color: #ff8d85; }
.doc-table .warn { color: #f0a45f; }

/* findings */
.fnd {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-2); margin-bottom: 16px; overflow: hidden;
}
.fnd-head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 18px 22px; background: rgba(255, 255, 255, .022);
  border-bottom: 1px solid var(--line);
}
.fnd-head h3 { margin: 0; flex: 1 1 260px; font-size: 17px; line-height: 1.35; }
.fnd-num {
  font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--fg-3); flex: none;
}
.sev {
  flex: none; font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 99px;
}
.sev-high { background: rgba(255, 123, 114, .14); color: #ff8d85; border: 1px solid rgba(255, 123, 114, .38); }
.sev-med { background: rgba(240, 164, 95, .14); color: #f0a45f; border: 1px solid rgba(240, 164, 95, .38); }
.sev-low { background: rgba(163, 177, 196, .1); color: #a3b1c4; border: 1px solid rgba(163, 177, 196, .28); }
.sev-info { background: rgba(79, 227, 209, .1); color: var(--acc); border: 1px solid rgba(79, 227, 209, .3); }

.fnd-body { padding: 20px 22px 18px; }
.fnd-body p { margin-bottom: 13px; font-size: 15.2px; }
.fnd-body p:last-child { margin-bottom: 0; }
.fnd-body b { color: var(--fg); }
.fnd-ev {
  border: 1px dashed var(--line-2); border-radius: 8px;
  padding: 14px 16px; margin: 16px 0; background: rgba(8, 11, 17, .5);
}
.fnd-ev h4 {
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--fg-3); margin-bottom: 9px;
}
.fnd-ev ul { list-style: none; margin: 0; padding: 0; }
.fnd-ev li { margin-bottom: 6px; }
.fnd-ev li:last-child { margin-bottom: 0; }
.fnd-ev code { background: none; border: none; padding: 0; color: var(--acc); font-size: 13px; }
.fnd-effort {
  font-family: var(--mono); font-size: 12.5px; color: var(--fg-3);
  border-top: 1px solid var(--line); padding-top: 13px; margin-top: 16px !important;
}
.fnd-effort b { color: var(--fg-2); }

/* quick wins */
ol.wins { counter-reset: w; list-style: none; margin: 0; padding: 0; }
ol.wins li {
  counter-increment: w; position: relative; padding: 0 0 16px 42px;
  color: var(--fg-2); font-size: 15.4px; max-width: 86ch;
}
ol.wins li::before {
  content: counter(w); position: absolute; left: 0; top: 1px;
  width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  background: rgba(79, 227, 209, .1); border: 1px solid rgba(79, 227, 209, .3); color: var(--acc);
}
ol.wins li:last-child { padding-bottom: 0; }
ol.wins b { color: var(--fg); }

.doc-foot {
  border-top: 1px solid var(--line-2); padding-top: 24px; margin-top: 12px;
}
.doc-foot p { color: var(--fg-2); }
.doc-foot b { color: var(--fg); }

/* diagram */
.diagram { margin: 0; }
.diagram-scroll {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: rgba(8, 11, 17, .6); padding: 10px;
}
.diagram svg { display: block; min-width: 940px; height: auto; }
.diagram figcaption { font-size: 13.5px; color: var(--fg-3); margin-top: 12px; max-width: 80ch; }
.d-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; fill: #6f8098; }
.d-box rect { fill: #131b28; stroke: #2a3648; stroke-width: 1; }
.d-box-hi rect { fill: #16202f; stroke: rgba(79, 227, 209, .45); }
.d-bad rect { fill: #1a1417; stroke: rgba(255, 123, 114, .4); }
.d-t { font-size: 14px; font-weight: 600; fill: #eef3fa; font-family: var(--sans); }
.d-t-bad { fill: #ff8d85; }
.d-s { font-size: 11.5px; fill: #8fa0b5; font-family: var(--mono); }
.d-s-bad { fill: #d98a86; }
.d-s-warn { fill: #f0a45f; }
.d-s2 { font-size: 12.5px; fill: #a3b1c4; font-family: var(--sans); }
.d-line { stroke: #4a5c72; stroke-width: 1.6; fill: none; }
.d-line-bad { stroke: #ff7b72; }
.d-rule { stroke: #1e2839; stroke-width: 1; }

/* thanks page */
.thanks-mark {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(79, 227, 209, .1); border: 1px solid rgba(79, 227, 209, .32);
  color: var(--acc); margin-bottom: 24px;
}


/* v5 additions */
.lede-2 { font-size: 16.5px; margin-top: 14px; }
.lede-2 b { color: var(--fg); }

.pill {
  display: inline-block; font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; color: var(--acc);
  background: rgba(79, 227, 209, .08); border: 1px solid rgba(79, 227, 209, .24);
  border-radius: 99px; padding: 5px 12px; margin-bottom: 12px;
}

ul.plain.big li { font-size: 16.5px; margin-bottom: 14px; padding-left: 28px; }
ul.plain.big b { color: var(--fg); }

.peek {
  border: 1px solid rgba(79, 227, 209, .32);
  border-radius: var(--r);
  background:
    radial-gradient(420px 200px at 20% 0%, rgba(79, 227, 209, .12), transparent 70%),
    linear-gradient(180deg, var(--panel), var(--bg-2));
  padding: 26px;
}
.peek-k {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--acc); margin-bottom: 12px;
}
.peek p { color: var(--fg-2); }
.peek .btn { margin-top: 6px; }

/* gateway tier cards */
.tier {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px; margin-top: 28px;
}
.tier-card {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: rgba(8, 11, 17, .45); padding: 20px 22px;
}
.tier-card.tier-hot {
  border-color: rgba(79, 227, 209, .4);
  background: linear-gradient(180deg, rgba(79, 227, 209, .07), rgba(8, 11, 17, .45));
}
.tier-top {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 10px;
}
.tier-top h4 { margin: 0; font-size: 16px; }
.tier-amt { font-size: 22px; font-weight: 800; letter-spacing: -.03em; color: var(--fg); }
.tier-card p { color: var(--fg-2); font-size: 15px; margin: 0; }
.tier-card b { color: var(--fg); }

/* contact success panel */
#form-sent {
  border: 1px solid rgba(79, 227, 209, .38);
  background: linear-gradient(180deg, rgba(79, 227, 209, .1), transparent);
  border-radius: var(--r); padding: 32px 26px; text-align: center;
}
#form-sent .tick-mark {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 16px; background: rgba(79, 227, 209, .14);
  border: 1px solid rgba(79, 227, 209, .34); color: var(--acc);
}
#form-sent h3 { margin: 0 0 8px; font-size: 21px; color: var(--fg); }
#form-sent p { margin: 0 0 22px; color: var(--fg-2); }
#form-error { color: #ff9c8a; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .bundle { grid-template-columns: 1fr; gap: 26px; }
  #contact-layout { grid-template-columns: 1fr !important; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { display: none; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 122px; }
  .head-inner { min-height: 56px; gap: 10px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 15.5px; }
  .site-nav {
    width: 100%; margin-left: 0; gap: 2px; flex-wrap: nowrap;
    justify-content: space-between;
    border-top: 1px solid var(--line); padding-top: 9px;
    overflow-x: auto; overflow-y: hidden;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { padding: 7px 6px; font-size: 13px; white-space: nowrap; }
  .nav-full { display: none; }
  .nav-abbr { display: inline; }
  .sample-banner { grid-template-columns: 1fr; gap: 14px; }
  .sb-mark { justify-self: start; }
  .fnd-head { padding: 16px 18px; gap: 10px; }
  .fnd-body { padding: 18px; }
  .doc-h2 { gap: 11px; }
  .site-nav .nav-cta { padding: 8px 11px; }
  .wrap { padding: 0 20px; }
  .site-nav a.is-current::after { margin-top: 4px; }
  .site-nav .nav-cta { margin-left: 0; }
  .row-2 { grid-template-columns: 1fr; gap: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .card { padding: 21px; }
  .form-card { padding: 20px; }
  .sec { padding: 44px 0; }
  .sec-tight { padding: 32px 0; }
  .hero { padding: 40px 0 44px; }
  .page-head { padding: 36px 0 26px; }
  h1 { font-size: 31px; }
  h2 { font-size: 25px; }
  .lede { font-size: 16.5px; }
  .lede-2 { font-size: 15.5px; }
  .section-lede { font-size: 16px; margin-bottom: 26px; }
  .section-head { margin-bottom: 28px; }
  .hero-actions { gap: 10px; margin-top: 26px; }
  .btn { width: 100%; padding: 14px 18px; }
  .strip-item { padding: 18px 16px; }
  .strip-item .k { font-size: 21px; }
  .strip-item .k.small { font-size: 16px; }
  .grid { gap: 14px; }
  .cta-band { padding: 30px 22px; }
  ul.plain.big li { font-size: 15.5px; margin-bottom: 11px; }
  .peek { padding: 22px; }
  .doc { padding: 20px; }
  .doc-sec { padding: 28px 0; }
  .steps > li { padding: 24px 0; }
  .svc-head { gap: 10px; }
  .svc-price { text-align: left; }
  .cert { font-size: 13.3px; padding: 9px 15px 9px 13px; align-items: flex-start; }
  .steps > li::before { position: static; margin-bottom: 12px; }
  .rates, .rates tbody, .rates tr, .rates th, .rates td { display: block; width: auto; }
  .rates thead { display: none; }
  .rates tr { border-top: 1px solid var(--line); padding: 16px 0; }
  .rates th, .rates td { border: none; padding: 0; }
  .rates tbody th { width: auto; margin-bottom: 3px; }
  .rates .amt { margin-bottom: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

@media print {
  body::before, body::after { display: none; }
  body { background: #fff; color: #000; }
  .site-head, .site-nav, .cta-band, .form-card { display: none; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 16px; }
  .site-nav a { font-size: 11.8px; padding: 7px 3px; }
  .site-nav .nav-cta { padding: 8px 8px; }
}
