/* MOGHQ public site styles */
:root {
  color-scheme: light;
  --ink: #071527;
  --ink-soft: #334155;
  --muted: #64748b;
  --faint: #94a3b8;
  --paper: #ffffff;
  --wash: #f6f8fc;
  --wash-2: #edf2ff;
  --line: #dbe4f0;
  --blue: #1557ff;
  --blue-deep: #0f3fbf;
  --violet: #6d28d9;
  --cyan: #00a6d6;
  --mint: #49d6a3;
  --navy: #08182f;
  --navy-2: #101f3d;
  --shadow: 0 30px 80px rgba(15, 23, 42, .12);
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, .08);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% -10%, rgba(21, 87, 255, .20), transparent 30rem),
    radial-gradient(circle at 90% 5%, rgba(109, 40, 217, .16), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, #f6f8fc 42%, #ffffff 100%);
  min-height: 100vh;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
img { max-width: 100%; display: block; }

.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 94px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 0 0 7px rgba(21, 87, 255, .09);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7.2vw, 88px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 850;
}
h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 820;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.02;
  letter-spacing: -.035em;
}
p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.lede { max-width: 730px; font-size: clamp(20px, 2.4vw, 25px); line-height: 1.45; color: #3d4b63; }
.small { font-size: 15px; line-height: 1.58; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(219, 228, 240, .72);
  background: rgba(255, 255, 255, .84);
  backdrop-filter: saturate(180%) blur(22px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand-mark {
  width: 190px;
  height: 88px;
  overflow: visible;
  background: transparent;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: none; }
.brand-text strong { display: block; font-size: 18px; letter-spacing: -.035em; }
.brand-text span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 22px; font-size: 14px; font-weight: 750; color: var(--ink-soft); }
.nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--ink); color: white !important; box-shadow: 0 16px 34px rgba(7, 21, 39, .18); }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid #cbd8ea; border-radius: 16px; background: #fff; color: var(--ink); box-shadow: 0 14px 30px rgba(15, 23, 42, .08); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 21px; height: 2px; border-radius: 999px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff !important; background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 18px 46px rgba(21, 87, 255, .30); }
.button-dark { color: #fff !important; background: var(--navy); box-shadow: 0 18px 44px rgba(8, 24, 47, .24); }
.button-secondary { color: var(--blue) !important; background: #fff; border: 1px solid #cbd8ea; box-shadow: var(--shadow-soft); }

.hero { padding: 82px 0 98px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .72fr); gap: 48px; align-items: center; }
.hero-card {
  position: relative;
  min-height: 580px;
  border: 1px solid rgba(203, 216, 234, .92);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.66)),
    radial-gradient(circle at 20% 20%, rgba(21,87,255,.18), transparent 16rem),
    radial-gradient(circle at 85% 25%, rgba(73,214,163,.20), transparent 12rem);
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
}
.map-panel {
  position: absolute;
  inset: 22px;
  border-radius: 30px;
  background: var(--navy);
  overflow: hidden;
  color: white;
}
.map-panel::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    radial-gradient(circle at 35% 35%, rgba(21,87,255,.5), transparent 18rem),
    radial-gradient(circle at 80% 62%, rgba(73,214,163,.35), transparent 14rem);
  background-size: 42px 42px, 42px 42px, auto, auto;
}
.map-content { position: relative; z-index: 1; padding: 30px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.signal-top { display: flex; justify-content: space-between; gap: 14px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.orbit { position: relative; height: 310px; }
.node {
  position: absolute;
  border-radius: 22px;
  padding: 14px 16px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
}
.node strong { display: block; font-size: 16px; margin-bottom: 5px; }
.node span { color: rgba(255,255,255,.68); font-size: 12px; }
.n1 { left: 4%; top: 16%; } .n2 { right: 2%; top: 4%; } .n3 { left: 28%; top: 43%; } .n4 { right: 7%; bottom: 3%; } .n5 { left: 2%; bottom: 10%; }
.center-pulse { position: absolute; left: 50%; top: 51%; transform: translate(-50%, -50%); width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, #fff, #dff7ff); box-shadow: 0 0 0 22px rgba(21,87,255,.14), 0 0 0 48px rgba(73,214,163,.07); }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric { border-radius: 18px; padding: 16px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.16); }
.metric b { display: block; font-size: 22px; letter-spacing: -.03em; }
.metric span { display: block; color: rgba(255,255,255,.62); font-size: 12px; margin-top: 4px; }

.logo-strip { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.strip-item { padding: 16px 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72); color: #475569; font-weight: 800; text-align: center; box-shadow: 0 12px 30px rgba(15, 23, 42, .05); }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.86); box-shadow: 0 18px 48px rgba(15, 23, 42, .07); padding: 28px; }
.card-number { display: inline-flex; margin-bottom: 28px; color: var(--blue); font-weight: 900; font-size: 13px; letter-spacing: .14em; }
.card p { font-size: 16px; }

.dark-section {
  background:
    radial-gradient(circle at 20% 5%, rgba(21,87,255,.35), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(73,214,163,.23), transparent 22rem),
    linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 44px;
  padding: 74px;
  box-shadow: var(--shadow);
}
.dark-section p { color: rgba(255,255,255,.72); }
.dark-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 46px; align-items: start; }
.process { display: grid; gap: 14px; }
.process-step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 20px; border-radius: 22px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); }
.step-num { display: grid; place-items: center; height: 54px; border-radius: 18px; background: rgba(255,255,255,.14); color: #fff; font-weight: 900; }
.process-step h3 { font-size: 21px; color: #fff; }
.process-step p { font-size: 15px; margin-bottom: 0; }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.offer-card { padding: 32px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.offer-card.featured { color: #fff; background: linear-gradient(145deg, var(--navy), #142b5a); border-color: transparent; transform: translateY(-14px); }
.offer-card.featured p, .offer-card.featured li { color: rgba(255,255,255,.74); }
.price { margin: 20px 0 18px; font-size: 42px; line-height: 1; letter-spacing: -.06em; font-weight: 900; }
.price span { color: var(--muted); font-size: 15px; letter-spacing: 0; font-weight: 700; }
.offer-card.featured .price span { color: rgba(255,255,255,.64); }
ul { padding-left: 20px; margin: 18px 0 0; color: var(--muted); line-height: 1.7; }
li + li { margin-top: 7px; }

.products-hero { padding: 82px 0 48px; }
.product-list { display: grid; gap: 28px; max-width: 1040px; margin: 48px auto 0; }
.product-row { display: grid; grid-template-columns: 190px 1fr 300px; gap: 28px; align-items: start; padding: 34px; border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.product-kicker { color: var(--blue); font-weight: 900; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.product-row h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 12px; }
.deliverables { border-radius: 24px; background: var(--wash); padding: 22px; }
.deliverables strong { display: block; margin-bottom: 10px; }
.deliverables ul { margin: 0; font-size: 15px; color: #475569; }
.purchase-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.purchase-strip a, .purchase-link { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 850; box-shadow: 0 16px 32px rgba(12, 22, 41, .16); transition: transform .18s ease, background .18s ease; }
.purchase-strip a { padding: 12px 16px; }
.purchase-link { width: 100%; margin-top: 18px; padding: 12px 14px; }
.purchase-strip a:hover, .purchase-link:hover { transform: translateY(-1px); background: var(--blue); }

.funnel-hero { padding-bottom: 76px; }
.landing-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 42px; align-items: center; }
.funnel-card, .price-card { border: 1px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); padding: 30px; }
.funnel-card strong { display: block; margin-bottom: 14px; font-size: 21px; letter-spacing: -.03em; }
.funnel-card ul { margin: 0; color: #475569; }
.intake-form { align-self: start; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 36px; }
.price-card h2 { margin-bottom: 16px; font-size: clamp(44px, 7vw, 68px); }
.price-card h2 span { color: var(--muted); font-size: 18px; letter-spacing: 0; }
.price-card ul { margin-bottom: 24px; }
.price-card .button { width: 100%; }
.featured-price { border-color: rgba(21,87,255,.32); background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%); box-shadow: 0 26px 70px rgba(21, 87, 255, .13); }

.contact-hero { padding: 82px 0 98px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, .78fr); gap: 46px; align-items: start; }
.contact-notes { display: grid; gap: 14px; margin-top: 36px; }
.contact-notes div { padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.74); box-shadow: var(--shadow-soft); }
.contact-notes strong { display: block; margin-bottom: 7px; font-size: 16px; }
.contact-notes span { display: block; color: var(--muted); line-height: 1.55; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 30px; border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; color: var(--ink-soft); font-size: 13px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #cbd8ea; border-radius: 16px; background: #fff; color: var(--ink); font: inherit; font-size: 16px; padding: 14px 15px; outline: none; }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,87,255,.10); }
.span-full { grid-column: 1 / -1; }
.form-note { margin: -4px 0 0; font-size: 14px; color: var(--muted); }
.form-honey { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.narrow-page { max-width: 860px; }

.cta-band { border-radius: 44px; padding: 72px; color: white; background: linear-gradient(135deg, #08182f, #123c82 58%, #1557ff); box-shadow: var(--shadow); }
.cta-band p { color: rgba(255,255,255,.76); }

.site-footer { padding: 56px 0; color: #5b6b83; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); padding-top: 28px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; font-weight: 750; }

.blog-hero h1 { max-width: 980px; }
.blog-index { max-width: 1120px; }
.blog-section { margin-bottom: 64px; }
.blog-section:last-child { margin-bottom: 0; }
.blog-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; padding-bottom: 18px; margin-bottom: 28px; border-bottom: 1px solid rgba(16, 24, 40, .12); }
.blog-section-heading h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -.04em; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.blog-card { display: flex; flex-direction: column; gap: 14px; min-height: 100%; padding: 22px; border: 1px solid rgba(16, 24, 40, .12); border-radius: 28px; background: rgba(255,255,255,.82); box-shadow: 0 24px 60px rgba(13, 22, 41, .08); color: inherit; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-3px); border-color: rgba(37, 99, 235, .32); box-shadow: 0 30px 72px rgba(13, 22, 41, .12); }
.blog-card-image { margin: -10px -10px 4px; border-radius: 22px; overflow: hidden; aspect-ratio: 16/10; background: #e8eef8; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-kicker { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 850; color: var(--blue); }
.blog-card h3 { margin: 0; font-size: 1.18rem; line-height: 1.15; letter-spacing: -.03em; }
.blog-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.blog-meta { display: flex; justify-content: space-between; gap: 16px; margin-top: auto; color: #667085; font-size: .83rem; font-weight: 700; }
.article-hero { padding: 84px 0 36px; background: linear-gradient(180deg, #f7fbff, #fff); }
.article-container { max-width: 850px; }
.back-link { display: inline-flex; margin-bottom: 28px; color: var(--muted); text-decoration: none; font-weight: 800; }
.back-link:hover { color: var(--ink); }
.article-hero h1 { margin: 0 0 20px; max-width: 860px; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: .96; letter-spacing: -.07em; }
.article-date { justify-content: flex-start; margin-top: 28px; }
.article-image { max-width: 980px; margin: 0 auto; padding: 0 20px; }
.article-image img { display: block; width: 100%; border-radius: 30px; box-shadow: 0 28px 80px rgba(13, 22, 41, .14); }
.article-section { padding-top: 48px; }
.article-content { font-size: 1.05rem; line-height: 1.82; color: #243145; }
.article-content h2 { margin: 2.2em 0 .65em; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.05; letter-spacing: -.045em; color: var(--ink); }
.article-content h3 { margin: 1.7em 0 .55em; font-size: 1.45rem; line-height: 1.15; letter-spacing: -.025em; color: var(--ink); }
.article-content p, .article-content ul, .article-content ol, .article-content table, .article-content pre { margin: 0 0 1.25em; }
.article-content a { color: var(--blue); font-weight: 800; }
.article-content ul, .article-content ol { padding-left: 1.4em; }
.article-content li { margin-bottom: .45em; }
.article-content blockquote { margin: 1.8em 0; padding: 20px 24px; border-left: 4px solid var(--blue); border-radius: 16px; background: #f4f8ff; color: #344054; }
.article-content code { padding: .16em .36em; border-radius: 6px; background: #eef3fb; font-size: .92em; }
.article-content pre { overflow-x: auto; padding: 20px; border-radius: 18px; background: #0d1629; color: #eef4ff; }
.article-content pre code { padding: 0; background: transparent; color: inherit; }
.article-content table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 16px; box-shadow: 0 0 0 1px rgba(16, 24, 40, .12); }
.article-content th, .article-content td { padding: 12px 14px; border: 1px solid rgba(16, 24, 40, .12); text-align: left; vertical-align: top; }
.article-content th { background: #eef4ff; color: var(--ink); }
.article-content hr { margin: 2.4em 0; border: 0; border-top: 1px solid rgba(16, 24, 40, .14); }

.nigel-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.nigel-open-button {
  border: 1px solid rgba(93, 211, 158, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, #133d2a, #1f6b45);
  color: #fff;
  padding: 14px 20px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38), 0 0 0 5px rgba(45, 170, 91, 0.13);
  cursor: pointer;
}

.nigel-open-button:hover,
.nigel-open-button:focus-visible {
  background: linear-gradient(135deg, #1f6b45, #29a760);
  outline: none;
}

.nigel-chat-panel {
  position: fixed;
  right: 20px;
  bottom: 92px;
  width: min(380px, calc(100vw - 32px));
  height: min(550px, calc(100vh - 130px));
  border-radius: 24px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.nigel-chat-panel[hidden] {
  display: none;
}

.nigel-chat-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
  background: #111;
}

.nigel-close-button {
  position: absolute;
  top: -14px;
  right: -12px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 1px solid #2daa5b;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 30px;
  line-height: 34px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero-grid, .dark-grid, .product-row, .contact-grid, .landing-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 520px; }
  .capability-grid, .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card.featured { transform: none; }
  .nav-links { gap: 12px; font-size: 13px; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 74px 0; }
  .nav { min-height: 82px; position: relative; gap: 12px; }
  .brand-mark { width: 148px; height: 68px; }
  .brand-text span { display: none; }
  .nav-toggle { display: inline-flex; position: absolute; right: 0; top: 50%; transform: translateY(-50%); z-index: 3; margin-left: auto; background: var(--ink); color: #fff; border-color: rgba(7, 21, 39, .88); box-shadow: 0 16px 34px rgba(7, 21, 39, .22); }
  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% - 4px);
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(203, 216, 234, .95);
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
    transform-origin: top right;
    transform: translateY(-8px) scale(.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
  .nav-links a { display: flex; align-items: center; min-height: 48px; padding: 0 14px; border-radius: 14px; }
  .nav-links a:hover { background: var(--wash); }
  .nav-links .nav-cta { justify-content: center; margin-top: 6px; }
  .hero { padding-top: 58px; }
  h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero-card { min-height: 560px; border-radius: 28px; }
  .map-panel { inset: 12px; border-radius: 22px; }
  .map-content { padding: 20px; }
  .orbit { height: 350px; }
  .node { padding: 12px; max-width: 185px; }
  .n1 { left: 0; top: 12%; } .n2 { right: 0; top: 0; } .n3 { left: 19%; top: 43%; } .n4 { right: 0; bottom: 4%; } .n5 { left: 0; bottom: 17%; }
  .blog-grid, .hero-metrics, .logo-strip, .capability-grid, .offer-grid, .pricing-grid { grid-template-columns: 1fr; }
  .blog-section-heading { display: block; }
  .article-hero { padding-top: 60px; }
  .dark-section, .cta-band { padding: 34px 22px; border-radius: 30px; }
  .process-step { grid-template-columns: 1fr; }
  .product-row { padding: 24px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .nigel-launcher { right: 14px; bottom: 14px; }
  .nigel-chat-panel { right: 14px; bottom: 82px; width: calc(100vw - 28px); height: min(540px, calc(100vh - 112px)); }
}
