/* ============================================================
   Territory AEO by Violeta. Agency — Territory Lock Landing
   Palette: Deep carbon, ignition orange, chrome accents
   ============================================================ */

:root {
  --bg: #0a0d14;
  --bg-2: #11151f;
  --bg-3: #161b27;
  --surface: #1a2030;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #eef1f7;
  --text-dim: #a8b0c0;
  --text-mute: #6b7387;

  --accent: #ff5a1f;          /* ignition orange */
  --accent-hot: #ff7a3d;
  --accent-deep: #c63a0a;
  --gold: #d4a84a;            /* chrome-gold for premium tier */
  --gold-deep: #8a6a1f;
  --danger: #ff3b3b;
  --success: #2ecc71;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-1: 0 6px 24px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 0 1px rgba(255, 90, 31, 0.35), 0 0 40px rgba(255, 90, 31, 0.25);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Oswald', 'Inter', system-ui, sans-serif;

  --container: 1200px;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 90, 31, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(50, 100, 255, 0.08), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.02);
}
.eyebrow--accent {
  color: var(--accent);
  border-color: rgba(255, 90, 31, 0.4);
  background: rgba(255, 90, 31, 0.08);
}

.accent { color: var(--accent); }
.strike {
  position: relative;
  display: inline-block;
}
.strike::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 8px;
  background: var(--accent);
  transform: skewX(-12deg);
  opacity: 0.85;
  z-index: -1;
}

/* ============ BUTTONS ============ */
.btn {
  --btn-bg: var(--accent);
  --btn-text: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(255, 90, 31, 0.35);
}
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(180deg, var(--accent-hot), var(--accent) 60%, var(--accent-deep));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 8px 24px rgba(255, 90, 31, 0.35);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn--primary:hover::before { transform: translateX(100%); }

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent);
  background: rgba(255, 90, 31, 0.06);
  box-shadow: none;
}

.btn--gold {
  background: linear-gradient(180deg, #f0c870, var(--gold) 55%, var(--gold-deep));
  color: #2a1f00;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 24px rgba(212, 168, 74, 0.3);
}
.btn--gold:hover { box-shadow: 0 10px 30px rgba(212, 168, 74, 0.4); }

.btn--lg { padding: 16px 26px; font-size: 16px; border-radius: 12px; }
.btn--xl { padding: 20px 34px; font-size: 18px; border-radius: 14px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.is-scrolled {
  background: rgba(10, 13, 20, 0.9);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.nav__brand { display: flex; align-items: center; text-decoration: none; }
.nav__logo { height: 36px; width: auto; }
.nav__wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.01em;
}
.nav__wordmark-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
}
.nav__wordmark-accent {
  color: var(--accent);
  margin-left: 6px;
}
.nav__wordmark-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: 24px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 10px;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  z-index: -1;
}
.hero__radar {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}
.hero__radar-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 90, 31, 0.3);
  border-radius: 50%;
  animation: radar-pulse 4s ease-out infinite;
}
.hero__radar-ring:nth-child(2) { animation-delay: 1.3s; }
.hero__radar-ring:nth-child(3) { animation-delay: 2.6s; }
.hero__radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 90, 31, 0.35) 30deg, transparent 60deg);
  animation: radar-sweep 4s linear infinite;
}
@keyframes radar-pulse {
  0% { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1); opacity: 0; }
}
@keyframes radar-sweep {
  to { transform: rotate(360deg); }
}

.hero__inner { position: relative; max-width: 920px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 26px;
}
.badge strong { color: var(--text); }
.badge--alert {
  border-color: rgba(255, 90, 31, 0.45);
  background: rgba(255, 90, 31, 0.08);
  color: var(--text);
}
.badge__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(255, 90, 31, 0); }
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 76px);
  letter-spacing: -0.015em;
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero__sub strong { color: var(--text); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
}
.social-proof__item {
  display: flex;
  flex-direction: column;
}
.social-proof__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.social-proof__num--quote {
  font-size: 20px;
  color: var(--accent);
  font-style: italic;
}
.social-proof__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
}
.social-proof__divider {
  width: 1px;
  height: 36px;
  background: var(--line-strong);
}

/* ============ SECTIONS ============ */
.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }
.section--dark { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.section__head--process {
  max-width: 920px;
}
.section__title-nowrap {
  white-space: nowrap;
}
@media (max-width: 380px) {
  .section__title-nowrap { white-space: normal; }
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-dim);
}
.section__lede strong { color: var(--text); }

/* ============ LOCK / VALUE PROP ============ */
.lock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.lock-card {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.lock-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(255, 90, 31, 0.08), transparent 60%);
  pointer-events: none;
}
.lock-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}
.lock-card__tag--accent {
  color: var(--accent);
  border-color: rgba(255, 90, 31, 0.4);
  background: rgba(255, 90, 31, 0.1);
}
.lock-card__tag--gold {
  color: var(--gold);
  border-color: rgba(212, 168, 74, 0.4);
  background: rgba(212, 168, 74, 0.08);
}
.lock-card p { color: var(--text-dim); font-size: 15px; }
.lock-card p strong { color: var(--text); }
.lock-card__punch {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.lock-card__punch--gold { color: var(--gold); }
.lock-card--solution { border-color: rgba(255, 90, 31, 0.3); }
.lock-card--result { border-color: rgba(212, 168, 74, 0.3); }

.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.badge-card {
  padding: 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.badge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.4);
  background: var(--surface);
}
.badge-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}
.badge-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.badge-card p { color: var(--text-dim); font-size: 14px; }

/* ============ SCANNER ============ */
.section--scanner {
  background:
    radial-gradient(800px 400px at 90% 50%, rgba(255, 90, 31, 0.10), transparent 60%),
    var(--bg);
}
.scanner__container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.scanner__copy h2 { text-align: left; }
.scanner__copy .section__lede { text-align: left; }
.scanner__bullets {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.scanner__bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 15px;
}
.scanner__bullets li span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.scanner {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.scanner__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.scanner__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.6s infinite;
}
.scanner__body { padding: 28px; display: grid; gap: 16px; }

.field { display: block; }
.field__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18);
  background: var(--bg-3);
}
.field input::placeholder { color: var(--text-mute); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

#scanBtn { position: relative; }
.btn__loader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.btn__loader::before {
  content: '';
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#scanBtn.is-loading .btn__label { opacity: 0; }
#scanBtn.is-loading .btn__loader { display: flex; }

.scanner__fineprint {
  font-size: 12.5px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 4px;
}
.scanner__fineprint strong { color: var(--text-dim); }

.scanner__success {
  padding: 36px 32px 40px;
  text-align: center;
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(46, 204, 113, 0.12), transparent 70%),
    rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(46, 204, 113, 0.25);
}
.scanner__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  animation: success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes success-pop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.scanner__success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}
.scanner__success p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 14px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.scanner__success p strong { color: var(--text); }
.scanner__success-meta {
  font-size: 13px !important;
  color: var(--text-mute) !important;
  margin-bottom: 22px !important;
}
.scanner__success .btn { margin-top: 6px; }

.scanner__error {
  margin: 16px 28px 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 59, 59, 0.4);
  background: rgba(255, 59, 59, 0.08);
  border-radius: 10px;
  font-size: 13.5px;
  color: #ffc1c1;
}
.scanner__error a { color: var(--accent-hot); text-decoration: underline; }

/* ============ PRICING ============ */
.phase-rail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
  padding: 0 4px;
}
.phase-rail__seg {
  position: relative;
  height: 4px;
  border-radius: 2px;
  display: flex;
  align-items: center;
}
.phase-rail__seg--1 {
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.25), var(--accent));
}
.phase-rail__seg--2 {
  background: linear-gradient(90deg, rgba(212, 168, 74, 0.3), var(--gold));
}
.phase-rail__label {
  position: absolute;
  top: -28px;
  left: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.phase-rail__seg--1 .phase-rail__label { color: var(--accent); }
.phase-rail__seg--2 .phase-rail__label { color: var(--gold); }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.tier__phase {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  margin-bottom: 10px;
}
.tier__phase--accent {
  color: var(--accent);
  background: rgba(255, 90, 31, 0.08);
  border-color: rgba(255, 90, 31, 0.4);
}
.tier__phase--gold {
  color: var(--gold);
  background: rgba(212, 168, 74, 0.08);
  border-color: rgba(212, 168, 74, 0.4);
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.tier:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-2);
}
.tier--featured {
  border-color: rgba(255, 90, 31, 0.5);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(255, 90, 31, 0.10), transparent 70%),
    var(--surface);
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}
.tier--featured:hover { transform: translateY(-12px); }

.tier--enterprise {
  border-color: rgba(212, 168, 74, 0.35);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(212, 168, 74, 0.08), transparent 70%),
    var(--surface);
}

.tier__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent-hot), var(--accent-deep));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 90, 31, 0.4);
}

.tier__head { margin-bottom: 22px; }
.tier__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  margin-bottom: 12px;
}
.tier__badge--accent { color: var(--accent); border-color: rgba(255, 90, 31, 0.4); background: rgba(255, 90, 31, 0.08); }
.tier__badge--gold { color: var(--gold); border-color: rgba(212, 168, 74, 0.4); background: rgba(212, 168, 74, 0.08); }

.tier__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tier__for { font-size: 13px; color: var(--text-mute); line-height: 1.45; }

.tier__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.tier__amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.tier--featured .tier__amount { color: var(--accent); }
.tier--enterprise .tier__amount { color: var(--gold); }
.tier__per { font-size: 14px; color: var(--text-mute); }

.tier__terms {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 22px;
  line-height: 1.5;
}
.tier__terms span { color: var(--text-mute); font-size: 12px; }

.tier__features {
  flex: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.tier__features li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.tier__features li strong { color: var(--text); }
.tier__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.tier--enterprise .tier__features li::before { border-color: var(--gold); }

/* ============ PROCESS ============ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  top: 30px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.process__step {
  position: relative;
  padding: 30px 24px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  z-index: 1;
  transition: transform 0.2s, border-color 0.2s;
}
.process__step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.4);
}
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-hot), var(--accent-deep));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process__step p { color: var(--text-dim); font-size: 14px; }
.process__step p strong { color: var(--text); }

/* ============ PROOF / CASE STUDY ============ */
.section--proof {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.proof__quote .section__title { text-align: left; margin-bottom: 24px; }
blockquote {
  margin: 0;
  padding: 28px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
blockquote p {
  font-size: 17px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.6;
}
blockquote footer {
  font-size: 14px;
  color: var(--text-dim);
  font-style: normal;
}
blockquote footer strong { color: var(--text); }
.proof__redacted { display: block; color: var(--text-mute); font-size: 12px; margin-top: 4px; }

.proof__study {
  margin: 0;
  padding: 28px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.proof__study > p {
  font-size: 17px;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.6;
}
.proof__subhead {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin: 28px 0 10px;
}
.proof__study > .proof__subhead:first-child { margin-top: 0; }
.proof__study-footer {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-dim);
}
.proof__study-footer strong { color: var(--text); display: block; margin-bottom: 4px; }

.proof__modeling-note {
  margin: 20px 0 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 90, 31, 0.35);
  background: rgba(255, 90, 31, 0.05);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
}
.proof__modeling-note strong { color: var(--text); }
.proof__modeling-note + .proof__study-footer { margin-top: 24px; }

.proof__stats { display: grid; gap: 18px; }
.stat-bubble {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat-bubble__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: rgba(255, 90, 31, 0.1);
  border-radius: 12px;
}
.stat-bubble__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.stat-bubble__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
}
.stat-bubble__label {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-dim);
  margin-top: 0;
}
.stat-bubble__label span { color: var(--text-mute); }

/* ============ GUARANTEE ============ */
.section--guarantee { background: var(--bg-2); }
.guarantee {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  padding: 50px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 0% 50%, rgba(212, 168, 74, 0.08), transparent 70%),
    var(--surface);
  border: 1px solid rgba(212, 168, 74, 0.25);
}
.guarantee__seal {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 50%),
    conic-gradient(from 0deg, var(--gold-deep), var(--gold), #f0c870, var(--gold), var(--gold-deep));
  padding: 8px;
  position: relative;
  box-shadow: 0 20px 60px rgba(212, 168, 74, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.3);
  animation: spin 30s linear infinite;
  justify-self: center;
}
.guarantee__seal-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(212, 168, 74, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: spin 30s linear infinite reverse;
}
.guarantee__seal-inner span {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.guarantee__seal-inner strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  margin: 6px 0;
  letter-spacing: 0.04em;
}
.guarantee__copy .section__title { text-align: left; margin-bottom: 14px; }
.guarantee__lede { color: var(--text-dim); margin-bottom: 18px; }
.guarantee__list { display: grid; gap: 12px; margin-bottom: 22px; }
.guarantee__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--text-dim);
}
.guarantee__list li span { color: var(--accent); font-weight: 700; }
.guarantee__list li strong { color: var(--text); }
.guarantee__punch {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ============ FINAL CTA ============ */
.section--final {
  background:
    radial-gradient(800px 400px at 50% 100%, rgba(255, 90, 31, 0.18), transparent 60%),
    var(--bg);
  text-align: center;
  border-top: 1px solid var(--line);
}
.final { max-width: 820px; margin: 0 auto; }
.final__warning { margin-bottom: 18px; }
.final__headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #fff;
}
.final__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  margin-bottom: 14px;
}
.final__sub strong { color: var(--text); }
.final__sub--punch {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

/* ============ LEGAL (Privacy / Terms) ============ */
.legal-doc {
  max-width: 720px;
}
.legal-doc .section__title {
  text-align: left;
}
.legal-doc .section__head {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.legal-doc .proof__study {
  margin-top: 28px;
}
.legal-doc .proof__study a {
  color: var(--accent-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-doc .proof__study a:hover {
  color: var(--accent);
}
.legal-doc__back {
  margin-top: 28px;
  text-align: left;
}
.footer__wordmark:is(a) {
  text-decoration: none;
  color: inherit;
}

/* ============ FOOTER ============ */
.footer {
  padding: 40px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer__logo { height: 32px; }
.footer__wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.footer__wordmark-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
}
.footer__wordmark-accent {
  color: var(--accent);
  margin-left: 5px;
}
.footer__wordmark-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-top: 4px;
}
.footer__brand p { color: var(--text-mute); font-size: 13px; }
.footer__meta { text-align: right; font-size: 13px; color: var(--text-mute); }
.footer__fineprint { font-size: 11.5px; color: var(--text-mute); margin-top: 4px; max-width: 480px; }
.footer__links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 8px;
}
.footer__links a { color: var(--text-dim); transition: color 0.15s; }
.footer__links a:hover { color: var(--accent); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .lock-grid,
  .badges,
  .pricing { grid-template-columns: 1fr 1fr; }
  .tier--featured { transform: none; grid-column: 1 / -1; }
  .phase-rail { display: none; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .scanner__container,
  .proof__grid,
  .guarantee {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .guarantee { padding: 40px 28px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__meta { text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; margin-left: auto; }
  .nav__wordmark-main { font-size: 18px; }
  .nav__wordmark-sub { font-size: 9px; letter-spacing: 0.16em; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 8px 0;
  }
  .nav.is-open .nav__links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }

  .lock-grid,
  .badges,
  .pricing,
  .process { grid-template-columns: 1fr; }
  .tier--featured { grid-column: auto; }

  .field-row { grid-template-columns: 1fr; }

  .social-proof { gap: 16px; padding: 18px 20px; }
  .social-proof__divider { display: none; }
  .social-proof__item { flex: 1 1 100%; }

  .hero__radar { right: -200px; width: 460px; height: 460px; opacity: 0.35; }

  .stat-bubble { grid-template-columns: 52px minmax(0, 1fr); gap: 16px; padding: 18px; }
  .stat-bubble__icon { width: 52px; height: 52px; font-size: 26px; }
  .stat-bubble__num { font-size: clamp(28px, 8vw, 34px); }
  .stat-bubble__label { font-size: 15px; }

  .guarantee__seal { width: 180px; height: 180px; }
  .guarantee__seal-inner strong { font-size: 22px; }

  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
}

/* ============ A11Y / MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
