:root {
  --bg: #080b14;
  --panel: rgba(10, 14, 26, 0.74);
  --card: rgba(15, 20, 35, 0.82);
  --card-solid: #0d1322;
  --line: rgba(233, 235, 242, 0.12);
  --hair: rgba(233, 235, 242, 0.09);
  --text: #e9ebf2;
  --text-soft: #d9dce6;
  --muted: #8a91a6;
  --muted-hi: #b4bacd;
  --dim: #7e869c;
  --accent: #3e9bf0;
  --accent-hi: #6fb6f5;
  --accent-soft: #8fc6f7;
  --warn: #e08a6b;
  --radius: 12px;
  --radius-lg: 14px;
  --wrap: 1180px;
  --pad: 32px;
  --font-body: "Instrument Sans", Helvetica, Arial, sans-serif;
  --font-head: "Archivo", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(34px, 5.4vw, 60px); line-height: 1.03; font-weight: 700; }
h2 { font-size: clamp(27px, 3.6vw, 42px); line-height: 1.08; font-weight: 700; }
h3 { font-size: 19px; font-weight: 600; line-height: 1.25; }

p { margin: 0; text-wrap: pretty; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--accent-hi); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: #9bcffa; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-hi);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: #06121f;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- ambient background ---------- */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 235, 242, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 235, 242, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 75%);
}
.ambient__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
}
.ambient__glow--a {
  top: -18%; left: -12%; width: 62vw; height: 62vw;
  background: radial-gradient(circle, rgba(62, 155, 240, 0.13), transparent 62%);
  animation: driftA 34s ease-in-out infinite;
}
.ambient__glow--b {
  bottom: -22%; right: -14%; width: 56vw; height: 56vw;
  background: radial-gradient(circle, rgba(120, 150, 240, 0.1), transparent 62%);
  animation: driftB 44s ease-in-out infinite;
}
@keyframes driftA {
  0%, 100% { transform: translate3d(-4%, -2%, 0) scale(1); }
  50% { transform: translate3d(6%, 4%, 0) scale(1.12); }
}
@keyframes driftB {
  0%, 100% { transform: translate3d(3%, 3%, 0) scale(1.08); }
  50% { transform: translate3d(-5%, -4%, 0) scale(1); }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 20, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
  box-shadow: inset 0 1px 0 rgba(62, 155, 240, 0.35);
}
.site-header__bar {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 74px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { flex-shrink: 0; display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; align-items: center; gap: 24px; font-size: 14.5px; font-weight: 500; }
.primary-nav a { color: #a8aec2; }
.primary-nav a:hover { color: var(--text); }
.primary-nav a.is-active { color: var(--accent-soft); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid rgba(233, 235, 242, 0.22);
  color: var(--text);
  font: 500 14.5px/1 var(--font-body);
  padding: 11px 14px;
  border-radius: 7px;
  cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 4px; width: 16px; }
.nav-toggle__bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:last-child { transform: translateY(-2.5px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--hair);
  background: rgba(10, 14, 26, 0.97);
  padding: 8px var(--pad) 18px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { display: grid; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--hair);
}
.mobile-nav li:last-child a { border-bottom: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  padding: 17px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn--primary { background: var(--accent); color: #06121f; }
.btn--primary:hover { background: var(--accent-hi); color: #06121f; }
.btn--ghost {
  border-color: rgba(233, 235, 242, 0.22);
  color: var(--text);
  font-weight: 500;
  background: none;
}
.btn--ghost:hover { border-color: rgba(233, 235, 242, 0.45); background: rgba(233, 235, 242, 0.04); color: var(--text); }
.btn--sm { font-size: 14.5px; padding: 11px 18px; }
.btn--block { width: 100%; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(62, 155, 240, 0.35);
  background: rgba(62, 155, 240, 0.08);
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
.lead { font-size: clamp(17px, 1.5vw, 18px); line-height: 1.55; color: var(--muted-hi); }
.sub { font-size: 16px; line-height: 1.55; color: var(--muted); }
.fineprint { font-family: var(--font-mono); font-size: 13px; color: var(--dim); line-height: 1.6; }
.muted { color: var(--muted); }
.tag { font-family: var(--font-mono); font-size: 12px; color: var(--accent-soft); margin-bottom: 12px; }
.tag--warn { color: var(--warn); }

.band { position: relative; z-index: 1; border-bottom: 1px solid var(--hair); padding: 88px 0; }
.band--panel { background: var(--panel); }
.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head .lead { margin-top: 18px; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--proof { grid-template-columns: 1.15fr 0.85fr; margin-bottom: 20px; }
.stack { display: grid; gap: 20px; }

/* ---------- cards ---------- */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 24px;
}
.card h3 { margin-bottom: 9px; }
.card p { font-size: 15px; line-height: 1.55; color: var(--muted); }
.card--accent { border-color: rgba(62, 155, 240, 0.3); background: rgba(62, 155, 240, 0.05); }
.card--accent p { color: var(--text-soft); font-size: 16px; }
.card--accent strong { color: var(--text); font-weight: 600; }
.card--wide { grid-column: span 2; }
.card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--media img { width: 100%; height: 210px; object-fit: cover; }
.card__body { padding: 24px; }
.card--stat { background: var(--panel); }
.card--stat .stat {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  line-height: 1.1;
}
.card--stat p:last-child { font-size: 14.5px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.5) contrast(1.05);
}
.hero__scrim { position: absolute; inset: 0; pointer-events: none; }
.hero__scrim--side {
  background: linear-gradient(90deg, rgba(8, 11, 20, 0.97) 0%, rgba(8, 11, 20, 0.93) 38%, rgba(8, 11, 20, 0.7) 72%, rgba(8, 11, 20, 0.58) 100%);
}
.hero__scrim--fade {
  background: linear-gradient(180deg, rgba(8, 11, 20, 0.55) 0%, transparent 22%, transparent 60%, rgba(8, 11, 20, 0.95) 100%);
}
.hero__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.95;
}
.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 96px var(--pad) 88px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 600px; margin-bottom: 16px; font-size: clamp(17px, 1.7vw, 20px); }
.hero .sub { max-width: 540px; margin-bottom: 34px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 22px; }

.assessment-card {
  border-color: rgba(233, 235, 242, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 28, 0.9);
  backdrop-filter: blur(6px);
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.assessment-card .eyebrow { margin-bottom: 18px; }
.checklist li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(233, 235, 242, 0.08);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  margin-top: 7px;
}
.checklist h3 { grid-column: 2; font-size: 15.5px; margin-bottom: 3px; }
.checklist p { grid-column: 2; font-size: 14px; }
.card__foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(233, 235, 242, 0.08);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- trust strip ---------- */
.trust { padding: 44px 0; background: var(--panel); }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 44px; justify-content: space-between; }
.trust__head { max-width: 250px; }
.trust__head .eyebrow { margin-bottom: 8px; }
.trust__title { font-family: var(--font-head); font-size: 19px; font-weight: 600; line-height: 1.25; letter-spacing: -0.02em; }
.logo-wall { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.plaque {
  height: 92px;
  padding: 0 26px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.plaque img { height: 60px; width: auto; }
.plaque--text {
  background: none;
  box-shadow: none;
  border: 1px solid rgba(233, 235, 242, 0.14);
  max-width: 250px;
  padding: 0 22px;
  font-size: 14px;
  line-height: 1.4;
  color: #a8aec2;
  font-weight: 500;
}
.plaque--inline {
  display: inline-flex;
  height: 96px;
  align-self: flex-start;
  margin-bottom: 22px;
}
.plaque--inline img { height: 64px; }

/* ---------- lists ---------- */
.arrow-list { display: grid; gap: 12px; margin-bottom: 28px; }
.arrow-list li { display: flex; gap: 11px; font-size: 16px; color: var(--text); }
.arrow-list li::before { content: "\2192"; color: var(--accent); font-weight: 600; }

.rule-list { display: grid; gap: 18px; margin-top: 26px; }
.rule-list li { border-left: 2px solid var(--accent); padding-left: 18px; display: grid; gap: 4px; }
.rule-list strong { font-size: 16.5px; font-weight: 600; }
.rule-list span { font-size: 15px; line-height: 1.5; color: var(--muted); }

.mark-list { display: grid; gap: 14px; }
.mark-list li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; }
.mark-list li::before { flex-shrink: 0; }
.mark-list--yes li { color: var(--text-soft); }
.mark-list--yes li::before { content: "\2713"; color: var(--accent); }
.mark-list--no li { color: var(--muted); }
.mark-list--no li::before { content: "\2715"; color: #6e7690; }
.fit-title { font-size: 20px; margin-bottom: 20px; color: #a8aec2; }
.fit-title--yes { color: var(--accent-soft); }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--dim);
  margin: 26px 0;
}
.pill-list li + li::before { content: "\00b7"; margin-right: 26px; color: #4c5468; }

/* ---------- services split ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.split__sticky { position: sticky; top: 110px; }
.split__sticky h2 { margin-bottom: 18px; }
.split__sticky .lead { margin-bottom: 26px; }
.service-grid { gap: 14px; }
.service-grid .card { padding: 22px; }
.service-grid h3 { font-size: 17px; margin-bottom: 8px; }
.service-grid p { font-size: 14.5px; }

/* ---------- testimonials ---------- */
.testimonial { display: flex; flex-direction: column; margin: 0; padding: 28px; }
.testimonial--lead { padding: 32px; }
.testimonial blockquote {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
}
.testimonial--lead blockquote { font-size: 19px; margin-bottom: 22px; }
.byline { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.byline span { display: grid; }
.byline strong { font-size: 15px; font-weight: 600; }
.byline small { font-size: 13.5px; color: var(--muted); }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(62, 155, 240, 0.14);
  border: 1px solid rgba(62, 155, 240, 0.3);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-soft);
  flex-shrink: 0;
}
.stats { margin-top: 20px; }

/* ---------- steps ---------- */
.steps .card { padding: 28px; }
.steps h3 { font-size: 21px; margin-bottom: 10px; }
.steps p { font-size: 15.5px; }
.step-num {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #06121f;
  background: var(--accent);
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* ---------- why ---------- */
.why { align-items: center; gap: 56px; }
.founder { margin: 0; border-radius: var(--radius-lg); }
.founder img { height: 380px; object-position: center 25%; border-bottom: 1px solid rgba(233, 235, 242, 0.1); }
.founder .card__body { padding: 22px; }
.founder strong { font-size: 16px; font-weight: 600; display: block; margin-bottom: 4px; }
.founder p { font-size: 14.5px; }

/* ---------- offer + form ---------- */
.offer { overflow: hidden; border-bottom: 0; }
.offer__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 460px at 50% 120%, rgba(62, 155, 240, 0.18), transparent 70%);
  pointer-events: none;
}
.offer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.offer__copy h2 { margin-bottom: 20px; font-size: clamp(30px, 4vw, 50px); }
.offer__direct { display: flex; flex-wrap: wrap; gap: 12px; }
.booking-embed {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.booking-embed .eyebrow { margin-bottom: 12px; }
.booking-embed iframe { max-width: 100%; border: 0; border-radius: var(--radius); }

.contact-form { padding: 28px; display: grid; gap: 16px; }
.contact-form .eyebrow { margin-bottom: 0; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 14px; font-weight: 500; color: var(--muted-hi); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text);
  background: rgba(8, 11, 20, 0.6);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(233, 235, 242, 0.24); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); outline-offset: 1px; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% + 1px), calc(100% - 14px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.field__error { font-size: 13px; color: #f0a08a; display: none; }
.field.has-error input,
.field.has-error textarea { border-color: #c9705a; }
.field.has-error .field__error { display: block; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { font-size: 14.5px; line-height: 1.5; display: none; }
.form-status.is-visible { display: block; }
.form-status.is-ok { color: var(--accent-soft); }
.form-status.is-error { color: #f0a08a; }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--hair); background: var(--panel); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 30px;
}
.site-footer__logo { height: 34px; width: auto; margin-bottom: 16px; }
.site-footer p { font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 340px; }
.site-footer .eyebrow { margin-bottom: 14px; }
.link-list { display: grid; gap: 9px; font-size: 15px; }
.link-list a { color: var(--text); }
.link-list a:hover { color: var(--accent-hi); }
.site-footer__bar {
  border-top: 1px solid rgba(233, 235, 242, 0.08);
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 13.5px;
  color: #6e7690;
}
.site-footer__bar p { font-size: 13.5px; color: #6e7690; }
.social { display: flex; gap: 18px; }
.social a { color: var(--muted); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal, .reveal.is-static { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__sticky { position: static; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--proof { grid-template-columns: 1fr; }
  .offer__inner { grid-template-columns: 1fr; gap: 40px; }
  .primary-nav ul { gap: 16px; font-size: 13px; }
  .hero__inner { gap: 40px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 84px; }
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 72px; }
  .why { grid-template-columns: 1fr; }
  .founder img { height: 320px; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  .band { padding: 56px 0; }
  .grid--2, .grid--3, .grid--4, .grid--proof, .site-footer__grid { grid-template-columns: 1fr; }
  .card--wide { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .hero__inner { padding-top: 56px; padding-bottom: 60px; }
  .actions { gap: 10px; }
  .actions .btn, .offer__direct .btn { width: 100%; }
  .plaque { height: 76px; padding: 0 18px; }
  .plaque img { height: 46px; }
  .plaque--inline { height: 80px; }
  .plaque--inline img { height: 52px; }
  .card--media img { height: 190px; }
  .trust__head { max-width: none; }
  .site-footer__grid { padding-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ambient__glow { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

@media print {
  .ambient, .hero__network, .hero__photo, .site-header, .mobile-nav { display: none; }
  body { background: #fff; color: #000; }
}
