/* Omniscience — site styles
   Single stylesheet, no build step. */

/* ---------- tokens ---------- */
:root {
  --bg:            #07090f;
  --bg-alt:        #0b0e17;
  --surface:       rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --line:          rgba(255, 255, 255, 0.09);
  --line-strong:   rgba(255, 255, 255, 0.16);

  --text:          #e8ecf5;
  --text-dim:      #97a1b5;
  --text-faint:    #667088;

  --accent:        #6ee7d2;
  --accent-deep:   #35b7a4;
  --accent-glow:   rgba(110, 231, 210, 0.22);
  --violet:        #8b7dff;

  --radius:        14px;
  --radius-lg:     22px;
  --wrap:          1140px;

  --ease:          cubic-bezier(.22, .68, .32, 1);

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", "Cascadia Code",
          Consolas, monospace;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 16px; border-radius: 8px;
  background: var(--accent); color: #04120f; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

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

[id] { scroll-margin-top: 88px; }

/* ---------- backdrop ---------- */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
}
.glow--a {
  width: 720px; height: 720px;
  top: -280px; left: 50%;
  transform: translateX(-55%);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}
.glow--b {
  width: 620px; height: 620px;
  top: 46%; right: -220px;
  background: radial-gradient(circle, rgba(139, 125, 255, .16) 0%, transparent 70%);
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: .28;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 10%, transparent 75%);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-mark--sm { width: 22px; height: 22px; }

.ring { fill: none; stroke-width: 2; }
.ring--outer { stroke: var(--line-strong); }
.ring--mid   { stroke: var(--accent); opacity: .85; }
.pupil       { fill: var(--accent); }

.brand:hover .ring--mid { animation: pulse 1.4s var(--ease) infinite; }
@keyframes pulse {
  0%, 100% { opacity: .85; }
  50%      { opacity: .3; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .95rem;
  color: var(--text-dim);
}
.site-nav a { transition: color .2s var(--ease); }
.site-nav a:hover { color: var(--text); }
.site-nav .btn:hover { color: var(--text); }
.site-nav a.is-active { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  position: absolute;
  left: 50%;
  width: 17px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle-bar { top: 50%; margin-top: -.75px; }
.nav-toggle-bar::before { content: ""; top: -6px; }
.nav-toggle-bar::after  { content: ""; top:  6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .95rem;
  font-weight: 550;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), box-shadow .25s var(--ease);
}
.btn--sm { padding: 8px 16px; font-size: .9rem; }

.btn--primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #04140f;
  box-shadow: 0 6px 26px -10px var(--accent);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px -12px var(--accent);
}

.btn--ghost {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text-dim);
}
.btn--ghost:hover {
  background: var(--surface-hover);
  border-color: var(--text-faint);
  transform: translateY(-1px);
}

.btn:active { transform: translateY(0); }

/* ---------- hero ---------- */
.hero {
  padding: clamp(72px, 13vw, 148px) 0 clamp(56px, 8vw, 92px);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(2.6rem, 7.2vw, 5rem);
  margin-bottom: 26px;
}
.accent {
  background: linear-gradient(100deg, var(--accent) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 640px;
  margin-inline: auto;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  color: var(--text-dim);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.hero-note {
  margin-top: 20px;
  font-size: .875rem;
  color: var(--text-faint);
}

.hero .reveal:nth-child(1) { transition-delay: .05s; }
.hero .reveal:nth-child(2) { transition-delay: .15s; }
.hero .reveal:nth-child(3) { transition-delay: .25s; }
.hero .reveal:nth-child(4) { transition-delay: .35s; }
.hero .reveal:nth-child(5) { transition-delay: .45s; }

/* ---------- stats strip ---------- */
.strip {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-alt) 70%, transparent);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-block: 34px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat-num {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.unit { color: var(--accent); font-size: .62em; margin-left: 2px; }
.stat-label {
  font-size: .8rem;
  color: var(--text-faint);
  letter-spacing: .01em;
}

/* ---------- sections ---------- */
.section { padding: clamp(76px, 11vw, 128px) 0; }
.section--alt {
  background: linear-gradient(180deg, transparent, var(--bg-alt) 22%, var(--bg-alt) 78%, transparent);
}

.section-head {
  max-width: 660px;
  margin-bottom: 58px;
}
.section-head h2,
.split-copy h2,
.cta-inner h2 {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  margin-bottom: 18px;
}
.lede { color: var(--text-dim); font-size: 1.08rem; }

/* ---------- cards ---------- */
/* Five research areas: 3 + 2 on desktop, 2 + 2 + 1 on tablet, stacked below. */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: 32px 28px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease),
              background .3s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surface-hover);
  box-shadow: 0 20px 48px -16px rgba(110, 231, 210, 0.08);
}
.card:hover::after { opacity: .7; }

.card-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  margin-bottom: 22px;
}
.card-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p  { color: var(--text-dim); font-size: .97rem; }

/* ---------- split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.split-copy p { color: var(--text-dim); }

.ticks {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.ticks li {
  position: relative;
  padding-left: 32px;
  color: var(--text-dim);
  font-size: .97rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 18px; height: 9px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg) scale(.8);
  transform-origin: center;
}

/* ---------- apps ---------- */
.apps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.app {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, #000 26%, var(--surface));
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.app:hover { transform: translateY(-4px); border-color: var(--line-strong); }

.app-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.app-icon {
  width: 54px; height: 54px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
  transition: transform .3s var(--ease);
}
.app-icon svg {
  width: 27px; height: 27px;
  fill: none;
  stroke: #04140f;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .9;
}
.app-icon--apex     { background: linear-gradient(145deg, #7ff0d8, #2fa894); }
.app-icon--sweep    { background: linear-gradient(145deg, #9d92ff, #5b4bd6); }
.app-icon--meridian { background: linear-gradient(145deg, #f7c887, #d1873a); }

.app:hover .app-icon { transform: scale(1.06); }

.app h3 { font-size: 1.18rem; margin-bottom: 2px; }
.app-tag {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--text-faint);
}
.app-desc {
  color: var(--text-dim);
  font-size: .96rem;
  margin-bottom: 24px;
}

/* store buttons — swap for official Apple/Google badge art before launch */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  padding: 8px 15px 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(0, 0, 0, .35);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.store:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, rgba(0, 0, 0, .35));
}

.store-mark {
  width: 20px; height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.store:last-child .store-mark { fill: currentColor; stroke: none; }

.store-text { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.store-text small  { font-size: .64rem; color: var(--text-faint); letter-spacing: .04em; }
.store-text strong { font-size: .88rem; font-weight: 550; }

.store--soon {
  cursor: pointer;
  opacity: .65;
  transition: border-color .2s var(--ease), background .2s var(--ease), opacity .2s var(--ease);
}
.store--soon:hover {
  opacity: 1;
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, rgba(0, 0, 0, .35));
}

/* ---------- radar scope ---------- */
.split-visual { margin: 0; }

.scope {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 65%),
    color-mix(in srgb, #000 34%, var(--bg-alt));
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .9);
}

.scope svg { width: 100%; height: auto; overflow: visible; }

.scope-grid circle,
.scope-grid line {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1;
  opacity: .55;
}

.scope-sweep {
  transform-origin: 140px 140px;
  animation: sweep 4s linear infinite;
}
.sweep-edge {
  stroke: var(--accent);
  stroke-width: 1.5;
  opacity: .8;
}
@keyframes sweep { to { transform: rotate(360deg); } }

.scope-blips circle {
  fill: var(--accent);
  animation: blip 4s ease-in-out infinite;
}
.scope-blips circle:nth-child(1) { animation-delay: .5s; }
.scope-blips circle:nth-child(2) { animation-delay: 2.6s; }
.scope-blips circle:nth-child(3) { animation-delay: 1.9s; }
.scope-blips circle:nth-child(4) { animation-delay: 3.3s; }
@keyframes blip {
  0%        { opacity: 1; }
  35%, 100% { opacity: .12; }
}

.scope-readout {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--text-faint);
}
.scope-readout span:first-child { color: var(--accent); }

/* ---------- facts ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact {
  background: var(--bg);
  padding: 26px 24px;
}
.fact dt {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.fact dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
}

/* ---------- cta ---------- */
.section--cta { padding-bottom: clamp(88px, 12vw, 140px); }

.cta-inner {
  max-width: 620px;
  text-align: center;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 70%),
    var(--surface);
}
.cta-inner > p { color: var(--text-dim); margin-bottom: 30px; }

.btn--mail {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 14px 30px;
}

.cta-alt {
  margin-top: 22px;
  font-size: .9rem;
  color: var(--text-faint);
}
.cta-alt a {
  color: var(--text-dim);
  border-bottom: 1px solid var(--line-strong);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.cta-alt a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px -16px rgba(0, 0, 0, .7);
  color: var(--text);
  font-size: .94rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
  pointer-events: none;
}
.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast-icon {
  width: 22px; height: 22px;
  flex: none;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--accent);
}
.toast-text {
  color: var(--text-dim);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .toast {
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(20px);
    bottom: 20px;
  }
  .toast.is-visible {
    transform: translateX(0) translateY(0);
  }
  .toast-text { white-space: normal; }
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  font-size: .9rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 550;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--text-dim);
}
.footer-nav a:hover { color: var(--text); }
.copyright { color: var(--text-faint); }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .21s; }
.reveal:nth-child(5) { transition-delay: .28s; }
.reveal:nth-child(6) { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .brand:hover .ring--mid { animation: none; }
  .btn:hover, .card:hover, .app:hover { transform: none; }
  .app:hover .app-icon { transform: none; }
  .scope-sweep { animation: none; transform: rotate(35deg); }
  .scope-blips circle { animation: none; opacity: .85; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-visual { order: -1; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 26px 8px; }
  .stat:nth-child(odd) { border-left: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  body.nav-open { overflow: hidden; }

  .nav-toggle { display: block; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), visibility .22s var(--ease);
    -webkit-tap-highlight-color: transparent;
  }
  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 24px 22px;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease),
                visibility .22s var(--ease);
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav a { padding: 11px 0; }
  .site-nav .btn { margin-top: 8px; justify-content: center; }

  .footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .strip-inner { grid-template-columns: 1fr; }
  .stat { border-left: none !important; }
  .hero-actions .btn { width: 100%; }
}
