:root {
  --paper: #f5f6f4;
  --surface: #ffffff;
  --ink: #111a20;
  --muted: #5c666c;
  --line: #d8d9d5;
  --accent: #c94f32;
  --accent-dark: #9d3722;
  --night: #0c1b24;
  --night-soft: #152a35;
  --max: 1240px;
  --radius: 8px;
  --shadow: 0 24px 70px rgb(20 31 37 / 12%);
  --ease: cubic-bezier(.22, .8, .24, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .65rem 1rem;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(244 243 239 / 94%);
  border-bottom: 1px solid rgb(17 26 32 / 10%);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(calc(100% - 2.5rem), var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; font-weight: 700; }
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-family: "Segoe UI", "Yu Gothic UI", sans-serif;
  font-size: 1.05rem;
}
.brand-name { font-family: "Segoe UI", "Yu Gothic UI", sans-serif; font-size: 1.12rem; }
.site-nav { display: flex; align-items: center; gap: 1.55rem; }
.site-nav a { color: #354148; font-size: .92rem; font-weight: 600; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--accent-dark); }
.nav-cta { padding: .55rem .9rem; border: 1px solid var(--ink); }
.nav-cluster { position: relative; display: flex; align-items: center; min-height: 72px; }
.nav-cluster > a { display: flex; align-items: center; min-height: 72px; }
.nav-cluster > a::after { margin-left: .38rem; content: "+"; color: #788287; font-size: .8rem; }
.nav-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: 360px;
  padding: 1.3rem 1.4rem;
  background: var(--surface);
  border-top: 3px solid var(--accent);
  box-shadow: 0 8px 20px rgb(17 26 32 / 14%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, .6rem);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-cluster:hover .nav-panel, .nav-cluster:focus-within .nav-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-panel small { display: block; margin-bottom: .55rem; color: var(--muted); font-size: .72rem; font-weight: 700; }
.nav-panel a { display: block; padding: .7rem 0; border-top: 1px solid var(--line); color: var(--ink); line-height: 1.35; }
.nav-panel a span { display: block; margin-top: .18rem; color: var(--muted); font-size: .75rem; font-weight: 400; }
.nav-search {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav-search::before { width: 15px; height: 15px; border: 2px solid currentColor; border-radius: 50%; content: ""; transform: translate(-2px, -2px); }
.nav-search::after { position: absolute; right: 9px; bottom: 10px; width: 7px; height: 2px; background: currentColor; content: ""; transform: rotate(45deg); }
.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.menu-button span { position: relative; }
.menu-button span::before { position: absolute; top: -7px; }
.menu-button span::after { position: absolute; top: 7px; }
.menu-button[aria-expanded="true"] span { background: transparent; }
.menu-button[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  height: calc(82dvh - 72px);
  max-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
  color: white;
}
.hero-media,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -2; object-fit: cover; object-position: center 46%; transform: scale(1.015); }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgb(5 16 23 / 90%) 0%, rgb(5 16 23 / 66%) 48%, rgb(5 16 23 / 18%) 100%); }
.hero-home { background-image: none; }
.hero-miraos { background-image: url("../miraos/assets/miraos-communication-hub.png"); }
.hero-inner {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  padding: 4rem 0 3.5rem;
}
.hero-copy { max-width: 780px; }
.eyebrow { margin: 0 0 1.15rem; color: #f2a58f; font-size: .78rem; font-weight: 700; }
h1, h2, h3 { margin-top: 0; font-family: "Segoe UI", "Yu Gothic UI", sans-serif; letter-spacing: 0; }
h1 { max-width: 900px; margin-bottom: .35rem; font-size: 6.5rem; line-height: .95; text-wrap: balance; }
.hero-home h1 { max-width: 800px; font-size: 7rem; font-weight: 680; }
.hero-statement { margin: 0 0 1.1rem; font-size: 1.7rem; font-weight: 650; }
.hero-lead { max-width: 650px; margin: 0; color: rgb(255 255 255 / 82%); font-size: 1.08rem; line-height: 1.8; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .72rem 1.15rem;
  border: 1px solid transparent;
  background: var(--accent);
  color: white;
  font-weight: 700;
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}
.button:hover { background: var(--accent-dark); transform: translateY(-2px); }
.button:active { transform: translateY(1px); }
.button-secondary { border-color: rgb(255 255 255 / 55%); background: transparent; }
.button-secondary:hover { border-color: white; background: rgb(255 255 255 / 10%); }
.button-dark { background: var(--ink); }
.button-dark:hover { background: #29363d; }
.hero-foot {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 24%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.hero-foot strong { display: block; font-size: .95rem; }
.hero-foot span { color: rgb(255 255 255 / 66%); font-size: .84rem; }

.section { padding: 7rem 0; }
.section-compact { padding: 4.5rem 0; }
.container { width: min(calc(100% - 2.5rem), var(--max)); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 3.2rem; }
.section-heading h2 { margin-bottom: 1rem; font-size: 4rem; line-height: 1.08; text-wrap: balance; }
.section-heading p { max-width: 65ch; margin: 0; color: var(--muted); font-size: 1.04rem; }
.offer-explorer { background: var(--surface); border-bottom: 1px solid var(--line); }
.offer-explorer-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding: 2.4rem 0 1.5rem; }
.offer-explorer-head h2 { margin: .3rem 0 0; font-size: 2rem; line-height: 1.2; }
.offer-label { margin: 0; color: var(--accent-dark); font-size: .78rem; font-weight: 700; }
.offer-tabs { display: grid; grid-template-columns: 1fr 1fr; min-width: 390px; border-bottom: 1px solid var(--line); }
.offer-tabs button { min-height: 48px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: var(--muted); cursor: pointer; font-weight: 700; }
.offer-tabs button[aria-selected="true"] { border-bottom-color: var(--accent); color: var(--ink); }
.offer-panel { border-top: 1px solid var(--line); }
.offer-row { display: grid; grid-template-columns: 150px minmax(220px, .8fr) minmax(300px, 1.2fr) 24px; gap: 1.5rem; align-items: center; min-height: 76px; border-bottom: 1px solid var(--line); transition: background-color .2s var(--ease), padding .2s var(--ease); }
.offer-row:hover { padding-inline: .8rem; background: #eef3f1; }
.offer-row span { color: var(--accent-dark); font-size: .78rem; font-weight: 700; }
.offer-row strong { font-size: 1rem; }
.offer-row small { color: var(--muted); font-size: .88rem; }
.offer-row b { color: var(--accent-dark); font-weight: 700; }
.band { background: var(--surface); }
.band-dark { background: var(--night); color: white; }
.band-dark .section-heading p, .band-dark .muted { color: rgb(255 255 255 / 68%); }

.manifesto { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: 5rem; align-items: end; }
.manifesto h2 { margin: 0; font-size: 4.7rem; line-height: 1.1; text-wrap: balance; }
.manifesto p { margin: 0; color: var(--muted); }

.image-story {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
  color: white;
}
.image-story-media,
.image-story-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.image-story-media { object-fit: cover; object-position: center 42%; }
.image-story-shade { background: linear-gradient(90deg, rgb(7 20 28 / 92%) 0%, rgb(7 20 28 / 62%) 48%, rgb(7 20 28 / 12%) 100%); }
.image-story-copy { position: relative; z-index: 1; padding-bottom: 4.5rem; }
.image-story-copy h2 { max-width: 780px; margin-bottom: 1.2rem; font-size: 5rem; line-height: 1.06; text-wrap: balance; }
.image-story-copy > p:last-child { max-width: 620px; margin: 0; color: rgb(255 255 255 / 78%); font-size: 1.08rem; }

.human-decision { background: var(--night); color: white; }
.human-decision-layout { display: grid; grid-template-columns: 180px minmax(0, 1.3fr) minmax(260px, .7fr); gap: 3rem; align-items: end; }
.human-decision-layout .eyebrow { align-self: start; }
.human-decision-layout h2 { margin: 0; font-size: 4.6rem; line-height: 1.08; }
.human-decision-layout > p:last-child { margin: 0; color: rgb(255 255 255 / 68%); }

.path-list { border-top: 1px solid var(--line); }
.path {
  min-height: 176px;
  padding: 1.65rem 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.path-number { color: var(--accent-dark); font-size: .82rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.path h3 { margin-bottom: .65rem; font-size: 1.55rem; }
.path p { max-width: 44ch; margin: 0; color: var(--muted); }
.path-link { color: var(--accent-dark); font-weight: 700; white-space: nowrap; }
.path-status { justify-self: end; padding: .35rem .55rem; background: #e5e8e6; color: #586369; font-size: .76rem; font-weight: 700; }

.portfolio-list { border-top: 1px solid var(--line); }
.portfolio-row {
  display: grid;
  grid-template-columns: 2fr 3fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}
.portfolio-row h3 { margin: 0; font-size: 1.15rem; }
.portfolio-row p { margin: 0; color: var(--muted); }
.text-link { color: var(--accent-dark); font-weight: 700; white-space: nowrap; }

.proof-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 4rem; align-items: center; }
.proof-copy h2 { margin-bottom: 1rem; font-size: 3.7rem; line-height: 1.1; }
.proof-copy p { color: var(--muted); }
.proof-figure { margin: 0; background: var(--night); box-shadow: var(--shadow); }
.proof-figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }
.proof-figure figcaption { padding: .85rem 1rem; color: rgb(255 255 255 / 65%); font-size: .8rem; }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { padding: 1.5rem 1.5rem 0 0; counter-increment: steps; }
.step + .step { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.step::before { display: block; margin-bottom: 2.5rem; color: var(--accent-dark); content: "0" counter(steps); font-variant-numeric: tabular-nums; font-weight: 700; }
.step h3 { margin-bottom: .6rem; }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

.notice { padding: 1.5rem; border-left: 4px solid var(--accent); background: #ecebe7; color: #3e484e; }
.notice strong { color: var(--ink); }

.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 340px); gap: 4rem; align-items: start; }
.legal-prose { max-width: 780px; }
.legal-prose h2 { margin: 2.6rem 0 .65rem; font-size: 1.25rem; }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p, .legal-prose li { color: var(--muted); }
.legal-prose ul { padding-left: 1.25rem; }
.legal-summary { position: sticky; top: 104px; padding: 1.5rem; border: 1px solid var(--line); background: var(--surface); }
.legal-summary strong { display: block; margin-bottom: .6rem; }
.legal-summary p { margin: 0; color: var(--muted); font-size: .9rem; }
.legal-table { width: 100%; border-collapse: collapse; background: var(--surface); }
.legal-table th, .legal-table td { padding: 1.15rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.legal-table th { width: 30%; color: var(--ink); font-size: .88rem; }
.legal-table td { color: var(--muted); }

.lp-hero { padding: 7rem 0 5rem; background: var(--night); color: white; }
.lp-hero h1 { font-size: 5.25rem; }
.lp-hero .hero-lead { max-width: 720px; }
.lp-facts { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgb(255 255 255 / 25%); }
.lp-fact { padding: 1.4rem 1.4rem 0 0; }
.lp-fact + .lp-fact { padding-left: 1.4rem; border-left: 1px solid rgb(255 255 255 / 25%); }
.lp-fact strong { display: block; font-size: 1.25rem; }
.lp-fact span { color: rgb(255 255 255 / 65%); font-size: .85rem; }

.service-split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 5rem; }
.service-split h2 { font-size: 3.5rem; line-height: 1.12; }
.service-list { border-top: 1px solid var(--line); }
.service-item { padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.service-item h3 { margin-bottom: .35rem; }
.service-item p { margin: 0; color: var(--muted); }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.price { padding: 2rem; background: var(--surface); border-top: 4px solid var(--accent); }
.price h3 { margin-bottom: .4rem; }
.price-value { margin: 1.5rem 0; font-size: 2rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.price p { color: var(--muted); }

.company-grid { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: 5rem; }
.company-grid h2 { font-size: 3.6rem; line-height: 1.15; }
.definition-list { margin: 0; border-top: 1px solid var(--line); }
.definition-list div { display: grid; grid-template-columns: 180px 1fr; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.definition-list dt { color: var(--muted); }
.definition-list dd { margin: 0; }

.cta-band { padding: 5rem 0; background: var(--accent); color: white; }
.cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.cta-inner h2 { max-width: 750px; margin: 0; font-size: 4rem; line-height: 1.08; text-wrap: balance; }
.cta-inner .button { flex: 0 0 auto; background: var(--ink); }

.site-footer { padding: 3.5rem 0 2rem; background: var(--night); color: white; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding-bottom: 3rem; }
.footer-brand p { max-width: 34ch; color: rgb(255 255 255 / 60%); font-size: .88rem; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-nav strong { display: block; margin-bottom: .8rem; font-size: .85rem; }
.footer-nav a { display: block; margin: .45rem 0; color: rgb(255 255 255 / 62%); font-size: .85rem; }
.footer-nav a:hover { color: white; }
.footer-bottom { padding-top: 1.25rem; border-top: 1px solid rgb(255 255 255 / 16%); color: rgb(255 255 255 / 45%); font-size: .78rem; }

.site-search-overlay { position: fixed; inset: 0; z-index: 80; display: none; place-items: start center; padding: 8vh 1rem 1rem; background: rgb(5 16 23 / 72%); }
.site-search-overlay.is-open { display: grid; }
.site-search-dialog { width: min(760px, 100%); max-height: 84vh; overflow: auto; padding: 1.6rem; background: var(--surface); box-shadow: 0 8px 20px rgb(0 0 0 / 22%); }
.site-search-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.site-search-head h2 { margin: 0; font-size: 1.35rem; }
.site-search-close { width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; font-size: 1.35rem; }
.site-search-input { width: 100%; min-height: 54px; padding: 0 1rem; border: 1px solid #8b9499; background: #fff; color: var(--ink); }
.site-search-results { margin-top: 1rem; border-top: 1px solid var(--line); }
.site-search-result { display: grid; grid-template-columns: 150px 1fr auto; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.site-search-result span { color: var(--accent-dark); font-size: .75rem; font-weight: 700; }
.site-search-result small { color: var(--muted); }
.site-search-empty { padding: 1.4rem 0; color: var(--muted); }

.reveal { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .menu-button { display: grid; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 1.25rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .site-nav .nav-cluster { display: block; min-height: 0; }
  .nav-cluster > a { min-height: 0; }
  .nav-cluster > a::after, .nav-panel, .nav-search { display: none; }
  h1, .hero-home h1 { font-size: 5rem; }
  .lp-hero h1 { font-size: 4rem; line-height: 1.02; }
  .section-heading h2, .manifesto h2, .human-decision-layout h2 { font-size: 3.6rem; }
  .manifesto, .human-decision-layout, .proof-layout, .service-split, .company-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .legal-summary { position: static; }
  .path { grid-template-columns: 56px minmax(0, 1fr); }
  .path-link { grid-column: 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { padding-left: 0; border-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .offer-explorer-head { align-items: stretch; flex-direction: column; }
  .offer-tabs { min-width: 0; width: 100%; }
  .offer-row { grid-template-columns: 130px minmax(0, 1fr) 24px; gap: 1rem; }
  .offer-row small { grid-column: 2; }
  .offer-row b { grid-column: 3; grid-row: 1 / 3; }
}

@media (max-width: 640px) {
  .nav-shell, .hero-inner, .container { width: min(calc(100% - 2rem), var(--max)); }
  .hero { min-height: 610px; height: calc(86dvh - 72px); background-position: 66% top; }
  .hero-media { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgb(5 16 23 / 96%) 0%, rgb(5 16 23 / 72%) 58%, rgb(5 16 23 / 28%) 100%); }
  .hero-inner { padding: 3rem 0 2rem; }
  h1, .hero-home h1 { font-size: 4rem; }
  .lp-hero { padding: 5rem 0 3.5rem; }
  .lp-hero h1 { font-size: 3rem; line-height: 1.08; }
  .hero-statement { font-size: 1.35rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: 1.35rem; }
  .hero-actions .button { width: 100%; min-height: 52px; padding-inline: .75rem; }
  .hero-foot, .lp-facts { grid-template-columns: 1fr; gap: .8rem; }
  .lp-fact + .lp-fact { padding-left: 0; border-left: 0; }
  .section { padding: 5rem 0; }
  .section-heading { margin-bottom: 2.2rem; }
  .section-heading h2, .manifesto h2, .human-decision-layout h2, .proof-copy h2, .service-split h2, .company-grid h2, .cta-inner h2 { font-size: 2.45rem; }
  .image-story { min-height: 520px; }
  .image-story-media { object-position: 59% center; }
  .image-story-shade { background: linear-gradient(0deg, rgb(7 20 28 / 96%) 0%, rgb(7 20 28 / 58%) 72%, rgb(7 20 28 / 22%) 100%); }
  .image-story-copy { padding-bottom: 3rem; }
  .image-story-copy h2 { font-size: 2.65rem; }
  .path { min-height: 0; grid-template-columns: 42px minmax(0, 1fr); gap: 1rem; padding: 1.4rem 0; }
  .portfolio-row { grid-template-columns: 1fr; gap: .45rem; }
  .steps, .price-grid { grid-template-columns: 1fr; }
  .step, .step + .step, .step:nth-child(3) { padding: 1.5rem 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .step::before { margin-bottom: 1rem; }
  .definition-list div { grid-template-columns: 1fr; gap: .3rem; }
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; }
  .legal-table tr { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .legal-table th, .legal-table td { width: auto; padding: .25rem 1rem; border: 0; }
  .cta-inner { display: block; }
  .cta-inner .button { width: 100%; margin-top: 2rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .offer-explorer-head { padding-top: 1.8rem; }
  .offer-explorer-head h2 { font-size: 1.55rem; }
  .offer-tabs { grid-template-columns: 1fr; }
  .offer-row { grid-template-columns: 1fr 24px; gap: .25rem 1rem; padding: 1rem 0; }
  .offer-row span, .offer-row strong, .offer-row small { grid-column: 1; }
  .offer-row b { grid-column: 2; grid-row: 1 / 4; }
  .offer-row:hover { padding-inline: 0; }
  .path-status { grid-column: 2; justify-self: start; }
  .site-search-result { grid-template-columns: 1fr auto; gap: .25rem .75rem; }
  .site-search-result span { grid-column: 1; }
  .site-search-result small { grid-column: 1; }
  .site-search-result b { grid-column: 2; grid-row: 1 / 3; }
}

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