/* No Excuses Operations — brand system
   World: the NX emblem. Black ground, electric blue, chrome silver. Bebas Neue
   condensed uppercase for display (the emblem's lettering), Inter for reading.
   Blueprint grid as the signature motif. Blue is a light source, not a fill. */

:root {
  --black: #08090c;
  --black-2: #0d0e11;
  --black-3: #121419;
  --black-4: #191c23;
  --line: #22262f;
  --line-2: #2d323d;

  --chrome: #e8ebf0;
  --chrome-2: #c9cfd8;
  --steel: #9aa5b3;
  --steel-2: #6f7b8a;

  --blue: #1d4fd7;
  --blue-2: #4d7ef0;
  --blue-3: #5b8dff;
  --blue-deep: #163fae;
  --blue-glow: rgba(91, 141, 255, .4);
  --blue-glow-soft: rgba(91, 141, 255, .18);

  --ok: #3ecf8e;

  --shell: 1180px;
  --r: 14px;
  --r-sm: 9px;

  --display: "Bebas Neue", "Oswald", "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--chrome-2);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* the blueprint grid, sitewide, quiet */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, rgba(91,141,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(91,141,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 100%);
  pointer-events: none;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .95;
  color: var(--chrome);
  text-wrap: balance;
}
h1 { font-size: clamp(3.2rem, 8.5vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.55rem; letter-spacing: .02em; }
p  { margin: 0 0 1rem; }
a  { color: var(--blue-3); text-decoration: none; }
a:hover { text-decoration: underline; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 24px; }
.lede { font-size: 1.12rem; color: var(--chrome-2); max-width: 60ch; }
.muted { color: var(--steel); }
.small { font-size: .88rem; }
.num { font-variant-numeric: tabular-nums; }

/* a short blue rule carries the emblem's bolt — the one motif we repeat */
.rule { width: 56px; height: 3px; background: var(--blue-2); border-radius: 2px; margin-bottom: 18px;
  box-shadow: 0 0 18px var(--blue-glow); }

/* ---------------------------------------------------------------- header */

header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 9, 12, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--chrome); }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 9px; flex: 0 0 auto;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.15rem; letter-spacing: .04em; color: var(--chrome);
  background: linear-gradient(160deg, #2a2f3a, #0d0e11 60%);
  border: 1px solid var(--line-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 6px 16px rgba(0,0,0,.55), 0 0 0 1px rgba(91,141,255,.12);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--display); font-weight: 400; font-size: 1.25rem; letter-spacing: .04em; text-transform: uppercase; }
.brand__text small { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--steel-2); font-weight: 600; margin-top: 2px; }
.nav__links { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.nav__links a {
  color: var(--chrome-2); font-size: .9rem; font-weight: 500; white-space: nowrap; position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--blue-2); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out);
}
.nav__links a:hover { color: #fff; text-decoration: none; }
.nav__links a:hover::after { transform: scaleX(1); }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--r-sm);
  font-family: var(--display); font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid var(--line-2); background: var(--black-3); color: var(--chrome);
  cursor: pointer; white-space: nowrap;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), border-color .2s, background .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--steel-2); background: var(--black-4);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.7); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  border-color: var(--blue-deep); color: #fff;
  box-shadow: 0 8px 22px -6px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover { background: linear-gradient(180deg, var(--blue-3), var(--blue-2)); border-color: var(--blue);
  box-shadow: 0 16px 32px -8px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.22); }
.btn--lg { padding: 16px 32px; font-size: 1.25rem; }

/* ---------------------------------------------------------------- hero */

.hero { position: relative; padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }
.hero__light {
  position: absolute; inset: -30% -10% auto 35%; height: 900px; pointer-events: none;
  background: radial-gradient(closest-side, var(--blue-glow-soft), transparent 70%);
  animation: breathe 9s ease-in-out infinite;
}
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 48px; align-items: center; }
.hero h1 { max-width: 16ch; }
/* the one place chrome is literal: the emblem's own lettering, on the headline */
.hero h1 .chrome {
  background: linear-gradient(180deg, #ffffff 0%, #d9dee6 42%, #8f99a8 50%, #e6e9ef 58%, #ffffff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.6)) drop-shadow(0 0 22px rgba(91,141,255,.25));
}
.hero h1 .blue { color: var(--blue-3); text-shadow: 0 0 28px var(--blue-glow); }
.hero .lede { margin-top: 1.6rem; font-size: 1.18rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.2rem; }
.hero__note { margin-top: 1.4rem; font-size: .88rem; color: var(--steel); }
.hero__tag {
  margin-top: 2.4rem; font-family: var(--display); font-size: 1.05rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--steel-2);
}
.hero__tag b { color: var(--blue-3); font-weight: 400; }

.hero__art { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero__ring {
  position: absolute; width: min(520px, 100%); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(91,141,255,.18);
  background:
    radial-gradient(closest-side, rgba(91,141,255,.16), transparent 68%);
  animation: spin 60s linear infinite;
}
.hero__ring::before, .hero__ring::after {
  content: ""; position: absolute; inset: 14%; border-radius: 50%; border: 1px dashed rgba(91,141,255,.22);
}
.hero__ring::after { inset: 30%; border-style: solid; border-color: rgba(91,141,255,.12); }
.hero__emblem {
  position: relative; width: min(340px, 78%); height: auto; display: block;
  border-radius: 50%;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.75)) drop-shadow(0 0 40px var(--blue-glow-soft));
  animation: settle 1.4s var(--ease-out) both, float 7s ease-in-out 1.4s infinite;
}

/* ---------------------------------------------------------------- sections */

section { padding: clamp(56px, 8vw, 100px) 0; border-top: 1px solid var(--line); position: relative; }
.head { max-width: 62ch; margin-bottom: 2.6rem; }
.head p { margin-top: 1rem; }

/* rate card — a priced manifest, not a grid of identical tiles */
.featured {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 32px; align-items: center;
  padding: 34px 36px; margin-bottom: 18px;
  border: 1px solid var(--line-2); border-radius: var(--r);
  background:
    linear-gradient(135deg, rgba(91,141,255,.10), transparent 55%),
    linear-gradient(180deg, var(--black-3), var(--black-2));
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.05);
  position: relative; overflow: hidden;
}
.featured::after {
  content: ""; position: absolute; right: -12%; top: -40%; width: 60%; height: 180%;
  background: radial-gradient(closest-side, var(--blue-glow-soft), transparent 70%); pointer-events: none;
}
.featured h3 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.featured p { color: var(--chrome-2); margin-top: .9rem; max-width: 56ch; }
.featured__price { position: relative; text-align: right; }
.featured__price .amt { font-family: var(--display); font-size: clamp(3rem, 6vw, 4.6rem); line-height: .9; color: var(--chrome); }
.featured__price .dep { color: var(--steel); font-size: .95rem; margin-top: .4rem; }

.rate { list-style: none; margin: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--black-2); }
.rate li {
  display: grid; grid-template-columns: 260px minmax(0, 1fr) auto; gap: 24px; align-items: center;
  padding: 22px 26px; border-top: 1px solid var(--line);
  transition: background .25s, transform .3s var(--ease-out);
}
.rate li:first-child { border-top: 0; }
.rate li:hover { background: var(--black-3); }
.rate li h3 { font-size: 1.45rem; }
.rate li p { margin: 0; color: var(--steel); font-size: .95rem; }
.rate .price { font-family: var(--display); font-size: 1.6rem; letter-spacing: .03em; color: var(--chrome); white-space: nowrap; text-align: right; }
.rate .price small { display: block; font-family: var(--body); font-size: .78rem; letter-spacing: 0; text-transform: none; color: var(--steel-2); margin-top: 2px; }
.rate .price.is-quote { color: var(--blue-3); font-size: 1.1rem; letter-spacing: .08em; }

/* AI — three moves, one rule each */
.moves { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.move { padding: 30px 28px 30px 0; border-right: 1px solid var(--line); margin-right: 28px; }
.move:last-child { border-right: 0; margin-right: 0; }
.move h3 { margin: 14px 0 10px; }
.move p { color: var(--steel); margin: 0; }

/* live rows */
.work { display: grid; gap: 12px; }
.work__row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 20px 24px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--black-2);
  transition: border-color .25s, transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.work__row:hover { border-color: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,.8); }
.work__name { font-family: var(--display); font-size: 1.35rem; letter-spacing: .03em; color: var(--chrome); }
.work__what { color: var(--steel); font-size: .95rem; }
.work__link { margin-left: auto; font-size: .9rem; font-weight: 600; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); flex: 0 0 auto; box-shadow: 0 0 0 4px rgba(62,207,142,.14); animation: pulse 2.6s ease-in-out infinite; }

/* process + terms */
.steps { display: grid; gap: 22px; }
.step { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 18px; align-items: start; }
.step__n {
  width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center;
  font-family: var(--display); font-size: 1.25rem; color: var(--blue-3);
  background: var(--black-3); border: 1px solid var(--line-2);
}
.step h3 { margin-bottom: .35rem; }
.step p { margin: 0; color: var(--steel); }

.terms { border: 1px solid var(--line-2); border-radius: var(--r); background: linear-gradient(180deg, var(--black-3), var(--black-2)); padding: 28px; box-shadow: 0 30px 60px -34px rgba(0,0,0,.8); }
.terms h3 { margin-bottom: 16px; }
.terms dl { display: grid; grid-template-columns: minmax(120px, auto) minmax(0, 1fr); gap: 12px 22px; margin: 0; }
.terms dt { color: var(--steel-2); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; padding-top: 3px; }
.terms dd { margin: 0; color: var(--chrome-2); }

.grid--2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); gap: 28px; }

/* contact */
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
.contact__item { padding: 24px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--black-2); }
.contact__item .label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--steel-2); }
.contact__item .value { margin-top: 8px; font-family: var(--display); font-size: 1.5rem; letter-spacing: .03em; color: var(--chrome); word-break: break-word; }
.contact__item .value a { color: var(--chrome); }
.contact__item .sub { font-family: var(--body); font-size: .88rem; color: var(--steel); margin-top: 4px; letter-spacing: 0; text-transform: none; }

/* footer */
footer.site { border-top: 1px solid var(--line); padding: 44px 0 60px; }
.foot { display: flex; flex-wrap: wrap; gap: 20px 36px; align-items: flex-start; }
.foot__legal { max-width: 48ch; font-size: .88rem; color: var(--steel-2); }
.foot__links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-left: auto; }
.foot__links a { color: var(--steel); font-size: .9rem; }
.foot__tag { width: 100%; font-family: var(--display); letter-spacing: .3em; text-transform: uppercase; color: var(--line-2); font-size: 1rem; margin-top: 10px; }

/* legal pages */
.doc { padding: clamp(48px, 6vw, 80px) 0 100px; }
.doc__body { max-width: 74ch; }
.doc__body h2 { margin: 2.4rem 0 .8rem; font-size: 1.7rem; }
.doc__body ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.doc__body li { margin-bottom: .45rem; }
.doc__updated { font-size: .88rem; color: var(--steel-2); margin-bottom: 1.6rem; }

/* ---------------------------------------------------------------- motion */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.rate li.reveal { transform: translateX(-14px); }
.rate li.reveal.is-in { transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
.reveal[data-delay="7"] { transition-delay: .56s; }
.reveal[data-delay="8"] { transition-delay: .64s; }

/* hero entrance: lines of the headline rise out of a clip, then the rest follows */
.hero .line { display: block; overflow: hidden; }
.hero .line > span { display: block; transform: translateY(110%); animation: rise .9s var(--ease-out) forwards; }
.hero .line:nth-child(2) > span { animation-delay: .1s; }
.hero .line:nth-child(3) > span { animation-delay: .2s; }
.hero .after { opacity: 0; animation: fade .9s var(--ease-out) .45s forwards; }

@keyframes rise { to { transform: none; } }
@keyframes fade { to { opacity: 1; } }
@keyframes settle { from { opacity: 0; transform: scale(.86) translateY(24px); filter: blur(10px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { 0%, 100% { opacity: .75; } 50% { opacity: 1; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(62,207,142,.14); } 50% { box-shadow: 0 0 0 7px rgba(62,207,142,.06); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .line > span { transform: none; }
  .hero .after { opacity: 1; }
}

/* ---------------------------------------------------------------- responsive */

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__art { min-height: 260px; order: -1; }
  .hero__emblem { width: min(240px, 60%); }
  .hero__ring { width: min(360px, 90%); }
  .featured { grid-template-columns: 1fr; }
  .featured__price { text-align: left; }
  .moves { grid-template-columns: 1fr; }
  .move { border-right: 0; margin-right: 0; padding: 26px 0; border-top: 1px solid var(--line); }
  .move:first-child { border-top: 0; }
  .rate li { grid-template-columns: 1fr; gap: 8px; }
  .rate .price { text-align: left; }
}
@media (max-width: 720px) {
  .nav { height: auto; padding: 12px 0; flex-wrap: wrap; gap: 12px 18px; }
  .nav__links { margin-left: 0; width: 100%; gap: 6px 18px; flex-wrap: wrap; }
  .nav__links a::after { display: none; }
  h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .terms dl { grid-template-columns: 1fr; gap: 4px; }
  .terms dt { margin-top: 12px; }
  .work__link { margin-left: 0; width: 100%; }
  .featured { padding: 26px 22px; }
}
