/* =====================================================================
   GTRAY HOME 2026 — full bleed dark landing.
   Loaded only on the homepage. Everything is scoped to .h26 except the
   handful of body.dash-route overrides below, which undo the old app
   shell layout (fixed viewport height, internal scrolling, light page)
   while leaving the shared modal / drawer / loader styling intact.
   ===================================================================== */

body.h26-route {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  overflow-x: hidden;
  background: #0a0a0c;
  color: #f2efe9;
  font-size: 16px;
  letter-spacing: normal;
}
body.h26-route.h26-lock { overflow: hidden; }

/* dashboard.css paints the loader #2c2c2c through body.dash-route, which the
   homepage also carries; keep it on the landing background instead. */
body.h26-route .gtray-site-loader { background: #0a0a0c; }

/* Mobile browsers paint a blue box over any tapped control by default. */
body.h26-route,
body.h26-route * {
  -webkit-tap-highlight-color: transparent;
}

/* ===== drawer, restyled to match the dark landing ===== */
body.h26-route .drawer {
  background: #101014;
  border-left: 1px solid #26262b;
  color: #f2efe9;
}
body.h26-route .drawer-overlay {
  background: rgba(4, 4, 6, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
body.h26-route .drawer-header {
  border-bottom: 1px solid #26262b;
  background: transparent;
}
/* the only logo file is dark, so the drawer uses the same wordmark as the nav */
body.h26-route .drawer-wordmark {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f2efe9;
}
body.h26-route .drawer-wordmark b { color: #f5b73d; }

body.h26-route .drawer-close {
  color: #f2efe9;
  background: transparent;
  border: 1px solid #26262b;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
body.h26-route .drawer-close:hover { border-color: #f5b73d; color: #f5b73d; }
body.h26-route .drawer-close svg { stroke: currentColor; width: 20px; height: 20px; }

/* .drawer-nav ships a white background, which hid the light link text */
body.h26-route .drawer-nav,
body.h26-route .drawer-footer,
body.h26-route .drawer-header,
body.h26-route .drawer-nav > * { background: transparent; }
body.h26-route .drawer-nav { gap: 2px; }
body.h26-route .drawer-link {
  color: #f2efe9;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 15px 0;
  border-bottom: 1px solid #1e1e23;
  transition: color 0.15s, padding-left 0.15s;
}
body.h26-route .drawer-link:hover,
body.h26-route .drawer-link:active { color: #f5b73d; padding-left: 6px; }

body.h26-route .lang-switch-drawer { margin-top: 18px; gap: 6px; }
body.h26-route .lang-switch-drawer button {
  background: #16161a;
  border: 1px solid #26262b;
  color: #8b8781;
  border-radius: 9px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 12px;
}
body.h26-route .lang-switch-drawer button.active {
  background: #f5b73d;
  border-color: #f5b73d;
  color: #141007;
}

body.h26-route .drawer-footer {
  border-top: 1px solid #26262b;
  background: transparent;
  gap: 10px;
}
body.h26-route .drawer-btn-signup,
body.h26-route .drawer-btn-login {
  border-radius: 11px;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 18px;
  border: 1px solid #26262b;
}
body.h26-route .drawer-btn-signup { background: transparent; color: #f2efe9; }
body.h26-route .drawer-btn-signup:hover { border-color: #8b8781; }
body.h26-route .drawer-btn-login {
  background: #f5b73d;
  border-color: #f5b73d;
  color: #141007;
}
body.h26-route .drawer-btn-login:hover { filter: brightness(1.07); }

.h26 {
  --bg: #0a0a0c;
  --panel: #111114;
  --panel2: #16161a;
  --ink: #f2efe9;
  --mut: #8b8781;
  --acc: #f5b73d;
  --acc-ink: #141007;
  --line: #26262b;
  --pad: clamp(20px, 2.5vw, 40px);
  --nav-h: 64px;

  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

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

.h26 a { color: inherit; text-decoration: none; }
.h26 img { display: block; max-width: 100%; }
/* dashboard.css sets `body.dash-route h1..h4 { color: var(--dash-ink) }`,
   which is darker than a plain `.h26 h1`, so these are scoped through the
   body class to win on specificity rather than by shouting !important. */
body.h26-route .h26 h1,
body.h26-route .h26 h2,
body.h26-route .h26 h3,
body.h26-route .h26 h4 {
  font-family: inherit;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 850;
}
body.h26-route .h26 p { margin: 0; }
body.h26-route .h26 button { font-family: inherit; }

.h26 :focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

/* ===== nav ===== */
.h26-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.h26-nav__in {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--nav-h);
  padding: 0 var(--pad);
}
.h26-logo { font-weight: 800; font-size: 21px; letter-spacing: -0.03em; }
.h26-logo b { color: var(--acc); }
.h26-links { display: flex; gap: 24px; margin-left: 16px; }
/* body-scoped so `body.dash-route a { color: inherit }` does not win */
body.h26-route .h26-links a {
  font-size: 12px;
  color: var(--mut);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.18s;
}
body.h26-route .h26-links a:hover { color: var(--ink); }
body.h26-route .h26-foot__in { color: var(--mut); }
body.h26-route .h26-foot__links a { color: var(--mut); }
body.h26-route .h26-foot__links a:hover { color: var(--acc); }
/* The panel buttons are painted by `body.dash-route .dash-auth button` in
   dashboard.css, which only reaches buttons inside that block. This is a
   link outside it, so it repeats the same values rather than inheriting
   them, and follows the quieter of the pair: the builder is somewhere to go
   next to signing in, not instead of it. */
body.h26-route .h26 .h26-botlink {
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
  padding: 9px 16px;
  border: 1px solid var(--dash-ink);
  border-radius: 999px;
  background: var(--dash-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: filter 0.15s, transform 0.15s;
}
body.h26-route .h26 .h26-botlink:hover {
  filter: brightness(1.35);
  transform: translateY(-1px);
}

.h26-spacer { flex: 1; }

.h26 .h26-lang { display: flex; gap: 4px; }
.h26 .h26-lang button {
  background: var(--panel2);
  border: 1px solid var(--line);
  color: var(--mut);
  border-radius: 9px;
  padding: 7px 11px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
}
.h26 .h26-lang button:hover { color: var(--ink); }
.h26 .h26-lang button.active { background: var(--acc); color: var(--acc-ink); border-color: var(--acc); }

.h26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.h26-btn--accent { background: var(--acc); color: var(--acc-ink); }
.h26-btn--accent:hover { filter: brightness(1.07); transform: translateY(-2px); }
.h26-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.h26-btn--ghost:hover { border-color: var(--mut); transform: translateY(-2px); }
.h26-btn--lg { padding: 14px 24px; font-size: 15px; }

.h26 .h26-auth { display: flex; gap: 8px; }
.h26 .h26-user { display: none; align-items: center; gap: 9px; }
.h26 .h26-avatar {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--acc);
  color: var(--acc-ink);
  font-weight: 800;
  font-size: 13px;
}
.h26 .h26-user .dash-user__name { font-size: 13px; font-weight: 600; }

.h26 .h26-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.h26 .h26-burger span { display: block; width: 17px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ===== hero ===== */
.h26-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px var(--pad);
  overflow: hidden;
}
/* Body scoped, or `body.h26-route .h26 h1 { margin: 0 }` above outranks it and
   the heading sits flat on the buttons. */
body.h26-route .h26 .h26-hero__title {
  font-size: clamp(38px, 7.5vw, 108px);
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 850;
  max-width: 15ch;
  /* The heading carries the gap, and needs more of it than the number
     suggests: at this size a line height under one leaves the tails of р, у
     and з hanging below the line box, so they reach into whatever follows. */
  margin: 0 0 clamp(44px, 5.5vw, 76px);
}
.h26-row { display: flex; gap: 12px; flex-wrap: wrap; }
.h26-hero__stat {
  position: absolute;
  right: var(--pad);
  bottom: 7vh;
  text-align: right;
  pointer-events: none;
  user-select: none;
}
.h26-hero__num {
  font-size: clamp(90px, 18vw, 270px);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.78;
  color: #17171b;
}
.h26-hero__cap {
  color: var(--mut);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.h26-hero__mark {
  position: absolute;
  left: var(--pad);
  bottom: 3vh;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--mut);
}

/* ===== marquee ===== */
.h26-marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.h26-marquee__track {
  display: inline-block;
  animation: h26scroll 30s linear infinite;
}
.h26-marquee__track span {
  font-size: clamp(26px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 26px;
}
.h26-marquee__track .dot { color: var(--acc); }
.h26-marquee__track .out { -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
@keyframes h26scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== sections ===== */
.h26-sec {
  padding: clamp(60px, 8vw, 118px) var(--pad);
  scroll-margin-top: var(--nav-h);
}
.h26-sec--line { border-top: 1px solid var(--line); }
.h26-shead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.h26 .h26-shead h2 {
  font-size: clamp(30px, 6.5vw, 86px);
  letter-spacing: -0.045em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
}
.h26-idx { color: var(--acc); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; }

/* ===== services ===== */
.h26 .h26-svc {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 3vw, 40px);
  align-items: center;
  width: 100%;
  text-align: left;
  padding: clamp(18px, 2.4vw, 30px) 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: padding-left 0.25s, background 0.25s;
}
.h26 .h26-svc:last-of-type { border-bottom: 1px solid var(--line); }
.h26-svc__no { font-size: 13px; color: var(--mut); font-weight: 700; }
.h26-svc__body { display: block; }
.h26-svc__nm {
  display: block;
  font-size: clamp(21px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  line-height: 1.02;
  transition: color 0.2s;
}
.h26-svc__ds { display: block; color: var(--mut); font-size: clamp(13px, 1vw, 15px); margin-top: 6px; }
.h26-svc__pr {
  font-size: clamp(19px, 3.2vw, 38px);
  font-weight: 900;
  color: var(--acc);
  white-space: nowrap;
  justify-self: end;
}
/* "from 1 000" reads as a starting price, so the word stays quieter than the number */
.h26-svc__from {
  display: inline-block;
  margin-right: 0.4em;
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: var(--mut);
  vertical-align: baseline;
}
.h26 .h26-svc:hover {
  padding-left: clamp(10px, 1.5vw, 22px);
  background: linear-gradient(90deg, rgba(245, 183, 61, 0.08), transparent);
}
.h26 .h26-svc:hover .h26-svc__nm { color: var(--acc); }

/* ===== portfolio carousel ===== */
.h26-arrows { display: flex; gap: 10px; }
.h26 .h26-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: 0.15s;
}
.h26 .h26-arrow:hover { border-color: var(--acc); color: var(--acc); }
.h26 .h26-arrow:disabled { opacity: 0.3; cursor: default; border-color: var(--line); color: var(--ink); }

.h26-work {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  padding-bottom: 8px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  -webkit-user-select: none;
}
.h26-work::-webkit-scrollbar { display: none; }
.h26-work.is-drag { cursor: grabbing; }
.h26-work.is-drag a { pointer-events: none; }
.h26-witem { flex: 0 0 auto; width: clamp(270px, 33vw, 460px); }
.h26-wcard {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 11;
  background: var(--panel);
  box-shadow: 0 24px 50px -30px #000;
  -webkit-user-drag: none;
}
.h26-wcard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-user-drag: none;
  user-select: none;
}
.h26-winfo {
  padding: 15px 2px 0;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ===== process =====

   A row of stages rather than five numbered cards. The one being read takes
   the room it needs and the rest give it up, which is what a sequence looks
   like; numbers only assert one. */
.h26-proc {
  display: flex;
  gap: 2px;
  align-items: stretch;
}
.h26-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  appearance: none;
  border: 0;
  /* Segments of one track: accent marks where the reader is, rather than
     decorating every card equally. */
  border-top: 2px solid var(--line);
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 18px clamp(12px, 1.4vw, 22px) 22px 0;
  cursor: pointer;
  transition: flex-grow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}
.h26-step.is-on {
  flex-grow: 3.4;
  border-top-color: var(--acc);
}
.h26-step__stage {
  color: var(--mut);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.35s ease;
}
.h26-step.is-on .h26-step__stage { color: var(--acc); }
.h26-step__in {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.h26-step__nm {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  /* Grows with the panel, so the open step reads as the headline it is. */
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.25;
  transition: font-size 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.h26-step.is-on .h26-step__nm { font-size: clamp(17px, 1.7vw, 26px); }
.h26-step__ds {
  color: var(--mut);
  font-size: 14px;
  line-height: 1.55;
  max-width: 46ch;
  /* Hidden by width rather than by display, so the text is still there for
     a screen reader and for anyone who lands on the step by keyboard. */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.h26-step.is-on .h26-step__ds { opacity: 1; transform: none; }
.h26-step:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 4px;
}

/* ===== tech stack ===== */
.h26-stackrow {
  display: grid;
  grid-template-columns: clamp(170px, 18vw, 250px) 1fr;
  gap: clamp(18px, 3vw, 46px);
  align-items: start;
  padding: clamp(22px, 3vw, 38px) 0;
  border-top: 1px solid var(--line);
}
.h26-slabel {
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.h26-techs { display: flex; flex-wrap: wrap; gap: clamp(15px, 1.8vw, 28px); }
.h26-tech {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 74px;
  text-align: center;
}
.h26-tech svg { width: 33px; height: 33px; color: #c7c7c7; transition: color 0.18s, transform 0.18s; }
.h26-tech span { font-size: 12px; color: var(--mut); line-height: 1.2; transition: color 0.18s; }
.h26-tech:hover svg { color: var(--acc); transform: translateY(-3px); }
.h26-tech:hover span { color: var(--ink); }

/* ===== bundle + bot ===== */
.h26-two { display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; }
.h26-two--single { grid-template-columns: 1fr; }
.h26-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--panel);
}
.h26-box--hl { background: linear-gradient(140deg, #1e1a10, #111114); border-color: #3a3115; }
.h26 .h26-box h3 {
  font-size: clamp(20px, 2.4vw, 29px);
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-weight: 850;
}
.h26 .h26-box p { color: var(--mut); margin: 0 0 18px; }
.h26-badge {
  display: inline-block;
  background: var(--acc);
  color: var(--acc-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ===== faq ===== */
.h26-faq { max-width: 1100px; }
.h26-faq details { border-top: 1px solid var(--line); padding: clamp(16px, 2vw, 25px) 0; }
.h26-faq summary {
  cursor: pointer;
  list-style: none;
  font-size: clamp(17px, 2.5vw, 29px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.h26-faq summary::-webkit-details-marker { display: none; }
.h26-faq summary::after { content: '+'; color: var(--acc); }
.h26-faq details[open] summary::after { content: '\2013'; }
.h26-faq details p {
  color: var(--mut);
  margin: 14px 0 0;
  max-width: 80ch;
  text-transform: none;
  letter-spacing: normal;
  font-size: 16px;
}

/* ===== cta ===== */
.h26-cta {
  text-align: center;
  padding: clamp(60px, 9vw, 130px) var(--pad) clamp(40px, 5vw, 70px);
  border-top: 1px solid var(--line);
}
.h26-cta__big {
  font-size: clamp(42px, 11vw, 175px);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--acc);
}
.h26 .h26-cta p { color: var(--mut); margin: 18px 0 24px; }

/* ===== footer ===== */
.h26-foot { border-top: 1px solid var(--line); }
.h26-foot__in {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px var(--pad);
  color: var(--mut);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.h26-foot__links { display: flex; gap: 18px; }
.h26-foot__links a:hover { color: var(--acc); }

/* ===== scroll reveal ===== */
.h26-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.h26-reveal.is-in { opacity: 1; transform: none; }

/* ===== responsive ===== */
/* The panel is full at 1000px: anything added there runs off the edge. It
   folds into the drawer earlier than the rest of the layout needs to. */
@media (max-width: 1200px) {
  .h26-links { display: none; }
  body.h26-route .h26 .h26-botlink { display: none; }
  .h26 .h26-burger { display: flex; }
}

@media (max-width: 1000px) {
  /* nav moved to its own breakpoint below */
  /* Sideways expansion needs width; below this there is none, so every step
     simply stands open. */
  .h26-proc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .h26-step, .h26-step.is-on { flex: none; padding-right: 0; }
  .h26-step__ds, .h26-step.is-on .h26-step__ds { opacity: 1; transform: none; }
  .h26-step.is-on .h26-step__nm { font-size: clamp(14px, 1.15vw, 17px); }
  .h26-two { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  /* body-scoped to outrank `body.dash-route .dash-auth { display: flex }` */
  body.h26-route .h26 .h26-auth { display: none; }
  .h26-hero { min-height: auto; padding-top: 48px; }
  .h26-hero__stat { position: static; text-align: left; margin-top: 36px; }
  .h26-hero__num { font-size: clamp(76px, 26vw, 130px); letter-spacing: -0.05em; }
  .h26-hero__mark { display: none; }
  .h26-stackrow { grid-template-columns: 1fr; gap: 14px; }
  .h26-svc__ds { display: none; }
}
@media (max-width: 560px) {
  .h26-witem { width: 80vw; }
  .h26-proc { grid-template-columns: 1fr; }
  .h26-foot__in { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .h26-marquee__track { animation: none; }
  .h26-reveal { opacity: 1; transform: none; transition: none; }
  .h26-btn:hover { transform: none; }
}
