@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #05060a;
  --surface: rgba(255,255,255,.045);
  --surface-strong: rgba(255,255,255,.075);
  --border: rgba(255,255,255,.10);
  --text: #f5f7ff;
  --muted: #9299aa;
  --blue: #19c9ff;
  --purple: #814dff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 80% 10%, rgba(64,75,255,.13), transparent 28%),
    radial-gradient(circle at 10% 45%, rgba(0,190,255,.07), transparent 25%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .025;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  z-index: 50;

  padding: 0 6vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(5,6,10,.58);
  backdrop-filter: blur(22px);

  border-bottom: 1px solid rgba(255,255,255,.06);
}

.logo {
  display: flex;
  align-items: center;

  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.07em;
}

.logo-x {
  background: linear-gradient(
    120deg,
    #12ddff,
    #4078ff,
    #ad4dff
  );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
}

.nav-links {
  display: flex;
  gap: 34px;

  color: #a8afc0;
  font-size: .83rem;
}

.nav-links a {
  transition: .25s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-button {
  padding: 10px 17px;

  border: 1px solid var(--border);
  border-radius: 100px;

  background: rgba(255,255,255,.035);

  font-size: .82rem;

  transition: .25s ease;
}

.nav-button:hover {
  border-color: rgba(25,201,255,.4);
  transform: translateY(-2px);
}

.nav-button span {
  color: var(--blue);
  margin-left: 7px;
}

.hero {
  min-height: 100vh;

  padding: 150px 8vw 90px;

  display: grid;
  grid-template-columns: 1.05fr .95fr;

  align-items: center;

  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  right: -180px;
  top: 60px;

  background:
    radial-gradient(
      circle,
      rgba(43,94,255,.18),
      rgba(130,65,255,.06) 40%,
      transparent 70%
    );

  filter: blur(15px);

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;

  gap: 9px;

  color: var(--blue);

  font-size: .68rem;
  font-weight: 700;

  letter-spacing: .22em;

  margin-bottom: 23px;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #2af0a0;

  box-shadow:
    0 0 8px #2af0a0,
    0 0 18px rgba(42,240,160,.4);
}

.hero h1 {
  font-size: clamp(4.5rem, 8.7vw, 8.5rem);

  line-height: .84;

  letter-spacing: -.085em;

  max-width: 850px;
}

.hero h1 span,
.section h2 em,
.coming-box h2 em,
.experience-section h2 em,
.contact-section h2 em {
  font-style: normal;

  background:
    linear-gradient(
      105deg,
      var(--blue),
      #5575ff 50%,
      #a44dff
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
}

.hero-description {
  max-width: 570px;

  margin: 30px 0;

  color: var(--muted);

  font-size: 1.05rem;

  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 13px;

  flex-wrap: wrap;
}

.button {
  display: inline-flex;

  align-items: center;
  gap: 14px;

  padding: 14px 21px;

  border-radius: 100px;

  font-size: .86rem;
  font-weight: 600;

  transition: .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  background:
    linear-gradient(
      105deg,
      #098fff,
      #7648ff
    );

  box-shadow:
    0 15px 45px rgba(54,90,255,.2);
}

.button.secondary {
  border: 1px solid var(--border);

  background: rgba(255,255,255,.035);
}

.hero-info {
  display: flex;

  gap: 25px;

  margin-top: 34px;

  color: #697286;

  font-size: .7rem;
}

.live-dot {
  display: inline-block;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  margin-right: 7px;

  background: #28e99a;

  box-shadow: 0 0 10px #28e99a;
}

.hero-visual {
  height: 610px;

  display: grid;
  place-items: center;

  position: relative;

  z-index: 2;
}

.orbit {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(65,116,255,.17);

  animation: rotate 18s linear infinite;
}

.orbit-1 {
  width: 475px;
  height: 475px;
}

.orbit-2 {
  width: 350px;
  height: 350px;

  border-color: rgba(151,71,255,.2);

  animation-duration: 13s;
  animation-direction: reverse;
}

.xpay-orb {
  width: 245px;
  height: 245px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  align-content: center;

  background:
    radial-gradient(
      circle at 35% 25%,
      #18356e,
      #0b1022 48%,
      #070811
    );

  border: 1px solid rgba(112,143,255,.3);

  box-shadow:
    0 0 75px rgba(30,105,255,.28),
    inset 0 0 60px rgba(106,63,255,.12);
}

.x-symbol {
  font-size: 8rem;

  line-height: .7;

  font-weight: 700;

  letter-spacing: -.14em;

  padding-right: 12px;

  background:
    linear-gradient(
      130deg,
      #1ee1ff,
      #3d73ff,
      #a64cff
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
}

.orb-label {
  margin-top: 20px;

  margin-left: 8px;

  font-size: .57rem;

  letter-spacing: .55em;

  color: #8b96b3;
}

.floating-card {
  position: absolute;

  padding: 13px 17px;

  border-radius: 14px;

  border: 1px solid var(--border);

  background: rgba(9,12,23,.72);

  backdrop-filter: blur(18px);

  box-shadow:
    0 20px 50px rgba(0,0,0,.25);
}

.floating-card small {
  display: block;

  color: #6f788d;

  font-size: .52rem;

  letter-spacing: .15em;
}

.floating-card strong {
  font-size: .75rem;

  letter-spacing: .08em;
}

.floating-card span {
  margin-left: 14px;

  color: var(--blue);
}

.card-one {
  top: 115px;
  right: 4%;
}

.card-two {
  bottom: 115px;
  left: 3%;
}

.section {
  max-width: 1450px;

  margin: auto;

  padding: 125px 8vw;
}

.section-number {
  color: #687187;

  font-size: .66rem;

  font-weight: 700;

  letter-spacing: .2em;

  margin-bottom: 30px;
}

.section h2 {
  font-size: clamp(3rem, 6vw, 6.3rem);

  line-height: .9;

  letter-spacing: -.075em;
}

.why-heading {
  display: grid;

  grid-template-columns: 1.15fr .85fr;

  gap: 60px;

  align-items: end;
}

.why-heading p {
  color: var(--muted);

  font-size: 1.02rem;

  line-height: 1.75;

  max-width: 520px;
}

.why-heading strong {
  color: #e9ecf5;
}

.difference-box {
  display: grid;

  grid-template-columns: 82px 1fr;

  gap: 27px;

  padding: 38px;

  margin-top: 65px;

  border-radius: 28px;

  border: 1px solid rgba(63,99,255,.28);

  background:
    linear-gradient(
      130deg,
      rgba(21,33,76,.38),
      rgba(255,255,255,.025)
    );

  box-shadow:
    inset 0 1px rgba(255,255,255,.04);
}

.difference-icon {
  width: 68px;
  height: 68px;

  display: grid;
  place-items: center;

  border-radius: 20px;

  font-size: 2rem;
  font-weight: 700;

  background:
    linear-gradient(
      135deg,
      #0bcfff,
      #7447ff
    );

  box-shadow:
    0 0 35px rgba(47,107,255,.25);
}

.mini-label {
  display: block;

  color: var(--blue);

  font-size: .62rem;

  font-weight: 700;

  letter-spacing: .18em;

  margin-bottom: 9px;
}

.difference-box h3 {
  font-size: 1.75rem;

  letter-spacing: -.04em;

  margin-bottom: 12px;
}

.difference-box p:last-child {
  color: var(--muted);

  line-height: 1.7;

  max-width: 850px;
}

.section-title-row {
  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 50px;
}

.section-title-row p {
  max-width: 500px;

  color: var(--muted);

  line-height: 1.75;
}

.features-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 14px;

  margin-top: 58px;
}

.feature-card {
  min-height: 330px;

  position: relative;

  padding: 28px;

  border-radius: 25px;

  border: 1px solid var(--border);

  background:
    rgba(255,255,255,.035);

  overflow: hidden;

  transition: .3s ease;
}

.feature-card::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -90px;
  bottom: -90px;

  background:
    radial-gradient(
      circle,
      rgba(28,182,255,.18),
      transparent 70%
    );
}

.feature-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(67,133,255,.4);

  background:
    rgba(255,255,255,.055);
}

.feature-card.feature-main {
  background:
    linear-gradient(
      145deg,
      rgba(16,64,108,.32),
      rgba(69,36,112,.13)
    );
}

.feature-number {
  color: #626c80;

  font-size: .66rem;

  letter-spacing: .15em;
}

.feature-icon {
  margin-top: 32px;

  color: var(--blue);

  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.28rem;

  margin:
    42px 0 12px;
}

.feature-card p {
  color: var(--muted);

  font-size: .9rem;

  line-height: 1.65;
}

.feature-arrow {
  position: absolute;

  right: 25px;
  bottom: 23px;

  color: #657088;
}

.experience-section > h2 {
  max-width: 900px;

  margin-bottom: 60px;
}

.experience-flow {
  display: grid;

  grid-template-columns:
    1fr 80px 1fr 80px 1fr;

  align-items: center;
}

.experience-card {
  min-height: 190px;

  padding: 28px;

  border-radius: 22px;

  border: 1px solid var(--border);

  background:
    rgba(255,255,255,.025);
}

.experience-card > span {
  color: var(--blue);

  font-size: .65rem;

  letter-spacing: .16em;
}

.experience-card h3 {
  font-size: 1.2rem;

  margin: 26px 0 10px;
}

.experience-card p {
  color: var(--muted);

  font-size: .86rem;

  line-height: 1.6;
}

.flow-line {
  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--purple)
    );

  opacity: .55;
}

.coming-section {
  padding: 130px 8vw;
}

.coming-box {
  max-width: 1250px;

  margin: auto;

  text-align: center;

  padding: 105px 8%;

  border-radius: 38px;

  border: 1px solid rgba(73,104,255,.28);

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(46,91,255,.18),
      transparent 50%
    ),
    rgba(255,255,255,.025);

  box-shadow:
    0 30px 100px rgba(0,0,0,.25);
}

.coming-box .eyebrow {
  justify-content: center;
}

.coming-box h2 {
  font-size: clamp(4rem, 8vw, 8rem);

  line-height: .9;

  letter-spacing: -.08em;
}

.coming-box > p:not(.eyebrow) {
  max-width: 620px;

  margin: 28px auto;

  color: var(--muted);

  line-height: 1.7;
}

.coming-status {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 9px 15px;

  border: 1px solid var(--border);

  border-radius: 100px;

  color: #9da6b9;

  font-size: .73rem;
}

.coming-status span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #28e99a;

  box-shadow: 0 0 10px #28e99a;
}

.team-section h2 {
  margin-bottom: 60px;
}

.team-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 15px;
}

.team-card {
  display: flex;

  align-items: center;

  gap: 20px;

  padding: 28px;

  border-radius: 25px;

  border: 1px solid var(--border);

  background:
    rgba(255,255,255,.035);
}

.avatar {
  width: 64px;
  height: 64px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 19px;

  font-weight: 700;

  background:
    linear-gradient(
      135deg,
      #0ccfff,
      #7147ff
    );
}

.team-card h3 {
  font-size: 1.12rem;

  margin-bottom: 6px;
}

.team-card p {
  color: var(--muted);

  font-size: .82rem;
}

.contact-section {
  text-align: center;

  padding:
    100px 8vw
    150px;
}

.contact-section .eyebrow {
  justify-content: center;
}

.contact-section h2 {
  font-size: clamp(4rem, 8vw, 8rem);

  line-height: .9;

  letter-spacing: -.08em;

  margin-bottom: 40px;
}

.contact-email {
  color: var(--blue);

  font-size:
    clamp(1.15rem, 2.5vw, 2rem);

  padding-bottom: 8px;

  border-bottom:
    1px solid
    rgba(25,201,255,.3);
}

.contact-email span {
  font-size: .7em;

  margin-left: 12px;
}

footer {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 30px 6vw;

  border-top: 1px solid var(--border);

  color: #60697c;

  font-size: .72rem;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1050px) {

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    height: 450px;
  }

  .features-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .experience-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow-line {
    width: 1px;
    height: 35px;

    margin: auto;
  }

  .why-heading {
    grid-template-columns: 1fr;
  }

  .section-title-row {
    display: grid;

    gap: 25px;
  }
}

@media (max-width: 650px) {

  .navbar {
    padding: 0 5vw;
  }

  .nav-button {
    display: none;
  }

  .hero,
  .section,
  .coming-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-visual {
    height: 360px;
  }

  .orbit-1 {
    width: 330px;
    height: 330px;
  }

  .orbit-2 {
    width: 250px;
    height: 250px;
  }

  .xpay-orb {
    width: 180px;
    height: 180px;
  }

  .x-symbol {
    font-size: 5.5rem;
  }

  .floating-card {
    transform: scale(.82);
  }

  .card-one {
    right: -2%;
    top: 35px;
  }

  .card-two {
    left: -4%;
    bottom: 35px;
  }

  .features-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .difference-box {
    grid-template-columns: 1fr;
  }

  .coming-box {
    padding: 75px 6%;
  }

  footer {
    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
  }
}

.navbar.scrolled {
  background: rgba(5, 6, 10, .82);

  border-bottom-color:
    rgba(255,255,255,.1);

  box-shadow:
    0 15px 50px rgba(0,0,0,.18);
}

.reveal {
  opacity: 0;

  transform:
    translateY(35px);

  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}

.hero-content,
.hero-visual {
  opacity: 0;

  transform:
    translateY(25px);

  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.2,.8,.2,1);
}

.hero-visual {
  transform:
    translateY(25px)
    scale(.96);
}

.hero-content.hero-visible,
.hero-visual.hero-visible {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.mouse-glow {
  position: fixed;

  width: 260px;
  height: 260px;

  left: -130px;
  top: -130px;

  border-radius: 50%;

  pointer-events: none;

  z-index: 1;

  background:
    radial-gradient(
      circle,
      rgba(32,180,255,.055),
      transparent 68%
    );

  filter: blur(8px);

  will-change: transform;
}

.feature-card {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {

    scroll-behavior: auto !important;

    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

  }

  .reveal,
  .hero-content,
  .hero-visual {

    opacity: 1;

    transform: none;

  }

}

.hero-visual {
  perspective: 1200px;
}

.ambient-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(37,113,255,.18),
      rgba(128,67,255,.08) 38%,
      transparent 70%
    );

  filter: blur(10px);
}

.payment-ui {
  position: relative;

  width: 390px;

  padding: 25px;

  border-radius: 30px;

  border: 1px solid rgba(255,255,255,.14);

  background:
    linear-gradient(
      145deg,
      rgba(20,24,43,.92),
      rgba(8,10,19,.9)
    );

  backdrop-filter: blur(25px);

  box-shadow:
    0 45px 100px rgba(0,0,0,.48),
    0 0 80px rgba(48,93,255,.16),
    inset 0 1px rgba(255,255,255,.08);

  transform:
    rotateY(-7deg)
    rotateX(3deg);

  z-index: 5;

  animation:
    productFloat 6s ease-in-out infinite;
}

.payment-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 38px;
}

.mini-logo {
  font-size: 1rem;

  font-weight: 700;

  letter-spacing: -.05em;
}

.mini-logo span {
  background:
    linear-gradient(
      120deg,
      #13d8ff,
      #4575ff,
      #a34dff
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
}

.connection {
  display: flex;

  align-items: center;

  gap: 7px;

  padding: 7px 10px;

  border-radius: 100px;

  background: rgba(38,225,153,.06);

  border: 1px solid rgba(38,225,153,.12);

  color: #7b9b91;

  font-size: .57rem;
}

.connection i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #2be9a0;

  box-shadow:
    0 0 10px #2be9a0;
}

.balance-label {
  color: #6e778d;

  font-size: .55rem;

  letter-spacing: .16em;
}

.balance {
  margin-top: 8px;

  font-size: 2.55rem;

  font-weight: 600;

  letter-spacing: -.06em;
}

.balance span {
  color: #666f82;

  font-size: 1.3rem;
}

.payment-actions {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 9px;

  margin-top: 25px;
}

.pay-action {
  padding: 13px 8px;

  text-align: center;

  border-radius: 15px;

  border: 1px solid rgba(255,255,255,.06);

  background: rgba(255,255,255,.025);
}

.pay-action.active {
  background:
    linear-gradient(
      135deg,
      rgba(18,177,255,.16),
      rgba(112,66,255,.14)
    );

  border-color:
    rgba(72,126,255,.25);
}

.pay-action div {
  margin-bottom: 7px;

  color: var(--blue);

  font-size: 1.15rem;
}

.pay-action span {
  color: #8991a3;

  font-size: .58rem;
}

.payment-divider {
  height: 1px;

  margin: 25px 0;

  background:
    rgba(255,255,255,.07);
}

.recent-header {
  display: flex;

  justify-content: space-between;

  margin-bottom: 15px;

  font-size: .62rem;
}

.recent-header span:first-child {
  color: #d6d9e3;
}

.recent-header span:last-child {
  color: var(--blue);
}

.transaction {
  display: flex;

  align-items: center;

  gap: 11px;

  padding: 11px 0;

  border-bottom:
    1px solid
    rgba(255,255,255,.045);
}

.transaction-icon {
  width: 32px;
  height: 32px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      #176bff,
      #7148ff
    );

  font-size: .63rem;

  font-weight: 700;
}

.transaction-icon.secondary {
  background:
    linear-gradient(
      135deg,
      #08bda1,
      #187dff
    );
}

.transaction-info {
  flex: 1;
}

.transaction-info strong {
  display: block;

  font-size: .67rem;
}

.transaction-info small {
  display: block;

  margin-top: 3px;

  color: #687185;

  font-size: .53rem;
}

.transaction > b {
  color: #ef8b9a;

  font-size: .67rem;
}

.transaction > b.received {
  color: #38d9a4;
}

.network-card {
  position: absolute;

  left: -75px;
  top: 105px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 15px;

  border-radius: 15px;

  background:
    rgba(10,13,25,.82);

  border:
    1px solid
    rgba(255,255,255,.1);

  backdrop-filter: blur(20px);

  box-shadow:
    0 20px 50px rgba(0,0,0,.3);

  z-index: 8;

  animation:
    sideFloat 5s ease-in-out infinite;
}

.network-icon {
  width: 34px;
  height: 34px;

  display: grid;

  place-items: center;

  border-radius: 10px;

  color: var(--blue);

  background:
    rgba(22,191,255,.08);

  border:
    1px solid
    rgba(22,191,255,.13);
}

.network-card small,
.voice-card small {
  display: block;

  color: #697286;

  font-size: .48rem;

  letter-spacing: .13em;
}

.network-card strong {
  display: block;

  margin-top: 4px;

  font-size: .58rem;
}

.network-status {
  width: 7px;
  height: 7px;

  margin-left: 7px;

  border-radius: 50%;

  background: #2ceca1;

  box-shadow:
    0 0 12px #2ceca1;
}

.voice-card {
  position: absolute;

  right: -75px;
  bottom: 105px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 15px;

  border-radius: 15px;

  background:
    rgba(10,13,25,.82);

  border:
    1px solid
    rgba(255,255,255,.1);

  backdrop-filter: blur(20px);

  box-shadow:
    0 20px 50px rgba(0,0,0,.3);

  z-index: 8;

  animation:
    sideFloat 5s ease-in-out infinite 1s;
}

.voice-wave {
  height: 26px;

  display: flex;

  align-items: center;

  gap: 3px;
}

.voice-wave i {
  display: block;

  width: 3px;

  height: 8px;

  border-radius: 10px;

  background: var(--blue);

  animation:
    wave 1s ease-in-out infinite;
}

.voice-wave i:nth-child(2) {
  animation-delay: .1s;
}

.voice-wave i:nth-child(3) {
  height: 20px;
  animation-delay: .2s;
}

.voice-wave i:nth-child(4) {
  animation-delay: .3s;
}

.voice-wave i:nth-child(5) {
  animation-delay: .4s;
}

.voice-card strong {
  display: block;

  margin-top: 4px;

  font-size: .61rem;
}

@keyframes productFloat {

  0%,100% {
    transform:
      rotateY(-7deg)
      rotateX(3deg)
      translateY(0);
  }

  50% {
    transform:
      rotateY(-7deg)
      rotateX(3deg)
      translateY(-9px);
  }

}

@keyframes sideFloat {

  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

}

@keyframes wave {

  0%,100% {
    transform: scaleY(.5);
  }

  50% {
    transform: scaleY(1.3);
  }

}

@media (max-width: 1050px) {

  .network-card {
    left: 0;
  }

  .voice-card {
    right: 0;
  }

}

@media (max-width: 650px) {

  .payment-ui {
    width: min(350px, 88vw);

    padding: 21px;

    border-radius: 25px;
  }

  .network-card {
    left: -10px;
    top: 25px;

    transform: scale(.75);
  }

  .voice-card {
    right: -10px;
    bottom: 25px;

    transform: scale(.75);
  }

  .balance {
    font-size: 2.1rem;
  }

}

.xpay-features {
  align-items: stretch;
}

.xpay-features .feature-card {
  min-height: 465px;

  display: flex;

  flex-direction: column;

  padding: 25px;

  overflow: hidden;
}

.feature-top {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.feature-tag {
  padding: 5px 8px;

  border-radius: 100px;

  color: #758097;

  border: 1px solid rgba(255,255,255,.08);

  font-size: .48rem;

  letter-spacing: .13em;
}

.feature-visual {
  height: 150px;

  margin:
    20px -25px
    25px;

  position: relative;

  display: grid;

  place-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(32,115,255,.11),
      transparent 68%
    );
}

.offline-core {
  width: 72px;
  height: 72px;

  position: relative;
  z-index: 3;

  display: grid;

  place-items: center;

  align-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      rgba(11,207,255,.2),
      rgba(116,70,255,.2)
    );

  border:
    1px solid
    rgba(87,139,255,.3);

  box-shadow:
    0 0 45px
    rgba(35,114,255,.2);
}

.offline-core span {
  color: var(--blue);

  font-size: 1.5rem;
}

.offline-core small {
  margin-top: 3px;

  color: #8490a8;

  font-size: .43rem;

  letter-spacing: .12em;
}

.signal-ring {
  position: absolute;

  border-radius: 50%;

  border: 1px solid
    rgba(53,123,255,.25);

  animation:
    pulseRing 3s ease-out infinite;
}

.ring-a {
  width: 115px;
  height: 115px;
}

.ring-b {
  width: 175px;
  height: 175px;

  animation-delay: 1s;
}

.phone-circle {
  width: 155px;
  height: 74px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  border-radius: 18px;

  border: 1px solid
    rgba(87,139,255,.25);

  background:
    linear-gradient(
      120deg,
      rgba(21,80,152,.25),
      rgba(101,53,160,.17)
    );

  box-shadow:
    0 20px 50px
    rgba(0,0,0,.25);
}

.phone-circle span {
  color: #758198;

  font-size: .6rem;
}

.phone-circle strong {
  font-size: .72rem;

  letter-spacing: .05em;
}

.phone-check {
  position: absolute;

  width: 29px;
  height: 29px;

  display: grid;

  place-items: center;

  right: calc(50% - 85px);
  top: 43px;

  border-radius: 50%;

  background: #20d99b;

  color: #06150f;

  font-size: .75rem;

  font-weight: 700;

  box-shadow:
    0 0 25px
    rgba(32,217,155,.35);
}

.voice-bars {
  height: 65px;

  display: flex;

  align-items: center;

  gap: 5px;
}

.voice-bars i {
  width: 4px;

  height: 22px;

  border-radius: 10px;

  background:
    linear-gradient(
      #14d9ff,
      #7650ff
    );

  animation:
    voiceWave 1.1s ease-in-out infinite;
}

.voice-bars i:nth-child(2) {
  animation-delay: .1s;
}

.voice-bars i:nth-child(3) {
  animation-delay: .2s;
}

.voice-bars i:nth-child(4) {
  height: 55px;

  animation-delay: .3s;
}

.voice-bars i:nth-child(5) {
  animation-delay: .2s;
}

.voice-bars i:nth-child(6) {
  animation-delay: .1s;
}

.voice-bars i:nth-child(7) {
  animation-delay: .05s;
}

.voice-command {
  position: absolute;

  bottom: 12px;

  padding: 8px 13px;

  border-radius: 100px;

  background:
    rgba(10,13,25,.8);

  border:
    1px solid
    rgba(255,255,255,.08);
}

.voice-command small {
  color: #6e788e;

  font-size: .43rem;

  margin-right: 7px;
}

.voice-command strong {
  font-size: .56rem;
}

.fallback-visual {
  gap: 7px;

  padding: 0 28px;
}

.fallback-item {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 11px 13px;

  border-radius: 11px;

  background:
    rgba(255,255,255,.035);

  border:
    1px solid
    rgba(255,255,255,.06);

  color: #727c91;

  font-size: .58rem;
}

.fallback-item.active {
  color: #dce5ff;

  border-color:
    rgba(46,137,255,.24);

  background:
    rgba(35,102,255,.08);
}

.fallback-item b {
  color: var(--blue);
}

.xpay-features .feature-card h3 {
  margin:
    0 0 11px;

  font-size: 1.18rem;
}

.xpay-features .feature-card p {
  max-width: 290px;

  font-size: .78rem;
}

.feature-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: auto;

  padding-top: 22px;

  color: #596378;

  font-size: .57rem;
}

.feature-bottom span:last-child {
  color: var(--blue);

  font-size: .8rem;
}

@keyframes pulseRing {

  0% {
    transform: scale(.7);

    opacity: .8;
  }

  100% {
    transform: scale(1.25);

    opacity: 0;
  }

}

@keyframes voiceWave {

  0%,100% {
    transform: scaleY(.45);
  }

  50% {
    transform: scaleY(1);
  }

}

@media (max-width: 650px) {

  .xpay-features .feature-card {
    min-height: 430px;
  }

}

.nav-right {
  display: flex;

  align-items: center;

  gap: 14px;
}

.logo {
  gap: 9px;
}

.logo-mark {
  position: relative;

  width: 27px;
  height: 27px;

  display: block;
}

.logo-mark::before,
.logo-mark::after,
.logo-mark span {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  width: 22px;
  height: 5px;

  border-radius: 100px;

  transform-origin: center;

  background:
    linear-gradient(
      90deg,
      #10dfff,
      #506aff,
      #a54dff
    );

  box-shadow:
    0 0 14px
    rgba(57,130,255,.22);
}

.logo-mark::before {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.logo-mark::after {
  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}

.logo-mark span:first-child {
  width: 8px;
  height: 8px;

  background: #05060a;

  z-index: 2;

  transform:
    translate(-50%, -50%);
}

.logo-mark span:last-child {
  display: none;
}

.logo-text {
  font-size: 1.35rem;

  font-weight: 700;

  letter-spacing: -.065em;
}

.logo-text span {
  color: #8992a5;
}

.menu-toggle {
  width: 42px;
  height: 42px;

  display: none;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 6px;

  border: 1px solid rgba(255,255,255,.1);

  border-radius: 50%;

  background:
    rgba(255,255,255,.035);

  cursor: pointer;
}

.menu-toggle span {
  width: 15px;
  height: 1px;

  display: block;

  background: #dbe2f2;

  transition:
    transform .3s ease,
    opacity .3s ease;
}

.mobile-menu {
  position: fixed;

  inset: 0;

  z-index: 40;

  display: none;

  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(66,83,255,.14),
      transparent 35%
    ),
    rgba(5,6,10,.96);

  backdrop-filter: blur(25px);

  opacity: 0;

  transform: translateY(-15px);

  transition:
    opacity .35s ease,
    transform .35s ease;
}

.mobile-menu.open {
  opacity: 1;

  transform: translateY(0);
}

.mobile-menu-inner {
  height: 100%;

  padding:
    125px 8vw
    35px;

  display: flex;

  flex-direction: column;
}

.mobile-menu-label {
  margin-bottom: 25px;

  color: #626c80;

  font-size: .6rem;

  letter-spacing: .2em;
}

.mobile-menu a {
  display: grid;

  grid-template-columns: 45px 1fr 30px;

  align-items: center;

  padding: 21px 0;

  border-bottom:
    1px solid
    rgba(255,255,255,.07);

  font-size: clamp(1.8rem, 6vw, 3rem);

  letter-spacing: -.05em;
}

.mobile-menu a span {
  color: #596377;

  font-size: .58rem;

  letter-spacing: .1em;
}

.mobile-menu a b {
  color: var(--blue);

  font-size: 1rem;

  font-weight: 400;

  text-align: right;
}

.mobile-menu-footer {
  display: flex;

  justify-content: space-between;

  margin-top: auto;

  color: #596377;

  font-size: .6rem;
}

.menu-toggle.active span:first-child {
  transform:
    translateY(3.5px)
    rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform:
    translateY(-3.5px)
    rotate(-45deg);
}

@media (min-width: 1051px) {

  .mobile-menu {
    display: none !important;
  }

}

@media (max-width: 1050px) {

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu.open {
    display: block;
  }

  body.menu-open {
    overflow: hidden;
  }

  .navbar {
    z-index: 50;
  }

  .nav-button {
    display: none;
  }

}

@media (max-width: 650px) {

  .mobile-menu-inner {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .mobile-menu-footer {
    flex-direction: column;

    gap: 7px;
  }

}

.flow-section {
  position: relative;

  overflow: hidden;
}

.flow-section::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  right: -300px;
  top: 120px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(83,68,255,.12),
      transparent 70%
    );

  pointer-events: none;
}

.flow-heading {
  display: grid;

  grid-template-columns:
    1.15fr .85fr;

  gap: 70px;

  align-items: end;
}

.flow-heading h2 {
  max-width: 900px;

  font-size:
    clamp(3.1rem, 6vw, 6.2rem);

  line-height: .91;

  letter-spacing: -.075em;
}

.flow-heading p {
  color: var(--muted);

  line-height: 1.75;

  max-width: 500px;
}

.payment-flow {
  display: grid;

  grid-template-columns:
    1fr 90px 1fr 90px 1fr;

  align-items: center;

  margin-top: 75px;
}

.flow-step {
  min-height: 310px;

  position: relative;

  padding: 28px;

  border-radius: 25px;

  border: 1px solid
    rgba(255,255,255,.08);

  background:
    rgba(255,255,255,.025);

  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease;
}

.flow-step:hover {
  transform:
    translateY(-7px);

  border-color:
    rgba(67,133,255,.35);

  background:
    rgba(255,255,255,.045);
}

.flow-step.highlight {
  background:
    linear-gradient(
      145deg,
      rgba(24,83,147,.18),
      rgba(89,48,143,.11)
    );

  border-color:
    rgba(70,115,255,.28);

  box-shadow:
    0 25px 80px
    rgba(27,65,190,.1);
}

.step-number {
  color: #5d677c;

  font-size: .58rem;

  letter-spacing: .15em;
}

.step-icon {
  width: 62px;
  height: 62px;

  margin-top: 35px;

  display: grid;

  place-items: center;

  border-radius: 18px;

  color: var(--blue);

  font-size: 1.7rem;

  background:
    linear-gradient(
      135deg,
      rgba(17,195,255,.12),
      rgba(117,65,255,.12)
    );

  border:
    1px solid
    rgba(70,132,255,.2);
}

.flow-step h3 {
  margin-top: 30px;

  font-size: 1.25rem;

  letter-spacing: -.03em;
}

.flow-step p {
  max-width: 300px;

  margin-top: 10px;

  color: var(--muted);

  font-size: .78rem;

  line-height: 1.65;
}

.flow-connector {
  position: relative;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(25,201,255,.1),
      rgba(93,78,255,.7),
      rgba(25,201,255,.1)
    );
}

.flow-connector::after {
  content: "›";

  position: absolute;

  right: -3px;
  top: 50%;

  transform:
    translateY(-50%);

  color: #6979ff;

  font-size: 1.2rem;
}

.signal-loss {
  position: absolute;

  right: 25px;
  top: 25px;

  display: flex;

  align-items: end;

  gap: 3px;

  height: 18px;
}

.signal-loss i {
  width: 3px;

  border-radius: 5px;

  background: #627087;
}

.signal-loss i:nth-child(1) {
  height: 6px;
}

.signal-loss i:nth-child(2) {
  height: 11px;
}

.signal-loss i:nth-child(3) {
  height: 16px;

  background:
    linear-gradient(
      #ff9b70,
      #ff5f82
    );

  animation:
    signalPulse 1.2s ease-in-out infinite;
}

.fallback-strip {
  display: grid;

  grid-template-columns:
    220px 1fr;

  gap: 35px;

  align-items: center;

  margin-top: 55px;

  padding: 23px 27px;

  border-radius: 20px;

  border:
    1px solid
    rgba(255,255,255,.07);

  background:
    rgba(255,255,255,.025);
}

.fallback-title {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #778197;

  font-size: .57rem;

  letter-spacing: .14em;
}

.fallback-channels {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 10px;
}

.fallback-channels span {
  display: flex;

  flex-direction: column;

  gap: 4px;

  color: #667085;

  font-size: .55rem;
}

.fallback-channels b {
  color: #b7c0d2;

  font-size: .59rem;

  letter-spacing: .1em;
}

@keyframes signalPulse {

  0%,100% {
    opacity: .35;
  }

  50% {
    opacity: 1;
  }

}

@media (max-width: 1050px) {

  .flow-heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .payment-flow {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .flow-connector {
    width: 1px;
    height: 45px;

    margin: auto;
  }

  .flow-connector::after {
    right: auto;
    left: 50%;

    top: auto;
    bottom: -9px;

    transform:
      translateX(-50%)
      rotate(90deg);
  }

  .fallback-strip {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 650px) {

  .flow-heading h2 {
    font-size: 3.2rem;
  }

  .flow-step {
    min-height: 280px;
  }

  .fallback-channels {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 18px;
  }

}

.team-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.team-heading h2 {
  max-width: 850px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: .91;
  letter-spacing: -.075em;
}

.team-heading p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.team-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 145px;
  padding: 27px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.018)
    );
  overflow: hidden;
  transition:
    transform .3s ease,
    border-color .3s ease;
}

.team-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -130px;
  bottom: -150px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(53,103,255,.16),
      transparent 70%
    );
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(67,133,255,.35);
}

.team-avatar {
  width: 67px;
  height: 67px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: white;
  font-size: .9rem;
  font-weight: 700;
  background:
    linear-gradient(
      135deg,
      #08cfff,
      #684aff
    );
  box-shadow:
    0 15px 35px
    rgba(55,100,255,.2);
}

.anshik-avatar {
  background:
    linear-gradient(
      135deg,
      #7351ff,
      #b54dff
    );
}

.team-role {
  color: var(--blue);
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .17em;
  margin-bottom: 8px;
}

.team-info h3 {
  font-size: 1.18rem;
  letter-spacing: -.035em;
}

.team-info p {
  margin-top: 5px;
  color: #70798c;
  font-size: .67rem;
}

.team-arrow {
  position: absolute;
  right: 25px;
  top: 24px;
  color: #667189;
  font-size: .9rem;
}

@media (max-width: 1050px) {

  .team-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

}

@media (max-width: 650px) {

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    padding: 22px;
  }

}

.contact-section {
  position: relative;

  min-height: 620px;

  display: grid;

  place-items: center;

  padding:
    130px 5vw;

  overflow: hidden;

  border-top:
    1px solid
    rgba(255,255,255,.06);

  border-bottom:
    1px solid
    rgba(255,255,255,.06);

  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(48,92,255,.12),
      transparent 45%
    );
}

.contact-glow {
  position: absolute;

  width: 600px;
  height: 600px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(30,174,255,.07),
      transparent 65%
    );

  filter: blur(15px);

  pointer-events: none;
}

.contact-inner {
  width: 100%;

  max-width: 1100px;

  position: relative;

  z-index: 2;

  text-align: center;
}

.contact-meta {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 55px;
}

.contact-index {
  color: #596377;

  font-size: .55rem;

  letter-spacing: .16em;
}

.contact-section h2 {
  font-size:
    clamp(4rem, 9vw, 8.5rem);

  line-height: .85;

  letter-spacing: -.085em;
}

.contact-section h2 em {
  display: block;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 400;

  color: #8f9ab0;
}

.contact-description {
  max-width: 510px;

  margin:
    35px auto 38px;

  color: var(--muted);

  font-size: .82rem;

  line-height: 1.8;
}

.contact-email {
  display: inline-flex;

  align-items: center;

  gap: 20px;

  padding: 17px 22px;

  border-radius: 100px;

  border:
    1px solid
    rgba(90,135,255,.25);

  background:
    rgba(255,255,255,.035);

  color: #e7ecf7;

  font-size: .76rem;

  letter-spacing: .01em;

  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.contact-email b {
  width: 28px;
  height: 28px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: white;

  background:
    linear-gradient(
      135deg,
      #11dfff,
      #604cff
    );

  font-weight: 400;
}

.contact-email:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(91,145,255,.55);

  background:
    rgba(55,92,180,.1);

  box-shadow:
    0 20px 60px
    rgba(37,86,220,.15);
}

.contact-note {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 7px;

  margin-top: 22px;

  color: #535d71;

  font-size: .55rem;
}

.contact-dot {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #28d99c;

  box-shadow:
    0 0 12px
    rgba(40,217,156,.7);
}

@media (max-width: 650px) {

  .contact-section {
    min-height: 560px;

    padding:
      100px 6vw;
  }

  .contact-meta {
    margin-bottom: 45px;
  }

  .contact-section h2 {
    font-size: 4rem;
  }

  .contact-email {
    max-width: 100%;

    font-size: .66rem;
  }

}

.site-footer {
  padding:
    45px 5vw 28px;

  border-top:
    1px solid
    rgba(255,255,255,.06);

  background:
    #05060a;
}

.footer-main {
  display: grid;

  grid-template-columns:
    1fr 1fr 1fr;

  align-items: center;

  padding-bottom: 42px;
}

.footer-logo {
  width: fit-content;
}

.footer-tagline {
  text-align: center;

  color: #5e687b;

  font-size: .58rem;

  letter-spacing: .08em;
}

.footer-contact {
  justify-self: end;

  display: flex;

  align-items: center;

  gap: 10px;

  color: #8d97aa;

  font-size: .62rem;

  transition:
    color .2s ease;
}

.footer-contact span {
  color: var(--blue);
}

.footer-contact:hover {
  color: #e4e9f4;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding-top: 20px;

  border-top:
    1px solid
    rgba(255,255,255,.05);

  color: #454e60;

  font-size: .5rem;

  letter-spacing: .02em;
}

@media (max-width: 800px) {

  .footer-main {
    grid-template-columns: 1fr;

    gap: 20px;

    justify-items: center;
  }

  .footer-contact {
    justify-self: center;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: center;

    text-align: center;
  }

}

.ovi-visual {
  background:
    radial-gradient(
      circle at center,
      rgba(90,72,255,.16),
      transparent 68%
    );
}

.ovi-core {
  width: 72px;
  height: 72px;

  position: relative;
  z-index: 3;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #101d48,
      #24144c
    );

  border:
    1px solid
    rgba(106,130,255,.45);

  box-shadow:
    0 0 55px
    rgba(77,91,255,.28);

  animation:
    oviPulse 3s ease-in-out infinite;
}

.ovi-core span {
  font-size: 1.45rem;

  font-weight: 800;

  background:
    linear-gradient(
      135deg,
      #13dcff,
      #9c4dff
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.ovi-orbit {
  position: absolute;

  border:
    1px solid
    rgba(89,110,255,.2);

  border-radius: 50%;
}

.orbit-one {
  width: 115px;
  height: 115px;

  animation:
    oviOrbit 5s linear infinite;
}

.orbit-two {
  width: 170px;
  height: 170px;

  opacity: .5;

  animation:
    oviOrbit 8s linear infinite reverse;
}

.ovi-message {
  position: absolute;

  bottom: 10px;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 8px 13px;

  border:
    1px solid
    rgba(255,255,255,.08);

  border-radius: 100px;

  background:
    rgba(7,9,18,.82);

  backdrop-filter: blur(10px);
}

.ovi-message small {
  color: #707b93;

  font-size: .42rem;

  letter-spacing: .12em;
}

.ovi-message strong {
  font-size: .56rem;

  color: #d8def0;
}

@keyframes oviPulse {

  0%,100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

}

@keyframes oviOrbit {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

.xpay-difference {
  position: relative;
}

.difference-heading {
  display: grid;

  grid-template-columns:
    1.15fr .85fr;

  gap: 60px;

  align-items: end;

  margin-bottom: 65px;
}

.difference-heading h2 {
  max-width: 850px;

  font-size:
    clamp(3.2rem, 6vw, 6rem);

  line-height: .91;

  letter-spacing: -.075em;
}

.difference-heading h2 em {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 400;

  color: #8b96aa;
}

.difference-heading p {
  max-width: 500px;

  color: var(--muted);

  line-height: 1.75;
}

.difference-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 15px;
}

.difference-card {
  position: relative;

  min-height: 355px;

  padding: 28px;

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.07);

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.015)
    );

  transition:
    transform .3s ease,
    border-color .3s ease;
}

.difference-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(70,130,255,.3);
}

.difference-index {
  color: #596377;

  font-size: .55rem;

  letter-spacing: .15em;
}

.difference-icon {
  width: 58px;
  height: 58px;

  display: grid;

  place-items: center;

  margin-top: 32px;

  border-radius: 17px;

  color: #25dfff;

  font-size: 1.4rem;

  background:
    rgba(24,160,255,.08);

  border:
    1px solid
    rgba(43,160,255,.18);
}

.ai-icon {
  color: #a76aff;

  background:
    rgba(122,70,255,.08);

  border-color:
    rgba(139,79,255,.2);
}

.shield-icon {
  color: #5e8dff;

  background:
    rgba(65,100,255,.08);
}

.fraud-icon {
  color: #31dca3;

  background:
    rgba(31,205,146,.07);

  border-color:
    rgba(31,205,146,.17);
}

.difference-card h3 {
  margin-top: 28px;

  font-size: 1.2rem;

  letter-spacing: -.035em;
}

.difference-card p {
  max-width: 390px;

  margin-top: 10px;

  color: var(--muted);

  font-size: .76rem;

  line-height: 1.7;
}

.difference-flow {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 25px;

  display: flex;

  align-items: center;

  gap: 9px;
}

.difference-flow span {
  padding: 6px 9px;

  border-radius: 7px;

  color: #7d879a;

  font-size: .47rem;

  letter-spacing: .1em;

  border:
    1px solid
    rgba(255,255,255,.07);
}

.difference-flow i {
  color: #4f6bff;

  font-style: normal;
}

.ai-prompt {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 25px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 12px 14px;

  border-radius: 12px;

  background:
    rgba(255,255,255,.035);

  border:
    1px solid
    rgba(255,255,255,.06);

  color: #9099ad;

  font-size: .58rem;
}

.ai-prompt b {
  color: #9b68ff;

  font-size: .85rem;
}

.security-tags {
  position: absolute;

  left: 28px;
  bottom: 27px;

  display: flex;

  gap: 6px;
}

.security-tags span {
  padding: 6px 8px;

  border-radius: 7px;

  color: #778197;

  background:
    rgba(255,255,255,.035);

  border:
    1px solid
    rgba(255,255,255,.06);

  font-size: .45rem;

  letter-spacing: .08em;
}

.risk-meter {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 25px;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 12px;
}

.risk-meter span,
.risk-meter b {
  color: #687287;

  font-size: .45rem;

  letter-spacing: .08em;
}

.risk-meter b {
  color: #2dd9a0;
}

.risk-meter div {
  height: 4px;

  overflow: hidden;

  border-radius: 10px;

  background:
    rgba(255,255,255,.07);
}

.risk-meter i {
  display: block;

  width: 27%;

  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      #20d69c,
      #4ee0b1
    );
}

@media (max-width: 1050px) {

  .difference-heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }

}

@media (max-width: 700px) {

  .difference-grid {
    grid-template-columns: 1fr;
  }

}

.security-section {
  position: relative;

  overflow: hidden;
}

.security-section::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -300px;
  top: 100px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(41,93,255,.1),
      transparent 68%
    );

  pointer-events: none;
}

.security-heading {
  display: grid;

  grid-template-columns:
    1.15fr .85fr;

  gap: 60px;

  align-items: end;

  margin-bottom: 65px;
}

.security-heading h2 {
  max-width: 850px;

  font-size:
    clamp(3.2rem, 6vw, 6rem);

  line-height: .91;

  letter-spacing: -.075em;
}

.security-heading h2 em {
  display: block;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 400;

  color: #8c97ab;
}

.security-heading p {
  max-width: 500px;

  color: var(--muted);

  line-height: 1.75;
}

.security-layout {
  display: grid;

  grid-template-columns:
    1.15fr .85fr;

  gap: 15px;
}

.security-panel {
  min-height: 590px;

  position: relative;

  overflow: hidden;

  border-radius: 26px;

  border:
    1px solid
    rgba(255,255,255,.08);

  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(45,93,255,.1),
      transparent 45%
    ),
    rgba(255,255,255,.018);
}

.security-panel-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 22px 25px;

  border-bottom:
    1px solid
    rgba(255,255,255,.06);

  color: #667186;

  font-size: .51rem;

  letter-spacing: .13em;
}

.secure-status {
  display: flex;

  align-items: center;

  gap: 7px;

  color: #34d9a1;
}

.secure-status i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #34d9a1;

  box-shadow:
    0 0 12px
    rgba(52,217,161,.8);
}

.transaction-visual {
  position: absolute;

  inset:
    90px 30px 70px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.transaction-line {
  position: absolute;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(63,121,255,.6),
      transparent
    );

  transform-origin: left center;
}

.line-one {
  width: 160px;

  top: 42%;

  left: 13%;

  transform:
    rotate(18deg);
}

.line-two {
  width: 160px;

  top: 58%;

  left: 30%;

  transform:
    rotate(-18deg);
}

.line-three {
  width: 180px;

  top: 48%;

  left: 48%;

  transform:
    rotate(5deg);
}

.transaction-node {
  position: absolute;

  width: 76px;
  height: 76px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 5px;

  border-radius: 50%;

  color: #8490a5;

  font-size: .43rem;

  letter-spacing: .08em;

  background:
    rgba(8,11,20,.95);

  border:
    1px solid
    rgba(74,117,255,.25);

  box-shadow:
    0 0 35px
    rgba(43,83,220,.1);
}

.transaction-node span {
  color: #506aff;

  font-size: .43rem;
}

.user-node {
  left: 8%;
  top: 35%;
}

.ai-node {
  left: 30%;
  top: 55%;
}

.risk-node {
  left: 49%;
  top: 32%;

  border-color:
    rgba(168,105,255,.3);
}

.auth-node {
  right: 20%;
  top: 51%;

  border-color:
    rgba(45,213,162,.25);
}

.bank-node {
  right: 3%;
  top: 28%;

  border-color:
    rgba(52,143,255,.3);
}

.security-panel-bottom {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 20px;

  display: flex;

  justify-content: space-between;

  color: #4e586c;

  font-size: .47rem;

  letter-spacing: .1em;
}

.security-panel-bottom strong {
  color: #737e94;

  font-weight: 500;
}

.security-controls {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.security-control {
  flex: 1;

  position: relative;

  display: grid;

  grid-template-columns:
    35px 1fr 30px;

  gap: 15px;

  align-items: start;

  padding: 25px;

  border-radius: 20px;

  border:
    1px solid
    rgba(255,255,255,.07);

  background:
    rgba(255,255,255,.022);

  transition:
    transform .25s ease,
    border-color .25s ease;
}

.security-control:hover {
  transform: translateX(5px);

  border-color:
    rgba(67,132,255,.3);
}

.control-number {
  color: #586276;

  font-size: .53rem;

  letter-spacing: .08em;
}

.security-control h3 {
  font-size: 1rem;

  letter-spacing: -.02em;
}

.security-control p {
  margin-top: 7px;

  max-width: 360px;

  color: #6d778a;

  font-size: .65rem;

  line-height: 1.6;
}

.control-icon {
  width: 28px;
  height: 28px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #3cddaa;

  background:
    rgba(40,216,166,.07);

  border:
    1px solid
    rgba(40,216,166,.15);

  font-size: .65rem;
}

.fraud-control {
  color: #ff9c74;

  background:
    rgba(255,119,77,.06);

  border-color:
    rgba(255,119,77,.15);
}

@media (max-width: 1050px) {

  .security-heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .security-layout {
    grid-template-columns: 1fr;
  }

  .security-panel {
    min-height: 500px;
  }

}

@media (max-width: 650px) {

  .security-panel {
    min-height: 430px;
  }

  .transaction-node {
    width: 62px;
    height: 62px;

    font-size: .35rem;
  }

  .security-control {
    grid-template-columns:
      30px 1fr 25px;

    padding: 20px;
  }

}

.offlopay-logo-img {
  width: 30px;
  height: 30px;

  display: block;

  border-radius: 8px;

  object-fit: cover;
}

.logo {
  display: inline-flex;

  align-items: center;

  gap: 9px;
}

.logo-text {
  font-weight: 700;

  letter-spacing: -.04em;
}

.logo-text span {
  color: #778196;
}

.hero-brand {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  margin-bottom: 35px;

  color: #8994a8;

  font-size: .55rem;

  font-weight: 700;

  letter-spacing: .18em;
}

.hero-brand img {
  width: 34px;
  height: 34px;

  border-radius: 9px;

  box-shadow:
    0 8px 30px
    rgba(62,89,255,.18);
}

.footer-logo .logo-mark {
  display: none;
}

.footer-logo .logo-text {
  font-size: 1rem;
}

@media (max-width: 650px) {

  .offlopay-logo-img {
    width: 27px;
    height: 27px;
  }

  .hero-brand {
    margin-bottom: 27px;
  }

}

.logo-text {
  display: flex;

  flex-direction: column;

  line-height: 1;
}

.logo-text small {
  margin-top: 4px;

  color: #596477;

  font-size: .38rem;

  font-weight: 500;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.hero-tagline {
  margin-bottom: 14px;

  color: #68758d;

  font-size: .55rem;

  font-weight: 700;

  letter-spacing: .25em;

  opacity: .9;
}

@media (max-width: 650px) {

  .logo-text small {
    display: none;
  }

  .hero-tagline {
    font-size: .48rem;

    letter-spacing: .19em;
  }

}

.offlopay-logo-img,
.hero-brand img,
.footer-logo img {
  width: 34px !important;
  height: 34px !important;

  min-width: 34px;
  min-height: 34px;

  display: block;

  object-fit: contain;

  border-radius: 9px;

  background: #070A14;

  box-shadow:
    0 0 25px rgba(58, 91, 255, .18);
}

header .logo {
  display: inline-flex !important;

  align-items: center;

  gap: 10px;
}

header .logo .logo-text {
  display: flex;

  flex-direction: column;

  justify-content: center;

  line-height: .95;
}

header .logo .logo-text > span {
  color: #77839a;
}

.hero-brand {
  display: inline-flex !important;

  align-items: center;

  gap: 11px;

  padding: 7px 12px 7px 7px;

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 14px;

  background:
    rgba(255,255,255,.025);

  box-shadow:
    inset 0 1px rgba(255,255,255,.04);
}

.hero-brand img {
  width: 34px !important;
  height: 34px !important;
}

.hero-brand span {
  color: #aab4c8;

  font-size: .55rem;

  font-weight: 700;

  letter-spacing: .18em;
}

.site-footer .footer-logo {
  display: inline-flex !important;

  align-items: center;

  gap: 10px;
}

.site-footer .footer-logo .logo-text {
  display: flex;

  flex-direction: column;

  line-height: .95;
}

.logo-x,
.logo-mark {
  display: none !important;
}

.coming-soon-badge {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 22px;

  padding: 8px 13px;

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 100px;

  background: rgba(255,255,255,.025);

  color: #8d99ae;

  font-size: .48rem;

  font-weight: 700;

  letter-spacing: .18em;

  box-shadow:
    inset 0 1px rgba(255,255,255,.04);
}

.coming-soon-badge span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #29dfaa;

  box-shadow:
    0 0 12px rgba(41,223,170,.8);

  animation: comingPulse 2s ease-in-out infinite;
}

@keyframes comingPulse {

  0%, 100% {
    opacity: .45;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

}

.hero {
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-brand {
  width: fit-content !important;
  max-width: max-content !important;

  display: inline-flex !important;

  position: relative !important;

  margin: 0 0 18px 0 !important;
}

.coming-soon-badge {
  width: fit-content !important;
  max-width: max-content !important;

  display: inline-flex !important;

  position: relative !important;

  margin: 0 0 24px 0 !important;
}

.hero-brand img {
  width: 34px !important;
  height: 34px !important;

  flex: 0 0 34px;
}

.hero-content > * {
  justify-self: start;
}

header .logo {
  width: fit-content !important;
}

header .logo img {
  width: 30px !important;
  height: 30px !important;

  display: block !important;
}

header .logo-x,
header .logo-mark {
  display: none !important;
}

.simple-offlopay-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 1px;
  text-decoration: none;
  line-height: 1;
}

.simple-x {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.08em;

  background: linear-gradient(
    135deg,
    #16dfff,
    #6670ff,
    #a84dff
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.simple-pay {
  color: #8b95a8;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.05em;
}

.hero-brand {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.hero-brand img {
  display: none !important;
}

.hero-brand span {
  color: #8b95a8;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.footer-logo img {
  display: none !important;
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  max-width: 720px;

  margin-left: 0 !important;
  margin-right: auto !important;
}

.hero-brand {
  margin-bottom: 14px !important;
}

.hero-brand span {
  color: #8994aa !important;
}

.coming-soon-badge {
  margin-bottom: 24px !important;
}

.hero h1 {
  max-width: 720px;
  margin-top: 0 !important;
  margin-bottom: 22px !important;
}

.hero-description {
  max-width: 590px;
}

.hero-buttons {
  margin-top: 8px;
}

.hero-info {
  margin-top: 22px;
}

.hero-visual {
  position: absolute !important;

  right: 2% !important;
  left: auto !important;

  top: 50% !important;

  transform: translateY(-45%) !important;

  width: min(470px, 42vw) !important;

  z-index: 3;
}

.hero-visual .payment-card,
.hero-visual .dashboard-card {
  position: relative;

  width: 100%;
}

.hero-visual::before {
  content: "↯   OFFLINE READY";

  position: absolute;

  left: -90px;
  top: 72px;

  display: flex;
  align-items: center;

  padding: 12px 16px;

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 14px;

  background: rgba(9,13,27,.82);

  backdrop-filter: blur(18px);

  color: #8c98ad;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .12em;

  box-shadow:
    0 18px 50px rgba(0,0,0,.25);
}

.hero-visual::after {
  content: "";

  position: absolute;

  left: -100px;
  top: 80px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #25e7ad;

  box-shadow:
    0 0 14px rgba(37,231,173,.9);
}

.features-grid {
  align-items: stretch;
}

.feature-card {
  min-height: 385px;
}

.ovi-card {
  min-height: 385px;
}

.ovi-card .ovi-visual {
  min-height: 150px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;
}

.ovi-core {
  width: 72px;
  height: 72px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(82,113,255,.55);

  background:
    radial-gradient(
      circle,
      rgba(82,113,255,.16),
      rgba(10,14,30,.9)
    );

  box-shadow:
    0 0 45px rgba(82,113,255,.22);
}

.ovi-core span {
  font-size: 1.35rem;
  font-weight: 800;

  color: #6e8cff;
}

@media (max-width: 900px) {

  .hero {
    min-height: auto;

    padding-bottom: 80px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    position: relative !important;

    right: auto !important;
    top: auto !important;

    transform: none !important;

    width: 100% !important;

    margin-top: 60px;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

}

.hero-visual {
  right: 0 !important;
  width: min(430px, 38vw) !important;
}

.hero-visual .voice-command,
.hero-visual .voice-card,
.hero-visual [class*="voice"] {
  max-width: 180px;
}

.hero-visual > * {
  max-width: 100%;
}

.hero-visual .voice-command,
.hero-visual .voice-card {
  right: 8% !important;
}

@media (min-width: 1200px) {

  .hero-visual {
    right: 6% !important;
    width: 410px !important;
  }

}

@media (min-width: 901px) and (max-width: 1199px) {

  .hero-visual {
    right: 4% !important;
    width: 380px !important;
  }

}

.hero-visual .voice-command,
.hero-visual .voice-card {
  top: auto !important;
  bottom: -55px !important;

  right: 20px !important;
  left: auto !important;

  transform: none !important;
}

.hero-visual .voice-command {
  z-index: 10;
}

@media (min-width: 901px) {

  .hero-visual {
    margin-bottom: 80px;
  }

}

.hero-visual .network-status,
.hero-visual .payment-network,
.hero-visual [class*="network"],
.hero-visual [class*="fallback"] {
  top: 35px !important;
  left: -95px !important;
  right: auto !important;
  bottom: auto !important;

  transform: none !important;
  z-index: 8;
}

.hero-visual .voice-command,
.hero-visual .voice-card {
  top: auto !important;
  bottom: -55px !important;

  left: auto !important;
  right: 20px !important;

  transform: none !important;
  z-index: 10;
}

.hero-visual .voice-command,
.hero-visual .voice-card {
  bottom: -20px !important;
}

.hero-pills {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 28px;
  margin-bottom: 22px;

  position: relative;
  z-index: 6;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 9px;

  min-width: 116px;
  height: 48px;

  padding: 7px 13px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 15px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 12px 30px rgba(0,0,0,.14);

  backdrop-filter: blur(16px);

  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.hero-pill:hover {
  transform: translateY(-3px);

  border-color: rgba(82,145,255,.32);

  background:
    linear-gradient(
      135deg,
      rgba(72,112,255,.11),
      rgba(255,255,255,.025)
    );
}

.pill-icon {
  width: 29px;
  height: 29px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 9px;

  font-size: 14px;
  font-weight: 800;

  background: rgba(255,255,255,.035);
}

.offline-icon {
  color: #19dfff;

  border: 1px solid rgba(25,223,255,.18);

  box-shadow:
    0 0 18px rgba(25,223,255,.08);
}

.ovi-icon {
  color: #9c70ff;

  border: 1px solid rgba(156,112,255,.18);

  box-shadow:
    0 0 18px rgba(156,112,255,.08);
}

.security-icon {
  color: #26e8a8;

  border: 1px solid rgba(38,232,168,.18);

  box-shadow:
    0 0 18px rgba(38,232,168,.08);
}

.hero-pill strong {
  display: block;

  color: #e9edf7;

  font-size: 10px;
  line-height: 1.1;

  font-weight: 700;

  letter-spacing: .01em;
}

.hero-pill small {
  display: block;

  margin-top: 3px;

  color: #737d91;

  font-size: 8px;
  line-height: 1;

  letter-spacing: .06em;
}

.hero-buttons a:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 46px;

  padding: 0 19px;

  border-radius: 999px;
}

.hero-buttons a:first-child span {
  font-size: 15px;
  transition: transform .2s ease;
}

.hero-buttons a:first-child:hover span {
  transform: translateX(3px);
}

.hero-content {
  max-width: 720px;
}

.hero-description {
  max-width: 600px;

  line-height: 1.75;
}

@media (max-width: 700px) {

  .hero-pills {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-pill {
    min-width: 105px;
  }

}

.hero-visual {
  position: relative;
}

.hero-visual .network-status,
.hero-visual .fallback-status,
.hero-visual .payment-network,
.hero-visual [class*="network"],
.hero-visual [class*="fallback"] {
  z-index: 8;
}

.hero-visual .network-status {
  position: absolute;
  top: 2%;
  right: 20%;
  transform: translateY(-8px);
}

.hero-visual .payment-network {
  position: absolute;
  top: 0;
  right: 18%;
}

@media (min-width: 1000px) {
  .hero-visual .network-status,
  .hero-visual .payment-network {
    margin-top: -8px;
  }
}

@media (max-width: 900px) {
  .hero-visual .network-status,
  .hero-visual .payment-network {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0 auto 12px;
  }
}

.hero-visual {
  position: relative;
}

.hero-visual .network-card {
  position: absolute !important;

  top: 5% !important;
  right: 31% !important;

  left: auto !important;
  bottom: auto !important;

  z-index: 20 !important;

  transform: translateY(-6px) !important;
}

.hero-visual .network-card {
  width: max-content;
  min-width: 190px;
}

.hero-visual .network-card {
  animation: fallbackFloat 4s ease-in-out infinite;
}

@keyframes fallbackFloat {
  0%, 100% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(-11px);
  }
}

.hero-visual .payment-card {
  z-index: 10;
}

.hero-visual .voice-card {
  z-index: 18;
}

@media (max-width: 1000px) {

  .hero-visual .network-card {
    top: 2% !important;
    right: 8% !important;
  }

}

@media (max-width: 700px) {

  .hero-visual .network-card {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;

    transform: scale(.85) !important;
    transform-origin: top right;
  }

}

.hero-visual .network-card {
  right: 20% !important;
  top: 3% !important;
}

@media (max-width: 1000px) {
  .hero-visual .network-card {
    right: 0 !important;
  }
}

.hero-visual {
  position: relative !important;
  overflow: visible !important;
}

.hero-visual .network-card {
  position: absolute !important;
  top: 2% !important;
  right: 8% !important;
  left: auto !important;
  transform: none !important;
  z-index: 20 !important;
}

.hero-visual .offline-card,
.hero-visual .offline-ready,
.hero-visual [class*="offline"] {
  z-index: 15 !important;
}

.hero-visual .voice-card {
  position: absolute !important;
  right: 2% !important;
  bottom: 4% !important;
  left: auto !important;
  top: auto !important;
  z-index: 18 !important;
}

.hero-content {
  position: relative;
  z-index: 5;
}

@media (min-width: 1000px) {
  .hero-visual .network-card {
    top: 1% !important;
    right: 6% !important;
  }

  .hero-visual .voice-card {
    right: 1% !important;
    bottom: 3% !important;
  }
}

@media (max-width: 900px) {
  .hero-visual .network-card,
  .hero-visual .voice-card {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 12px auto !important;
  }
}

@media (min-width: 1000px) {
  .hero-visual .network-card {
    right: 12% !important;
  }
}

@media (min-width: 1000px) {
  .hero-visual .network-card {
    right: 20% !important;
  }
}

@media (min-width: 1000px) {
  .hero-visual .network-card {
    right: 27% !important;
    top: -2% !important;
  }
}

@media (max-width: 1100px) {

  .hero {
    min-height: auto;
    padding-bottom: 90px;
  }

  .hero-content {
    max-width: 52%;
  }

  .hero-visual {
    width: 44%;
    min-width: 0;
  }

  .hero-visual .network-card,
  .hero-visual .voice-card,
  .hero-visual .payment-card {
    max-width: 100%;
    box-sizing: border-box;
  }

}

@media (max-width: 900px) {

  .hero {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-visual .network-card,
  .hero-visual .voice-card,
  .hero-visual .payment-card {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 650px) {

  .hero {
    padding-left: 20px;
    padding-right: 20px;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 68px);
    line-height: .95;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-visual > * {
    max-width: 100%;
  }

  .network-card,
  .voice-card,
  .payment-card {
    width: 100%;
  }

}

@media (max-width: 480px) {

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-visual {
    transform: none !important;
  }

  .network-card,
  .voice-card,
  .payment-card {
    font-size: 13px;
    padding: 14px !important;
  }

  .network-card strong,
  .voice-card strong {
    font-size: 12px;
  }

  .hero-info {
    flex-wrap: wrap;
    gap: 12px;
  }

}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

@media (min-width: 901px) {
  .hero-visual {
    transform: translateY(45px);
  }
}


@media (min-width: 901px) {
  .hero-visual {
    margin-right: 30px;
  }
}


@media (min-width: 901px) {
  .hero-visual {
    margin-left: 70px !important;
  }
}


@media (min-width: 901px) {
  .hero-visual {
    left: 160px !important;
  }
}


@media (min-width: 901px) {
  .hero-visual .fallback-status {
    left: -95px !important;
    right: auto !important;
    top: 65px !important;
  }
}


@media (max-width: 900px) {
  .hero {
    overflow-x: hidden !important;
  }

  .hero-visual {
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  .hero-visual .payment-ui {
    position: relative !important;
    margin: 0 auto !important;
    left: auto !important;
    right: auto !important;
  }

  .hero-visual .fallback-status {
    left: 12px !important;
    right: auto !important;
    top: 70px !important;
    transform: scale(.82) !important;
    transform-origin: left center !important;
    z-index: 20 !important;
  }

  .hero-visual .network-card {
    right: 12px !important;
    left: auto !important;
    top: 15px !important;
    transform: scale(.82) !important;
    transform-origin: right top !important;
    z-index: 20 !important;
  }

  .hero-visual .voice-card {
    right: 12px !important;
    left: auto !important;
    bottom: 20px !important;
    transform: scale(.82) !important;
    transform-origin: right bottom !important;
    z-index: 20 !important;
  }
}

@media (max-width: 500px) {
  .hero-visual .fallback-status {
    left: 5px !important;
    top: 65px !important;
    transform: scale(.72) !important;
  }

  .hero-visual .network-card {
    right: 5px !important;
    transform: scale(.72) !important;
  }

  .hero-visual .voice-card {
    right: 5px !important;
    transform: scale(.72) !important;
  }
}


@media (max-width: 900px) {
  .hero-visual::before {
    left: 50% !important;
    top: -55px !important;
    transform: translateX(-50%) !important;
    white-space: nowrap !important;
    z-index: 30 !important;
  }
}

@media (max-width: 500px) {
  .hero-visual::before {
    top: -48px !important;
    transform: translateX(-50%) scale(.82) !important;
    transform-origin: center !important;
  }
}



@media (max-width: 900px) {
  .hero-visual::before {
    left: 50% !important;
    top: -62px !important;
    transform: translateX(-50%) !important;
    white-space: nowrap !important;
    z-index: 30 !important;
  }

  .hero-visual::after {
    left: calc(50% - 82px) !important;
    top: -52px !important;
    z-index: 31 !important;
  }

  .hero-visual .network-card {
    top: -62px !important;
    right: 5px !important;
    left: auto !important;
    transform: scale(.82) !important;
    transform-origin: right bottom !important;
    z-index: 30 !important;
  }
}

@media (max-width: 500px) {
  .hero-visual::before {
    top: -52px !important;
    transform: translateX(-50%) scale(.78) !important;
  }

  .hero-visual::after {
    top: -44px !important;
    left: calc(50% - 64px) !important;
  }

  .hero-visual .network-card {
    top: -52px !important;
    right: 0 !important;
    transform: scale(.68) !important;
  }
}



.offlopay-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.offlopay-mark {
  color: #20b4ff;
  font-weight: 800;
}

.offlopay-logo span:last-child {
  color: #8994aa;
}


header .offlopay-navbar-logo {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  text-decoration: none !important;
}

header .offlopay-logo-name {
  display: inline-block !important;
  color: #8994aa !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  white-space: nowrap !important;
}




@media (max-width: 900px) {

  .hero {
    overflow: hidden !important;
  }

  .hero-visual {
    position: relative !important;
    width: min(100%, 620px) !important;
    max-width: 620px !important;
    min-height: 560px !important;
    margin: 0 auto 40px !important;
    left: auto !important;
    right: auto !important;
    overflow: visible !important;
    display: block !important;
  }

  
  .hero-visual .payment-ui {
    position: absolute !important;
    width: min(390px, 78vw) !important;
    max-width: 390px !important;
    left: 50% !important;
    right: auto !important;
    top: 90px !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
  }

  
  .hero-visual::before {
    left: 50% !important;
    right: auto !important;
    top: 32px !important;
    transform: translateX(-50%) !important;

    padding: 10px 14px !important;
    white-space: nowrap !important;

    z-index: 30 !important;
  }

  .hero-visual::after {
    left: calc(50% - 92px) !important;
    top: 51px !important;
    z-index: 31 !important;
  }

  
  .hero-visual .network-card {
    top: 88px !important;
    right: max(4vw, 12px) !important;
    left: auto !important;
    transform: scale(.78) !important;
    transform-origin: right top !important;
    z-index: 25 !important;
  }

  
  .hero-visual .voice-card {
    right: max(4vw, 12px) !important;
    left: auto !important;
    bottom: 72px !important;
    top: auto !important;
    transform: scale(.78) !important;
    transform-origin: right bottom !important;
    z-index: 25 !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 5 !important;
    width: min(100%, 620px) !important;
    margin: 0 auto !important;
  }
}



@media (max-width: 600px) {

  .hero-visual {
    min-height: 500px !important;
  }

  .hero-visual .payment-ui {
    width: min(360px, 86vw) !important;
    top: 82px !important;
  }

  .hero-visual::before {
    top: 24px !important;
    font-size: 8px !important;
    padding: 9px 12px !important;
  }

  .hero-visual::after {
    top: 43px !important;
  }

  .hero-visual .network-card {
    top: 76px !important;
    right: 3vw !important;
    transform: scale(.68) !important;
  }

  .hero-visual .voice-card {
    right: 3vw !important;
    bottom: 55px !important;
    transform: scale(.68) !important;
  }
}



@media (max-width: 430px) {

  .hero-visual {
    min-height: 450px !important;
  }

  .hero-visual .payment-ui {
    width: 88vw !important;
    top: 75px !important;
  }

  
  .hero-visual .network-card {
    top: 58px !important;
    right: 1vw !important;
    transform: scale(.58) !important;
  }

  .hero-visual .voice-card {
    right: 1vw !important;
    bottom: 45px !important;
    transform: scale(.58) !important;
  }

  .hero-visual::before {
    top: 20px !important;
    transform: translateX(-50%) scale(.9) !important;
  }

  .hero-visual::after {
    display: none !important;
  }
}




@media (max-width: 650px) {

  .hero {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    padding: 115px 16px 60px !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  
  .hero-visual {
    order: -1 !important;
    width: 100% !important;
    max-width: 390px !important;
    height: 500px !important;
    min-height: 500px !important;
    margin: 0 auto !important;
    position: relative !important;
    display: block !important;
    overflow: visible !important;
    left: auto !important;
    right: auto !important;
  }

  
  .hero-visual .payment-ui {
    position: absolute !important;
    width: calc(100vw - 34px) !important;
    max-width: 360px !important;
    left: 50% !important;
    top: 105px !important;
    right: auto !important;
    margin: 0 !important;

    transform: translateX(-50%) !important;
    transform-origin: center top !important;

    z-index: 10 !important;
  }

  
  .hero-visual::before {
    left: 18px !important;
    top: 18px !important;
    transform: none !important;

    padding: 9px 12px !important;
    font-size: 8px !important;
    white-space: nowrap !important;

    z-index: 40 !important;
  }

  .hero-visual::after {
    left: 8px !important;
    top: 37px !important;
    z-index: 41 !important;
  }

  
  .hero-visual .network-card {
    position: absolute !important;

    top: 12px !important;
    right: 8px !important;
    left: auto !important;
    bottom: auto !important;

    width: max-content !important;
    max-width: 190px !important;

    transform: scale(.68) !important;
    transform-origin: right top !important;

    margin: 0 !important;
    z-index: 35 !important;
  }

  
  .hero-visual .voice-card {
    position: absolute !important;

    top: auto !important;
    right: 5px !important;
    bottom: 22px !important;
    left: auto !important;

    width: max-content !important;
    max-width: 220px !important;

    transform: scale(.68) !important;
    transform-origin: right bottom !important;

    margin: 0 !important;
    z-index: 35 !important;
  }

  
  .hero-content {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .hero-brand {
    margin-bottom: 16px !important;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 62px) !important;
    line-height: .92 !important;
    letter-spacing: -.07em !important;
  }

  .hero-description {
    font-size: .95rem !important;
    line-height: 1.65 !important;
    margin: 24px 0 !important;
  }

  .hero-pills {
    gap: 7px !important;
  }

  .hero-pill {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
}


@media (max-width: 430px) {

  .hero {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-visual {
    height: 470px !important;
    min-height: 470px !important;
  }

  .hero-visual .payment-ui {
    width: calc(100vw - 28px) !important;
    max-width: 350px !important;
    top: 100px !important;
  }

  .hero-visual .network-card {
    top: 10px !important;
    right: 2px !important;
    transform: scale(.62) !important;
  }

  .hero-visual .voice-card {
    right: 2px !important;
    bottom: 16px !important;
    transform: scale(.62) !important;
  }

  .hero-visual::before {
    left: 8px !important;
    top: 17px !important;
    transform: scale(.9) !important;
    transform-origin: left top !important;
  }

  .hero-visual::after {
    display: none !important;
  }
}




@media (max-width: 900px) {

  .hero {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 105px 16px 70px !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  
  .hero-content {
    order: 2 !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;
  }

  
  .hero-visual {
    order: 1 !important;
    position: relative !important;

    width: 100% !important;
    max-width: 390px !important;

    height: 560px !important;
    min-height: 560px !important;

    margin: 0 auto 35px !important;

    left: auto !important;
    right: auto !important;

    display: block !important;
    overflow: visible !important;

    transform: none !important;
  }

  
  .hero-visual .payment-ui {
    position: absolute !important;

    top: 82px !important;
    left: 50% !important;
    right: auto !important;

    width: calc(100vw - 32px) !important;
    max-width: 370px !important;

    margin: 0 !important;

    transform: translateX(-50%) !important;

    z-index: 10 !important;
  }

  
  .hero-visual::before {
    content: "↯  OFFLINE READY" !important;

    position: absolute !important;

    top: 18px !important;
    left: 16px !important;
    right: auto !important;

    transform: none !important;

    padding: 9px 13px !important;

    white-space: nowrap !important;

    font-size: 8px !important;
    letter-spacing: .11em !important;

    z-index: 50 !important;
  }

  .hero-visual::after {
    left: 8px !important;
    top: 40px !important;

    z-index: 51 !important;
  }

  
  .hero-visual .network-card {
    position: absolute !important;

    top: 18px !important;
    right: 8px !important;
    left: auto !important;
    bottom: auto !important;

    width: max-content !important;
    min-width: 0 !important;
    max-width: 185px !important;

    margin: 0 !important;

    transform: scale(.68) !important;
    transform-origin: right top !important;

    z-index: 45 !important;

    animation: none !important;
  }

  
  .hero-visual .voice-card {
    position: absolute !important;

    top: auto !important;
    right: 8px !important;
    left: auto !important;
    bottom: 20px !important;

    width: max-content !important;
    max-width: 220px !important;

    margin: 0 !important;

    transform: scale(.68) !important;
    transform-origin: right bottom !important;

    z-index: 45 !important;
  }

  
  .hero-visual > .network-card,
  .hero-visual > .voice-card,
  .hero-visual > .payment-ui {
    box-sizing: border-box !important;
  }

  
  .hero h1 {
    font-size: clamp(46px, 13vw, 68px) !important;
    line-height: .91 !important;
    letter-spacing: -.07em !important;
  }

  .hero-description {
    max-width: 100% !important;
    font-size: .95rem !important;
    line-height: 1.65 !important;
  }

}




@media (max-width: 500px) {

  .hero {
    padding: 92px 14px 60px !important;
  }

  .hero-visual {
    width: 100% !important;
    max-width: 360px !important;
    height: 515px !important;
    min-height: 515px !important;
    margin-bottom: 25px !important;
  }

  .hero-visual .payment-ui {
    top: 72px !important;
    width: calc(100vw - 28px) !important;
    max-width: 350px !important;
  }

  .hero-visual::before {
    top: 12px !important;
    left: 8px !important;

    padding: 8px 10px !important;
    font-size: 7px !important;
  }

  .hero-visual::after {
    display: none !important;
  }

  .hero-visual .network-card {
    top: 10px !important;
    right: 2px !important;

    transform: scale(.57) !important;
    transform-origin: right top !important;
  }

  .hero-visual .voice-card {
    right: 2px !important;
    bottom: 8px !important;

    transform: scale(.57) !important;
    transform-origin: right bottom !important;
  }

}




@media (max-width: 380px) {

  .hero-visual {
    height: 490px !important;
    min-height: 490px !important;
  }

  .hero-visual .payment-ui {
    top: 70px !important;
    width: calc(100vw - 24px) !important;
  }

  .hero-visual .network-card {
    transform: scale(.52) !important;
  }

  .hero-visual .voice-card {
    transform: scale(.52) !important;
  }

  .hero h1 {
    font-size: 43px !important;
  }

}




@media (max-width: 900px) {

  .hero {
    display: flex !important;
    flex-direction: column !important;
    padding: 105px 16px 70px !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .hero-visual {
    order: 1 !important;
    position: relative !important;
    width: 100% !important;
    max-width: 390px !important;
    height: 545px !important;
    min-height: 545px !important;
    margin: 0 auto 30px !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    display: block !important;
    overflow: visible !important;
  }

  
  .hero-visual .payment-ui {
    position: absolute !important;
    top: 85px !important;
    left: 50% !important;
    right: auto !important;

    width: calc(100vw - 32px) !important;
    max-width: 370px !important;

    margin: 0 !important;
    transform: translateX(-50%) !important;

    z-index: 10 !important;
  }

  
  .hero-visual::before {
    content: "↯  OFFLINE READY" !important;

    position: absolute !important;
    top: 18px !important;
    left: 18px !important;
    right: auto !important;

    transform: none !important;

    padding: 9px 12px !important;

    white-space: nowrap !important;
    font-size: 8px !important;

    z-index: 100 !important;
  }

  .hero-visual::after {
    left: 10px !important;
    top: 40px !important;
    z-index: 101 !important;
  }

  
  .hero-visual .network-card {
    position: absolute !important;

    top: 18px !important;
    right: 4px !important;
    left: auto !important;
    bottom: auto !important;

    transform: scale(.62) !important;
    transform-origin: right top !important;

    z-index: 90 !important;
  }

  
  .hero-visual .voice-card {
    position: absolute !important;

    top: auto !important;
    right: 4px !important;
    left: auto !important;
    bottom: 12px !important;

    transform: scale(.62) !important;
    transform-origin: right bottom !important;

    z-index: 90 !important;
  }

  .hero-content {
    order: 2 !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;
    transform: none !important;
  }

}



@media (max-width: 600px) {

  .hero {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-visual {
    max-width: 360px !important;
    height: 510px !important;
    min-height: 510px !important;
  }

  .hero-visual .payment-ui {
    top: 78px !important;
    width: calc(100vw - 28px) !important;
    max-width: 350px !important;
  }

  .hero-visual::before {
    top: 12px !important;
    left: 5px !important;
  }

  .hero-visual::after {
    display: none !important;
  }

  .hero-visual .network-card {
    top: 10px !important;
    right: 0 !important;
    transform: scale(.55) !important;
    transform-origin: right top !important;
  }

  .hero-visual .voice-card {
    right: 0 !important;
    bottom: 5px !important;
    transform: scale(.55) !important;
    transform-origin: right bottom !important;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 62px) !important;
    line-height: .9 !important;
  }

}



@media (max-width: 380px) {

  .hero-visual {
    max-width: 340px !important;
    height: 495px !important;
    min-height: 495px !important;
  }

  .hero-visual .payment-ui {
    width: calc(100vw - 24px) !important;
    top: 72px !important;
  }

  .hero-visual .network-card {
    transform: scale(.50) !important;
  }

  .hero-visual .voice-card {
    transform: scale(.50) !important;
  }

}




@media (max-width: 900px) {

  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    height: auto !important;
    padding: 92px 16px 60px !important;
    overflow: hidden !important;
  }

  .hero-visual {
    order: 1 !important;
    position: relative !important;
    width: 100% !important;
    max-width: 420px !important;
    height: 520px !important;
    min-height: 520px !important;
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    overflow: visible !important;
  }

  
  .hero-visual .payment-ui {
    position: absolute !important;
    top: 72px !important;
    left: 50% !important;
    right: auto !important;

    width: min(360px, calc(100vw - 32px)) !important;
    max-width: 360px !important;

    margin: 0 !important;
    transform: translateX(-50%) !important;

    z-index: 20 !important;
  }

  
  .hero-visual::before {
    content: "↯  OFFLINE READY" !important;

    position: absolute !important;
    top: 38px !important;
    left: max(10px, calc(50% - 180px)) !important;

    right: auto !important;

    padding: 8px 11px !important;
    white-space: nowrap !important;

    font-size: 7px !important;
    letter-spacing: .10em !important;

    z-index: 30 !important;

    transform: none !important;
  }

  .hero-visual::after {
    left: max(4px, calc(50% - 190px)) !important;
    top: 56px !important;
    z-index: 31 !important;
  }

  
  .hero-visual .network-card {
    position: absolute !important;

    top: 10px !important;
    right: max(0px, calc(50% - 180px)) !important;
    left: auto !important;

    transform: scale(.62) !important;
    transform-origin: right top !important;

    z-index: 40 !important;
  }

  
  .hero-visual .voice-card {
    position: absolute !important;

    top: auto !important;
    right: max(0px, calc(50% - 180px)) !important;
    bottom: 12px !important;
    left: auto !important;

    transform: scale(.62) !important;
    transform-origin: right bottom !important;

    z-index: 40 !important;
  }

  
  .hero-content {
    order: 2 !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px) !important;
    line-height: .9 !important;
  }
}




@media (max-width: 600px) {

  .hero {
    padding: 82px 12px 50px !important;
  }

  .hero-visual {
    width: 100% !important;
    max-width: 370px !important;
    height: 500px !important;
    min-height: 500px !important;
  }

  .hero-visual .payment-ui {
    top: 70px !important;
    width: min(350px, calc(100vw - 24px)) !important;
    max-width: 350px !important;
  }

  .hero-visual::before {
    top: 36px !important;
    left: 4px !important;
  }

  .hero-visual::after {
    display: none !important;
  }

  .hero-visual .network-card {
    top: 5px !important;
    right: 0 !important;
    transform: scale(.52) !important;
  }

  .hero-visual .voice-card {
    right: 0 !important;
    bottom: 4px !important;
    transform: scale(.52) !important;
  }

  .hero-content {
    padding: 0 4px !important;
  }
}




@media (max-width: 380px) {

  .hero {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .hero-visual {
    max-width: 350px !important;
    height: 485px !important;
    min-height: 485px !important;
  }

  .hero-visual .payment-ui {
    top: 68px !important;
    width: calc(100vw - 20px) !important;
    max-width: 340px !important;
  }

  .hero-visual .network-card {
    transform: scale(.47) !important;
  }

  .hero-visual .voice-card {
    transform: scale(.47) !important;
  }
}




@media (max-width: 900px) {

  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    height: auto !important;
    padding: 88px 16px 70px !important;
    overflow: hidden !important;
  }

  .hero-content {
    order: 2 !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;
  }

  .hero-visual {
    order: 1 !important;
    position: relative !important;

    width: 100% !important;
    max-width: 410px !important;
    height: 540px !important;
    min-height: 540px !important;

    margin: 0 auto 30px !important;

    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    transform: none !important;
    overflow: visible !important;
  }

  
  .hero-visual .payment-ui {
    position: absolute !important;

    width: min(360px, calc(100vw - 32px)) !important;
    max-width: 360px !important;

    left: 50% !important;
    right: auto !important;
    top: 72px !important;

    margin: 0 !important;

    transform: translateX(-50%) !important;

    z-index: 10 !important;
  }

  
  .hero-visual::before {
    content: "↯  OFFLINE READY" !important;

    position: absolute !important;

    left: 14px !important;
    top: 30px !important;

    right: auto !important;

    padding: 8px 11px !important;

    border-radius: 12px !important;

    white-space: nowrap !important;

    font-size: 7px !important;
    letter-spacing: .11em !important;

    z-index: 30 !important;
  }

  .hero-visual::after {
    left: 7px !important;
    top: 50px !important;

    z-index: 31 !important;
  }

  
  .hero-visual .network-card {
    position: absolute !important;

    top: 10px !important;
    right: 8px !important;

    left: auto !important;
    bottom: auto !important;

    transform: scale(.58) !important;
    transform-origin: right top !important;

    z-index: 25 !important;
  }

  
  .hero-visual .voice-card {
    position: absolute !important;

    right: 8px !important;
    bottom: 8px !important;

    left: auto !important;
    top: auto !important;

    transform: scale(.58) !important;
    transform-origin: right bottom !important;

    z-index: 25 !important;
  }
}




@media (max-width: 600px) {

  .hero {
    padding: 78px 12px 55px !important;
  }

  .hero-visual {
    max-width: 370px !important;
    height: 510px !important;
    min-height: 510px !important;
    margin-bottom: 25px !important;
  }

  .hero-visual .payment-ui {
    top: 70px !important;

    width: min(350px, calc(100vw - 24px)) !important;
    max-width: 350px !important;
  }

  .hero-visual::before {
    left: 3px !important;
    top: 28px !important;

    padding: 7px 10px !important;
    font-size: 6.5px !important;
  }

  .hero-visual::after {
    display: none !important;
  }

  .hero-visual .network-card {
    top: 3px !important;
    right: 0 !important;

    transform: scale(.50) !important;
  }

  .hero-visual .voice-card {
    right: 0 !important;
    bottom: 2px !important;

    transform: scale(.50) !important;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px) !important;
    line-height: .92 !important;
  }
}




@media (max-width: 380px) {

  .hero {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }

  .hero-visual {
    max-width: 350px !important;
    height: 490px !important;
    min-height: 490px !important;
  }

  .hero-visual .payment-ui {
    top: 67px !important;
    width: calc(100vw - 18px) !important;
  }

  .hero-visual::before {
    left: 0 !important;
    top: 27px !important;
  }

  .hero-visual .network-card {
    transform: scale(.45) !important;
  }

  .hero-visual .voice-card {
    transform: scale(.45) !important;
  }
}




@media screen and (max-width: 900px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .hero {
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;

    display: flex !important;
    flex-direction: column !important;

    padding: 80px 16px 60px !important;
    box-sizing: border-box !important;

    overflow: hidden !important;
  }

  
  .hero-visual {
    order: 1 !important;

    position: relative !important;

    width: 100% !important;
    max-width: 390px !important;

    height: 535px !important;
    min-height: 535px !important;

    margin: 0 auto 35px !important;

    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    transform: none !important;

    overflow: visible !important;
  }

  
  .hero-visual .payment-ui {
    position: absolute !important;

    top: 72px !important;
    left: 50% !important;

    width: min(360px, calc(100vw - 32px)) !important;
    max-width: 360px !important;

    margin: 0 !important;

    transform: translateX(-50%) !important;

    box-sizing: border-box !important;

    z-index: 10 !important;
  }

  
  .hero-visual::before {
    content: "↯  OFFLINE READY" !important;

    position: absolute !important;

    top: 30px !important;
    left: 10px !important;

    right: auto !important;

    padding: 8px 11px !important;

    border-radius: 12px !important;

    white-space: nowrap !important;

    font-size: 7px !important;
    letter-spacing: .10em !important;

    z-index: 50 !important;

    box-sizing: border-box !important;
  }

  .hero-visual::after {
    display: none !important;
  }

  
  .hero-visual .network-card {
    position: absolute !important;

    top: 5px !important;
    right: 5px !important;

    left: auto !important;
    bottom: auto !important;

    transform: scale(.52) !important;
    transform-origin: right top !important;

    z-index: 40 !important;
  }

  
  .hero-visual .voice-card {
    position: absolute !important;

    right: 5px !important;
    bottom: 5px !important;

    left: auto !important;
    top: auto !important;

    transform: scale(.52) !important;
    transform-origin: right bottom !important;

    z-index: 40 !important;
  }

  
  .hero-content {
    order: 2 !important;

    width: 100% !important;
    max-width: 620px !important;

    margin: 0 auto !important;

    transform: none !important;

    box-sizing: border-box !important;
  }
}




@media screen and (max-width: 600px) {

  .hero {
    padding: 72px 12px 50px !important;
  }

  .hero-visual {
    max-width: 365px !important;

    height: 500px !important;
    min-height: 500px !important;
  }

  .hero-visual .payment-ui {
    top: 68px !important;

    width: min(350px, calc(100vw - 24px)) !important;
    max-width: 350px !important;
  }

  .hero-visual::before {
    top: 27px !important;
    left: 2px !important;

    font-size: 6.5px !important;
    padding: 7px 9px !important;
  }

  .hero-visual .network-card {
    top: 2px !important;
    right: 0 !important;

    transform: scale(.48) !important;
  }

  .hero-visual .voice-card {
    right: 0 !important;
    bottom: 2px !important;

    transform: scale(.48) !important;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px) !important;
    line-height: .92 !important;
  }
}




@media screen and (max-width: 380px) {

  .hero {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .hero-visual {
    max-width: 350px !important;

    height: 485px !important;
    min-height: 485px !important;
  }

  .hero-visual .payment-ui {
    top: 65px !important;

    width: calc(100vw - 16px) !important;
    max-width: 340px !important;
  }

  .hero-visual::before {
    left: 0 !important;
    top: 25px !important;

    font-size: 6px !important;
  }

  .hero-visual .network-card {
    transform: scale(.44) !important;
  }

  .hero-visual .voice-card {
    transform: scale(.44) !important;
  }
}




@media (hover: none) and (pointer: coarse) {

  
  *,
  *::before,
  *::after {
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
  }

  
  a,
  button,
  input,
  textarea,
  select {
    -webkit-tap-highlight-color: transparent !important;
  }

  
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid rgba(37, 231, 173, .65) !important;
    outline-offset: 3px !important;
  }

  
  a,
  button,
  .pay-action,
  .feature-card,
  .team-card {
    touch-action: manipulation;
  }
}


@media (hover: none) and (pointer: coarse) {
  img,
  svg,
  .logo,
  .payment-ui,
  .network-card,
  .voice-card,
  .hero-visual {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
}




@media (max-width: 600px) {

  
  * {
    -webkit-tap-highlight-color: transparent;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body {
    touch-action: manipulation;
  }

  
  .navbar {
    padding: 18px 20px !important;
    min-height: 72px !important;
  }

  .offlopay-navbar-logo,
  .offlopay-logo-name {
    font-size: 20px !important;
  }

  
  .hero {
    display: flex !important;
    flex-direction: column !important;
    padding: 70px 16px 80px !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  
  .hero-visual {
    order: 1 !important;

    width: 100% !important;
    max-width: 390px !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 auto 42px !important;

    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;

    display: block !important;
    overflow: visible !important;
  }

  
  .hero-visual .payment-ui {
    position: relative !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 72px auto 0 !important;

    transform: none !important;

    z-index: 10 !important;

    box-sizing: border-box !important;
  }

  
  .hero-visual::before {
    content: "↯  OFFLINE READY" !important;

    position: absolute !important;

    top: 18px !important;
    left: 0 !important;

    right: auto !important;

    transform: none !important;

    padding: 8px 11px !important;

    white-space: nowrap !important;

    font-size: 7px !important;

    z-index: 20 !important;
  }

  .hero-visual::after {
    display: none !important;
  }

  
  .hero-visual .network-card {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;

    width: 190px !important;

    transform: scale(.68) !important;
    transform-origin: right top !important;

    z-index: 25 !important;
  }

  
  .hero-visual .voice-card {
    position: absolute !important;

    top: auto !important;
    right: 0 !important;
    left: auto !important;

    bottom: -28px !important;

    width: 190px !important;

    transform: scale(.68) !important;
    transform-origin: right bottom !important;

    z-index: 25 !important;
  }

  
  .hero-visual .payment-ui {
    overflow: visible !important;
  }

  
  .hero-content {
    order: 2 !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 auto !important;

    transform: none !important;

    text-align: left !important;
  }

  .hero-content .eyebrow {
    margin-top: 0 !important;
  }

  .hero h1 {
    font-size: clamp(43px, 12.5vw, 62px) !important;
    line-height: .92 !important;

    margin-top: 18px !important;

    letter-spacing: -0.055em !important;
  }

  .hero-description {
    max-width: 100% !important;
  }

  
  .hero-buttons {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .hero-buttons a {
    max-width: 100% !important;
  }

  
  .payment-ui .payment-top {
    margin-bottom: 30px !important;
  }

  .payment-ui .balance {
    font-size: clamp(42px, 12vw, 58px) !important;
    white-space: nowrap !important;
  }

  .payment-ui .payment-actions {
    gap: 10px !important;
  }

  .payment-ui .pay-action {
    min-width: 0 !important;
    flex: 1 !important;
  }

  .payment-ui .recent-header {
    margin-top: 26px !important;
  }

}



@media (max-width: 380px) {

  .hero {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .hero-visual {
    max-width: 100% !important;
    margin-bottom: 38px !important;
  }

  .hero-visual .payment-ui {
    margin-top: 65px !important;
  }

  .hero-visual .network-card {
    width: 175px !important;
    transform: scale(.60) !important;
  }

  .hero-visual .voice-card {
    width: 175px !important;
    transform: scale(.60) !important;
    bottom: -24px !important;
  }

  .hero h1 {
    font-size: 43px !important;
  }

  .payment-ui .payment-actions {
    gap: 7px !important;
  }

  .payment-ui .pay-action {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

}





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

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}


a,
button,
input,
textarea,
select,
.pay-action,
.feature-card,
.team-card {
  -webkit-tap-highlight-color: transparent;
}


a,
button {
  touch-action: manipulation;
}




@media (max-width: 900px) {

  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    padding: 80px 20px 90px !important;
    overflow: visible !important;
  }

  .hero-visual {
    order: 1 !important;

    width: 100% !important;
    max-width: 500px !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 auto 55px !important;

    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;

    transform: none !important;
    overflow: visible !important;
  }

  
  .hero-visual .payment-ui {
    position: relative !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 90px auto 0 !important;

    transform: none !important;

    z-index: 10 !important;
  }

  
  .hero-visual::before {
    content: "↯  OFFLINE READY" !important;

    position: absolute !important;

    top: 25px !important;
    left: 0 !important;

    right: auto !important;

    padding: 9px 13px !important;

    white-space: nowrap !important;

    font-size: 8px !important;

    z-index: 30 !important;

    transform: none !important;
  }

  .hero-visual::after {
    display: none !important;
  }

  
  .hero-visual .network-card {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;

    width: 210px !important;

    transform: scale(.72) !important;
    transform-origin: right top !important;

    z-index: 30 !important;
  }

  
  .hero-visual .voice-card {
    position: absolute !important;

    top: auto !important;
    right: 0 !important;
    left: auto !important;

    bottom: -40px !important;

    width: 210px !important;

    transform: scale(.72) !important;
    transform-origin: right bottom !important;

    z-index: 30 !important;
  }

  
  .hero-content {
    order: 2 !important;

    width: 100% !important;
    max-width: 700px !important;

    margin: 0 auto !important;

    transform: none !important;
  }

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

  .hero-description {
    max-width: 620px !important;
  }

}




@media (max-width: 600px) {

  .navbar {
    padding: 18px 18px !important;
    min-height: 72px !important;
  }

  .hero {
    padding: 60px 14px 85px !important;
  }

  .hero-visual {
    width: 100% !important;
    max-width: 390px !important;
    margin-bottom: 52px !important;
  }

  
  .hero-visual .payment-ui {
    width: 100% !important;
    max-width: 100% !important;

    margin-top: 78px !important;

    padding-left: 22px !important;
    padding-right: 22px !important;

    border-radius: 28px !important;
  }

  
  .payment-ui .balance {
    font-size: clamp(40px, 11vw, 56px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  
  .payment-ui .payment-actions {
    display: flex !important;
    width: 100% !important;
    gap: 9px !important;
  }

  .payment-ui .pay-action {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 82px !important;
  }

  
  .payment-ui .transaction {
    min-width: 0 !important;
  }

  .payment-ui .transaction-info {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .payment-ui .transaction-info strong,
  .payment-ui .transaction-info small {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .payment-ui .transaction > b {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  
  .hero-visual .network-card {
    top: 0 !important;
    right: 0 !important;

    width: 190px !important;

    transform: scale(.62) !important;
    transform-origin: right top !important;
  }

  
  .hero-visual .voice-card {
    right: 0 !important;
    bottom: -35px !important;

    width: 190px !important;

    transform: scale(.62) !important;
    transform-origin: right bottom !important;
  }

  
  .hero-content {
    width: 100% !important;
  }

  .hero-content .eyebrow {
    margin-top: 0 !important;
  }

  .hero h1 {
    font-size: clamp(43px, 12.5vw, 62px) !important;
    line-height: .9 !important;
    letter-spacing: -.055em !important;

    margin-top: 16px !important;
  }

  .hero-buttons {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .hero-buttons a {
    min-height: 46px !important;
  }

  
  .section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  
  .feature-card,
  .ovi-card,
  .team-card {
    max-width: 100% !important;
  }

}




@media (max-width: 380px) {

  .navbar {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }

  .hero-visual {
    max-width: 100% !important;
  }

  .hero-visual .payment-ui {
    margin-top: 70px !important;

    padding-left: 17px !important;
    padding-right: 17px !important;

    border-radius: 24px !important;
  }

  .hero-visual .network-card {
    width: 175px !important;
    transform: scale(.55) !important;
  }

  .hero-visual .voice-card {
    width: 175px !important;
    transform: scale(.55) !important;
    bottom: -30px !important;
  }

  .payment-ui .payment-actions {
    gap: 6px !important;
  }

  .payment-ui .pay-action {
    min-height: 75px !important;
  }

  .hero h1 {
    font-size: 42px !important;
  }

}




@media (max-width: 340px) {

  .hero {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }

  .hero-visual .payment-ui {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-visual .network-card {
    transform: scale(.48) !important;
  }

  .hero-visual .voice-card {
    transform: scale(.48) !important;
  }

  .hero h1 {
    font-size: 39px !important;
  }

}




@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

}





html {
  scroll-behavior: smooth;
}

body {
  overscroll-behavior-x: none;
}


.navbar,
.hero-buttons,
.payment-actions,
.network-card,
.voice-card,
.coming-soon-badge,
.logo {
  -webkit-user-select: none;
  user-select: none;
}




@media (max-width: 900px) {

  .navbar {
    width: 100% !important;
    position: relative !important;
    z-index: 1000 !important;
  }

  .navbar .logo {
    flex-shrink: 0 !important;
  }

  .navbar .menu-toggle,
  .navbar button {
    min-width: 44px !important;
    min-height: 44px !important;
  }

}




@media (hover: none) and (pointer: coarse) {

  a,
  button,
  .pay-action,
  .feature-card,
  .team-card {

    transition:
      transform .15s ease,
      opacity .15s ease,
      background .15s ease !important;
  }

  a:active,
  button:active,
  .pay-action:active {

    transform: scale(.97) !important;
  }

  .hero-buttons a:active {
    opacity: .82 !important;
  }

}




@media (max-width: 600px) {

  .payment-ui .payment-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .payment-ui .pay-action {
    width: 100% !important;
    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 78px !important;

    overflow: hidden !important;
  }

  .payment-ui .pay-action div {
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .payment-ui .pay-action span {
    margin-top: 9px !important;
  }


  
  .payment-ui .recent-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 12px !important;
  }


  
  .hero-visual .voice-card {
    pointer-events: none !important;
  }

  .hero-visual .network-card {
    pointer-events: none !important;
  }


  
  .hero-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
  }

  .hero-buttons a {
    width: 100% !important;
    min-width: 0 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    text-align: center !important;
  }

}




@media (max-width: 380px) {

  .hero-buttons {
    grid-template-columns: 1fr !important;
  }

  .payment-ui .pay-action {
    min-height: 70px !important;
  }

  .payment-ui .pay-action div {
    font-size: 20px !important;
  }

}




@media (max-width: 600px) {

  .footer-main {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    gap: 22px !important;
  }

  .footer-logo {
    max-width: 100% !important;
  }

  .footer-tagline {
    max-width: 280px !important;
  }

  .footer-contact {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

}




@media (max-width: 600px) {

  .section {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }

  .section:first-child {
    padding-top: 0 !important;
  }

  .features-grid,
  .team-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .feature-card,
  .ovi-card,
  .team-card {
    width: 100% !important;
    min-width: 0 !important;
  }

}




@media (max-width: 600px) {

  img,
  svg,
  video,
  canvas {
    max-width: 100%;
  }

  .hero *,
  .section *,
  footer * {
    max-width: 100%;
  }

}




@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto !important;
  }

}





.payment-ui {
  will-change: transform;
}

.payment-ui .pay-action {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.payment-ui .pay-action::after {
  content: "";
  position: absolute;

  width: 80px;
  height: 80px;

  border-radius: 50%;

  background: rgba(35, 190, 255, .10);

  transform: scale(0);
  opacity: 0;

  transition:
    transform .35s ease,
    opacity .35s ease;

  pointer-events: none;
}

.payment-ui .pay-action:active::after {
  transform: scale(2);
  opacity: 1;
}

.payment-ui .pay-action.demo-active {
  transform: translateY(-2px);
  border-color: rgba(40, 190, 255, .35);

  box-shadow:
    0 12px 30px rgba(20, 100, 255, .12);
}




.payment-ui .connection {
  transition:
    border-color .3s ease,
    background .3s ease;
}

.payment-ui .connection i {
  animation: offloConnectionPulse 2.4s ease-in-out infinite;
}

@keyframes offloConnectionPulse {

  0%,
  100% {
    opacity: .65;
    box-shadow: 0 0 0 rgba(37,231,173,0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(37,231,173,.55);
  }

}




.hero-visual .network-card {
  animation: offloFloatNetwork 5s ease-in-out infinite;
}

.hero-visual .voice-card {
  animation: offloFloatVoice 4.5s ease-in-out infinite;
}

@keyframes offloFloatNetwork {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

}

@keyframes offloFloatVoice {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }

}




.hero-visual .payment-ui {
  animation: offloCardEnter .75s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes offloCardEnter {

  from {
    opacity: 0;
    transform: translateY(22px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}




@media (prefers-reduced-motion: reduce) {

  .payment-ui .connection i,
  .hero-visual .network-card,
  .hero-visual .voice-card,
  .hero-visual .payment-ui {
    animation: none !important;
  }

}




@media (max-width: 600px) {

  .hero-visual .network-card,
  .hero-visual .voice-card {
    animation-duration: 6s;
  }

  .payment-ui .pay-action:active {
    transform: scale(.97) !important;
  }

}




@media (max-width: 900px) {

  body {
    overflow-x: hidden !important;
  }

  .navbar {
    min-height: 68px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  
  a,
  button {
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
  }

  
  * {
    -webkit-tap-highlight-color: transparent;
  }

}




@media (max-width: 600px) {

  .hero {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-content {
    box-sizing: border-box !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .hero-description {
    font-size: .96rem !important;
    line-height: 1.7 !important;
  }

  .hero-buttons {
    margin-top: 24px !important;
  }

  .hero-buttons a {
    min-height: 50px !important;
    border-radius: 14px !important;
  }

}




@media (max-width: 600px) {

  .feature-card,
  .team-card,
  .ovi-card {
    border-radius: 22px !important;
  }

  .feature-card:hover,
  .team-card:hover,
  .ovi-card:hover {
    transform: none !important;
  }

}




@media (max-width: 600px) {

  .team-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .team-card {
    min-height: 0 !important;
  }

}




@media (max-width: 600px) {

  footer {
    overflow: hidden !important;
  }

  footer .footer-main,
  footer .footer-bottom {
    width: 100% !important;
    box-sizing: border-box !important;
  }

}




@supports (padding: env(safe-area-inset-bottom)) {

  footer {
    padding-bottom:
      calc(30px + env(safe-area-inset-bottom)) !important;
  }

}




@media (max-width: 900px) {

  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .hero,
  main,
  section,
  footer {
    max-width: 100vw !important;
  }

}





@media (max-width: 600px) {

  .hero-visual {
    width: 100% !important;
    max-width: 430px !important;
    height: auto !important;
    min-height: 500px !important;

    position: relative !important;
    margin: 0 auto !important;

    display: block !important;
  }


  

  .hero-visual .payment-ui {

    position: absolute !important;

    top: 72px !important;
    left: 50% !important;
    right: auto !important;

    width: calc(100% - 28px) !important;
    max-width: 390px !important;

    box-sizing: border-box !important;

    margin: 0 !important;

    transform: translateX(-50%) !important;

    padding: clamp(17px, 4vw, 24px) !important;

    border-radius: 24px !important;

    z-index: 10 !important;
  }


  

  .payment-ui .payment-top {

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 10px !important;
  }


  .payment-ui .mini-logo {
    white-space: nowrap !important;
  }


  .payment-ui .connection {

    flex-shrink: 0 !important;

    white-space: nowrap !important;

    font-size: 9px !important;
  }


  

  .payment-ui .balance {

    font-size: clamp(2rem, 9vw, 2.7rem) !important;

    line-height: 1 !important;

    white-space: nowrap !important;
  }


  

  .payment-ui .payment-actions {

    display: grid !important;

    grid-template-columns:
      repeat(3, minmax(0, 1fr)) !important;

    gap: 7px !important;

    width: 100% !important;
  }


  .payment-ui .pay-action {

    min-width: 0 !important;

    width: 100% !important;

    min-height: 68px !important;

    padding: 9px 4px !important;

    box-sizing: border-box !important;

    border-radius: 15px !important;

    overflow: hidden !important;
  }


  .payment-ui .pay-action span {

    font-size: 11px !important;

    white-space: nowrap !important;
  }


  

  .payment-ui .transaction {

    min-width: 0 !important;

    display: grid !important;

    grid-template-columns: 34px minmax(0, 1fr) auto !important;

    gap: 9px !important;

    align-items: center !important;
  }


  .payment-ui .transaction-info {

    min-width: 0 !important;
  }


  .payment-ui .transaction-info strong,
  .payment-ui .transaction-info small {

    display: block !important;

    overflow: hidden !important;

    text-overflow: ellipsis !important;

    white-space: nowrap !important;
  }


  .payment-ui .transaction > b {

    white-space: nowrap !important;

    font-size: 11px !important;
  }


  

  .hero-visual::before {

    content: "↯  OFFLINE READY" !important;

    position: absolute !important;

    top: 10px !important;
    left: 12px !important;
    right: auto !important;

    transform: none !important;

    padding: 8px 10px !important;

    border-radius: 11px !important;

    font-size: 7px !important;

    letter-spacing: .1em !important;

    white-space: nowrap !important;

    z-index: 30 !important;
  }


  .hero-visual::after {

    display: none !important;
  }


  

  .hero-visual .network-card {

    position: absolute !important;

    top: 10px !important;
    right: 8px !important;

    left: auto !important;
    bottom: auto !important;

    width: 190px !important;

    max-width: 190px !important;

    transform: scale(.68) !important;

    transform-origin: right top !important;

    z-index: 25 !important;
  }


  

  .hero-visual .voice-card {

    position: absolute !important;

    top: auto !important;

    right: 8px !important;
    bottom: 0 !important;

    left: auto !important;

    width: 190px !important;

    max-width: 190px !important;

    transform: scale(.68) !important;

    transform-origin: right bottom !important;

    z-index: 25 !important;
  }

}




@media (max-width: 380px) {

  .hero-visual {
    min-height: 470px !important;
  }


  .hero-visual .payment-ui {

    top: 68px !important;

    width: calc(100% - 20px) !important;

    padding: 15px !important;

    border-radius: 21px !important;
  }


  .hero-visual .network-card {

    right: 4px !important;

    transform: scale(.58) !important;
  }


  .hero-visual .voice-card {

    right: 4px !important;
    bottom: 0 !important;

    transform: scale(.58) !important;
  }


  .hero-visual::before {

    left: 7px !important;

    font-size: 6.5px !important;

    padding: 7px 8px !important;
  }


  .payment-ui .balance {

    font-size: 1.85rem !important;
  }


  .payment-ui .pay-action {

    min-height: 62px !important;
  }


  .payment-ui .transaction {

    grid-template-columns: 30px minmax(0, 1fr) auto !important;

    gap: 7px !important;
  }

}




@media (max-width: 340px) {

  .hero-visual {

    min-height: 445px !important;
  }


  .hero-visual .payment-ui {

    top: 64px !important;

    width: calc(100% - 14px) !important;

    padding: 13px !important;
  }


  .hero-visual .network-card {

    transform: scale(.52) !important;
  }


  .hero-visual .voice-card {

    transform: scale(.52) !important;
  }


  .payment-ui .pay-action {

    min-height: 58px !important;

    padding: 7px 2px !important;
  }


  .payment-ui .pay-action span {

    font-size: 9px !important;
  }


  .payment-ui .balance {

    font-size: 1.65rem !important;
  }

}




@media (hover: none) and (pointer: coarse) {

  .payment-ui:hover {

    transform: none !important;
  }


  .network-card:hover,
  .voice-card:hover {

    transform: none !important;
  }

}





.mobile-menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;
  margin: 0;

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 13px;

  background: rgba(12,16,30,.72);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
  width: 17px;
  height: 1.5px;

  border-radius: 10px;

  background: rgba(255,255,255,.85);

  transition:
    transform .25s ease,
    opacity .2s ease;
}

.mobile-menu-panel {
  display: none;
}


@media (max-width: 900px) {

  .navbar {
    position: relative !important;
  }

  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1101;

    margin-left: auto;
  }

  .mobile-menu-panel {

    display: flex;

    position: absolute;

    top: calc(100% + 10px);
    left: 14px;
    right: 14px;

    padding: 10px;

    flex-direction: column;
    gap: 3px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;

    background:
      linear-gradient(
        145deg,
        rgba(18,23,42,.94),
        rgba(7,10,19,.96)
      );

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    box-shadow:
      0 25px 70px rgba(0,0,0,.42),
      inset 0 1px rgba(255,255,255,.07);

    opacity: 0;
    visibility: hidden;

    transform:
      translateY(-8px)
      scale(.98);

    transform-origin: top right;

    transition:
      opacity .2s ease,
      transform .2s ease,
      visibility .2s ease;

    z-index: 1100;
  }

  .mobile-menu-panel a {

    display: flex;

    align-items: center;

    min-height: 48px;

    padding: 0 15px;

    border-radius: 13px;

    color: #d9dfeb;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition:
      background .18s ease,
      color .18s ease;
  }

  .mobile-menu-panel a:active {
    background: rgba(40,130,255,.12);
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-menu-toggle.is-open
  + .mobile-menu-panel {

    opacity: 1;
    visibility: visible;

    transform:
      translateY(0)
      scale(1);
  }

}


@media (max-width: 500px) {

  .mobile-menu-panel {
    left: 10px;
    right: 10px;
  }

}





@media (max-width: 900px) {

  .hero-visual {
    position: relative !important;

    width: 100% !important;
    max-width: 390px !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 35px auto 45px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 14px !important;

    left: auto !important;
    right: auto !important;

    overflow: visible !important;
  }


  

  .hero-visual::before,
  .hero-visual::after {
    display: none !important;
  }


  

  .hero-visual .payment-ui {

    position: relative !important;

    order: 1 !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: calc(100vw - 32px) !important;
    max-width: 370px !important;

    margin: 0 auto !important;

    transform: none !important;

    z-index: 3 !important;

    box-sizing: border-box !important;
  }


  

  .hero-visual .network-card {

    position: relative !important;

    order: 2 !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: min(92%, 330px) !important;
    max-width: 330px !important;

    margin: 0 auto !important;

    transform: none !important;

    transform-origin: center !important;

    z-index: 4 !important;
  }


  

  .hero-visual .voice-card {

    position: relative !important;

    order: 3 !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: min(92%, 330px) !important;
    max-width: 330px !important;

    margin: 0 auto !important;

    transform: none !important;

    transform-origin: center !important;

    z-index: 4 !important;
  }


  

  .hero-visual .offline-card,
  .hero-visual .offline-ready,
  .hero-visual [class*="offline"] {

    position: relative !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    transform: none !important;
  }


  

  .hero-content {

    position: relative !important;

    order: 2 !important;

    width: 100% !important;

    max-width: 620px !important;

    margin: 0 auto !important;

    transform: none !important;
  }

}


@media (max-width: 600px) {

  .hero {

    padding-left: 14px !important;
    padding-right: 14px !important;
  }


  .hero-visual {

    max-width: 360px !important;

    margin-top: 25px !important;
    margin-bottom: 40px !important;

    gap: 12px !important;
  }


  .hero-visual .payment-ui {

    width: calc(100vw - 28px) !important;

    max-width: 350px !important;

    padding: 21px !important;

    border-radius: 25px !important;
  }


  .hero-visual .network-card,
  .hero-visual .voice-card {

    width: calc(100% - 20px) !important;

    max-width: 330px !important;

    transform: none !important;
  }

}


@media (max-width: 380px) {

  .hero {

    padding-left: 10px !important;
    padding-right: 10px !important;
  }


  .hero-visual {

    max-width: 340px !important;

    gap: 10px !important;
  }


  .hero-visual .payment-ui {

    width: calc(100vw - 20px) !important;

    padding: 18px !important;
  }


  .hero-visual .network-card,
  .hero-visual .voice-card {

    width: calc(100% - 12px) !important;
  }

}




@media (max-width: 900px) {

  a,
  button,
  .pay-action,
  .feature-card,
  .team-card {

    -webkit-tap-highlight-color: transparent;
  }

}





@media (max-width: 900px) {

  .hero {
    text-align: left !important;
  }

  .hero-content {
    padding-top: 8px !important;
  }

  .hero-brand {
    margin-bottom: 16px !important;
  }

  .hero-brand img {
    width: 30px !important;
    height: 30px !important;
  }

  .coming-soon-badge {
    margin-bottom: 20px !important;
  }

  .hero h1 {
    max-width: 100% !important;

    margin-top: 0 !important;
    margin-bottom: 20px !important;

    font-size: clamp(46px, 13vw, 70px) !important;

    line-height: .94 !important;

    letter-spacing: -.055em !important;
  }

  .hero-description {
    max-width: 100% !important;

    margin-bottom: 25px !important;

    font-size: 15px !important;

    line-height: 1.7 !important;
  }

  .hero-buttons {
    width: 100% !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: stretch !important;

    gap: 10px !important;
  }

  .hero-buttons a {
    width: 100% !important;

    min-height: 50px !important;

    box-sizing: border-box !important;

    justify-content: center !important;
  }

  .hero-pills {
    width: 100% !important;

    margin-top: 20px !important;

    gap: 8px !important;
  }

  .hero-pill {
    flex: 1 1 0 !important;

    min-width: 0 !important;

    text-align: center !important;
  }

}


@media (max-width: 600px) {

  .hero {
    padding-top: 92px !important;
  }

  .hero-content {
    padding-top: 0 !important;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 64px) !important;

    line-height: .91 !important;
  }

  .hero-description {
    font-size: 14px !important;

    line-height: 1.72 !important;
  }

  .hero-pills {
    display: grid !important;

    grid-template-columns: repeat(2, 1fr) !important;
  }

}


@media (max-width: 380px) {

  .hero {
    padding-top: 84px !important;
  }

  .hero h1 {
    font-size: 44px !important;
  }

  .hero-description {
    font-size: 13.5px !important;
  }

  .hero-pills {
    grid-template-columns: 1fr !important;
  }

}




.contact-email {
  position: relative !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 18px !important;

  padding: 14px 17px !important;

  min-width: 285px !important;

  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 14px !important;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    ) !important;

  color: #e9efff !important;

  text-decoration: none !important;

  overflow: hidden !important;

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease !important;
}




.contact-email::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(80,170,255,.12),
      transparent
    );

  transform: skewX(-20deg);

  transition: left .7s cubic-bezier(.2,.8,.2,1);

  pointer-events: none;
}




.contact-email::after {
  content: "";

  position: absolute;

  width: 90px;
  height: 90px;

  right: -45px;
  top: -45px;

  border-radius: 50%;

  background: rgba(40,130,255,.16);

  filter: blur(22px);

  opacity: 0;

  transition: opacity .35s ease;

  pointer-events: none;
}




.contact-email span {
  position: relative;

  z-index: 2;

  transition:
    color .3s ease,
    transform .3s ease;
}




.contact-email b {
  position: relative;

  z-index: 2;

  display: inline-flex;

  font-size: 16px;

  font-weight: 500;

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    color .3s ease;
}




@media (hover: hover) {

  .contact-email:hover {

    transform:
      translateY(-3px)
      scale(1.015);

    border-color: rgba(70,160,255,.32) !important;

    background:
      linear-gradient(
        135deg,
        rgba(45,110,255,.10),
        rgba(255,255,255,.025)
      ) !important;

    box-shadow:
      0 15px 40px rgba(0,0,0,.25),
      0 0 35px rgba(40,120,255,.10) !important;
  }

  .contact-email:hover::before {
    left: 130%;
  }

  .contact-email:hover::after {
    opacity: 1;
  }

  .contact-email:hover span {
    color: #ffffff;

    transform: translateX(2px);
  }

  .contact-email:hover b {
    color: #5bb8ff;

    transform:
      translate(4px,-3px)
      scale(1.08);
  }

}




@media (max-width: 900px) {

  .contact-email {

    width: 100% !important;
    min-width: 0 !important;

    min-height: 52px !important;

    box-sizing: border-box !important;

    -webkit-tap-highlight-color: transparent !important;

    touch-action: manipulation;
  }

  .contact-email:active {

    transform: scale(.975) !important;

    border-color: rgba(70,160,255,.40) !important;

    box-shadow:
      0 8px 25px rgba(0,0,0,.25),
      0 0 28px rgba(40,120,255,.12) !important;
  }

  .contact-email:active b {
    transform: translate(3px,-2px) !important;
  }

}




@media (prefers-reduced-motion: reduce) {

  .contact-email,
  .contact-email *,
  .contact-email::before,
  .contact-email::after {

    transition: none !important;
    animation: none !important;
  }

}





@keyframes offloPaymentFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-7px);
  }
}

@media (max-width: 900px) {

  .hero-visual .payment-ui {
    animation:
      offloPaymentFloat 5s ease-in-out infinite !important;

    will-change: transform;
  }

}

@media (prefers-reduced-motion: reduce) {

  .hero-visual .payment-ui {
    animation: none !important;
  }

}






.hero-visual::before {
  content: none !important;
  display: none !important;
}

.hero-visual::after {
  content: none !important;
  display: none !important;
}



.hero-visual .offline-ready-badge {
  position: absolute !important;

  top: 28px !important;
  left: -92px !important;

  display: flex !important;
  align-items: center !important;
  gap: 7px !important;

  padding: 9px 13px !important;

  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 999px !important;

  background: rgba(9,13,27,.88) !important;
  backdrop-filter: blur(16px) !important;

  color: rgba(255,255,255,.55) !important;

  font-size: 8px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;

  white-space: nowrap !important;

  z-index: 4 !important;

  pointer-events: none !important;
}

.hero-visual .offline-ready-badge span {
  width: 5px !important;
  height: 5px !important;

  flex: 0 0 5px !important;

  border-radius: 50% !important;

  background: #25e7ad !important;

  box-shadow: 0 0 12px rgba(37,231,173,.9) !important;
}



@media (max-width: 650px) {

  .hero-visual .offline-ready-badge {
    top: 8px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    font-size: 7px !important;
    padding: 7px 10px !important;

    z-index: 4 !important;
  }

}



@media (max-width: 380px) {

  .hero-visual .offline-ready-badge {
    top: 6px !important;
    font-size: 6.5px !important;
  }

}

@media (max-width: 650px) {
  .hero-visual .offline-ready-badge {
    top: -18px !important;
  }
}

@media (max-width: 380px) {
  .hero-visual .offline-ready-badge {
    top: -20px !important;
  }
}

@media (max-width: 650px) {
  .hero-visual .offline-ready-badge {
    top: -32px !important;
  }
}

@media (max-width: 380px) {
  .hero-visual .offline-ready-badge {
    top: -35px !important;
  }
}


.hero-visual::before {
  content: none !important;
  display: none !important;
}


.hero-visual .offline-ready-badge {
  position: absolute !important;
  top: -38px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  display: flex !important;
  align-items: center !important;
  gap: 7px !important;

  padding: 8px 12px !important;
  border-radius: 999px !important;

  white-space: nowrap !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.hero-visual .offline-ready-badge span {
  width: 5px !important;
  height: 5px !important;
  flex: 0 0 5px !important;
  border-radius: 50% !important;
  background: #25e7ad !important;
  box-shadow: 0 0 12px rgba(37,231,173,.8) !important;
}

@media (max-width: 380px) {
  .hero-visual .offline-ready-badge {
    top: -42px !important;
  }
}




.offlopay-navbar-logo {
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    filter .35s ease;
}

.offlopay-navbar-logo:hover {
  transform: translateY(-1px);
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,.18))
    drop-shadow(0 0 22px rgba(37,231,173,.12));
}



.nav-button {
  position: relative;
  overflow: hidden;
  transition:
    transform .3s cubic-bezier(.2,.8,.2,1),
    border-color .3s ease,
    background .3s ease;
}

.nav-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.16),
    transparent
  );
  transition: left .65s ease;
}

.nav-button:hover {
  transform: translateY(-2px);
}

.nav-button:hover::after {
  left: 140%;
}



.feature-card {
  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease,
    box-shadow .4s ease;
}

.feature-card:hover {
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 18px 50px rgba(0,0,0,.28),
    0 0 30px rgba(37,231,173,.045);
}



.team-card {
  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.16);
}



.contact-email,
.footer-contact {
  transition:
    transform .3s cubic-bezier(.2,.8,.2,1),
    opacity .3s ease;
}

.contact-email:hover,
.footer-contact:hover {
  transform: translateX(5px);
}



.connection i,
.contact-dot {
  animation:
    offloStatusPulse 2.4s ease-in-out infinite;
}

@keyframes offloStatusPulse {

  0%, 100% {
    opacity: .65;
    box-shadow: 0 0 0 rgba(37,231,173,0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(37,231,173,.5);
  }

}



button,
a {
  -webkit-tap-highlight-color: transparent;
}

.nav-button,
.contact-email,
.footer-contact,
.pay-action {
  will-change: transform;
}



@media (hover: none) and (pointer: coarse) {

  .nav-button:hover,
  .feature-card:hover,
  .team-card:hover,
  .contact-email:hover,
  .footer-contact:hover {
    transform: none;
  }

}



@media (prefers-reduced-motion: reduce) {

  .offlopay-navbar-logo,
  .nav-button,
  .feature-card,
  .team-card,
  .contact-email,
  .footer-contact,
  .connection i,
  .contact-dot {
    animation: none !important;
    transition: none !important;
  }

}


.offlopay-logo-img {
  width: 125px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .3s ease, filter .3s ease;
}

.offlopay-logo-img:hover {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 0 12px rgba(70, 170, 255, .35));
}

@media (max-width: 650px) {
  .offlopay-logo-img {
    width: 112px;
  }
}

.offlopay-logo-img {
  width: 125px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .3s ease, filter .3s ease;
}

.offlopay-logo-img:hover {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 0 12px rgba(50,190,255,.35));
}

@media (max-width: 650px) {
  .offlopay-logo-img {
    width: 112px;
  }
}



.offlopay-logo-img {
  width: 142px;
  height: auto;
  display: block;
  object-fit: contain;
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    filter .35s ease;
}

.offlopay-logo-img:hover {
  transform: translateY(-1px) scale(1.025);
  filter: drop-shadow(0 0 14px rgba(32,217,255,.28));
}

@media (max-width: 650px) {
  .offlopay-logo-img {
    width: 118px;
  }
}


.offlopay-logo-img {
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  display: block !important;
}

@media (max-width: 650px) {
  .offlopay-logo-img {
    width: 155px !important;
    max-width: 155px !important;
  }
}


.offlopay-logo-img {
  width: 165px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 650px) {
  .offlopay-logo-img {
    width: 145px !important;
  }
}


.offlopay-logo-img {
  width: 165px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 650px) {
  .offlopay-logo-img {
    width: 145px !important;
  }
}


.offlopay-navbar-logo {
  display: flex !important;
  align-items: center !important;
}

.offlopay-logo-img {
  width: 180px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 650px) {
  .offlopay-logo-img {
    width: 150px !important;
  }
}



.offlopay-navbar-logo {
  display: flex !important;
  align-items: center !important;
  width: 240px !important;
  min-width: 240px !important;
}

.offlopay-logo-img {
  width: 240px !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 650px) {
  .offlopay-navbar-logo {
    width: 190px !important;
    min-width: 190px !important;
  }

  .offlopay-logo-img {
    width: 190px !important;
  }
}



.offlopay-navbar-logo {
  width: 300px !important;
  min-width: 300px !important;
}

.offlopay-logo-img {
  width: 300px !important;
  max-width: none !important;
}

@media (max-width: 650px) {
  .offlopay-navbar-logo {
    width: 230px !important;
    min-width: 230px !important;
  }

  .offlopay-logo-img {
    width: 230px !important;
  }
}



.payment-ui .mini-logo {
  display: flex !important;
  align-items: center !important;
  width: 145px !important;
  height: 32px !important;
  overflow: hidden !important;
}

.payment-ui .mini-logo img {
  width: 145px !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  object-position: left center !important;
}

@media (max-width: 650px) {
  .payment-ui .mini-logo {
    width: 125px !important;
    height: 29px !important;
  }

  .payment-ui .mini-logo img {
    width: 125px !important;
  }
}



.difference-icon.offlopay-idea-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.difference-icon.offlopay-idea-logo img {
  width: 58px !important;
  height: 58px !important;
  max-width: none !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 650px) {
  .difference-icon.offlopay-idea-logo img {
    width: 52px !important;
    height: 52px !important;
  }
}



.difference-icon.offlopay-idea-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.offlopay-mark {
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-size: 25px !important;
  font-weight: 800 !important;
  letter-spacing: -0.06em !important;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04)) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12) !important;
}



.offlopay-logo-img {
  width: 300px !important;
  height: auto !important;
  max-width: none !important;
  display: block !important;
  object-fit: contain !important;
}

.payment-ui .mini-logo {
  width: 150px !important;
  height: 34px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}

.payment-ui .mini-logo img {
  width: 150px !important;
  height: auto !important;
  max-width: none !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 650px) {
  .offlopay-logo-img {
    width: 230px !important;
  }

  .payment-ui .mini-logo {
    width: 125px !important;
    height: 30px !important;
  }

  .payment-ui .mini-logo img {
    width: 125px !important;
  }
}



.payment-ui .mini-logo {
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
}

.payment-ui .mini-logo span {
  display: block !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: -0.035em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 650px) {
  .payment-ui .mini-logo span {
    font-size: 15px !important;
  }
}





.offlopay-navbar-logo {
  display: flex !important;
  align-items: center !important;
  width: 300px !important;
  min-width: 300px !important;
}

.offlopay-navbar-logo .offlopay-logo-img {
  width: 300px !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}


.payment-ui .mini-logo {
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
}

.payment-ui .mini-logo img {
  display: none !important;
}

.payment-ui .mini-logo span {
  display: block !important;
  width: auto !important;
  height: auto !important;
  font-size: 17px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  white-space: nowrap !important;
}

@media (max-width: 650px) {
  .offlopay-navbar-logo {
    width: 230px !important;
    min-width: 230px !important;
  }

  .offlopay-navbar-logo .offlopay-logo-img {
    width: 230px !important;
  }

  .payment-ui .mini-logo span {
    font-size: 15px !important;
  }
}



.offlopay-navbar-logo {
  height: 68px !important;
  width: 300px !important;
  min-width: 300px !important;
  display: flex !important;
  align-items: center !important;
}

.offlopay-navbar-logo .offlopay-logo-img {
  width: 300px !important;
  height: 68px !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
}

@media (max-width: 650px) {
  .offlopay-navbar-logo {
    height: 64px !important;
    width: 230px !important;
    min-width: 230px !important;
  }

  .offlopay-navbar-logo .offlopay-logo-img {
    width: 230px !important;
    height: 64px !important;
  }
}



.navbar .offlopay-navbar-logo {
  width: auto !important;
  min-width: 0 !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}

.navbar .offlopay-navbar-logo .offlopay-logo-img {
  width: auto !important;
  height: 56px !important;
  max-width: 220px !important;
  max-height: 56px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  transform: none !important;
}

@media (max-width: 650px) {
  .navbar .offlopay-navbar-logo {
    height: 60px !important;
  }

  .navbar .offlopay-navbar-logo .offlopay-logo-img {
    height: 50px !important;
    max-height: 50px !important;
    max-width: 180px !important;
  }
}



.navbar .offlopay-navbar-logo {
  width: fit-content !important;
  min-width: 0 !important;
  max-width: 220px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
  overflow: hidden !important;
}

.navbar .offlopay-navbar-logo::before,
.navbar .offlopay-navbar-logo::after {
  display: none !important;
  content: none !important;
}

.navbar .offlopay-navbar-logo .offlopay-logo-img {
  width: auto !important;
  height: 56px !important;
  max-width: 220px !important;
  margin: 0 !important;
  padding: 0 !important;
  filter: none !important;
  box-shadow: none !important;
  transform: none !important;
}

@media (max-width: 650px) {
  .navbar .offlopay-navbar-logo {
    max-width: 180px !important;
  }

  .navbar .offlopay-navbar-logo .offlopay-logo-img {
    height: 50px !important;
    max-width: 180px !important;
  }
}




:root {
  --bg: #050B0F !important;
  --card: #0B1418 !important;
  --accent: #19E6C1 !important;
  --accent-2: #22B8F0 !important;
  --text: #FFFFFF !important;
  --muted: #9AA8AD !important;
}


body {
  background: #050B0F !important;
  color: #FFFFFF !important;
}


section,
.navbar {
  background-color: transparent;
}


.feature-card,
.difference-box,
.team-card,
.network-card,
.voice-card,
.payment-ui {
  background-color: #0B1418 !important;
}


.gradient-text {
  background: linear-gradient(
    90deg,
    #22B8F0 0%,
    #19E6C1 100%
  ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}


.btn-primary,
.nav-button {
  background: linear-gradient(
    90deg,
    #22B8F0 0%,
    #19E6C1 100%
  ) !important;
  color: #04120F !important;
  border-color: transparent !important;
}


.btn-primary:hover,
.nav-button:hover {
  box-shadow:
    0 0 24px rgba(25, 230, 193, .28),
    0 8px 30px rgba(34, 184, 240, .16) !important;
}


.mini-label,
.section-label,
.feature-label {
  color: #19E6C1 !important;
}


.nav-links a:hover {
  color: #19E6C1 !important;
}


.connection i {
  background: #19E6C1 !important;
  box-shadow: 0 0 12px rgba(25, 230, 193, .55) !important;
}


.feature-card:hover,
.difference-box:hover {
  border-color: rgba(25, 230, 193, .28) !important;
}


.ambient-glow {
  background:
    radial-gradient(
      circle,
      rgba(25, 230, 193, .14) 0%,
      rgba(34, 184, 240, .07) 35%,
      transparent 70%
    ) !important;
}


.hero-visual::after {
  background: transparent !important;
}


p,
small {
  color: #9AA8AD;
}


h1,
h2,
h3,
h4,
strong {
  color: #FFFFFF;
}


::selection {
  background: #19E6C1 !important;
  color: #04120F !important;
}


.mobile-menu,
.mobile-menu-panel {
  background: #050B0F !important;
}

.mobile-menu a:hover,
.mobile-menu-panel a:hover {
  color: #19E6C1 !important;
}





h1 span,
h1 .gradient-text,
.hero-title span,
.hero-copy h1 span,
.gradient-text {
  background: linear-gradient(
    90deg,
    #22B8F0 0%,
    #19E6C1 100%
  ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}


.hero-actions .btn-primary,
.hero .btn-primary,
.btn-primary {
  background: linear-gradient(
    90deg,
    #22B8F0 0%,
    #19E6C1 100%
  ) !important;
  background-color: #19E6C1 !important;
  color: #04120F !important;
  border-color: transparent !important;
}


.payment-ui .mini-logo span {
  background: none !important;
  -webkit-text-fill-color: #FFFFFF !important;
  color: #FFFFFF !important;
}


.payment-ui .pay-action {
  background: rgba(255,255,255,.035) !important;
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,.08) !important;
}

.payment-ui .pay-action.active,
.payment-ui .pay-action.demo-active {
  background: rgba(25,230,193,.12) !important;
  color: #19E6C1 !important;
  border-color: rgba(25,230,193,.45) !important;
  box-shadow: 0 0 18px rgba(25,230,193,.12) !important;
}


.payment-ui .transaction-icon {
  background: rgba(25,230,193,.14) !important;
  color: #19E6C1 !important;
  border-color: rgba(25,230,193,.28) !important;
  box-shadow: none !important;
}

.payment-ui .transaction-icon.secondary {
  background: rgba(34,184,240,.12) !important;
  color: #22B8F0 !important;
  border-color: rgba(34,184,240,.25) !important;
}


.navbar .offlopay-logo-img,
.navbar .logo img {
  mix-blend-mode: screen !important;
}


.navbar .offlopay-navbar-logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}


.payment-ui::before,
.payment-ui::after {
  background: transparent !important;
  box-shadow: none !important;
}





.hero-actions .btn-primary,
.hero-visual .btn-primary,
a.btn-primary,
.btn-primary {
  background: linear-gradient(
    90deg,
    #22B8F0 0%,
    #19E6C1 100%
  ) !important;

  color: #04120F !important;
  border: none !important;
  box-shadow: 0 8px 28px rgba(25,230,193,.16) !important;
}


.payment-ui .transaction-icon.secondary {
  background: rgba(25,230,193,.12) !important;
  color: #19E6C1 !important;
  border: 1px solid rgba(25,230,193,.28) !important;
  box-shadow: none !important;
}


.navbar .offlopay-navbar-logo,
.navbar .logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.navbar .offlopay-navbar-logo .offlopay-logo-img,
.navbar .logo img {
  mix-blend-mode: screen !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}


.ovi-ai,
.ovi-ai *,
.ovi-badge {
  
}




.spending-insights-section {
  position: relative;
}

.spending-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.spending-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spending-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.spending-summary-card,
.spending-panel {
  background: rgba(11, 20, 24, .82);
  border: 1px solid rgba(25, 230, 193, .10);
  border-radius: 22px;
  backdrop-filter: blur(18px);
}

.spending-summary-card {
  padding: 24px;
  min-height: 125px;
}

.spending-summary-card span {
  display: block;
  color: #9AA8AD;
  font-size: 12px;
  margin-bottom: 12px;
}

.spending-summary-card strong {
  display: block;
  font-size: 27px;
}

.spending-summary-card small {
  display: block;
  margin-top: 7px;
  color: #7d8c91;
}

.spending-summary-card.featured {
  border-color: rgba(25, 230, 193, .28);
  box-shadow: 0 0 35px rgba(25, 230, 193, .06);
}

.spending-main-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
}

.spending-panel {
  padding: 26px;
}

.spending-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.spending-panel-header h3 {
  margin: 5px 0 0;
}

.category-row {
  display: grid;
  grid-template-columns: 115px 1fr 75px;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}

.category-name {
  color: #dbe5e8;
  font-size: 13px;
}

.category-bar {
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 20px;
  overflow: hidden;
}

.category-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22B8F0, #19E6C1);
}

.category-amount {
  text-align: right;
  color: #fff;
  font-size: 13px;
}

.budget-ring-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 24px;
}

.budget-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #0B1418 58%, transparent 59%),
    conic-gradient(#19E6C1 0deg, rgba(255,255,255,.07) 0deg);
}

.budget-ring > div {
  text-align: center;
}

.budget-ring strong {
  display: block;
  font-size: 28px;
}

.budget-ring small {
  color: #8c9ba0;
}

.budget-input-row {
  display: flex;
  gap: 8px;
}

.budget-input-row input {
  min-width: 0;
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  border-radius: 10px;
  padding: 11px 12px;
  outline: none;
}

.budget-input-row button {
  border: 0;
  border-radius: 10px;
  padding: 0 17px;
  background: #19E6C1;
  color: #04120F;
  font-weight: 700;
  cursor: pointer;
}

.trend-value {
  color: #19E6C1;
  font-size: 34px;
  font-weight: 700;
}

.trend-label {
  color: #9AA8AD;
  margin-top: 4px;
}

.trend-bars {
  display: flex;
  align-items: end;
  gap: 35px;
  height: 135px;
  margin-top: 25px;
}

.trend-bars > div {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
}

.trend-bars span {
  display: block;
  min-height: 12px;
  border-radius: 8px 8px 3px 3px;
  background: #22B8F0;
}

.trend-bars > div:last-child span {
  background: #19E6C1;
}

.trend-bars small {
  color: #7d8c91;
}

.smart-suggestions {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.smart-suggestion {
  padding: 14px;
  border-radius: 13px;
  background: rgba(25,230,193,.055);
  border: 1px solid rgba(25,230,193,.09);
}

.smart-suggestion strong {
  display: block;
  color: #19E6C1;
  font-size: 13px;
  margin-bottom: 5px;
}

.smart-suggestion span {
  color: #aab7ba;
  font-size: 13px;
  line-height: 1.5;
}

.transactions-header select {
  background: #0B1418;
  color: #fff;
  border: 1px solid rgba(25,230,193,.18);
  border-radius: 10px;
  padding: 10px 13px;
  outline: none;
}

.insight-transactions {
  display: flex;
  flex-direction: column;
}

.insight-transaction {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.insight-transaction:last-child {
  border-bottom: 0;
}

.transaction-category-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(25,230,193,.09);
  color: #19E6C1;
}

.insight-transaction strong {
  display: block;
  font-size: 14px;
}

.insight-transaction small {
  color: #7d8c91;
}

.insight-transaction-amount {
  color: #fff;
  font-weight: 600;
}

.overspending-alert {
  color: #19E6C1 !important;
}

@media (max-width: 900px) {
  .spending-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spending-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .spending-summary-grid {
    grid-template-columns: 1fr;
  }

  .spending-panel {
    padding: 20px;
  }

  .category-row {
    grid-template-columns: 90px 1fr 65px;
    gap: 8px;
  }

  .transactions-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .transactions-header select {
    width: 100%;
  }
}




.spending-insights-section {
  display: block !important;
  width: 100% !important;
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.spending-heading {
  display: block !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 0 42px !important;
}

.spending-heading h2 {
  margin: 12px 0 0 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
}

.spending-heading p {
  margin: 24px 0 0 !important;
  line-height: 1.7 !important;
  color: #9AA8AD !important;
}


.spending-dashboard {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  width: 100% !important;
}


.spending-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
}

.spending-summary-card {
  display: block !important;
  min-width: 0 !important;
  min-height: 135px !important;
  padding: 24px !important;
  background: linear-gradient(
    145deg,
    rgba(11, 20, 24, .96),
    rgba(8, 17, 21, .88)
  ) !important;
  border: 1px solid rgba(25, 230, 193, .14) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 35px rgba(0,0,0,.18) !important;
}

.spending-summary-card span {
  display: block !important;
  margin-bottom: 12px !important;
  color: #9AA8AD !important;
  font-size: 12px !important;
}

.spending-summary-card strong {
  display: block !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 29px !important;
  line-height: 1.15 !important;
}

.spending-summary-card small {
  display: block !important;
  margin-top: 9px !important;
  color: #718187 !important;
}

.spending-summary-card.featured {
  border-color: rgba(25, 230, 193, .32) !important;
  box-shadow:
    0 0 30px rgba(25, 230, 193, .07),
    0 12px 35px rgba(0,0,0,.18) !important;
}


.spending-main-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr) !important;
  gap: 20px !important;
  width: 100% !important;
}

.spending-panel {
  display: block !important;
  min-width: 0 !important;
  padding: 27px !important;
  background: rgba(11, 20, 24, .90) !important;
  border: 1px solid rgba(25, 230, 193, .11) !important;
  border-radius: 22px !important;
  box-shadow: 0 15px 45px rgba(0,0,0,.16) !important;
}

.spending-panel-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 25px !important;
}

.spending-panel-header h3 {
  margin: 6px 0 0 !important;
  line-height: 1.25 !important;
}


.category-breakdown {
  display: flex !important;
  flex-direction: column !important;
  gap: 17px !important;
}

.category-row {
  display: grid !important;
  grid-template-columns: 120px minmax(0, 1fr) 80px !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
}

.category-name {
  color: #dbe5e8 !important;
  font-size: 13px !important;
}

.category-bar {
  display: block !important;
  width: 100% !important;
  height: 9px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,.06) !important;
  border-radius: 20px !important;
}

.category-bar span {
  display: block !important;
  height: 100% !important;
  min-width: 5px !important;
  background: linear-gradient(90deg,#22B8F0,#19E6C1) !important;
  border-radius: inherit !important;
}

.category-amount {
  text-align: right !important;
  color: #fff !important;
  font-size: 13px !important;
}


.budget-ring-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 10px 0 25px !important;
}

.budget-ring {
  width: 150px !important;
  height: 150px !important;
  flex-shrink: 0 !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: conic-gradient(
    #19E6C1 0deg,
    rgba(255,255,255,.07) 0deg
  ) !important;
}

.budget-ring > div {
  width: 108px !important;
  height: 108px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 50% !important;
  background: #0B1418 !important;
}

.budget-ring strong {
  color: #fff !important;
  font-size: 28px !important;
}

.budget-ring small {
  color: #819095 !important;
}

.budget-input-row {
  display: flex !important;
  width: 100% !important;
  gap: 9px !important;
}

.budget-input-row input {
  flex: 1 !important;
  width: auto !important;
  min-width: 0 !important;
  background: #071014 !important;
  color: #fff !important;
  border: 1px solid rgba(25,230,193,.16) !important;
  border-radius: 11px !important;
  padding: 12px 14px !important;
  outline: none !important;
  box-shadow: none !important;
}

.budget-input-row input:focus {
  border-color: #19E6C1 !important;
  box-shadow: 0 0 0 3px rgba(25,230,193,.08) !important;
}

.budget-input-row button {
  border: 0 !important;
  border-radius: 11px !important;
  padding: 0 20px !important;
  background: linear-gradient(90deg,#22B8F0,#19E6C1) !important;
  color: #04120F !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}


.trend-box {
  display: block !important;
  width: 100% !important;
}

.trend-value {
  color: #19E6C1 !important;
  font-size: 34px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.trend-label {
  margin-top: 9px !important;
  color: #8d9ba0 !important;
}

.trend-bars {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 55px !important;
  width: 100% !important;
  height: 150px !important;
  margin-top: 25px !important;
}

.trend-bars > div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 90px !important;
  height: 100% !important;
  gap: 9px !important;
}

.trend-bars span {
  display: block !important;
  width: 55px !important;
  min-height: 12px !important;
  height: 70% !important;
  border-radius: 10px 10px 4px 4px !important;
  background: linear-gradient(180deg,#22B8F0,#157da0) !important;
}

.trend-bars > div:last-child span {
  background: linear-gradient(180deg,#19E6C1,#0c9d85) !important;
}

.trend-bars small {
  color: #7d8c91 !important;
  white-space: nowrap !important;
}


.smart-suggestions {
  display: flex !important;
  flex-direction: column !important;
  gap: 11px !important;
}

.smart-suggestion {
  display: block !important;
  padding: 15px !important;
  background: rgba(25,230,193,.045) !important;
  border: 1px solid rgba(25,230,193,.11) !important;
  border-radius: 13px !important;
}

.smart-suggestion strong {
  display: block !important;
  margin-bottom: 5px !important;
  color: #19E6C1 !important;
}

.smart-suggestion span {
  display: block !important;
  color: #aab7ba !important;
  line-height: 1.5 !important;
}


.transactions-header select,
#transaction-filter {
  appearance: none !important;
  background: #071014 !important;
  color: #dce8ea !important;
  border: 1px solid rgba(25,230,193,.18) !important;
  border-radius: 11px !important;
  padding: 10px 35px 10px 13px !important;
  outline: none !important;
  cursor: pointer !important;
}

#transaction-filter:focus {
  border-color: #19E6C1 !important;
}


.insight-transactions {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}

.insight-transaction {
  display: grid !important;
  grid-template-columns: 42px minmax(0,1fr) auto !important;
  align-items: center !important;
  gap: 13px !important;
  width: 100% !important;
  padding: 15px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.055) !important;
}

.transaction-category-icon {
  width: 40px !important;
  height: 40px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 12px !important;
  background: rgba(25,230,193,.09) !important;
  color: #19E6C1 !important;
  font-weight: 700 !important;
}

.insight-transaction strong {
  display: block !important;
  color: #fff !important;
}

.insight-transaction small {
  display: block !important;
  margin-top: 3px !important;
  color: #718187 !important;
}

.insight-transaction-amount {
  color: #fff !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}


@media (max-width: 900px) {
  .spending-summary-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }

  .spending-main-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .spending-insights-section {
    padding-top: 65px !important;
  }

  .spending-summary-grid {
    grid-template-columns: 1fr !important;
  }

  .spending-panel {
    padding: 20px !important;
  }

  .category-row {
    grid-template-columns: 85px minmax(0,1fr) 65px !important;
  }

  .transactions-header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  #transaction-filter {
    width: 100% !important;
  }

  .trend-bars {
    gap: 25px !important;
  }
}



.spending-heading h2 {
  line-height: 1.25 !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  padding-bottom: 4px !important;
}

.spending-heading p {
  margin-top: 28px !important;
  padding-top: 0 !important;
  line-height: 1.7 !important;
  display: block !important;
}

@media (max-width: 600px) {
  .spending-heading h2 {
    line-height: 1.2 !important;
    padding-bottom: 6px !important;
  }

  .spending-heading p {
    margin-top: 22px !important;
  }
}

