@font-face {
  font-family: "Quantico";
  src: url("/assets/fonts/quantico-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Quantico";
  src: url("/assets/fonts/quantico-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* terixstudio.com v9 - the TacticalCodeworks family language: #020308 ink, blue
   aurora + drifting stars, fixed glass header, premium white / hairline-ghost
   buttons, steel-rim dark-glass boxes (see "Steel rim" below), cut-out phones.
   Text stays pure white; secondary copy is steel rgb(218,227,238). */

:root {
  color-scheme: dark;
  --ink: #020308;
  --ink-soft: #05080f;
  --text: #fff;
  --text-2: rgb(218, 227, 238);
  --text-3: rgb(184, 196, 213);
  --accent: #39a6ff;
  --accent-gradient: linear-gradient(180deg, #8be4ff 0%, #39a6ff 42%, #1767ef 100%);
  --steel-rgb: 214, 228, 248;
  --steel-hover-rgb: 128, 186, 255;
  --muted: #fff;
  --muted-2: #fff;
  --blue: rgb(29, 132, 255);
  --cyan: rgb(83, 207, 255);
  --iris: rgb(46, 143, 255);
  --blue-light: #fff;
  --button-blue: #075fc9;
  --cream: 251, 243, 223;
  --rim: rgba(var(--cream), 0.55);
  --rim-strong: rgba(var(--cream), 0.95);
  --rim-soft: rgba(var(--cream), 0.14);
  --hair: rgba(255, 255, 255, 0.1);
  --display: "Quantico", ui-sans-serif, system-ui, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: rgba(46, 143, 255, 0.38); color: #fff; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.wrap { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  border-radius: 10px;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

/* ---------- Space backdrop ---------- */

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 46vmax 34vmax at 4% 22%, rgba(30, 110, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 40vmax 30vmax at 96% 40%, rgba(30, 110, 255, 0.16), transparent 66%),
    radial-gradient(ellipse 44vmax 30vmax at 50% 108%, rgba(30, 26, 120, 0.22), transparent 68%),
    radial-gradient(ellipse 130vmax 90vmax at 50% 46%, transparent, rgba(1, 2, 6, 0.92) 84%),
    var(--ink);
}
@media (max-width: 700px) {
  .backdrop {
  background:
    radial-gradient(ellipse 78vmin 60vmin at 0% 16%, rgba(30, 110, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 60vmin 44vmin at 100% 42%, rgba(30, 110, 255, 0.14), transparent 66%),
    radial-gradient(ellipse 130vmax 90vmax at 50% 46%, transparent, rgba(1, 2, 6, 0.92) 84%),
    var(--ink);
    }
}

.stars {
  position: fixed;
  left: 0;
  right: 0;
  top: -900px;
  height: calc(100% + 900px);
  z-index: -2;
  pointer-events: none;
  background: url("/assets/stars-a.png") repeat 0 0 / 900px 900px;
  animation: drift 320s linear infinite;
}
.stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/stars-b.png") repeat 0 0 / 900px 900px;
  animation: drift 190s linear infinite, twinkle 5.5s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translateY(0); } to { transform: translateY(900px); } }
@keyframes twinkle { from { opacity: 0.45; } to { opacity: 1; } }

/* ---------- Header: fixed glass bar ---------- */

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--rim-soft);
  background: rgba(4, 6, 8, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
main { padding-top: 66px; }

.nav { min-height: 65px; display: flex; align-items: center; gap: 24px; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.wordmark img { width: 36px; height: 36px; flex: none; border-radius: 10px; }
.wordmark span span { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links a {
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--cyan); }

/* ---------- Buttons: premium white primary, hairline ghost ---------- */

.button,
.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 30px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(to right, #ffffff, rgb(194, 204, 219));
}
.button-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(255, 255, 255, 0.14); }

.button-secondary,
.nav-action {
  color: #fff;
  background: transparent;
  border: 1px solid var(--rim);
  padding: 13px 29px;
}
.button-secondary:hover,
.nav-action:hover { transform: translateY(-1px); border-color: var(--rim-strong); }

.nav-action { padding: 8px 16px; font-size: 12px; }

.button .bi { width: 18px; height: 18px; flex: none; margin-top: -2px; }

.text-link { color: #fff; font-weight: 600; text-underline-offset: 5px; }

/* ---------- Section tags ---------- */

/* Section label: 17px accent display text behind an accent diamond, no trailing
   hairline. .eyebrow shares it; inside a box an eyebrow becomes the mini label below. */
.eyebrow,
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before,
.section-tag::before {
  width: 10px;
  height: 10px;
  flex: none;
  background: var(--iris);
  content: "";
  transform: rotate(45deg);
}

/* Mini label inside a box ("START CLEAR" style): 15px, bold, 0.2em, no diamond */
.privacy-panel .eyebrow,
.final-cta .eyebrow,
.support-contact .eyebrow,
.faq-panel .eyebrow {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.privacy-panel .eyebrow::before,
.final-cta .eyebrow::before,
.support-contact .eyebrow::before,
.faq-panel .eyebrow::before { content: none; }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  align-items: center;
  gap: clamp(46px, 7vw, 88px);
  padding: 70px 0 38px;
}

.lockup { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }

/* Hero icon sits in the same steel rim as the boxes. An <img> can't carry a
   pseudo-element, so the wrapper's ::after draws the ring ABOVE the image, masked
   to the outer 2px. */
.icon-frame {
  --rim-rgb: var(--steel-rgb);
  position: relative;
  display: block;
  flex: none;
  width: 82px;
  height: 82px;
  border-radius: 21px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 16px 36px rgba(0, 0, 0, 0.45);
}
.icon-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.icon-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(var(--rim-rgb), 0.9) 0%,
    rgba(var(--rim-rgb), 0.36) 30%,
    rgba(var(--rim-rgb), 0.2) 55%,
    rgba(var(--rim-rgb), 0.32) 80%,
    rgba(var(--rim-rgb), 0.62) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.kicker svg { width: 17px; height: 17px; flex: none; margin-top: -3px; }

.hero h1,
.section-heading h2,
.credit-intro h2,
.privacy-panel h2,
.final-cta h2,
.doc-hero h1,
.support-contact h2,
.faq-panel h2,
.error-panel h1 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
  color: #fff;
}

.hero h1 {
  max-width: 8.2em;
  font-size: clamp(3rem, 6.1vw, 5.2rem);
  line-height: 1.02;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
  filter: drop-shadow(0 8px 24px rgba(0, 106, 255, 0.18));
}
.hero h1 .accent { color: inherit; }

.lede {
  max-width: 31em;
  margin-top: 26px;
  color: #fff;
  font-size: clamp(17px, 1.65vw, 19px);
  line-height: 1.7;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.platform {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #fff;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.platform::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(46, 143, 255, 0.9);
}

.product-shot {
  position: relative;
  width: min(100%, 400px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-shot::before {
  content: "";
  position: absolute;
  inset: 10% -8% 4%;
  z-index: -1;
  border-radius: 44%;
  background: radial-gradient(ellipse, rgba(34, 123, 255, 0.38), rgba(34, 123, 255, 0.05) 52%, transparent 72%);
  filter: blur(30px);
}
.product-shot img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.55));
}

/* ---------- Proof strip ---------- */

/* One steel-rim box, three spaced cells, no dividers */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 24px;
}
.proof-strip div { min-height: 140px; padding: 28px 26px; }
.proof-strip strong,
.proof-strip small { display: block; }
.proof-strip strong {
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.proof-strip small { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }

/* ---------- Sections ---------- */

.section { padding: 82px 0 24px; scroll-margin-top: 82px; }

.section-heading { max-width: 720px; margin-top: 20px; margin-bottom: 34px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section-heading > p { margin-top: 18px; color: #fff; font-size: 17px; line-height: 1.68; }
.section-heading.center + .screen-grid { margin-inline: auto; }
.center-tag { justify-content: center; }

/* Flow cards */
.workflow-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.workflow-list article {
  min-height: 230px;
  padding: 30px 28px;
  border-radius: 24px;
  transition: transform 0.2s ease;
}
.workflow-list article:hover {
  --rim-rgb: var(--steel-hover-rgb);
  transform: translateY(-3px);
}
/* Step numeral: big display digits filled with the accent gradient (same as the shot titles) */
.step-number {
  display: block;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}
.workflow-list h3,
.screen-copy h3,
.credit-list h3 {
  color: #fff;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-transform: uppercase;
}
.workflow-list h3 { margin-bottom: 12px; }
.workflow-list p { color: var(--text-2); font-size: 15px; line-height: 1.68; }

/* Shot cards */
.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin-inline: auto;
}
.screen-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 30px 22px 26px;
  border-radius: 28px;
  text-align: center;
}
.shot-title {
  margin-bottom: 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}
.screen-card img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55));
}
.screen-copy { padding: 24px 6px 0; text-align: center; }
.screen-copy span,
.screen-copy p { display: block; }
.screen-copy span {
  color: #ffffff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.screen-copy p { margin-top: 6px; color: var(--text-2); font-size: 14.5px; line-height: 1.6; }

/* Credits: three steel-rim cards under the section head */
.credit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.credit-grid article {
  padding: 30px 28px;
  border-radius: 24px;
  transition: transform 0.2s ease;
}
.credit-grid article:hover {
  --rim-rgb: var(--steel-hover-rgb);
  transform: translateY(-3px);
}
.credit-grid h3 {
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-transform: uppercase;
}
.credit-grid p { color: var(--text-2); font-size: 15px; line-height: 1.68; }

/* Credits: blue-rimmed panel with a list of mini-cards (unused on the landing page now) */
.credit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 54px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(76, 166, 255, 0.38);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(46, 143, 255, 0.18), transparent 42%),
    rgba(4, 7, 14, 0.82);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}
.credit-intro h2,
.privacy-panel h2,
.final-cta h2 { margin-top: 18px; font-size: clamp(2rem, 4.2vw, 3.1rem); }
.credit-intro > p:last-child,
.privacy-panel p,
.final-cta p { margin-top: 18px; color: #fff; font-size: 17px; line-height: 1.68; }

.credit-list { display: grid; gap: 16px; list-style: none; }
.credit-list article {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}
.credit-list article::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(46, 143, 255, 0.85);
}
.credit-list h3 { font-family: var(--body); font-size: 15px; font-weight: 600; letter-spacing: 0; text-transform: none; }
.credit-list p { margin-top: 4px; color: #fff; font-size: 13.5px; line-height: 1.5; }

/* Boxes: privacy + closing (the box itself comes from the steel rim block) */
.privacy-panel,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding: 40px 38px;
  border-radius: 24px;
}
.privacy-panel > div:first-child,
.final-cta > div:first-child { max-width: 640px; }
.privacy-panel h2,
.final-cta h2 { margin-top: 14px; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.privacy-panel p,
.final-cta p { margin-top: 12px; color: var(--text-2); font-size: 16px; }
.privacy-actions,
.final-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(var(--cream), 0.25);
  padding: 40px 0 52px;
  font-size: 14.5px;
}
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px 28px; flex-wrap: wrap; }
.footer-links { display: flex; align-items: center; gap: 8px 22px; flex-wrap: wrap; }
.footer-links a { color: #fff; text-decoration: none; transition: color 0.18s ease; }
.footer-links a:hover { color: var(--cyan); }
.footer-links .wordmark { margin-right: 10px; }
.footer-links .wordmark img { width: 28px; height: 28px; border-radius: 8px; }
.footer-copy { color: #fff; font-size: 13px; }
.footer-note { max-width: 78ch; margin-top: 22px; color: #fff; font-size: 12.5px; line-height: 1.6; }

/* ---------- Legal / support pages (carried over) ---------- */

.page-main { padding-bottom: 72px; }

.doc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: end;
  padding: 84px 0 50px;
}

.doc-hero > div { max-width: 850px; }

.doc-hero h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.doc-hero > div > p:last-child {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.updated {
  justify-self: end;
  border-radius: 999px;
  padding: 11px 18px;
  color: #fff;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: normal;
}

/* At-a-glance strips: one steel-rim box, three spaced cells, no dividers */
.policy-summary,
.support-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 24px;
}

.policy-summary article,
.support-summary article {
  min-width: 0;
  padding: 28px 26px;
}

/* Numbered points: big gradient numeral beside the copy */
.policy-summary article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
}

.policy-summary span,
.support-checklist span {
  display: block;
  padding-top: 1px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}

.support-summary span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.policy-summary strong,
.support-summary strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}
.policy-summary strong { padding-top: 4px; }

.policy-summary p {
  margin-top: 6px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* The policy / terms text sits in one steel-rim panel */
.doc-body {
  max-width: 920px;
  margin: 48px auto 0;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 30px;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 46px;
}

.policy-nav a {
  border: 1px solid var(--rim-soft);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.policy-nav a:hover {
  border-color: var(--rim);
  color: #fff;
}

.doc-body h2 {
  margin-top: 48px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.3;
  scroll-margin-top: 100px;
}

.doc-body h2:first-of-type { margin-top: 0; }

.doc-body h3 {
  margin-top: 28px;
  color: #fff;
  font-size: 18px;
}

.doc-body p,
.doc-body ul {
  margin-top: 15px;
  color: #fff;
}

.doc-body ul { padding-left: 22px; }
.doc-body li + li { margin-top: 8px; }

.doc-body a,
.faq-panel a {
  color: #fff;
  text-underline-offset: 4px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

.support-contact,
.faq-panel {
  border-radius: 24px;
  padding: clamp(26px, 4vw, 42px);
}

.support-contact h2,
.faq-panel h2 {
  margin-top: 17px;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
}

.support-contact > p:not(.eyebrow),
.faq-panel > p:not(.eyebrow) {
  margin-top: 17px;
  color: var(--text-2);
}

.support-contact .button { margin-top: 25px; }

.support-email {
  display: block;
  margin-top: 15px;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 13px;
}

/* What to include: numbered rows, spaced, no divider (numeral rule sits with .policy-summary span) */
.support-checklist {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.support-checklist div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  padding: 9px 0;
}
.support-checklist div:first-child { padding-top: 0; }
.support-checklist div:last-child { padding-bottom: 0; }

.support-checklist p {
  padding-top: 3px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* FAQ: spaced rows, no divider hairlines */
.faq-list { margin-top: 20px; }

.faq-list summary {
  cursor: pointer;
  padding: 9px 30px 9px 0;
  color: #fff;
  font-weight: 750;
}

.faq-list details p {
  padding: 2px 0 14px;
  color: var(--text-2);
}

.error-main {
  min-height: calc(100svh - 72px);
  display: grid;
  place-items: center;
  padding-block: 70px;
}

.error-panel {
  width: min(720px, 100%);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 56px);
  border-radius: 30px;
  text-align: center;
}

/* mini label */
.error-code {
  color: var(--accent);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.error-panel h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.error-panel > p:not(.error-code) {
  max-width: 540px;
  margin: 22px auto 0;
  color: var(--text-2);
}

.error-panel .button { margin-top: 28px; }

/* ---------- Steel rim: every panel / card / tile ----------
   Dark glass fill + a 2px cool-steel edge lit from the top-left, drawn by a masked
   pseudo-element so it follows the corner radius exactly. --rim-rgb lets a card tint
   the edge (interactive cards go blue on hover). Same treatment as the Axelo page on
   tacticalcodeworks.com. No hairline borders, no inset highlights, no glow gradients. */

.proof-strip,
.workflow-list article,
.screen-card,
.credit-grid article,
.privacy-panel,
.final-cta,
.updated,
.policy-summary,
.support-summary,
.doc-body,
.support-contact,
.faq-panel,
.error-panel {
  --rim-rgb: var(--steel-rgb);
  position: relative;
  isolation: isolate;
  border: 0;
  background: rgba(7, 10, 17, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 30px 70px rgba(0, 0, 0, 0.42);
}

/* the small date pill: lighter fill, smaller shadow */
.updated {
  background: rgba(7, 10, 17, 0.4);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 18px 40px rgba(0, 0, 0, 0.3);
}

.proof-strip::before,
.workflow-list article::before,
.screen-card::before,
.credit-grid article::before,
.privacy-panel::before,
.final-cta::before,
.updated::before,
.policy-summary::before,
.support-summary::before,
.doc-body::before,
.support-contact::before,
.faq-panel::before,
.error-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(var(--rim-rgb), 0.9) 0%,
    rgba(var(--rim-rgb), 0.36) 30%,
    rgba(var(--rim-rgb), 0.2) 55%,
    rgba(var(--rim-rgb), 0.32) 80%,
    rgba(var(--rim-rgb), 0.62) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

@media (max-width: 920px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(260px, 330px); gap: 38px; }
  .proof-strip, .workflow-list, .credit-grid { grid-template-columns: 1fr; }
  .proof-strip div { min-height: 0; padding: 18px 26px; }
  .proof-strip div:first-child { padding-top: 28px; }
  .proof-strip div:last-child { padding-bottom: 28px; }
  .workflow-list article { min-height: 0; }
  .credit-panel { grid-template-columns: 1fr; gap: 32px; }
  .section-heading { max-width: 680px; }
}

@media (max-width: 820px) {
  .nav { gap: 16px; }
  .nav-links { gap: 18px; }
  .nav-optional { display: none; }
  .policy-summary,
  .support-summary { grid-template-columns: 1fr; }
  .policy-summary article,
  .support-summary article { padding: 18px 26px; }
  .policy-summary article:first-child,
  .support-summary article:first-child { padding-top: 28px; }
  .policy-summary article:last-child,
  .support-summary article:last-child { padding-bottom: 28px; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 52px; }
  .hero-copy { text-align: center; }
  .lockup, .cta-row, .platform { justify-content: center; }
  .hero h1, .lede { margin-inline: auto; }
  .product-shot { width: min(100%, 330px); }
  .product-shot img { width: min(100%, 300px); }
  .screen-grid { grid-template-columns: minmax(0, 320px); justify-content: center; }
  .privacy-panel, .final-cta { grid-template-columns: 1fr; }
}

@media (max-width: 660px) {
  .wrap { width: calc(100% - 36px); }
  .wordmark { font-size: 12px; letter-spacing: 0.11em; }
  .wordmark img { width: 32px; height: 32px; }
  .nav-links { gap: 13px; }
  .nav-links a { font-size: 12.5px; }
  .icon-frame { width: 70px; height: 70px; border-radius: 18px; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 3.6rem); }
  .section { padding-top: 64px; }
  .workflow-list article, .privacy-panel, .final-cta { padding: 28px 24px; }
  .credit-panel { padding: 30px 22px; }
  .doc-hero { grid-template-columns: 1fr; gap: 24px; padding: 64px 0 38px; }
  .updated { justify-self: start; }
}

@media (max-width: 420px) {
  .cta-row .button,
  .privacy-actions .button,
  .final-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .workflow-list article,
  .credit-grid article { transition: none; }
  .workflow-list article:hover,
  .credit-grid article:hover { transform: none; }
}

@media (prefers-contrast: more) {
  :root {
    --rim: rgba(255, 255, 255, 0.6);
    --rim-soft: rgba(255, 255, 255, 0.3);
    --steel-rgb: 255, 255, 255;
  }
}

/* Sub-page header on phones: drop the pill (the contact link is in the page),
   tighter links, icon-only wordmark on the narrowest screens. */
@media (max-width: 660px) {
  .nav-action { display: none; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
}
@media (max-width: 350px) {
  .site-header .wordmark > span { display: none; }
}
@media (max-width: 360px) {
  .button { white-space: normal; text-align: center; }
}

/* Centered introductions keep long headings and credit details easy to scan. */
.section-heading--compact { max-width: 800px; margin-top: 0; margin-bottom: 32px; }
.section-heading--compact h2 { max-width: 27ch; margin-inline: auto; font-size: clamp(28px, 3.2vw, 38px); line-height: 1.18; text-wrap: balance; }
.section-heading--compact > p:not(.section-tag) { max-width: 64ch; margin-inline: auto; font-size: 16px; line-height: 1.65; text-wrap: pretty; }
.section-heading--compact > .section-tag { margin-top: 0; margin-bottom: 16px; }
.section-heading--compact > p.credit-detail { max-width: 74ch; margin-top: 12px; font-size: 15px; }
.proof-strip .step-number { margin-bottom: 14px; font-size: 30px; }
@media (max-width: 600px) {
  .section-heading--compact h2 { font-size: 28px; }
  .section-heading--compact > p:not(.section-tag) { font-size: 15px; }
}

/* Prominent blue labels on the download and privacy panels. */
.privacy-panel .eyebrow,
.final-cta .eyebrow {
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: .14em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}

/* Halve both spaces around the download panel. */
.section--half-before { padding-top: 41px; }
.section--half-after { padding-bottom: 12px; }
@media (max-width: 660px) {
  .section--half-before { padding-top: 32px; }
}

/* Keep legal dates with their titles instead of in a separate column. */
.doc-hero--legal { display: block; }
.doc-hero--legal .updated { display: inline-block; margin-top: 18px; max-width: 100%; }
