:root {
  --ink: #07111f;
  --ink-soft: #536073;
  --line: rgba(8, 30, 57, 0.10);
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #0876d9;
  --blue-deep: #004e91;
  --cyan: #30b7df;
  --mint: #5ed4bf;
  --navy: #061a31;
  --radius-lg: 36px;
  --radius-md: 26px;
  --shadow: 0 30px 80px rgba(6, 28, 55, 0.12);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(48, 183, 223, .08), transparent 24rem),
    radial-gradient(circle at 88% 20%, rgba(8, 118, 217, .07), transparent 28rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 14px 0;
  background: rgba(247, 249, 252, .78);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid rgba(8, 30, 57, .06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-width: 150px; }
.brand img { width: clamp(155px, 17vw, 210px); max-height: 46px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 650; }
.nav > a { padding: 10px 13px; border-radius: 999px; color: #435064; transition: color .2s ease, background .2s ease, transform .2s ease; }
.nav > a:hover { color: var(--ink); background: rgba(255,255,255,.82); }
.nav > a:focus-visible, .button:focus-visible, .brand:focus-visible, .site-footer a:focus-visible {
  outline: 3px solid rgba(8, 118, 217, .25);
  outline-offset: 3px;
}
.nav > .nav-cta { padding-inline: 17px; color: white; background: var(--ink); box-shadow: 0 8px 25px rgba(7,17,31,.14); }
.nav > .nav-cta:hover { color: white; background: #122338; transform: translateY(-1px); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0 38px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 16px max(18px, calc((100% - 1440px)/2)) 0;
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(242,247,253,.82)),
    #fff;
  border: 1px solid rgba(8, 30, 57, .06);
  box-shadow: 0 40px 120px rgba(24, 64, 108, .09);
}
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-a {
  width: 460px; height: 460px; right: -100px; top: 20px;
  background: radial-gradient(circle, rgba(48,183,223,.17), rgba(48,183,223,0) 67%);
  animation: drift-a 12s ease-in-out infinite alternate;
}
.hero-orb-b {
  width: 420px; height: 420px; left: 30%; bottom: -260px;
  background: radial-gradient(circle, rgba(8,118,217,.11), rgba(8,118,217,0) 68%);
  animation: drift-b 15s ease-in-out infinite alternate;
}
.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  align-items: center;
  gap: clamp(30px, 5vw, 82px);
  padding: 36px 24px 28px;
}
.hero-copy { position: relative; z-index: 3; padding-left: clamp(0px, 2vw, 18px); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 20px; color: var(--blue-deep); font-size: 13px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; background: currentColor; opacity: .65; }
.hero h1, .section-head h2, .acceptance h2, .closing h2 {
  margin: 0;
  letter-spacing: -.055em;
  line-height: .98;
  font-weight: 760;
}
.hero h1 { max-width: 750px; font-size: clamp(52px, 7vw, 91px); }
.hero h1 span {
  color: transparent;
  background: linear-gradient(115deg, var(--blue-deep) 5%, var(--blue) 45%, var(--cyan) 95%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-lead { max-width: 650px; margin: 28px 0 0; color: var(--ink-soft); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; letter-spacing: -.015em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 19px; border-radius: 999px; font-size: 14px; font-weight: 750; letter-spacing: -.01em; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); box-shadow: 0 14px 35px rgba(7,17,31,.17); }
.button-primary:hover { background: #13283e; box-shadow: 0 18px 42px rgba(7,17,31,.22); }
.button-ghost { color: #233247; background: rgba(255,255,255,.82); border: 1px solid rgba(8, 30, 57, .10); }
.button-ghost:hover { background: white; box-shadow: 0 12px 32px rgba(7,17,31,.08); }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px 18px; margin: 28px 0 0; padding: 0; list-style: none; color: #526075; font-size: 13px; font-weight: 600; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.check { display: inline-grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; color: var(--blue-deep); background: rgba(8,118,217,.09); font-size: 11px; font-weight: 900; }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.visual-glow {
  position: absolute;
  width: 78%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 194, 224, .30), rgba(28, 123, 198, .12) 43%, rgba(255,255,255,0) 70%);
  filter: blur(9px);
  animation: pulse 5s ease-in-out infinite;
}
.device-stage {
  position: relative;
  z-index: 2;
  width: min(74%, 410px);
  transform: translateY(8px) rotate(2deg);
  filter: drop-shadow(0 32px 26px rgba(10,41,69,.16));
  animation: float-device 6s ease-in-out infinite;
}
.device-image { width: 100%; max-height: 520px; object-fit: contain; }
.payment-ring { position: absolute; border: 1px solid rgba(8,118,217,.14); border-radius: 50%; }
.payment-ring-one { width: 440px; height: 440px; animation: spin 24s linear infinite; }
.payment-ring-two { width: 330px; height: 330px; border-style: dashed; border-color: rgba(48,183,223,.20); animation: spin-reverse 18s linear infinite; }
.payment-ring-one::after, .payment-ring-two::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(8,118,217,.08); }
.payment-ring-one::after { top: 36px; right: 78px; }
.payment-ring-two::after { bottom: 27px; left: 61px; background: var(--cyan); }
.card-chip {
  position: absolute;
  z-index: 4;
  min-width: 148px;
  padding: 13px 15px;
  border: 1px solid rgba(8,30,57,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 50px rgba(7,17,31,.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.card-chip-label { display: block; margin-bottom: 8px; color: #788599; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.card-chip img { width: 92px; height: 30px; object-fit: contain; object-position: left center; }
.card-chip-visa { top: 21%; left: 0; transform: rotate(-3deg); animation: float-card-left 7s ease-in-out infinite; }
.card-chip-mastercard { right: 0; bottom: 20%; transform: rotate(3deg); animation: float-card-right 8s ease-in-out infinite; }
.status-pill {
  position: absolute;
  z-index: 4;
  right: 12%; top: 15%;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(8,30,57,.08);
  border-radius: 999px;
  color: #3f5064;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 35px rgba(7,17,31,.08);
  font-size: 11px; font-weight: 720;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #2cbf83; box-shadow: 0 0 0 5px rgba(44,191,131,.12); }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 12px; padding: 0 24px; overflow: hidden; border: 1px solid rgba(8,30,57,.07); border-radius: 24px; background: rgba(8,30,57,.07); }
.trust-strip > div { padding: 18px 20px; background: rgba(255,255,255,.79); }
.trust-strip strong { display: block; margin-bottom: 2px; font-size: 13px; }
.trust-strip span { color: #69768a; font-size: 12px; }

.section { padding: 126px 0; }
.section-head { max-width: 840px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(42px, 6vw, 71px); }
.section-head > p:last-child { max-width: 710px; margin: 25px auto 0; color: var(--ink-soft); font-size: 19px; }
.bento-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 58px; }
.bento-card { position: relative; min-height: 360px; padding: clamp(28px, 4vw, 42px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.88); box-shadow: 0 20px 60px rgba(10, 40, 75, .06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.bento-card:hover { transform: translateY(-4px); border-color: rgba(8,118,217,.16); box-shadow: 0 28px 70px rgba(10, 40, 75, .09); }
.bento-card-featured { grid-row: span 2; background: linear-gradient(145deg, #07192e, #0b2b4d 65%, #074b75); color: white; }
.bento-card-featured::after { content: ""; position: absolute; width: 330px; height: 330px; right: -120px; bottom: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(48,183,223,.28), transparent 65%); }
.bento-card-wide { grid-column: 1 / -1; min-height: 340px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; background: linear-gradient(140deg, #fff, #f4f8fc); }
.icon-wrap { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 52px; border: 1px solid rgba(8,118,217,.10); border-radius: 15px; background: rgba(8,118,217,.07); color: var(--blue-deep); }
.bento-card-featured .icon-wrap { color: white; border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.08); }
.icon-wrap svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card-kicker { margin: 0 0 11px; color: var(--blue-deep); font-size: 12px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.bento-card-featured .card-kicker { color: #7ed8ef; }
.bento-card h3 { max-width: 510px; margin: 0; font-size: clamp(29px, 3vw, 39px); line-height: 1.05; letter-spacing: -.04em; }
.bento-card > p:last-of-type, .wide-copy > p:last-of-type { max-width: 560px; margin: 18px 0 0; color: #647185; }
.bento-card-featured > p:last-of-type { color: #afc3d7; }
.mini-flow { position: absolute; left: 42px; right: 42px; bottom: 34px; display: flex; align-items: center; gap: 10px; color: #d8e6f3; font-size: 11px; font-weight: 700; }
.mini-flow span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.06); }
.mini-flow i { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(126,216,239,.28), rgba(126,216,239,.8)); }
.tip-ui { justify-self: end; width: min(100%, 440px); padding: 28px; border: 1px solid rgba(8,30,57,.08); border-radius: 30px; background: rgba(255,255,255,.85); box-shadow: var(--shadow); transform: rotate(2deg); }
.tip-ui p { margin: 0 0 20px; color: #68768a; font-size: 13px; font-weight: 700; }
.tip-ui div { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.tip-ui span { display: grid; place-items: center; min-height: 52px; border-radius: 14px; background: #f1f4f8; font-weight: 800; }
.tip-ui span.active { color: white; background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 12px 30px rgba(8,118,217,.20); }
.tip-ui strong { display: block; margin-top: 24px; font-size: 22px; letter-spacing: -.03em; }

.acceptance { padding-top: 30px; }
.acceptance-panel { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; min-height: 600px; padding: clamp(40px, 7vw, 82px); overflow: hidden; border-radius: 44px; color: white; background:
  radial-gradient(circle at 90% 5%, rgba(48,183,223,.30), transparent 27rem),
  linear-gradient(135deg, #061728 0%, #082743 62%, #0a4266 100%);
  box-shadow: 0 40px 100px rgba(6,26,49,.20);
}
.acceptance-panel::after { content: ""; position: absolute; width: 480px; height: 480px; right: -240px; bottom: -260px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.015), 0 0 0 140px rgba(255,255,255,.01); }
.eyebrow-light { color: #7fdcf1; }
.acceptance h2 { max-width: 680px; font-size: clamp(42px, 5.5vw, 70px); }
.acceptance-copy > p:not(.eyebrow) { max-width: 610px; margin: 24px 0 0; color: #b7cadc; font-size: 18px; }
.wallet-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.wallet-list span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #d8e8f4; background: rgba(255,255,255,.05); font-size: 12px; font-weight: 700; }
.acceptance-logos { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.acceptance-card { display: grid; place-items: center; min-height: 190px; padding: 30px; border: 1px solid rgba(255,255,255,.10); border-radius: 28px; background: rgba(255,255,255,.08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.acceptance-card:first-child { transform: translateY(-24px) rotate(-2deg); }
.acceptance-card:last-child { transform: translateY(24px) rotate(2deg); }
.acceptance-card img { max-width: 160px; max-height: 90px; object-fit: contain; }

.closing { padding-top: 98px; }
.closing-panel { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; padding: 68px 0; border-top: 1px solid var(--line); }
.closing h2 { font-size: clamp(42px, 5.5vw, 68px); }
.closing-action { justify-self: end; max-width: 420px; }
.closing-action p { margin: 0 0 22px; color: var(--ink-soft); font-size: 17px; }
.closing-glow { position: absolute; z-index: -1; width: 380px; height: 220px; left: 35%; top: 15px; background: radial-gradient(circle, rgba(48,183,223,.11), transparent 68%); filter: blur(20px); }

.site-footer { margin-top: 28px; border-top: 1px solid var(--line); background: rgba(255,255,255,.52); }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 50px; padding: 54px 0 44px; }
.footer-logo { width: 180px; max-height: 48px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 430px; margin: 16px 0 0; color: #68768a; font-size: 13px; }
.partner-block { display: flex; align-items: center; gap: 18px; color: #7a8799; font-size: 11px; font-weight: 700; }
.partner-block img { width: 126px; max-height: 52px; object-fit: contain; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0 30px; border-top: 1px solid var(--line); color: #748195; font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: var(--ink); }

@keyframes float-device { 0%,100% { transform: translateY(8px) rotate(2deg); } 50% { transform: translateY(-8px) rotate(1.4deg); } }
@keyframes float-card-left { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-9px) rotate(-1deg); } }
@keyframes float-card-right { 0%,100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(10px) rotate(1deg); } }
@keyframes pulse { 0%,100% { transform: scale(.96); opacity: .8; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes drift-a { to { transform: translate(-55px, 55px) scale(1.08); } }
@keyframes drift-b { to { transform: translate(70px, -35px) scale(.92); } }

@media (max-width: 1000px) {
  .bento-card-featured { grid-row: auto; }
  .hero { padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 18px; padding-top: 58px; }
  .hero-copy { text-align: center; padding-inline: 20px; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 540px; max-width: 660px; width: 100%; margin-inline: auto; }
  .device-stage { width: min(58%, 360px); }
  .payment-ring-one { width: 410px; height: 410px; }
  .payment-ring-two { width: 310px; height: 310px; }
  .bento-card-wide, .acceptance-panel, .closing-panel { grid-template-columns: 1fr; }
  .tip-ui { justify-self: stretch; width: 100%; transform: none; }
  .acceptance-panel { gap: 60px; }
  .acceptance-logos { max-width: 650px; }
  .closing-action { justify-self: start; }
}

@media (max-width: 760px) {
  :root { --shell: min(1180px, calc(100% - 28px)); --radius-lg: 28px; }
  .site-header { padding: 10px 0; }
  .brand img { width: 145px; max-height: 38px; }
  .nav { gap: 2px; }
  .nav > a { display: none; }
  .nav > .nav-cta { display: inline-flex; padding: 9px 13px; font-size: 12px; }
  .hero { padding-top: 32px; }
  .hero::before { inset: 8px 8px 0; border-radius: 30px; }
  .hero-grid { min-height: auto; padding: 46px 6px 18px; }
  .hero-copy { padding-inline: 4px; }
  .eyebrow { margin-bottom: 15px; font-size: 11px; }
  .hero h1 { font-size: clamp(46px, 13.5vw, 67px); }
  .hero-lead { margin-top: 20px; font-size: 17px; }
  .hero-actions { margin-top: 25px; }
  .button { width: 100%; }
  .hero-points { display: grid; justify-content: start; text-align: left; max-width: 360px; margin-inline: auto; }
  .hero-visual { min-height: 435px; overflow: hidden; }
  .device-stage { width: min(65%, 295px); }
  .device-image { max-height: 400px; }
  .payment-ring-one { width: 345px; height: 345px; }
  .payment-ring-two { width: 255px; height: 255px; }
  .card-chip { min-width: 118px; padding: 10px 12px; border-radius: 16px; }
  .card-chip img { width: 73px; height: 26px; }
  .card-chip-visa { left: 2px; top: 22%; }
  .card-chip-mastercard { right: 2px; bottom: 18%; }
  .status-pill { right: 4%; top: 9%; font-size: 9px; }
  .trust-strip { grid-template-columns: 1fr; padding: 0; border-radius: 20px; }
  .trust-strip > div { padding: 14px 16px; }
  .section { padding: 88px 0; }
  .section-head { text-align: left; }
  .section-head .eyebrow { justify-content: flex-start; }
  .section-head h2 { font-size: clamp(40px, 12vw, 56px); }
  .section-head > p:last-child { margin-top: 18px; font-size: 17px; }
  .bento-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .bento-card { min-height: 330px; padding: 28px; }
  .bento-card-wide { grid-column: auto; gap: 32px; }
  .icon-wrap { margin-bottom: 38px; }
  .mini-flow { left: 28px; right: 28px; bottom: 27px; gap: 6px; }
  .mini-flow span { padding: 7px; font-size: 9px; }
  .tip-ui { padding: 22px; }
  .acceptance { padding-top: 8px; }
  .acceptance-panel { min-height: 0; padding: 38px 26px 48px; border-radius: 30px; }
  .acceptance h2 { font-size: clamp(39px, 11.5vw, 55px); }
  .acceptance-copy > p:not(.eyebrow) { font-size: 16px; }
  .acceptance-logos { grid-template-columns: 1fr 1fr; gap: 9px; }
  .acceptance-card { min-height: 130px; padding: 18px; border-radius: 20px; }
  .acceptance-card:first-child, .acceptance-card:last-child { transform: none; }
  .acceptance-card img { max-width: 110px; max-height: 64px; }
  .closing { padding-top: 70px; }
  .closing-panel { gap: 32px; padding: 55px 0; }
  .closing h2 { font-size: clamp(39px, 11.5vw, 55px); }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-top { padding: 42px 0 32px; }
  .partner-block { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 45px; }
  .card-chip { min-width: 105px; }
  .card-chip-mastercard { bottom: 14%; }
  .status-pill { display: none; }
  .hero-visual { min-height: 405px; }
  .acceptance-logos { grid-template-columns: 1fr; }
  .acceptance-card { min-height: 112px; }
}

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