:root {
  color-scheme: light;
  --yellow: #ffc107;
  --yellow-deep: #e3a400;
  --yellow-soft: #fff7d8;
  --ink: #111318;
  --ink-soft: #333944;
  --muted: #697282;
  --line: #e3e6eb;
  --surface: #ffffff;
  --canvas: #f7f8fa;
  --soft: #eef2f6;
  --blue: #1769e0;
  --blue-soft: #eaf2ff;
  --green: #16875d;
  --green-soft: #e7f7ef;
  --red: #d93a40;
  --red-soft: #feecef;
  --violet: #7254d8;
  --violet-soft: #f0edff;
  --shadow-sm: 0 8px 24px rgba(17, 19, 24, 0.08);
  --shadow-md: 0 18px 48px rgba(17, 19, 24, 0.12);
  --shell: 1200px;
  --gutter: clamp(18px, 4vw, 48px);
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink-soft);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

img { height: auto; }

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

button { font: inherit; }

h1,
h2,
h3,
p { margin: 0; }

h1,
h2,
h3 { color: var(--ink); letter-spacing: 0; }

h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; }

h3 { font-size: 1.2rem; line-height: 1.25; }

::selection { color: var(--ink); background: var(--yellow); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

[hidden] { display: none !important; }

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  transition: top 180ms ease;
}

.skip-link:focus { top: 12px; }

.section { padding-block: clamp(72px, 9vw, 124px); }
.section--soft { background: var(--soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #765900;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.eyebrow--blue { color: var(--blue); }

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 { max-width: 700px; }

.section-heading > p:last-child {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading--wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 60px;
  align-items: end;
  max-width: none;
}

.section-heading--wide > p:last-child { margin-top: 0; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.brand__app-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(17, 19, 24, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner,
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.desktop-nav,
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  color: #596171;
  font-size: 0.93rem;
  font-weight: 650;
}

.desktop-nav a,
.nav__link { transition: color 160ms ease; }
.desktop-nav a:hover,
.nav__link:hover { color: var(--ink); }

.site-header__actions,
.nav__actions { display: flex; align-items: center; gap: 12px; }

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.btn:hover { transform: translateY(-2px); }
.button:active,
.btn:active { transform: translateY(0); }
.button svg { width: 18px; height: 18px; flex: 0 0 auto; }
.button--compact { min-height: 46px; padding-inline: 20px; }
.button--yellow { color: var(--ink); background: var(--yellow); box-shadow: 0 10px 24px rgba(227, 164, 0, 0.18); }
.button--dark { color: #fff; background: var(--ink); box-shadow: var(--shadow-sm); }
.button--light,
.btn--ghost { color: var(--ink); background: #fff; border-color: var(--line); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 160ms ease;
}

.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 90;
  padding: 20px var(--gutter) 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.mobile-menu > a:not(.button) {
  display: block;
  padding: 13px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-menu .button { width: 100%; margin-top: 18px; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  background: #f5efe5;
}

.hero__worlds,
.hero__world {
  position: absolute;
  inset: 0;
}

.hero__world {
  z-index: -3;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 800ms ease, transform 6s ease;
}

.hero__world.is-active { opacity: 1; transform: scale(1); }

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 450px);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding-block: 64px;
}

.hero__copy { max-width: 650px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 9px 13px;
  color: #5f4a00;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kicker svg { width: 17px; height: 17px; }

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.2rem, 7vw, 6.35rem);
  font-weight: 850;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.65rem, 3.3vw, 3rem);
  font-weight: 650;
  line-height: 1.06;
}

.hero__benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  max-width: 620px;
  margin: 24px 0 0;
  padding: 0;
  color: #353d49;
  list-style: none;
}

.hero__benefits li { display: flex; align-items: center; gap: 9px; font-size: 0.96rem; font-weight: 720; }
.hero__benefits svg { width: 19px; height: 19px; flex: 0 0 19px; }
.hero__benefits li:nth-child(1) svg { color: var(--blue); }
.hero__benefits li:nth-child(2) svg { color: #c58a00; }
.hero__benefits li:nth-child(3) svg { color: var(--green); }
.hero__benefits li:nth-child(4) svg { color: #d93a40; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 50px; }

.request-card {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.request-card > img { width: 48px; height: 48px; flex: 0 0 48px; object-fit: contain; }
.request-card__content { min-width: 0; flex: 1; }
.request-card h2,
.request-card h3 { font-size: 1rem; font-weight: 780; }
.request-card p { margin-top: 7px; color: var(--muted); font-size: 0.86rem; line-height: 1.35; }
.request-card__meta { display: flex; align-items: center; gap: 9px; margin-top: 12px; color: var(--muted); font-size: 0.75rem; font-weight: 700; }
.request-card__meta > :last-child { margin-left: auto; font-size: 1.3rem; line-height: 1; }
.request-card__meta span:first-child { display: inline-flex; align-items: center; gap: 5px; }
.request-card__meta svg { width: 14px; height: 14px; }
.status { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: 0.7rem; font-weight: 800; }
.status--active { color: #1d5bb8; background: var(--blue-soft); }
.status--open { color: #835f00; background: var(--yellow-soft); }

.app-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

.apps .section-heading { margin-bottom: 32px; }

.app-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.app-panel--client { background: #fff; }
.app-panel--business { color: rgba(255, 255, 255, 0.8); background: var(--ink); border-color: var(--ink); }
.app-panel--business h3 { color: #fff; }
.app-panel__top { display: flex; align-items: center; gap: 18px; }
.app-icon-frame {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  overflow: hidden;
  border-radius: 18px;
}
.app-icon { display: block; width: 100%; height: 100%; object-fit: cover; }
.app-panel--business .app-icon { transform: scale(1.11); }
.app-panel__audience { display: block; margin-bottom: 5px; color: var(--muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.app-panel--business .app-panel__audience { color: #c7cbd2; }
.app-panel h3 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
.app-panel > p { margin-top: 18px; color: var(--muted); font-size: 1.04rem; }
.app-panel--business > p { color: #c7cbd2; }
.feature-list { display: grid; gap: 10px; margin: 20px 0 22px; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; }
.feature-list svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; color: var(--green); }
.app-panel--business .feature-list svg { color: var(--yellow); }
.store-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0; }
.store-button {
  display: inline-flex;
  flex-direction: column;
  min-width: 154px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border: 1px solid #282c32;
  border-radius: 8px;
  line-height: 1.1;
}
.store-button__platform { margin-bottom: 3px; font-size: 0.68rem; color: #c8cdd4; }
.store-button strong { font-size: 0.95rem; }
.store-button--disabled { opacity: 0.46; cursor: not-allowed; }
.store-button--business { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.store-button--business .store-button__platform { color: #5f4a00; }

.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 14px;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
}
.category-item img { width: 54px; height: 54px; flex: 0 0 54px; object-fit: contain; }
.category-item h3 { font-size: 0.91rem; font-weight: 750; line-height: 1.2; }

.service-ui { background: #fff; }
.service-ui__layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.service-ui__copy h2 { max-width: 540px; }
.service-ui__copy > p:not(.eyebrow) { max-width: 560px; margin-top: 20px; color: var(--muted); font-size: 1.05rem; }
.service-ui__points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.service-ui__points span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; background: var(--canvas); border-radius: 6px; font-size: 0.82rem; font-weight: 700; }
.service-ui__points svg { width: 16px; height: 16px; color: var(--blue); }
.service-ui__demo { display: grid; gap: 18px; padding: 18px; background: var(--canvas); border: 1px solid var(--line); border-radius: 8px; }
.service-slider { display: block; overflow: hidden; }
.service-slider__viewport { position: relative; }
.service-slide {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 18px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(42px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}
.service-slide.is-active { position: relative; visibility: visible; opacity: 1; transform: translateX(0); pointer-events: auto; }
.service-slide.is-leaving { visibility: visible; opacity: 0; transform: translateX(-42px); }
.service-slider__dots { display: flex; justify-content: center; gap: 3px; margin-top: 12px; }
.service-slider__dots button { position: relative; width: 28px; height: 28px; padding: 0; background: transparent; border: 0; border-radius: 50%; cursor: pointer; }
.service-slider__dots button::after { content: ""; position: absolute; inset: 10px; background: #b9c0ca; border-radius: 50%; transition: background 160ms ease, transform 160ms ease; }
.service-slider__dots button.is-active::after { background: var(--blue); transform: scale(1.35); }
.service-slider__dots button:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.request-detail { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.request-detail > h3 { margin-bottom: 18px; text-align: center; }
.request-detail__label { margin-top: 13px; color: var(--muted); font-size: 0.72rem; font-weight: 750; }
.request-detail__title { margin-top: 3px; color: var(--ink); font-size: 1.14rem; font-weight: 800; }
.request-detail__description { margin-top: 3px; color: var(--ink-soft); font-size: 0.88rem; }
.detail-row { display: flex; align-items: center; gap: 12px; margin-top: 17px; }
.detail-row > svg,
.detail-row > img { width: 32px; height: 32px; flex: 0 0 32px; object-fit: contain; color: var(--muted); }
.detail-row span { color: var(--ink); font-size: 0.88rem; font-weight: 700; }
.detail-row small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 0.69rem; font-weight: 650; }

.market-section { overflow: clip; padding-bottom: 0; background: #f3f6fa; }
.market-heading { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr); gap: 50px; align-items: end; }
.market-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -26px; }
.market-heading h2 { max-width: 690px; }
.market-heading > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: 1.05rem; }
.market-showcase { position: relative; z-index: 0; margin-top: 28px; padding: clamp(26px, 3vw, 42px) 0 clamp(48px, 6vw, 76px); }
.market-showcase::before { content: ""; position: absolute; inset: 0 calc(50% - 50vw); z-index: -1; background: linear-gradient(180deg, rgba(255, 193, 7, 0) 0%, rgba(255, 193, 7, 0.04) 34%, rgba(255, 193, 7, 0.12) 51%, rgba(255, 193, 7, 0.3) 68%, rgba(255, 193, 7, 0.62) 84%, var(--yellow) 100%), linear-gradient(108deg, #f3aa19 0%, #ffc52f 43%, #67afe6 58%, #1683db 100%); }
.market-campaign { display: grid; height: clamp(360px, 39vw, 540px); margin: 0; place-items: center; overflow: hidden; }
.market-campaign img { width: auto; max-width: none; height: clamp(360px, 39vw, 540px); object-fit: contain; }
.market-values { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: clamp(28px, 3vw, 40px); color: var(--ink); }
.market-value { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 10px; align-items: center; min-height: 112px; padding: 10px 12px; background: #fff; border: 1px solid #dfe5ed; border-radius: 8px; box-shadow: 0 10px 24px rgba(28, 46, 70, 0.1); }
.market-value__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 8px; }
.market-value__icon > img { width: 100%; height: 100%; object-fit: contain; }
.market-value__icon > svg { width: 28px; height: 28px; }
.market-value > div:last-child > span { display: block; margin-bottom: 2px; font-size: 0.64rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.market-value h3 { color: var(--ink); font-size: 0.9rem; line-height: 1.16; }
.market-value p { margin-top: 4px; color: var(--muted); font-size: 0.71rem; line-height: 1.3; }
.market-value--buy { border-top: 3px solid #1769e0; }
.market-value--buy .market-value__icon { overflow: hidden; background: #edf4ff; }
.market-value--buy .market-value__icon img { width: 118%; height: 118%; max-width: none; }
.market-value--buy > div:last-child > span { color: #1769e0; }
.market-value--sell { border-top: 3px solid #16875d; }
.market-value--sell .market-value__icon { overflow: hidden; background: #eff9f4; }
.market-value--sell .market-value__icon img { width: 118%; height: 118%; max-width: none; }
.market-value--sell > div:last-child > span { color: #16875d; }
.market-value--shops { border-top: 3px solid #d93a40; }
.market-value--shops .market-value__icon { overflow: visible; color: var(--ink); background: #fff; border: 1px solid #dfe5ed; }
.market-value--shops > div:last-child > span { color: #d93a40; }
.market-value__store-follow { position: relative; }
.market-value__store-icon { width: 27px; height: 27px; }
.market-value__heart { position: absolute; right: 1px; bottom: 1px; display: grid; width: 19px; height: 19px; margin: 0; place-items: center; color: #e5242a; background: #fff; border-radius: 50%; box-shadow: 0 2px 8px rgba(17, 19, 24, 0.2); }
.market-value__heart svg { width: 11px; height: 11px; overflow: visible; fill: currentColor; }
.market-value--chat { border-top: 3px solid var(--ink); }
.market-value--chat .market-value__icon { overflow: visible; background: transparent; }
.market-value--chat .market-value__icon img { width: 52px; max-width: none; height: 52px; }
.market-value--chat > div:last-child > span { color: var(--ink); }

.support-band { padding-block: clamp(64px, 7vw, 92px); background: var(--yellow); }
.support-band__layout { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: center; }
.support-band h2 { max-width: 650px; }
.support-band p:not(.eyebrow) { max-width: 650px; margin-top: 16px; color: #4d410f; }
.support-band__actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }

.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 70px; align-items: start; }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item button { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; padding: 22px 0; color: var(--ink); background: none; border: 0; cursor: pointer; text-align: left; font-size: 1rem; font-weight: 760; }
.faq__item i { position: relative; width: 20px; height: 20px; flex: 0 0 20px; }
.faq__item i::before,
.faq__item i::after { content: ""; position: absolute; left: 3px; top: 9px; width: 14px; height: 2px; background: var(--ink); transition: transform 160ms ease; }
.faq__item i::after { transform: rotate(90deg); }
.faq__item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq__answer { padding: 0 40px 22px 0; color: var(--muted); }

.footer { padding: 62px 0 24px; color: #c9cdd4; background: var(--ink); }
.footer .brand { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 48px; }
.footer__brand p { max-width: 330px; margin-top: 18px; color: #9ca3ae; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; gap: 10px; }
.footer__grid h2 { margin-bottom: 6px; color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer__grid a:not(.brand) { color: #adb3bd; font-size: 0.9rem; }
.footer__grid a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 46px; padding-top: 22px; color: #868e9a; border-top: 1px solid #2a2e35; font-size: 0.82rem; }

[data-reveal],
[data-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
[data-reveal].is-visible,
[data-stagger] > *.is-visible { opacity: 1; transform: translateY(0); }

/* Public support page */
.support-page { min-height: 100vh; background: #fff; }
.simple-header { position: sticky; top: 0; z-index: 20; height: var(--header-height); background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); }
.simple-header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.support-hero { padding: clamp(50px, 6vw, 76px) 0 clamp(44px, 5vw, 60px); background: var(--yellow-soft); }
.support-hero > .shell { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr); gap: 48px; align-items: end; }
.support-hero .eyebrow { grid-column: 1 / -1; margin-bottom: -22px; }
.support-hero h1 { max-width: 820px; font-size: clamp(2.7rem, 5vw, 4.25rem); line-height: .98; }
.support-hero > .shell > p:last-child { max-width: 560px; margin: 0; color: #595443; font-size: 1.03rem; }
.support-content { padding-block: 38px 88px; }
.support-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.support-card { display: flex; min-height: 220px; padding: 22px; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; }
.support-card__icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 16px; color: var(--blue); background: var(--blue-soft); border-radius: 8px; }
.support-card__icon svg { width: 23px; height: 23px; }
.support-card h2 { font-size: 1.28rem; line-height: 1.2; }
.support-card p { margin-top: 10px; color: var(--muted); font-size: .92rem; }
.support-card a { display: inline-flex; margin-top: auto; padding-top: 18px; color: var(--blue); font-weight: 750; }
.contact-panel { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; margin-top: 34px; padding: clamp(28px, 5vw, 52px); color: #fff; background: var(--ink); border-radius: 8px; }
.contact-panel h2 { color: #fff; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.contact-panel p { max-width: 620px; margin-top: 12px; color: #bec4cd; }
.contact-panel .button { color: var(--ink); background: var(--yellow); }

/* Legal pages retained for existing public URLs */
.nav { position: sticky; top: 0; z-index: 40; height: var(--header-height); background: #fff; border-bottom: 1px solid var(--line); }
.nav .brand__mark { width: 46px; height: 46px; }
.legal { min-height: calc(100vh - var(--header-height)); padding: 74px 0 100px; background: #fff; }
.legal__inner { max-width: 900px; }
.legal h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1; }
.legal__meta { margin-top: 14px; color: var(--muted); }
.legal__body { display: grid; gap: 34px; margin-top: 46px; }
.legal__body section { scroll-margin-top: 100px; }
.legal__body h2 { margin-bottom: 12px; font-size: 1.45rem; }
.legal__body h3 { margin: 22px 0 8px; font-size: 1.05rem; }
.legal__body p + p { margin-top: 12px; }
.legal__body ul { display: grid; gap: 8px; padding-left: 22px; }
.legal__body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal__notice { padding: 22px; background: var(--yellow-soft); border-left: 4px solid var(--yellow); border-radius: 6px; }

@media (max-width: 1080px) {
  .desktop-nav,
  .desktop-only,
  .nav__links { display: none; }
  .menu-button { display: block; }
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .market-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .desktop-nav,
  .desktop-only,
  .nav__links { display: none; }
  .menu-button { display: block; }
  .hero { min-height: calc(100svh - var(--header-height)); }
  .hero__wash { background: rgba(255, 255, 255, 0.78); }
  .hero__world { background-position: 62% center; }
  .hero__layout { grid-template-columns: 1fr; padding-block: 54px; }
  .hero__copy { max-width: 720px; }
  .app-grid,
  .service-ui__layout,
  .faq-layout { grid-template-columns: 1fr; }
  .app-panel { min-height: auto; }
  .section-heading--wide { grid-template-columns: 1fr; gap: 18px; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-ui__layout { gap: 42px; }
  .market-heading { grid-template-columns: 1fr; gap: 16px; }
  .market-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .support-band__layout { grid-template-columns: 1fr; }
  .support-band__actions { align-items: flex-start; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: 1fr; }
  .support-hero > .shell { grid-template-columns: 1fr; gap: 16px; }
  .support-hero .eyebrow { grid-column: auto; margin-bottom: 0; }
  .support-hero > .shell > p:last-child { max-width: 680px; }
  .contact-panel { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding-block: 70px; }
  .market-section { padding-bottom: 0; }
  .brand { gap: 9px; font-size: 1.12rem; }
  .brand__app-icon { width: 42px; height: 42px; flex-basis: 42px; border-radius: 10px; }
  .brand__mark { width: 42px; font-size: 1.55rem; }
  .hero { align-items: flex-start; min-height: calc(100svh - var(--header-height)); }
  .hero__world { background-position: 66% bottom; }
  .hero__wash { background: rgba(255, 255, 255, 0.75); }
  .hero__layout { min-height: calc(100svh - var(--header-height)); align-items: start; padding-top: 46px; padding-bottom: 58px; }
  .kicker { max-width: 100%; margin-bottom: 20px; font-size: .68rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.35rem); }
  .hero h1 span { max-width: 500px; margin-top: 12px; font-size: clamp(1.48rem, 7.4vw, 2.1rem); }
  .hero__benefits { gap: 8px; margin-top: 20px; }
  .hero__benefits li { font-size: 0.92rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; margin-top: 36px; }
  .hero__actions .button { width: 100%; white-space: normal; }
  .app-grid { gap: 14px; }
  .app-panel { padding: 24px 20px; }
  .app-panel__top { align-items: flex-start; }
  .app-icon-frame { width: 68px; height: 68px; flex-basis: 68px; border-radius: 15px; }
  .app-panel h3 { font-size: 1.65rem; }
  .store-actions { display: grid; grid-template-columns: 1fr; }
  .store-button { width: 100%; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .category-item { align-items: flex-start; min-height: 126px; padding: 12px; flex-direction: column; }
  .category-item img { width: 50px; height: 50px; flex-basis: 50px; }
  .category-item h3 { font-size: .83rem; overflow-wrap: anywhere; }
  .service-ui__demo { margin-inline: -4px; padding: 10px; }
  .request-detail { padding: 16px; }
  .market-showcase { padding-top: 18px; }
  .market-campaign { position: relative; display: block; height: clamp(250px, 68vw, 350px); margin-inline: calc(var(--gutter) * -1); overflow: hidden; }
  .market-campaign img { position: absolute; top: 50%; left: 50%; width: 100%; max-width: 100%; height: auto; transform: translate(-50%, -50%); }
  .market-values { grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .market-value { grid-template-columns: 44px minmax(0, 1fr); min-height: 100px; padding: 10px; }
  .market-value__icon { width: 42px; height: 42px; }
  .support-band__actions { width: 100%; }
  .support-band__actions .button { width: 100%; white-space: normal; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .nav__actions .btn { min-height: 44px; padding: 10px 14px; font-size: .82rem; }
  .legal { padding-top: 52px; }
  .support-hero { padding-block: 46px 42px; }
  .support-hero h1 { font-size: clamp(2.55rem, 13vw, 3.65rem); }
  .support-content { padding-block: 28px 72px; }
  .support-card { min-height: 0; padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal], [data-stagger] > * { opacity: 1; transform: none; }
}
