:root {
  --black: #080a0f;
  --deep: #0d1018;
  --card: #111520;
  --border: rgba(255, 255, 255, 0.07);
  --gold: #c8a96e;
  --gold-dim: rgba(200, 169, 110, 0.15);
  --gold-glow: rgba(200, 169, 110, 0.08);
  --white: #f0ece4;
  --muted: rgba(240, 236, 228, 0.45);
  --faint: rgba(240, 236, 228, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.25s ease;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(8, 10, 15, 0.95), transparent);
  backdrop-filter: blur(2px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 24px !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  transition: all 0.25s !important;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 100px;
  position: relative;
  overflow: hidden;
}

/* Animated grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* Orb */
.hero-orb {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, rgba(200, 169, 110, 0.04) 40%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 130px);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(240, 236, 228, 0.3);
  color: transparent;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 56px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 40px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 16px 40px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s 1.5s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

/* Stats bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  right: 60px;
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-bottom: none;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

.stat-item {
  padding: 20px 36px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTION BASE ── */
section {
  padding: 120px 60px;
  position: relative;
}

.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── HOW IT WORKS ── */
#how {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.how-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.how-card:last-child {
  border-right: none;
}

.how-card:hover {
  background: var(--gold-glow);
}

.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.1);
  line-height: 1;
  margin-bottom: -20px;
  transition: color 0.3s;
}

.how-card:hover .how-num {
  color: rgba(200, 169, 110, 0.2);
}

.how-icon {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}

.how-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.how-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── SERVICES ── */
#services {
  background: var(--black);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.services-sticky {
  position: sticky;
  top: 120px;
}

.services-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 24px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-card {
  padding: 32px 36px;
  border: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s;
  background: var(--card);
  cursor: none;
}

.service-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  background: var(--gold-glow);
}

.service-emoji {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 2px;
  transition: background 0.3s;
}

.service-card:hover .service-emoji {
  background: rgba(200, 169, 110, 0.25);
}

.service-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--gold);
  padding: 3px 10px;
  margin-top: 8px;
}

/* ── SIGN UP FORM SECTION ── */
#signup {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.signup-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.signup-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.signup-info h2 em {
  font-style: italic;
  color: var(--gold);
}

.signup-info p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.signup-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.benefit-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FORM ── */
.signup-form {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 56px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  cursor: none;
  -webkit-appearance: none;
  appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

select option {
  background: var(--deep);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 169, 110, 0.5);
  background: rgba(200, 169, 110, 0.04);
}

input::placeholder,
textarea::placeholder {
  color: rgba(240, 236, 228, 0.2);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Solution chips */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.solution-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  cursor: none;
  transition: all 0.2s;
}

.solution-chip:hover {
  border-color: rgba(200, 169, 110, 0.3);
  background: rgba(200, 169, 110, 0.04);
}

.solution-chip input[type="checkbox"] {
  width: 14px;
  height: 14px;
  min-width: 14px;
  accent-color: var(--gold);
  cursor: none;
  padding: 0;
}

.solution-chip span {
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.solution-chip:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-glow);
}

/* KYC notice */
.kyc-notice {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(200, 169, 110, 0.05);
  border: 1px solid rgba(200, 169, 110, 0.2);
  margin-bottom: 28px;
  align-items: flex-start;
}

.kyc-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.kyc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.kyc-content p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.kyc-content p strong {
  color: var(--white);
  font-weight: 600;
}

.kyc-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kyc-badge {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--gold);
  padding: 4px 8px;
  background: rgba(200, 169, 110, 0.05);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--muted);
  cursor: none;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: none;
  padding: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.form-section-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 18px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  opacity: 0.9;
}

.submit-btn.loading {
  pointer-events: none;
}

.submit-btn .btn-text {
  transition: opacity 0.2s;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.show {
  display: block;
}

.form-fields.hide {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: var(--gold);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── ACQUIRER SECTION ── */
#acquirers {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.acquirer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.acquirer-visual {
  position: relative;
  height: 400px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.acquirer-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(200, 169, 110, 0.12) 0%, transparent 60%),
    linear-gradient(rgba(200, 169, 110, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.03) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.node::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.3);
  animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(2);
    opacity: 0;
  }
}

.center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
}

.center-node::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.15);
}

.connect-line {
  position: absolute;
  background: linear-gradient(90deg, var(--gold), transparent);
  height: 1px;
  transform-origin: left center;
  opacity: 0.3;
  animation: linePulse 4s ease-in-out infinite;
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.5;
  }
}

.acquirer-content {
  padding: 20px 0;
}

.acquirer-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}

.acquirer-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.acquirer-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 60px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--faint);
}

.footer-bottom a {
  color: var(--faint);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--muted);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 24px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
    font-size: 20px;
    background: none;
    border: none;
    color: var(--white);
    cursor: none;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  section {
    padding: 80px 24px;
  }

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

  .how-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-sticky {
    position: static;
  }

  .signup-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .signup-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .acquirer-visual {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  footer {
    padding: 48px 24px 32px;
  }

  .stats-bar {
    display: none;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 540px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .btn-primary,
  .btn-ghost {
    text-align: center;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}


/* ── ADDITIONAL REFACTORED INLINE STYLES ── */
label[for="agree"] {
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
  cursor: none;
}

.acquirer-content > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.acquirer-visual .node:nth-of-type(1) { top: 20%; left: 15%; animation-delay: 0s; }
.acquirer-visual .node:nth-of-type(2) { top: 15%; left: 72%; animation-delay: 0.5s; }
.acquirer-visual .node:nth-of-type(3) { top: 70%; left: 12%; animation-delay: 1s; }
.acquirer-visual .node:nth-of-type(4) { top: 75%; left: 75%; animation-delay: 1.5s; }
.acquirer-visual .node:nth-of-type(5) { top: 45%; left: 85%; animation-delay: 0.8s; }
.acquirer-visual .node:nth-of-type(6) { top: 50%; left: 8%; animation-delay: 0.3s; }

.acquirer-visual .connect-line:nth-of-type(1) { top: 25%; left: 17%; width: 130px; transform: rotate(22deg); animation-delay: 0s; }
.acquirer-visual .connect-line:nth-of-type(2) { top: 20%; left: 53%; width: 120px; transform: rotate(-15deg); animation-delay: 0.4s; }
.acquirer-visual .connect-line:nth-of-type(3) { top: 51%; left: 18%; width: 115px; transform: rotate(-5deg); animation-delay: 0.8s; }
.acquirer-visual .connect-line:nth-of-type(4) { top: 62%; left: 53%; width: 110px; transform: rotate(18deg); animation-delay: 0.2s; }
.acquirer-visual .connect-line:nth-of-type(5) { top: 48%; left: 63%; width: 120px; transform: rotate(3deg); animation-delay: 1s; }
