:root {
  --bg: #fbfbf8;
  --bg-soft: #f7f7f3;
  --bg-elevated: #ffffff;
  --surface: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 252, 249, 1));
  --surface-strong: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 249, 246, 1));
  --surface-muted: rgba(17, 17, 17, 0.03);
  --surface-glass: rgba(255, 255, 255, 0.84);
  --text: #1a1a1a;
  --text-strong: #000000;
  --muted: #777777;
  --muted-strong: #555555;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);
  --accent: #111111;
  --accent-strong: #111111;
  --accent-soft: rgba(17, 17, 17, 0.05);
  --accent-blue: #555555;
  --signal: #111111;
  --shadow-soft: 0 16px 38px rgba(17, 17, 17, 0.05);
  --shadow-strong: 0 28px 64px rgba(17, 17, 17, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --font-body: "Inter Variable", "Inter", "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-display: "Inter Variable", "Inter", "IBM Plex Sans", "Segoe UI", sans-serif;
}

body[data-locale="th"] {
  --font-body: "Noto Sans Thai", "Tahoma", "Leelawadee UI", "Segoe UI", sans-serif;
  --font-display: "Noto Sans Thai", "Tahoma", "Leelawadee UI", "Segoe UI", sans-serif;
}

body[data-locale="zh"] {
  --font-body: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  --font-display: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #fcfcfa 0%, #f8f8f5 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.56;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 0;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}

.feedback-toast {
  position: fixed;
  right: 24px;
  top: 96px;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  width: min(440px, calc(100vw - 32px));
  padding: 18px 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(25, 113, 67, 0.14);
  background: rgba(252, 252, 250, 0.98);
  box-shadow: 0 24px 52px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(18px);
}

.feedback-toast[hidden] {
  display: none !important;
}

.feedback-toast-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(25, 113, 67, 0.14);
  background: rgba(25, 113, 67, 0.08);
}

.feedback-toast-icon span {
  position: relative;
  width: 18px;
  height: 10px;
  border-left: 3px solid #1d6b40;
  border-bottom: 3px solid #1d6b40;
  transform: rotate(-45deg) translateY(-1px);
}

.feedback-toast-copy {
  display: grid;
  gap: 6px;
}

.feedback-toast-copy strong {
  color: var(--text-strong);
  font-size: 1rem;
  line-height: 1.15;
}

.feedback-toast-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.feedback-toast-close {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.03);
  cursor: pointer;
}

.feedback-toast-close span {
  position: absolute;
  top: 20px;
  left: 12px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.feedback-toast-close span:first-child {
  transform: rotate(45deg);
}

.feedback-toast-close span:last-child {
  transform: rotate(-45deg);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 252, 250, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.03);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(252, 252, 250, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-wordmark {
  color: var(--text-strong);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark sup {
  position: relative;
  top: -0.35em;
  margin-left: 0.04em;
  font-size: 0.48em;
  font-weight: 700;
  color: var(--text-strong);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:not(.button):hover {
  color: var(--text);
}

.locale-switcher {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.locale-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.locale-switcher-trigger:hover {
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.locale-switcher-trigger:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.16);
  outline-offset: 2px;
}

.locale-switcher-trigger-copy {
  display: flex;
  align-items: center;
  gap: 8px;
}

.locale-trigger-label,
.locale-link-label {
  display: inline;
  white-space: nowrap;
  letter-spacing: 0;
}

.locale-flag {
  flex: 0 0 auto;
  font-size: 1.02em;
  line-height: 1;
}

.locale-switcher-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-strong);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.locale-switcher-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.locale-switcher.is-open .locale-switcher-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.locale-switcher-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.1);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  z-index: 40;
}

.locale-switcher.is-open .locale-switcher-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.locale-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.locale-link-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.locale-link[lang="ru"] .locale-link-label,
.locale-link[lang="sr"] .locale-link-label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
}

.locale-link:hover {
  color: var(--text);
  background: rgba(17, 17, 17, 0.04);
}

.locale-link.is-active {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #111111;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.16);
  background: #1f1f1f;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-ghost {
  border-color: rgba(17, 17, 17, 0.08);
  background: #efefeb;
  color: var(--text-strong);
  box-shadow: none;
}

.button-ghost:hover {
  background: #e8e8e3;
  box-shadow: none;
}

.hero-section {
  padding: 36px 0 24px;
}

.hero-shell {
  display: grid;
  gap: 14px;
}

.hero-copy {
  width: 100%;
  max-width: none;
  grid-area: copy;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
  grid-template-areas:
    "copy visual"
    "meta visual";
  column-gap: 28px;
  row-gap: 16px;
  align-items: start;
  width: 100%;
  max-width: 1100px;
}

.hero-copy h1,
.section-heading h2,
.platform-copy h2,
.p2p-copy h2,
.cta-card h2,
.action-story-copy h2,
.mockup-title-row h2,
.trust-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.hero-copy h1 {
  max-width: 1120px;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: 0.94;
}

.hero-break-desktop {
  display: block;
}

.hero-meta {
  grid-area: meta;
  width: 100%;
  min-width: 0;
  max-width: 540px;
  align-self: start;
}

.hero-lead {
  max-width: none;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.03rem;
  line-height: 1.56;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.eyebrow,
.section-label,
.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #191919;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label.inverse {
  color: #191919;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hero-visual {
  grid-area: visual;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: flex-start;
  margin-top: 0;
  margin-left: 0;
  padding-top: 0;
  width: 100%;
}

.story-shot {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 247, 243, 0.98));
  box-shadow:
    0 18px 40px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.story-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.story-shot-hero {
  width: 100%;
  max-width: 500px;
}

.story-shot-detail,
.story-shot-action {
  width: 100%;
}

.hero-visual .story-shot img {
  max-width: 100%;
}

.hero-trust-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.hero-trust-inline article,
.trust-grid article,
.info-card,
.feature-card,
.step-card,
.role-card,
.benefit-card,
.segments-grid article,
.comparison-card,
.faq-list details,
.mockup-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-trust-inline article::before,
.trust-grid article::before,
.info-card::before,
.feature-card::before,
.step-card::before,
.role-card::before,
.benefit-card::before,
.segments-grid article::before,
.comparison-card::before,
.faq-list details::before,
.mockup-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.12), transparent);
  pointer-events: none;
}

.hero-trust-inline article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 110px;
  padding: 18px;
}

.hero-trust-inline strong {
  color: var(--text-strong);
  font-size: 1rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-trust-inline small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-panel {
  position: relative;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
}

.hero-panel::before {
  right: 8%;
  top: 4%;
  width: 180px;
  height: 180px;
  background: rgba(17, 17, 17, 0.04);
}

.hero-panel::after {
  left: 4%;
  bottom: 10%;
  width: 140px;
  height: 140px;
  background: rgba(17, 17, 17, 0.03);
}

.mockup-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 245, 1));
  box-shadow: var(--shadow-strong);
}

.mockup-topline,
.mockup-metrics,
.mockup-columns,
.trust-grid,
.problem-grid,
.platform-grid,
.platform-features,
.steps-grid,
.roles-grid,
.benefits-grid,
.segments-grid,
.faq-grid,
.comparison-columns,
.footer-row {
  display: grid;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.flow-layout .steps-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.flow-visual {
  align-self: start;
}

.action-story {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 24px;
  align-items: center;
}

.action-story-copy {
  max-width: 640px;
}

.action-story-copy h2 {
  margin: 14px 0 0;
}

.action-story-copy p {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.action-story-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.action-story-points .info-card {
  min-height: 100%;
}

.action-story-visual {
  align-self: center;
}

.mockup-topline {
  grid-auto-flow: column;
  justify-content: start;
  gap: 10px;
}

.mockup-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.mockup-badge.active {
  color: var(--accent);
  background: rgba(17, 17, 17, 0.05);
  border-color: rgba(17, 17, 17, 0.08);
}

.mockup-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.mockup-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.mockup-title-row h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.mockup-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--signal);
  font-weight: 700;
  white-space: nowrap;
}

.mockup-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.mockup-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.mockup-metrics article,
.rail-card,
.qr-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-metrics span,
.rail-card p,
.qr-copy p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.mockup-metrics strong,
.rail-card strong,
.qr-copy strong {
  display: block;
  margin-top: 8px;
  color: var(--text-strong);
  font-size: 1.12rem;
  line-height: 1.12;
}

.mockup-metrics small,
.rail-card span,
.qr-copy span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.mockup-columns {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  margin-top: 18px;
}

.mockup-columns-single {
  grid-template-columns: 1fr;
}

.mockup-rail {
  display: grid;
  gap: 14px;
}

.qr-card {
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.qr-frame {
  position: relative;
  width: 156px;
  height: 156px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f9fcff, #e9f4ff);
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(12, 18, 28, 0.08);
}

.qr-grid {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(8, 18, 29, 0.95) 12% 18%, transparent 18% 36%, rgba(8, 18, 29, 0.95) 36% 44%, transparent 44% 56%, rgba(8, 18, 29, 0.95) 56% 64%, transparent 64% 100%),
    linear-gradient(transparent 0 12%, rgba(8, 18, 29, 0.95) 12% 18%, transparent 18% 36%, rgba(8, 18, 29, 0.95) 36% 44%, transparent 44% 56%, rgba(8, 18, 29, 0.95) 56% 64%, transparent 64% 100%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0.05));
}

.qr-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 4px solid #0a1623;
}

.qr-corner.top-left {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
}

.qr-corner.top-right {
  top: 12px;
  right: 12px;
  border-left: 0;
  border-bottom: 0;
}

.qr-corner.bottom-left {
  bottom: 12px;
  left: 12px;
  border-right: 0;
  border-top: 0;
}

.qr-corner.bottom-right {
  right: 12px;
  bottom: 12px;
  border-left: 0;
  border-top: 0;
}

.trust-rail {
  padding: 0 0 10px;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article,
.info-card,
.feature-card,
.step-card,
.role-card,
.benefit-card,
.segments-grid article {
  padding: 26px;
}

.trust-grid span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.04);
  color: var(--accent);
  font-weight: 800;
}

.trust-grid h2,
.section-heading h2,
.platform-copy h2,
.p2p-copy h2,
.cta-card h2 {
  font-size: clamp(2rem, 3.3vw, 3.4rem);
}

.trust-grid h2 {
  margin: 18px 0 10px;
  font-size: 1.6rem;
  line-height: 1.02;
}

.trust-grid p,
.section-heading p,
.platform-copy p,
.p2p-copy p,
.cta-card p,
.info-card p,
.feature-card p,
.step-card p,
.benefit-card p,
.segments-grid article,
.site-footer p,
.faq-list p {
  color: var(--muted);
}

.section {
  padding: 32px 0 24px;
}

#local-currency {
  padding-top: 32px;
}

.section-contrast {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.section-dark {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading h2 {
  margin-top: 14px;
}

.section-heading p {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.problem-grid,
.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.currency-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.currency-card {
  display: flex;
  flex-direction: column;
  min-height: 288px;
}

.currency-card .card-kicker {
  margin-bottom: 0;
}

.currency-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  margin: 12px 0 18px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.015), rgba(17, 17, 17, 0.05));
  overflow: hidden;
}

.currency-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 58%);
  pointer-events: none;
}

.currency-card-visual > * {
  position: relative;
  z-index: 1;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.currency-card:hover .currency-card-visual > * {
  transform: translateY(-3px);
}

.currency-payment-icon {
  position: relative;
  width: 74px;
  height: 52px;
}

.currency-payment-card,
.currency-payment-chip,
.currency-payment-line {
  position: absolute;
  display: block;
}

.currency-payment-card {
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #2e2e2e, #171717);
  box-shadow:
    0 12px 18px rgba(17, 17, 17, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.currency-payment-chip {
  top: 14px;
  left: 14px;
  width: 16px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(230, 230, 230, 0.48));
}

.currency-payment-line {
  right: 14px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.currency-payment-line-1 {
  top: 18px;
  width: 24px;
}

.currency-payment-line-2 {
  top: 28px;
  width: 18px;
  opacity: 0.82;
}

.currency-qr {
  display: block;
  width: 74px;
  height: 74px;
  filter: drop-shadow(0 10px 18px rgba(17, 17, 17, 0.06));
  image-rendering: pixelated;
}

.currency-wallet {
  position: relative;
  width: 76px;
  height: 50px;
}

.currency-wallet-back,
.currency-wallet-front,
.currency-wallet-flap,
.currency-wallet-coin {
  position: absolute;
  display: block;
}

.currency-wallet-back {
  inset: 4px 6px 0 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(49, 49, 49, 0.18), rgba(17, 17, 17, 0.1));
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.currency-wallet-front {
  inset: 10px 0 0 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2f2f2f, #191919);
  box-shadow:
    0 10px 18px rgba(17, 17, 17, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.currency-wallet-flap {
  top: 18px;
  right: 0;
  width: 28px;
  height: 18px;
  border-radius: 9px 12px 12px 9px;
  background: linear-gradient(180deg, #3a3a3a, #222222);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.currency-wallet-coin {
  top: 23px;
  right: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.benefits-rail-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 6px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.22) rgba(17, 17, 17, 0.04);
}

.benefits-rail-shell {
  position: relative;
}

.benefits-rail-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.rail-control {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.rail-control:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(17, 17, 17, 0.04);
}

.rail-control span {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}

.rail-control[data-rail-prev] span {
  transform: rotate(-135deg);
}

.rail-control[data-rail-next] span {
  transform: rotate(45deg);
}

.benefits-rail-wrap::-webkit-scrollbar {
  height: 10px;
}

.benefits-rail-wrap::-webkit-scrollbar-track {
  background: rgba(17, 17, 17, 0.04);
  border-radius: 999px;
}

.benefits-rail-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.32), rgba(17, 17, 17, 0.18));
  border-radius: 999px;
}

.benefits-rail {
  display: flex;
  gap: 18px;
  width: max-content;
  min-width: 100%;
}

.info-card h3,
.feature-card h3,
.step-card h3,
.role-card h3,
.benefit-card h3,
.comparison-columns h3 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: 1.26rem;
  line-height: 1.08;
}

.info-card:hover,
.feature-card:hover,
.step-card:hover,
.role-card:hover,
.benefit-card:hover,
.segments-grid article:hover,
.faq-list details:hover {
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
}

.platform-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.platform-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.platform-context-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.platform-context-card {
  grid-column: span 2;
  min-height: 192px;
}

.platform-context-card-wide {
  grid-column: span 3;
  min-height: 164px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
}

.benefit-card-rail {
  flex: 0 0 clamp(270px, 28vw, 330px);
  min-height: 286px;
  padding: 22px;
  scroll-snap-align: start;
}

.benefit-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.015), rgba(17, 17, 17, 0.05));
  overflow: hidden;
}

.benefit-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.benefit-visual::after {
  content: "";
  position: absolute;
  inset: 18px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 248, 245, 0.92));
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 16px 28px rgba(17, 17, 17, 0.06);
  pointer-events: none;
  z-index: 0;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.benefit-icon {
  position: relative;
  width: 58px;
  height: 58px;
  z-index: 1;
  transition:
    transform 220ms ease,
    color 220ms ease;
  color: rgba(17, 17, 17, 0.92);
}

.benefit-icon path,
.benefit-icon circle,
.benefit-icon rect,
.benefit-icon line,
.benefit-icon polyline,
.benefit-icon polygon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.benefit-card-rail h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.02;
}

.benefit-card-rail p {
  font-size: 0.94rem;
  line-height: 1.5;
}

.benefit-card-rail:hover .benefit-visual::after {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 18px 30px rgba(17, 17, 17, 0.08);
}

.benefit-card-rail:hover .benefit-icon {
  transform: translateY(-2px);
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card span,
.role-topline {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.04);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.role-card ul,
.comparison-columns ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.role-card li,
.comparison-columns li {
  position: relative;
  margin-top: 12px;
  padding-left: 22px;
  color: var(--muted);
}

.role-card li::before,
.comparison-columns li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #111111;
}

.role-card.accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 245, 1));
}

.p2p-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.p2p-copy p {
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.notice {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted-strong);
}

.comparison-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 245, 1));
}

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

.comparison-columns article {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.8);
}

.comparison-columns h3,
.compare-label {
  color: var(--text-strong);
}

.compare-label {
  margin-bottom: 14px;
  padding: 8px 11px;
}

.compare-label.negative {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 17, 17, 0.08);
  color: #191919;
}

.compare-label.positive {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.segments-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.segments-grid article {
  display: flex;
  align-items: center;
  min-height: 110px;
  font-size: 1.02rem;
  color: var(--text);
}

.faq-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  align-items: start;
}

.faq-list {
  gap: 14px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text-strong);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.35rem;
  color: #111111;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0 0 20px;
}

.cta-section {
  padding: 0 0 96px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 36px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 245, 1));
  box-shadow: var(--shadow-strong);
}

.cta-card .section-label {
  background: rgba(17, 17, 17, 0.04);
  border-color: rgba(17, 17, 17, 0.08);
  color: #111111;
}

.cta-card h2 {
  color: #111111;
}

.cta-card p {
  max-width: 64ch;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.legal-section {
  padding: 34px 0 96px;
}

.legal-shell {
  display: grid;
  gap: 24px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  grid-template-areas: "sidebar card";
  gap: 28px;
  align-items: start;
}

.legal-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.legal-doc-nav {
  display: grid;
  gap: 10px;
}

.legal-doc-link,
.legal-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.legal-doc-link:hover,
.legal-home-link:hover,
.legal-doc-link:focus-visible,
.legal-home-link:focus-visible {
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.legal-doc-link.is-active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.14);
}

.legal-card {
  grid-area: card;
  padding: 38px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 245, 1));
  box-shadow: var(--shadow-strong);
}

.legal-intro {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.legal-intro h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.legal-intro p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.legal-prose {
  color: var(--text);
}

.legal-prose h2,
.legal-prose h3,
.legal-prose h4,
.legal-prose h5,
.legal-prose h6 {
  margin: 0 0 16px;
  color: var(--text-strong);
  letter-spacing: -0.03em;
}

.legal-prose h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.legal-prose h3 {
  margin-top: 22px;
  font-size: 1.18rem;
}

.legal-prose p,
.legal-prose ul {
  max-width: 72ch;
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.72;
}

.legal-prose ul {
  padding-left: 22px;
}

.legal-prose li + li {
  margin-top: 8px;
}

.legal-prose code {
  display: inline-block;
  padding: 0.15em 0.5em;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--text-strong);
  font-size: 0.95em;
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 14, 20, 0.4);
  backdrop-filter: blur(14px);
}

.feedback-modal[hidden] {
  display: none !important;
}

.feedback-dialog {
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 245, 1));
  box-shadow: 0 36px 80px rgba(15, 23, 42, 0.16);
}

.feedback-head {
  position: relative;
  padding-right: 72px;
}

.feedback-head h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.feedback-head p {
  margin: 14px 0 0;
  max-width: 56ch;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.03);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  top: 23px;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.feedback-form {
  margin-top: 24px;
}

.feedback-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.feedback-field {
  display: grid;
  gap: 9px;
  align-content: start;
  align-self: start;
}

.feedback-field span {
  color: var(--text-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.feedback-field-note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.feedback-field-full {
  grid-column: 1 / -1;
}

.feedback-field input,
.feedback-field select,
.feedback-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
}

.feedback-field input,
.feedback-field select {
  min-height: 54px;
  padding: 0 16px;
}

.feedback-field textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

.feedback-field input::placeholder,
.feedback-field textarea::placeholder {
  color: rgba(119, 119, 119, 0.72);
}

.feedback-field input:focus,
.feedback-field select:focus,
.feedback-field textarea:focus {
  outline: none;
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.feedback-field input.is-invalid,
.feedback-field select.is-invalid,
.feedback-field textarea.is-invalid {
  border-color: rgba(162, 38, 38, 0.28);
  box-shadow: 0 0 0 4px rgba(162, 38, 38, 0.08);
}

.feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.feedback-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.feedback-status,
.feedback-success {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.04);
  color: #111111;
  font-weight: 600;
}

.feedback-status.is-info,
.feedback-success.is-info {
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.04);
  color: var(--text-strong);
}

.feedback-status.is-success,
.feedback-success.is-success {
  border-color: rgba(25, 113, 67, 0.14);
  background: rgba(25, 113, 67, 0.08);
  color: #185f3a;
}

.feedback-status.is-error,
.feedback-success.is-error {
  border-color: rgba(162, 38, 38, 0.14);
  background: rgba(162, 38, 38, 0.08);
  color: #7b2424;
}

.site-footer {
  padding: 0 0 42px;
}

.footer-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.footer-legal {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.footer-copy {
  margin: 0;
  color: var(--text-strong);
  font-size: 0.96rem;
  font-weight: 600;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.footer-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .platform-grid,
  .p2p-grid,
  .faq-grid,
  .trust-grid,
  .footer-row,
  .cta-card,
  .flow-layout,
  .action-story {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    display: flex;
    flex-direction: column;
  }

  .legal-card {
    order: 0;
  }

  .legal-sidebar {
    order: -1;
  }

  .cta-card {
    align-items: start;
    flex-direction: column;
  }

  .problem-grid,
  .benefits-grid,
  .currency-flow,
  .platform-features,
  .platform-context-grid,
  .roles-grid,
  .segments-grid,
  .steps-grid,
  .action-story-points,
  .comparison-columns,
  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-context-card,
  .platform-context-card-wide {
    grid-column: span 1;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-main {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    column-gap: 20px;
    max-width: 940px;
  }

  .hero-meta {
    max-width: 460px;
  }

  .story-shot-hero {
    max-width: 400px;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    backdrop-filter: blur(14px);
  }

  .header-row {
    gap: 12px;
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 84px 20px auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-strong);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .site-nav > a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    color: var(--text-strong);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.22;
  }

  .site-nav > a:last-of-type {
    border-bottom: 0;
  }

  .site-nav > .button {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
  }

  .locale-switcher {
    width: auto;
    display: inline-flex;
    gap: 0;
  }

  .locale-switcher-trigger {
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }

  .locale-switcher-trigger-copy {
    justify-content: center;
    gap: 0;
  }

  .locale-trigger-label,
  .locale-switcher-caret {
    display: none;
  }

  .locale-switcher-current {
    gap: 0;
  }

  .locale-flag {
    font-size: 1.08rem;
  }

  .locale-switcher-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 188px;
    width: max-content;
    max-width: calc(100vw - 40px);
    margin-top: 0;
    padding: 8px;
    box-shadow: 0 20px 48px rgba(17, 17, 17, 0.1);
    transform: translateY(-8px);
    max-height: none;
    opacity: 0;
    pointer-events: none;
  }

  .locale-switcher.is-open .locale-switcher-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .locale-link {
    letter-spacing: 0;
  }

  .locale-link-copy {
    gap: 12px;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero-section {
    padding-top: 28px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-break-desktop {
    display: none;
  }

  .hero-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "meta";
    row-gap: 14px;
    max-width: none;
  }

  .hero-meta {
    width: 100%;
    max-width: none;
  }

  .hero-visual {
    width: 100%;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 0;
    justify-content: center;
    align-self: center;
  }

  .story-shot-hero {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  #local-currency {
    padding-top: 54px;
  }

  .problem-grid,
  .benefits-grid,
  .currency-flow,
  .platform-features,
  .platform-context-grid,
  .roles-grid,
  .segments-grid,
  .steps-grid,
  .action-story-points,
  .comparison-columns,
  .feedback-grid,
  .mockup-metrics,
  .mockup-columns,
  .qr-card {
    grid-template-columns: 1fr;
  }

  .legal-section {
    padding: 20px 0 72px;
  }

  .legal-layout {
    gap: 16px;
  }

  .legal-sidebar {
    gap: 10px;
  }

  .legal-sidebar .section-label {
    display: none;
  }

  .legal-doc-nav {
    gap: 8px;
  }

  .legal-doc-link,
  .legal-home-link {
    min-height: 44px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 12px 16px;
    line-height: 1.28;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .legal-card {
    padding: 24px;
    border-radius: 28px;
  }

  .legal-intro {
    gap: 12px;
    margin-bottom: 22px;
  }

  .legal-intro h1 {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.7rem);
    line-height: 1;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .legal-prose h2 {
    margin-top: 28px;
  }

  .legal-prose p,
  .legal-prose ul {
    max-width: none;
  }

  .hero-trust-inline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-layout,
  .action-story {
    gap: 16px;
  }

  .feedback-toast {
    right: 12px;
    left: 12px;
    top: 84px;
    width: auto;
    gap: 14px;
    padding: 16px;
  }

  .flow-visual,
  .action-story-visual {
    order: -1;
  }

  .story-shot-detail,
  .story-shot-action {
    max-width: 520px;
    margin: 0 auto;
  }

  .currency-card {
    min-height: 0;
  }

  .currency-card-visual {
    min-height: 78px;
    margin: 10px 0 16px;
  }

  .benefit-card-rail {
    min-height: 252px;
  }

  .benefit-visual {
    min-height: 92px;
    margin-bottom: 16px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .currency-payment-icon {
    width: 66px;
    height: 46px;
  }

  .currency-payment-chip {
    top: 12px;
    left: 12px;
    width: 14px;
    height: 10px;
  }

  .currency-payment-line {
    right: 12px;
    height: 4px;
  }

  .currency-payment-line-1 {
    width: 22px;
  }

  .currency-payment-line-2 {
    width: 16px;
  }

  .currency-qr {
    width: 68px;
    height: 68px;
  }

  .currency-wallet {
    width: 70px;
    height: 46px;
  }

  .feedback-modal {
    padding: 16px;
  }

  .feedback-dialog {
    max-height: calc(100vh - 32px);
    padding: 22px;
    border-radius: 24px;
  }

  .feedback-head {
    padding-right: 60px;
  }

  .feedback-actions {
    flex-direction: column;
  }

  .feedback-actions .button {
    width: 100%;
  }

  .section {
    padding: 40px 0 28px;
  }

  #local-currency {
    padding-top: 40px;
  }

  .cta-section {
    padding-bottom: 72px;
  }

  .trust-grid article,
  .info-card,
  .feature-card,
  .step-card,
  .role-card,
  .benefit-card,
  .segments-grid article,
  .cta-card,
  .comparison-card,
  .faq-list details,
  .mockup-card {
    padding: 20px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-link-group {
    display: grid;
    gap: 12px;
  }

  .footer-link-group a {
    display: block;
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
