@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/InterTight-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/InterTight-700.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/JetBrainsMono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/JetBrainsMono-700.woff2') format('woff2');
}

:root {
  --obsidian: #0a0a0f;
  --slate: #12121c;
  --indigo: #4f5bd5;
  --indigo-lift: #8e9bff;
  --bone: #f0efe9;
  --emerald: #10b981;
  --text: #f5f5f7;
  --muted: #8a8a99;
  --hairline: #232330;
  --grad: linear-gradient(135deg, #4f5bd5 0%, #8e9bff 100%);
  --radius: 14px;
  --wrap: 1200px;
  --glass: rgba(255, 255, 255, 0.032);
  color-scheme: dark;
}

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

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Inter Tight", "Inter", sans-serif;
  margin: 0 0 16px;
  line-height: 1.08;
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); letter-spacing: -0.015em; font-weight: 600; }
h3 { font-size: 1.38rem; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0 0 16px; }
a { color: var(--indigo-lift); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

section { padding: 120px 0; position: relative; }
section.tight { padding: 80px 0; }
.alt { background: var(--slate); }
.alt::before, .alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline) 20%, var(--hairline) 80%, transparent);
}
.alt::before { top: 0; }
.alt::after { bottom: 0; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 14px;
}

.lead { font-size: 1.16rem; color: var(--muted); max-width: 64ch; }
.micro { font-size: 0.88rem; color: var(--muted); margin-top: 18px; }

/* ---------- header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 24px;
  max-width: var(--wrap);
  margin-inline: auto;
}
.brand {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--grad);
  color: #07070c;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 650;
  font-size: 1rem;
  border: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  box-shadow: 0 0 28px rgba(79, 91, 213, 0.45), 0 0 60px rgba(142, 155, 255, 0.22);
  transform: translateY(-2px);
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--hairline);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--indigo); box-shadow: 0 0 20px rgba(79, 91, 213, 0.3); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.center .btn-row { justify-content: center; }

/* ---------- hero ---------- */
.hero {
  padding: 130px 0 120px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.hero::before {
  content: "";
  position: absolute;
  top: -280px; left: 50%;
  width: 1100px; height: 700px;
  transform: translateX(-60%);
  background: radial-gradient(closest-side, rgba(79, 91, 213, 0.28), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -320px; right: -120px;
  width: 760px; height: 620px;
  background: radial-gradient(closest-side, rgba(142, 155, 255, 0.14), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero h1 { max-width: 18ch; }
.hero .lead { font-size: 1.26rem; color: #b6b6c6; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

/* ---------- glass mockup ---------- */
.mockup {
  background: var(--glass);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.mockup-head {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 12px;
  margin-bottom: 4px;
}
.notif {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
  color: #dcdce4;
}
.notif:last-child { border-bottom: none; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
  flex: 0 0 auto;
}
.dot.amber { background: #f0b429; box-shadow: 0 0 10px rgba(240, 180, 41, 0.75); }
.dot.blue { background: var(--indigo-lift); box-shadow: 0 0 10px rgba(142, 155, 255, 0.75); }
.notif .time {
  margin-left: auto;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.stat {
  background: var(--glass);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.stat .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--glass);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px 28px;
  backdrop-filter: blur(20px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: rgba(79, 91, 213, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(79, 91, 213, 0.12);
}
.card h3 { margin-bottom: 12px; }
.card p { margin-bottom: 0; color: var(--muted); }
.card .more {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  text-decoration: none;
  color: var(--indigo-lift);
}
.card .more:hover { text-decoration: underline; }
.icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(79, 91, 213, 0.12);
  border: 1px solid rgba(79, 91, 213, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.step { position: relative; padding-top: 20px; border-top: 1px solid var(--hairline); }
.step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 38%; height: 1px;
  background: var(--grad);
}
.step .n {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.12rem; }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; align-items: start; }
.tier {
  background: var(--glass);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(20px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tier:hover { border-color: rgba(79, 91, 213, 0.45); transform: translateY(-3px); }
.tier.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--slate), var(--slate)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  position: relative;
  box-shadow: 0 0 44px rgba(79, 91, 213, 0.16);
}
.badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--grad);
  color: #07070c;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.tier h3 { font-size: 1.32rem; }
.price {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.price span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.tier ul { list-style: none; padding: 0; margin: 22px 0 0; }
.tier li {
  padding: 11px 0 11px 28px;
  position: relative;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
}
.tier li::before {
  content: "";
  position: absolute;
  left: 3px; top: 19px;
  width: 11px; height: 6px;
  border-left: 2px solid var(--emerald);
  border-bottom: 2px solid var(--emerald);
  transform: rotate(-45deg);
}

/* ---------- lists ---------- */
.checklist { list-style: none; padding: 0; margin: 32px 0 0; max-width: 820px; }
.checklist li {
  position: relative;
  padding: 18px 0 18px 42px;
  border-bottom: 1px solid var(--hairline);
  font-size: 1.04rem;
  color: var(--muted);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 6px; top: 26px;
  width: 13px; height: 7px;
  border-left: 2.5px solid var(--indigo-lift);
  border-bottom: 2.5px solid var(--indigo-lift);
  transform: rotate(-45deg);
}
.checklist li strong { display: block; color: var(--text); font-weight: 600; }

.painlist { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 16px; max-width: 840px; }
.painlist li {
  background: var(--glass);
  border: 1px solid var(--hairline);
  border-left: 2px solid transparent;
  border-image: var(--grad) 1;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  font-size: 1.06rem;
  font-style: italic;
  color: #c9c9d6;
  backdrop-filter: blur(16px);
}

.services-list {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-row {
  background: var(--obsidian);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: baseline;
  transition: background 0.2s ease;
}
.service-row:hover { background: var(--slate); }
.service-row h3 { margin: 0; font-size: 1.1rem; }
.service-row p { margin: 0; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  background: var(--glass);
  border: 1px solid var(--hairline);
  border-radius: 30px;
  padding: 9px 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: #c9c9d6;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.chip:hover { border-color: rgba(142, 155, 255, 0.55); color: var(--text); }

/* ---------- FAQ ---------- */
.faq { margin-top: 44px; max-width: 860px; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  font-weight: 600;
  font-size: 1.06rem;
  position: relative;
  transition: color 0.15s ease;
}
.faq summary:hover { color: var(--indigo-lift); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px; top: 18px;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--indigo-lift);
}
.faq details[open] summary::after { content: "\2013"; }
.faq p { color: var(--muted); padding-bottom: 14px; margin: 0; }

/* ---------- quote / placeholder ---------- */
.quote {
  background: var(--glass);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 34px 36px;
  max-width: 800px;
  margin: 40px auto 0;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.quote::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  background: var(--grad);
}
.quote p { font-size: 1.18rem; font-style: italic; color: #dcdce4; }
.quote cite { font-style: normal; font-weight: 600; color: var(--muted); font-size: 0.95rem; }
.placeholder-note {
  background: rgba(240, 180, 41, 0.08);
  border: 1px dashed rgba(240, 180, 41, 0.45);
  border-radius: var(--radius);
  padding: 15px 20px;
  font-size: 0.91rem;
  color: #e3b755;
  max-width: 800px;
  margin: 20px auto 0;
}
.trustbar {
  margin-top: 38px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
}

/* ---------- gradient CTA section ---------- */
.dark {
  background: var(--slate);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
}
.dark::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 1000px; height: 560px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(79, 91, 213, 0.22), transparent 72%);
  filter: blur(40px);
  pointer-events: none;
}
.dark > .wrap { position: relative; z-index: 1; }

/* ---------- footer ---------- */
footer.site {
  background: var(--obsidian);
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  padding: 64px 0 32px;
  font-size: 0.94rem;
}
footer.site a { color: #c9c9d6; text-decoration: none; }
footer.site a:hover { color: var(--indigo-lift); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 38px; }
.foot-grid h4 {
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
.foot-brand {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.24rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
}
.foot-bottom {
  border-top: 1px solid var(--hairline);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .tier:hover { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  section { padding: 90px 0; }
  .hero { padding: 100px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .stats, .cards, .cards.two, .tiers { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: 72px 0; }
  .hero { padding: 80px 0 72px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #0b0b12;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 6px 24px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--hairline); }
  .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
  .btn-row { flex-direction: column; }
}

/* ---------- brand wordmark ---------- */
.brand .bm { display: flex; align-items: baseline; gap: 7px; line-height: 1; }
.brand .bm-main { font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.brand .bm-sub { font-weight: 400; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.01em; }
.foot-brand .bm-main { font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }
.foot-brand .bm-sub { font-weight: 400; color: var(--muted); font-size: 0.86rem; margin-left: 7px; }

/* ---------- proof bar ---------- */
.proofbar { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--slate); padding: 30px 0; }
.proofbar .label {
  font-family: "JetBrains Mono", monospace; font-size: 0.76rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 18px;
}
.proof-items { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; }
.proof-items span {
  font-family: "JetBrains Mono", monospace; font-size: 1rem; color: var(--text);
  padding: 6px 26px; position: relative;
}
.proof-items span + span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 18px; background: var(--hairline);
}
.proof-items em { font-style: normal; color: var(--emerald); }

/* ---------- blueprint flow ---------- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; }
.phase {
  background: var(--glass); border: 1px solid var(--hairline); backdrop-filter: blur(20px);
  padding: 32px 28px; position: relative;
}
.phase:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.phase:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.phase + .phase { border-left: none; }
.phase::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad);
  opacity: 0.35;
}
.phase:nth-child(2)::after { opacity: 0.65; }
.phase:nth-child(3)::after { opacity: 1; }
.phase .pn {
  font-family: "JetBrains Mono", monospace; font-size: 0.74rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--indigo-lift); margin-bottom: 12px;
}
.phase h3 { margin-bottom: 6px; }
.phase .alias {
  font-family: "JetBrains Mono", monospace; font-size: 0.82rem; color: var(--bone);
  opacity: 0.75; margin-bottom: 12px;
}
.phase p { color: var(--muted); margin: 0; font-size: 0.97rem; }
.phase.extra { grid-column: 1 / -1; border-radius: var(--radius); margin-top: 18px; border-left: 1px solid var(--hairline); }

@media (max-width: 940px) {
  .flow { grid-template-columns: 1fr; }
  .phase, .phase:first-child, .phase:last-child { border-radius: var(--radius); }
  .phase + .phase { border-left: 1px solid var(--hairline); margin-top: 14px; }
  .proof-items span { padding: 6px 16px; font-size: 0.92rem; }
  .proof-items span + span::before { display: none; }
}

/* ---------- nav dropdown ---------- */
.nav-item { position: relative; }
.nav-link {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit; font-size: 0.94rem; font-weight: 500; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.15s ease;
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--text); }
.nav-link .caret { font-size: 0.7rem; line-height: 1; }
.menu {
  display: none;
  position: absolute; top: calc(100% + 14px); left: -18px;
  min-width: 268px; padding: 8px;
  background: rgba(14, 14, 22, 0.98);
  border: 1px solid var(--hairline); border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  z-index: 60;
}
.menu.open { display: block; }
@media (hover: hover) and (min-width: 721px) {
  .nav-item:hover .menu { display: block; }
}
.menu a {
  display: block; padding: 11px 14px; border-radius: 8px;
  color: var(--muted); font-size: 0.93rem; text-decoration: none; border: none;
}
.menu a:hover { background: rgba(79, 91, 213, 0.14); color: var(--text); }
.menu a strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.menu a span { font-size: 0.83rem; color: var(--muted); }

/* ---------- pricing tiers (industry pages) ---------- */
.tier .tier-no {
  font-family: "JetBrains Mono", monospace; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--indigo-lift); margin-bottom: 10px;
}
.tier .audience { color: var(--muted); font-size: 0.88rem; margin: 6px 0 0; }
.tier .inherits {
  font-size: 0.88rem; color: var(--bone); opacity: 0.8; margin: 18px 0 0; font-weight: 600;
}
.tier blockquote {
  margin: 20px 0 0; padding: 16px 18px;
  background: rgba(79, 91, 213, 0.08); border-left: 2px solid var(--indigo);
  border-radius: 0 8px 8px 0; font-size: 0.93rem; font-style: italic; color: #c9c9d6;
}
.guarantee {
  margin-top: 18px; padding: 14px 16px;
  border: 1px solid rgba(16, 185, 129, 0.35); border-radius: 8px;
  background: rgba(16, 185, 129, 0.07);
  font-size: 0.88rem; color: #8fe0bd;
}
.guarantee strong { color: var(--emerald); }
.gst-note { margin-top: 26px; font-size: 0.88rem; color: var(--muted); }

/* ---------- industry hub cards ---------- */
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.hub-grid .card { display: flex; flex-direction: column; }
.hub-grid .card p { flex: 1; }
.closer {
  margin-top: 52px; padding: 34px 36px; text-align: center;
  background: var(--glass); border: 1px solid var(--hairline);
  border-radius: var(--radius); backdrop-filter: blur(20px);
}
.closer h3 { margin-bottom: 10px; }
.closer p { color: var(--muted); margin-bottom: 0; }

@media (max-width: 940px) {
  .hub-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-item { width: 100%; }
  .nav-link { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--hairline); justify-content: space-between; }
  .menu {
    position: static; min-width: 0; border: none; background: transparent;
    box-shadow: none; padding: 0 0 0 12px; backdrop-filter: none;
  }
  .menu.open { display: block; }
  .menu a { padding: 11px 0; border-bottom: 1px solid var(--hairline); }
}

/* ---------- proof bar: claim variant ---------- */
.proofbar.claims { padding: 22px 0; }
.proofbar.claims .proof-items span {
  font-family: "Inter", sans-serif; font-size: 0.95rem; color: #c9c9d6;
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px;
}
.proofbar.claims .proof-items svg { flex: 0 0 auto; }

/* ---------- 4-up industry grid ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.grid-4 .card { display: flex; flex-direction: column; padding: 26px 24px; }
.grid-4 .card p { flex: 1; font-size: 0.95rem; }
.grid-4 .card .more { margin-top: 16px; }

/* ---------- footer: four columns ---------- */
.foot-grid.four { grid-template-columns: 1.5fr 1fr 1.2fr 1fr; }
.foot-grid .soon { color: #5d5d6b; }
.foot-cta { margin-top: 26px; }

@media (max-width: 1040px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 940px) { .foot-grid.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) {
  .grid-4 { grid-template-columns: 1fr; }
  .foot-grid.four { grid-template-columns: 1fr; }
}

/* chips used as links */
a.chip { text-decoration: none; color: #c9c9d6; }
a.chip:hover { color: var(--text); border-color: rgba(142, 155, 255, 0.55); }

/* ---------- contact page ---------- */
.contact-hero { padding: 44px 0 72px; }
.contact-hero h1 { font-size: clamp(2.1rem, 3.6vw, 2.9rem); max-width: 14ch; }
.contact-hero .lead { font-size: 1.1rem; }
.contact-hero .hero-grid { grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: start; }
.next-up { margin-top: 26px; }
.next-up .checklist { margin-top: 12px; }
.next-up .checklist li { padding: 11px 0 11px 40px; font-size: 0.96rem; }
.next-up .checklist li::before { top: 19px; }
.form-head { margin-bottom: 20px; }
.form-head h2 { font-size: 1.35rem; margin-bottom: 6px; }
.form-head p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-foot { margin: 14px 0 0; font-size: 0.84rem; color: var(--muted); text-align: center; }

@media (max-width: 940px) {
  .contact-hero { padding: 48px 0 64px; }
  .contact-hero .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-hero h1 { max-width: none; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- form status ---------- */
.form-status {
  margin: 14px 0 0; padding: 12px 14px; border-radius: 8px;
  font-size: 0.9rem; line-height: 1.5;
}
.form-status.ok { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.4); color: #8fe0bd; }
.form-status.err { background: rgba(240, 180, 41, 0.09); border: 1px solid rgba(240, 180, 41, 0.4); color: #e3b755; }
.form-status a { color: inherit; }
