:root {
  --ink: #10130f;
  --ink-soft: #20251e;
  --paper: #f5f3ec;
  --paper-deep: #ece9df;
  --white: #ffffff;
  --line: rgba(16, 19, 15, .12);
  --muted: #666c62;
  --acid: #c8ff48;
  --acid-deep: #9edb13;
  --violet: #7568ff;
  --blue: #2679ff;
  --green: #12af68;
  --orange: #ff8d42;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 24px 80px rgba(21, 25, 19, .10);
  --shadow-card: 0 18px 50px rgba(21, 25, 19, .08);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body.epay-site {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

body.epay-site a {
  color: inherit;
  text-decoration: none;
}

body.epay-site a:hover,
body.epay-site a:focus { text-decoration: none; }

body.epay-site button,
body.epay-site a { -webkit-tap-highlight-color: transparent; }

body.epay-site button { font: inherit; }

body.epay-site img { max-width: 100%; }

#main-content {
  min-height: 70vh;
  padding-top: 78px;
}

.page-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink) !important;
  background: var(--acid);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(245, 243, 236, .90);
  border-color: var(--line);
  box-shadow: 0 8px 40px rgba(16, 19, 15, .05);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(1360px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--acid);
  background: var(--ink);
  border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(-2deg);
}

.brand-mark svg { width: 28px; fill: currentColor; }
.brand-mark .brand-mark-accent { fill: var(--ink); }

.brand-type {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand-type strong {
  max-width: 190px;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-type small {
  color: var(--muted);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1.35px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  margin: 0 auto;
}

.site-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #41473e;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--ink);
  border-radius: 2px;
  transition: right .25s var(--ease), left .25s var(--ease);
}

.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { right: 0; left: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: max-content;
}

.nav-login {
  font-size: 14px;
  font-weight: 700;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform .25s var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button:hover svg:not(.button-code) { transform: translateX(3px); }

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.button-dark {
  color: var(--white) !important;
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(16,19,15,.16);
}

.button-dark:hover { background: #292f27; }

.button-primary {
  color: var(--ink) !important;
  background: var(--acid);
  box-shadow: 0 14px 35px rgba(157, 219, 19, .24);
}

.button-primary:hover {
  background: #d4ff70;
  box-shadow: 0 18px 42px rgba(157, 219, 19, .3);
}

.button-ghost {
  color: var(--ink) !important;
  background: rgba(255,255,255,.48);
  border-color: rgba(16,19,15,.18);
}

.button-ghost:hover {
  background: var(--white);
  border-color: rgba(16,19,15,.3);
}

.button-light {
  color: var(--white) !important;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.button-light:hover { background: rgba(255,255,255,.14); }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 6px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease;
}

body.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 880px;
  padding: 102px 0 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(200,255,72,.24), transparent 22%),
    radial-gradient(circle at 12% 42%, rgba(117,104,255,.09), transparent 24%),
    var(--paper);
}

.hero-noise,
.cta-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .21;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(16,19,15,.08);
  border-radius: 50%;
}

.hero-orbit-one { top: -400px; right: -220px; width: 860px; height: 860px; }
.hero-orbit-two { top: -300px; right: -120px; width: 660px; height: 660px; }

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  align-items: center;
  gap: 38px;
}

.hero-copy { padding-bottom: 36px; }

.eyebrow,
.section-index,
.card-kicker,
.cta-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555c51;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.9px;
  line-height: 1.2;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  background: var(--acid-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(158,219,19,.13);
}

.hero h1 {
  max-width: 680px;
  margin: 27px 0 25px;
  font-size: clamp(54px, 4.7vw, 76px);
  font-weight: 820;
  letter-spacing: -5px;
  line-height: .98;
}

.hero-title-line { white-space: nowrap; }

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-style: normal;
  z-index: 1;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 2px;
  left: -3px;
  height: 20px;
  content: "";
  background: var(--acid);
  border-radius: 3px;
  transform: rotate(-1.2deg);
}

.hero-lead {
  max-width: 550px;
  margin: 0;
  color: #5a6056;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.button-code { width: 18px !important; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #747a70;
  font-size: 12px;
  font-weight: 650;
}

.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof i { width: 4px; height: 4px; background: #8e9589; border-radius: 50%; }

.hero-product {
  position: relative;
  min-width: 0;
  padding: 32px 0 55px;
  perspective: 1600px;
}

.dashboard-glow {
  position: absolute;
  top: 3%;
  right: 2%;
  width: 78%;
  height: 74%;
  background: var(--acid);
  border-radius: 50%;
  filter: blur(70px);
  opacity: .26;
}

.dashboard-window {
  position: relative;
  width: 720px;
  overflow: hidden;
  color: #e9ede6;
  background: #161a15;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  box-shadow: 0 45px 100px rgba(16,19,15,.25), 0 8px 20px rgba(16,19,15,.14);
  transform: rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}

.dashboard-topbar {
  height: 51px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.015);
}

.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; display: block; background: #474d45; border-radius: 50%; }

.window-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 auto;
  color: #8d9689;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 1.2px;
}

.window-status span { width: 5px; height: 5px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 8px var(--acid); }

.window-avatar {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 900;
}

.dashboard-body { min-height: 476px; display: flex; }

.dashboard-sidebar {
  width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding-top: 22px;
  border-right: 1px solid rgba(255,255,255,.07);
}

.mini-brand {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  background: var(--acid);
  border-radius: 7px;
}

.mini-brand span { width: 12px; height: 8px; border: 3px solid var(--ink); border-top: 0; border-radius: 1px 1px 5px 5px; transform: rotate(-12deg); }
.dashboard-sidebar > i { width: 16px; height: 16px; display: block; border: 1px solid #61685e; border-radius: 5px; opacity: .6; }
.dashboard-sidebar > i:nth-of-type(3) { border-radius: 50%; }
.dashboard-sidebar > i:nth-of-type(4) { width: 17px; height: 12px; border-radius: 2px; }
.dashboard-sidebar > i.side-active { position: relative; background: var(--acid); border-color: var(--acid); opacity: 1; }
.dashboard-sidebar > i.side-active::before { position: absolute; top: 2px; bottom: 2px; left: -22px; width: 2px; content: ""; background: var(--acid); border-radius: 4px; }

.dashboard-content { min-width: 0; flex: 1; padding: 23px 25px; }

.dash-heading { display: flex; align-items: center; justify-content: space-between; }
.dash-heading div { display: flex; flex-direction: column; gap: 3px; }
.dash-heading small { color: #70786d; font-size: 7px; font-weight: 800; letter-spacing: 1.4px; }
.dash-heading strong { font-size: 15px; letter-spacing: -.2px; }
.dash-heading button { padding: 6px 9px; color: #aeb5aa; background: #21261f; border: 1px solid rgba(255,255,255,.07); border-radius: 7px; font-size: 8px; }
.dash-heading button span { margin-left: 5px; }

.metric-grid { display: grid; grid-template-columns: 2.1fr .9fr; gap: 11px; margin-top: 17px; }
.metric-card { min-width: 0; height: 176px; padding: 15px 17px; background: #1e231d; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; }
.metric-label { display: flex; align-items: center; justify-content: space-between; color: #858e81; font-size: 8px; }
.metric-label i { padding: 3px 6px; color: var(--acid); background: rgba(200,255,72,.08); border-radius: 4px; font-style: normal; }
.metric-main > strong { display: block; margin-top: 6px; font-size: 22px; letter-spacing: -.7px; }
.metric-main > strong small { color: #7d867a; font-size: 11px; font-weight: 500; }
.chart { height: 93px; margin-top: 4px; }
.chart svg { width: 100%; height: 72px; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--acid); stroke-width: 2; vector-effect: non-scaling-stroke; }
.chart-days { display: flex; justify-content: space-between; color: #596057; font-size: 5px; letter-spacing: .3px; }

.metric-side { display: flex; flex-direction: column; }
.metric-icon { width: 29px; height: 29px; display: grid; place-items: center; color: var(--acid); background: rgba(200,255,72,.09); border-radius: 8px; }
.metric-icon svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.metric-side > small { margin-top: 13px; color: #7d8679; font-size: 8px; }
.metric-side > strong { margin-top: 2px; font-size: 23px; }
.metric-side p { margin: auto 0 0; color: #6f776c; font-size: 7px; }
.metric-side p b { color: var(--acid); font-weight: 700; }

.transaction-panel { margin-top: 12px; padding: 14px 17px 7px; background: #1e231d; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; }
.transaction-head { display: flex; justify-content: space-between; margin-bottom: 4px; }
.transaction-head strong { font-size: 10px; }
.transaction-head span { color: #828a7e; font-size: 7px; }
.transaction-row { min-height: 54px; display: grid; grid-template-columns: 28px 1.3fr .7fr .9fr 45px; align-items: center; gap: 9px; border-top: 1px solid rgba(255,255,255,.055); font-size: 8px; }
.transaction-row > div:nth-child(2) { display: flex; min-width: 0; flex-direction: column; }
.transaction-row > div strong { font-size: 8px; }
.transaction-row > div small { overflow: hidden; color: #667063; font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }
.transaction-row time { color: #7c8578; font-size: 7px; }
.transaction-row > b { color: #e9ede6; font-size: 8px; text-align: right; }
.transaction-row > span:last-child { padding: 3px 5px; border-radius: 4px; font-size: 6px; text-align: center; }
.paid { color: #82e7ac; background: rgba(18,175,104,.12); }
.processing { color: #ffc396; background: rgba(255,141,66,.12); }

.pay-logo {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
}

.pay-logo.ali { background: #1677ff; }
.pay-logo.wx { background: #10b760; }
.pay-logo.union { background: #e94d5c; }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  color: #20251f;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,19,15,.1);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(16,19,15,.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.floating-card > span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.35; }
.floating-card small { color: #7b8177; font-size: 7px; }
.floating-card strong { font-size: 9px; }
.floating-route { right: -27px; bottom: 72px; }
.floating-route > i { width: 6px; height: 6px; margin-left: 5px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(18,175,104,.1); }
.floating-icon { width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 8px; }
.floating-icon svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.floating-safe { bottom: 10px; left: -26px; }
.safe-pulse { width: 31px; height: 31px; display: grid; place-items: center; background: #edf5e9; border-radius: 50%; }
.safe-pulse i { width: 9px; height: 9px; background: var(--green); border: 3px solid #d0f2dd; border-radius: 50%; box-sizing: content-box; }

.payment-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 55px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.payment-strip > p { margin: 0; color: #777d73; font-size: 11px; font-weight: 700; letter-spacing: .6px; }
.payment-list { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.payment-name { display: flex; align-items: center; gap: 8px; color: #4d534a; font-size: 13px; font-weight: 750; white-space: nowrap; }
.payment-dot { width: 27px; height: 27px; display: grid; place-items: center; color: #fff; border-radius: 8px; font-size: 10px; font-style: normal; font-weight: 850; }
.alipay-dot { background: #1677ff; }
.wechat-dot { background: #10b760; }
.union-dot { background: linear-gradient(135deg,#1677a5,#e95059); }
.qq-dot { background: #171d24; }
.jd-dot { background: #e52c26; font-size: 7px; }

/* Shared section */
.section { padding: 130px 0; }

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-index { margin-bottom: 20px; color: #7b8276; }

.section h2,
.security h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 810;
  letter-spacing: -3.7px;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

/* Bento capabilities */
.capabilities { background: #fbfaf6; }

.bento-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 38px;
  background: var(--paper);
  border: 1px solid rgba(16,19,15,.11);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.card-number { position: absolute; top: 23px; right: 25px; color: #a2a79e; font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.card-copy { position: relative; z-index: 3; max-width: 445px; }
.card-kicker { margin-bottom: 17px; color: #787e74; font-size: 9px; }
.card-copy h3 { margin: 0 0 14px; font-size: 29px; font-weight: 790; letter-spacing: -1.3px; line-height: 1.25; }
.card-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.card-copy > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding-bottom: 3px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 750; }

.bento-api {
  grid-row: span 2;
  min-height: 760px;
  color: #f3f5f0;
  background:
    radial-gradient(circle at 85% 65%, rgba(117,104,255,.21), transparent 27%),
    #141813;
  border-color: rgba(255,255,255,.09);
}

.bento-api .card-number { color: #62695f; }
.bento-api .card-kicker { color: var(--acid); }
.bento-api .card-copy p { color: #969d92; }
.bento-api .card-copy > a { color: var(--acid); border-color: var(--acid); }

.code-window {
  position: absolute;
  right: 35px;
  bottom: 35px;
  left: 35px;
  overflow: hidden;
  background: #1b201a;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
}

.code-top {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.code-top span { margin-right: auto; color: #8d9589; font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; }
.code-top i { width: 7px; height: 7px; margin-left: 6px; background: #464d44; border-radius: 50%; }
.code-window pre { min-height: 264px; margin: 0; padding: 26px 25px; color: #d9ded6; background: transparent; border: 0; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; line-height: 2; tab-size: 2; }
.code-window code { color: inherit; background: transparent; }
.code-purple { color: #b2a9ff; }
.code-blue { color: #80b5ff; }
.code-green { color: #9ee26d; }
.code-orange { color: #f4b37e; }
.code-result { height: 47px; display: flex; align-items: center; gap: 8px; padding: 0 17px; color: #939b8f; background: #181c17; border-top: 1px solid rgba(255,255,255,.07); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; }
.code-result i { width: 6px; height: 6px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 8px var(--acid); }
.code-result b { margin-left: auto; color: #697166; font-weight: 500; }

.bento-scene { background: #e9e7ff; }
.scene-visual { position: absolute; top: 34px; right: 35px; width: 188px; height: 218px; }
.scene-phone { position: absolute; top: 0; right: 10px; width: 135px; height: 228px; padding: 30px 14px 15px; color: #1e211d; background: #fff; border: 5px solid #1a1d19; border-radius: 22px; box-shadow: 0 18px 34px rgba(51,44,128,.2); transform: rotate(4deg); }
.scene-phone-top { position: absolute; top: 5px; left: 50%; width: 42px; height: 8px; background: #1a1d19; border-radius: 10px; transform: translateX(-50%); }
.scene-phone > span { display: block; color: #7f837b; font-size: 7px; text-align: center; }
.scene-phone > strong { display: block; margin-top: 7px; font-size: 17px; letter-spacing: -.5px; text-align: center; }
.scene-phone > small { display: block; margin-bottom: 14px; color: #999d95; font-size: 5.5px; text-align: center; }
.scene-phone > i { height: 22px; display: block; margin: 6px 0; background: #f1f2ef; border-radius: 6px; }
.scene-phone > i:nth-of-type(2) { width: 82%; }
.scene-phone > i:nth-of-type(3) { width: 64%; }
.scene-phone > button { position: absolute; right: 12px; bottom: 12px; left: 12px; height: 28px; color: var(--ink); background: var(--acid); border: 0; border-radius: 7px; font-size: 7px; font-weight: 800; }
.scene-tag { position: absolute; z-index: 3; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--violet); border: 4px solid #e9e7ff; border-radius: 12px; box-shadow: 0 10px 20px rgba(68,56,184,.2); font-size: 9px; font-weight: 850; }
.scene-h5 { top: 30px; left: 6px; transform: rotate(-8deg); }
.scene-qr { right: 0; bottom: 5px; color: var(--ink); background: var(--acid); transform: rotate(7deg); }
.bento-scene .card-copy { position: absolute; right: 30px; bottom: 30px; left: 30px; max-width: 370px; }
.bento-scene .card-copy h3 { max-width: 290px; font-size: 25px; }

.bento-settle { background: #edf3e8; }
.bento-settle .card-copy { max-width: 330px; }
.bento-settle .card-copy h3 { font-size: 25px; }
.settle-visual { position: absolute; right: 30px; bottom: 25px; left: 30px; padding: 9px 16px 15px; background: rgba(255,255,255,.76); border: 1px solid rgba(16,19,15,.08); border-radius: 15px; box-shadow: 0 14px 34px rgba(41,72,32,.08); }
.settle-row { min-height: 38px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(16,19,15,.07); color: #6a7067; font-size: 8px; }
.settle-row span { display: flex; align-items: center; gap: 7px; }
.settle-row i { width: 6px; height: 6px; border-radius: 50%; }
.settle-green { background: var(--green); }
.settle-blue { background: var(--blue); }
.settle-orange { background: var(--orange); }
.settle-row b { color: #343a32; font-size: 8px; }
.settle-total { display: flex; align-items: flex-end; justify-content: space-between; padding-top: 13px; }
.settle-total span { color: #7a8077; font-size: 8px; }
.settle-total strong { font-size: 15px; letter-spacing: -.4px; }

/* Routing */
.routing { background: var(--paper); }
.routing-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 75px; }
.routing-copy > p { max-width: 510px; margin: 28px 0 35px; color: var(--muted); line-height: 1.9; }
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list li > span { width: 30px; height: 30px; display: grid; place-items: center; color: #596056; background: #e8e5dc; border-radius: 50%; font-size: 9px; font-weight: 800; }
.feature-list li > div { display: flex; flex-direction: column; }
.feature-list strong { font-size: 14px; }
.feature-list small { margin-top: 2px; color: #7a8076; font-size: 11px; }

.routing-map {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #151914;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(16,19,15,.15);
}

.route-grid,
.security-grid {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 78%);
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.route-source {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 31px;
  width: 115px;
  padding: 16px;
  color: #e5e9e2;
  background: #22271f;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  transform: translateY(-50%);
}
.route-source > span { color: #7b8377; font-size: 7px; font-weight: 800; letter-spacing: 1px; }
.route-source svg { width: 23px; display: block; margin: 13px 0 10px; fill: none; stroke: var(--acid); stroke-width: 1.5; }
.route-source strong { display: block; font-size: 10px; }
.route-source small { color: #91998d; font-size: 8px; }

.route-lines { position: absolute; inset: 75px 10px; width: calc(100% - 20px); height: calc(100% - 150px); overflow: visible; }
.route-lines path { fill: none; stroke: #3b4338; stroke-width: 1.5; stroke-dasharray: 4 6; vector-effect: non-scaling-stroke; }
.route-lines .route-line-active { stroke: var(--acid); stroke-dasharray: 7 5; animation: routeFlow 2s linear infinite; }
.route-lines circle { fill: var(--acid); filter: drop-shadow(0 0 5px var(--acid)); }

@keyframes routeFlow { to { stroke-dashoffset: -24; } }

.route-engine { position: absolute; z-index: 3; top: 50%; left: 39%; width: 98px; display: flex; flex-direction: column; align-items: center; color: #eff2ed; transform: translate(-50%,-50%); }
.engine-ring { width: 76px; height: 76px; display: grid; place-items: center; margin-bottom: 12px; border: 1px solid #4b5547; border-radius: 50%; box-shadow: 0 0 0 9px rgba(255,255,255,.015), 0 0 0 18px rgba(255,255,255,.012); }
.engine-ring::before { width: 52px; height: 52px; content: ""; border: 1px dashed var(--acid); border-radius: 50%; animation: spin 12s linear infinite; }
.engine-ring i { position: absolute; width: 14px; height: 14px; background: var(--acid); border: 5px solid #2d3528; border-radius: 50%; box-sizing: content-box; box-shadow: 0 0 16px rgba(200,255,72,.45); }
.route-engine small { color: var(--acid); font-size: 6px; font-weight: 850; letter-spacing: 1px; }
.route-engine strong { margin-top: 3px; font-size: 9px; }

@keyframes spin { to { transform: rotate(360deg); } }

.route-channel { position: absolute; z-index: 3; right: 27px; width: 230px; min-height: 67px; display: flex; align-items: center; gap: 10px; padding: 11px 12px; color: #e8ece5; background: #22271f; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; }
.route-channel > div { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.route-channel strong { font-size: 9px; }
.route-channel small { color: #7e877a; font-size: 7px; }
.route-channel > i { padding: 4px 6px; color: #8d9689; background: #2b3129; border-radius: 5px; font-size: 6px; font-style: normal; }
.route-channel > i.best { color: var(--ink); background: var(--acid); font-weight: 800; }
.route-channel .pay-logo { width: 30px; height: 30px; }
.channel-a { top: 73px; }
.channel-b { top: 50%; border-color: rgba(200,255,72,.3); box-shadow: 0 0 30px rgba(200,255,72,.07); transform: translateY(-50%); }
.channel-c { bottom: 73px; }
.route-legend { position: absolute; right: 30px; bottom: 22px; display: flex; gap: 18px; color: #747d70; font-size: 7px; }
.route-legend span { display: flex; align-items: center; gap: 5px; }
.route-legend i { width: 5px; height: 5px; background: var(--acid); border-radius: 50%; }
.route-legend span:last-child i { background: var(--violet); }

/* Workflow */
.workflow { padding-top: 20px; background: var(--paper); }
.workflow-head { display: grid; grid-template-columns: 1fr auto; align-items: end; padding-bottom: 55px; }
.workflow-head .section-index { grid-column: 1/-1; }
.text-link { padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 750; }
.text-link span { margin-left: 6px; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { min-height: 330px; padding: 48px 42px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 54px; background: #e8e5dc; border-radius: 18px; transform: rotate(-3deg); }
.step-icon svg { width: 30px; fill: none; stroke: var(--ink); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.step-icon-active { background: var(--acid); transform: rotate(3deg); }
.step > span { color: #83897f; font-size: 9px; font-weight: 800; letter-spacing: 1.5px; }
.step h3 { margin: 8px 0 10px; font-size: 23px; font-weight: 780; letter-spacing: -.8px; }
.step p { max-width: 280px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

/* Security */
.security {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: #f3f5f1;
  background: #11150f;
}

.security-grid { opacity: .65; background-size: 48px 48px; }
.security::before { position: absolute; top: -40%; right: -15%; width: 720px; height: 720px; content: ""; background: radial-gradient(circle, rgba(200,255,72,.13), transparent 65%); }
.security-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 90px; }
.section-index-light { color: var(--acid); }
.security-copy > p { max-width: 520px; margin: 30px 0 36px; color: #929a8e; line-height: 1.9; }
.security-badges { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; max-width: 440px; }
.security-badges span { display: flex; align-items: center; gap: 10px; padding: 12px 14px; color: #b8beb4; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; font-size: 11px; }
.security-badges i { width: 19px; height: 19px; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 10px; font-style: normal; font-weight: 900; }

.security-visual { position: relative; min-height: 520px; }
.security-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 430px; height: 430px; animation: spin 35s linear infinite; }
.orbit-two { width: 300px; height: 300px; border-style: dashed; animation: reverseSpin 28s linear infinite; }
@keyframes reverseSpin { to { transform: translate(-50%,-50%) rotate(-360deg); } }
.security-orbit > span { position: absolute; width: 9px; height: 9px; background: var(--acid); border: 3px solid #1d2418; border-radius: 50%; box-sizing: content-box; box-shadow: 0 0 16px rgba(200,255,72,.4); }
.orbit-one > span:nth-child(1) { top: 10%; left: 18%; }
.orbit-one > span:nth-child(2) { right: -7px; bottom: 42%; background: var(--violet); }
.orbit-one > span:nth-child(3) { bottom: 9%; left: 25%; background: var(--blue); }
.orbit-two > span:nth-child(1) { top: -7px; left: 50%; }
.orbit-two > span:nth-child(2) { right: 12%; bottom: 8%; background: var(--orange); }
.security-core { position: absolute; top: 50%; left: 50%; width: 185px; height: 185px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #1b2118; border: 1px solid rgba(200,255,72,.2); border-radius: 50%; box-shadow: 0 0 0 15px rgba(255,255,255,.018), 0 0 70px rgba(200,255,72,.08); transform: translate(-50%,-50%); }
.shield { width: 57px; height: 64px; display: grid; place-items: center; margin-bottom: 12px; color: var(--acid); }
.shield svg { width: 48px; fill: rgba(200,255,72,.07); stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.security-core small { color: #747d70; font-size: 7px; font-weight: 800; letter-spacing: 1.3px; }
.security-core strong { margin-top: 4px; font-size: 12px; }
.security-label { position: absolute; display: flex; align-items: center; gap: 8px; padding: 9px 12px; color: #b9c0b5; background: rgba(32,39,29,.9); border: 1px solid rgba(255,255,255,.09); border-radius: 9px; box-shadow: 0 12px 30px rgba(0,0,0,.2); font-size: 9px; }
.security-label i { width: 6px; height: 6px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 8px var(--acid); }
.label-sign { top: 17%; left: 4%; }
.label-risk { top: 28%; right: 1%; }
.label-risk i { background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.label-audit { right: 9%; bottom: 16%; }
.label-audit i { background: var(--blue); box-shadow: 0 0 8px var(--blue); }

/* CTA */
.final-cta { padding: 105px 0; background: #fbfaf6; }
.cta-card { position: relative; overflow: hidden; padding: 85px 30px; color: #f5f7f3; background: #181d16; border-radius: var(--radius-lg); text-align: center; }
.cta-card::before,
.cta-card::after { position: absolute; content: ""; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.cta-card::before { top: -300px; left: -170px; width: 600px; height: 600px; }
.cta-card::after { right: -130px; bottom: -330px; width: 620px; height: 620px; }
.cta-pattern { opacity: .14; mix-blend-mode: screen; }
.cta-kicker { position: relative; z-index: 2; justify-content: center; margin-bottom: 20px; color: var(--acid); }
.cta-card h2 { position: relative; z-index: 2; font-size: clamp(40px, 5vw, 64px); }
.cta-card > p { position: relative; z-index: 2; margin: 18px 0 30px; color: #9da59a; }
.cta-actions { position: relative; z-index: 2; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* Footer */
.site-footer { padding: 74px 0 24px; color: #d8ddd5; background: #11150f; }
.footer-main { display: grid; grid-template-columns: 1fr 1.25fr; gap: 90px; padding-bottom: 64px; }
.brand-footer .brand-mark { color: var(--ink); background: var(--acid); }
.brand-footer .brand-mark-accent { fill: var(--acid); }
.brand-footer .brand-type strong { color: #f0f3ee; }
.brand-footer .brand-type small { color: #788075; }
.footer-brand > p { max-width: 320px; margin: 22px 0 18px; color: #7f887b; font-size: 13px; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; color: #8f978b; font-size: 10px; }
.footer-status i { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 9px rgba(200,255,72,.5); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-links > div { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { margin-bottom: 8px; color: #e9ede7; font-size: 11px; }
.footer-links a { color: #7f887b !important; font-size: 12px; transition: color .2s ease; }
.footer-links a:hover { color: var(--acid) !important; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: #61695f; font-size: 10px; }
.footer-bottom p { margin: 0; }

.back-to-top { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 12px 30px rgba(16,19,15,.2); opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .25s ease, transform .25s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

/* Legacy content compatibility */
.epay-site .container { max-width: 1170px; }
.epay-site .bann { margin-top: 0; }
.epay-site article.post,
.epay-site .post-content { color: #292e27; }
.epay-site .post-content { padding: 44px 0 70px; }
.epay-site .post-content h4 { margin-top: 32px; color: var(--ink); font-weight: 750; }
.epay-site .post-content p { color: #535a50; line-height: 1.9; }
.epay-site .table { background: #fff; }
.epay-site .table > thead > tr > th { color: var(--ink); background: #eef0e9; border-color: #d9ddd3; }
.epay-site .table > tbody > tr > td { border-color: #e0e3dc; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .14s; }
.reveal-delay-two { transition-delay: .25s; }

/* Responsive */
@media (max-width: 1260px) {
  .nav-shell { gap: 28px; }
  .site-nav { gap: 22px; }
  .hero-layout { grid-template-columns: 460px minmax(0, 1fr); gap: 24px; }
  .dashboard-window { width: 650px; }
  .routing-layout { gap: 45px; }
  .route-channel { width: 210px; }
}

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 12px; }
  .nav-login { display: none; }
  .hero { min-height: auto; padding-top: 75px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 750px; text-align: center; margin: 0 auto; }
  .eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .hero-lead { margin: 0 auto; }
  .hero-product { width: min(760px, 100%); margin: 10px auto 0; }
  .dashboard-window { width: 100%; transform: rotateY(-2deg) rotateX(1deg); }
  .payment-strip { margin-top: 30px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-api { min-height: 720px; grid-row: auto; }
  .bento-scene, .bento-settle { min-height: 430px; }
  .routing-layout { grid-template-columns: 1fr; }
  .routing-copy { max-width: 760px; }
  .routing-map { min-height: 600px; }
  .security-layout { grid-template-columns: 1fr; }
  .security-copy { max-width: 760px; }
  .security-visual { width: min(650px,100%); margin: 0 auto; }
}

@media (max-width: 860px) {
  #main-content { padding-top: 68px; }
  .site-header { height: 68px; }
  .nav-shell { width: calc(100% - 32px); }
  .brand-type small { display: none; }
  .brand-type strong { max-width: 145px; }
  .nav-actions { margin-left: auto; }
  .nav-actions .button { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    z-index: -1;
    top: 67px;
    right: 0;
    left: 0;
    height: calc(100vh - 67px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px 80px;
    overflow-y: auto;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }
  body.menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 19px 4px; border-bottom: 1px solid var(--line); font-size: 22px; font-weight: 750; }
  .site-nav a::after { display: none; }
  .page-shell { width: min(100% - 32px, 720px); }
  .hero { padding-top: 70px; }
  .hero h1 { font-size: clamp(48px, 11vw, 72px); letter-spacing: -3.5px; }
  .hero-lead { font-size: 15px; }
  .floating-route { right: -10px; }
  .floating-safe { left: -10px; }
  .payment-strip { grid-template-columns: 1fr; text-align: center; }
  .payment-list { flex-wrap: wrap; justify-content: center; }
  .section { padding: 95px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 45px; }
  .section h2, .security h2 { letter-spacing: -2.7px; }
  .workflow-head { grid-template-columns: 1fr; gap: 25px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; display: grid; grid-template-columns: 76px 1fr; padding: 32px 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .step-icon { grid-row: 1/4; margin: 0; }
  .step > span, .step h3, .step p { grid-column: 2; }
  .step h3 { margin: 4px 0 8px; }
  .security { padding: 100px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 620px) {
  .page-shell { width: calc(100% - 28px); }
  .hero { padding-top: 58px; }
  .eyebrow { font-size: 9px; letter-spacing: 1.3px; }
  .hero h1 { margin-top: 22px; font-size: clamp(44px, 13vw, 60px); letter-spacing: -3px; }
  .hero h1 em::after { height: 13px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .hero-product { margin-top: 5px; padding-bottom: 80px; }
  .dashboard-window { border-radius: 16px; }
  .dashboard-topbar { height: 39px; }
  .dashboard-body { min-height: 330px; }
  .dashboard-sidebar { width: 39px; gap: 17px; padding-top: 14px; }
  .dashboard-sidebar > i { width: 11px; height: 11px; }
  .mini-brand { width: 20px; height: 20px; }
  .dashboard-content { padding: 15px 12px; }
  .metric-grid { grid-template-columns: 1fr .7fr; }
  .metric-card { height: 130px; padding: 10px; }
  .metric-main > strong { font-size: 15px; }
  .chart { height: 62px; }
  .chart svg { height: 48px; }
  .metric-icon { width: 23px; height: 23px; }
  .metric-side > small { margin-top: 7px; }
  .metric-side > strong { font-size: 16px; }
  .transaction-panel { padding: 10px 10px 4px; }
  .transaction-row { min-height: 42px; grid-template-columns: 24px 1fr .8fr; gap: 6px; }
  .transaction-row time, .transaction-row > span:last-child { display: none; }
  .transaction-row > b { font-size: 7px; }
  .transaction-muted { display: none; }
  .pay-logo { width: 23px; height: 23px; border-radius: 6px; font-size: 8px; }
  .floating-route { right: 0; bottom: 43px; }
  .floating-safe { bottom: 3px; left: 0; }
  .payment-strip { padding-top: 25px; }
  .payment-list { gap: 15px 18px; }
  .payment-name { font-size: 11px; }
  .payment-dot { width: 23px; height: 23px; border-radius: 6px; }
  .section { padding: 78px 0; }
  .section h2, .security h2, .final-cta h2 { font-size: 39px; letter-spacing: -2.2px; }
  .bento-card { min-height: 400px; padding: 27px; }
  .bento-api { min-height: 650px; }
  .card-copy h3 { font-size: 25px; }
  .code-window { right: 20px; bottom: 20px; left: 20px; }
  .code-window pre { min-height: 245px; padding: 20px 15px; overflow: auto; font-size: 10px; }
  .scene-visual { top: 25px; right: 15px; transform: scale(.85); transform-origin: top right; }
  .bento-scene .card-copy { right: 24px; bottom: 24px; left: 24px; }
  .settle-visual { right: 20px; bottom: 20px; left: 20px; }
  .routing-copy > p { font-size: 14px; }
  .feature-list small { font-size: 10px; }
  .routing-map { min-height: 520px; border-radius: 22px; }
  .route-source { top: 40px; left: 50%; width: 160px; display: grid; grid-template-columns: 38px 1fr; transform: translateX(-50%); }
  .route-source > span { grid-column: 1/-1; }
  .route-source svg { grid-row: 2/4; margin: 9px 0 0; }
  .route-engine { top: 43%; left: 50%; }
  .route-lines { display: none; }
  .route-channel { right: auto; left: 50%; width: calc(100% - 40px); min-height: 53px; transform: translateX(-50%); }
  .channel-a { top: auto; bottom: 128px; }
  .channel-b { top: auto; bottom: 69px; transform: translateX(-50%); }
  .channel-c { bottom: 10px; }
  .route-legend { display: none; }
  .step { grid-template-columns: 68px 1fr; }
  .step-icon { width: 52px; height: 52px; }
  .security-badges { grid-template-columns: 1fr 1fr; }
  .security-visual { min-height: 380px; transform: scale(.82); }
  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 250px; height: 250px; }
  .label-sign { left: -7%; }
  .label-risk { right: -8%; }
  .label-audit { right: 0; }
  .final-cta { padding: 65px 0; }
  .cta-card { padding: 65px 22px; border-radius: 23px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .button { width: 100%; }
  .site-footer { padding-top: 58px; }
  .footer-links { grid-template-columns: repeat(2,1fr); row-gap: 45px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

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

@media print {
  .site-header, .site-footer, .back-to-top { display: none !important; }
  #main-content { padding-top: 0; }
  body.epay-site { color: #000; background: #fff; }
}
