/* Proxfin Payments Inc — design system */
:root {
  --background: 0 0% 100%;
  --foreground: 220 15% 15%;
  --card: 0 0% 100%;
  --primary: 220 70% 20%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 220 70% 45%;
  --secondary: 220 60% 96%;
  --muted-foreground: 220 15% 45%;
  --accent: 42 95% 55%;
  --accent-foreground: 220 70% 20%;
  --accent-glow: 42 95% 65%;
  --destructive: 0 84% 60%;
  --border: 220 25% 90%;
  --radius: 0.75rem;
  --gradient-hero: linear-gradient(135deg, hsl(220 70% 20%), hsl(260 70% 35%));
  --gradient-accent: linear-gradient(135deg, hsl(220 70% 45%), hsl(260 70% 55%));
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%), hsl(220 60% 98%));
  --shadow-premium: 0 20px 60px -15px hsl(220 70% 20% / 0.3);
  --shadow-glow: 0 0 60px hsl(220 70% 45% / 0.25);
  --shadow-card: 0 4px 20px -4px hsl(220 70% 20% / 0.1);
}
html.dark {
  --background: 220 25% 8%;
  --foreground: 0 0% 98%;
  --card: 220 25% 12%;
  --primary: 220 70% 55%;
  --primary-foreground: 220 25% 8%;
  --primary-glow: 220 70% 65%;
  --secondary: 220 25% 16%;
  --muted-foreground: 220 15% 65%;
  --border: 220 25% 20%;
  --gradient-hero: linear-gradient(135deg, hsl(220 70% 15%), hsl(260 70% 25%));
  --gradient-accent: linear-gradient(135deg, hsl(220 70% 35%), hsl(260 70% 45%));
  --gradient-card: linear-gradient(180deg, hsl(220 25% 12%), hsl(220 25% 16%));
  --shadow-premium: 0 20px 60px -15px hsl(0 0% 0% / 0.6);
  --shadow-glow: 0 0 60px hsl(220 70% 55% / 0.3);
  --shadow-card: 0 4px 20px -4px hsl(0 0% 0% / 0.3);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 1.5rem; height: 1.5rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.section { padding: 6rem 0; }
.section-alt { background: hsl(var(--secondary) / 0.3); }
.gradient-text {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary-glow)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.section-head p { font-size: 1.2rem; color: hsl(var(--muted-foreground)); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 600; cursor: pointer;
  padding: .75rem 1.5rem; border-radius: calc(var(--radius) - 2px);
  border: 1px solid transparent; background: transparent; color: inherit;
  transition: all .25s ease;
}
.btn-accent { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); box-shadow: var(--shadow-glow); }
.btn-accent:hover { background: hsl(var(--accent) / .9); }
.btn-outline { border-color: rgba(255,255,255,.3); color: #fff; backdrop-filter: blur(6px); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-ghost { color: hsl(var(--foreground)); padding: .5rem .9rem; }
.btn-ghost:hover { color: hsl(var(--primary)); background: hsl(var(--secondary)); }
.btn-lg { font-size: 1.05rem; padding: 1rem 2rem; border-radius: 999px; }
.btn-icon { padding: .5rem; border-radius: 999px; width: 2.5rem; height: 2.5rem; }
.btn-icon:hover { background: hsl(var(--secondary)); }
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn-block { width: 100%; }
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: all .3s ease; }
.nav.scrolled { background: hsl(var(--background) / .8); backdrop-filter: blur(16px); border-bottom: 1px solid hsl(var(--border)); box-shadow: var(--shadow-card); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.brand { font-size: 1.5rem; font-weight: 800; background: none; border: 0; cursor: pointer; font-family: inherit; }
.nav-links { display: none; align-items: center; gap: .25rem; }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-mobile { display: flex; flex-direction: column; gap: .25rem; padding: 1rem 0; }
.nav-mobile .btn { justify-content: flex-start; }
.nav-mobile[hidden] { display: none; }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-actions { display: none; }
  .nav-mobile { display: none !important; }
}
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url("hero-bg.jpg") center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); opacity: .9; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 56rem; margin: 0 auto; padding: 8rem 0; color: #fff; }
.hero h1 { font-size: clamp(2.75rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.1; }
.hero h1 .accent-text {
  background: linear-gradient(to right, hsl(var(--accent)), hsl(var(--accent-glow)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: rgba(255,255,255,.9); margin: 1.5rem auto 0; max-width: 46rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.stats { display: grid; gap: 2rem; margin: 3rem auto 0; max-width: 42rem; }
@media (min-width: 640px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); border-radius: 1rem; padding: 1.5rem; transition: all .3s ease; }
.stat:hover { background: rgba(255,255,255,.15); transform: scale(1.05); }
.stat-value { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: 2.25rem; font-weight: 800; }
.stat-value svg { color: hsl(var(--accent)); }
.stat p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.orb { position: absolute; border-radius: 999px; filter: blur(80px); animation: float 6s ease-in-out infinite; }
.orb-1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: hsl(var(--primary-glow) / .3); }
.orb-2 { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; background: hsl(var(--accent) / .2); animation-delay: 2s; }
.prose { max-width: 52rem; margin: 0 auto; text-align: center; color: hsl(var(--muted-foreground)); font-size: 1.125rem; display: grid; gap: 1rem; }
.prose strong { color: hsl(var(--foreground)); }
.subhead { text-align: center; font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; margin: 4rem 0 3rem; }
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.5rem; transition: all .3s ease; }
.card:hover { box-shadow: var(--shadow-premium); transform: translateY(-.5rem); }
.card-gradient { background: var(--gradient-card); text-align: center; }
.icon-box { width: 3.5rem; height: 3.5rem; border-radius: .875rem; background: hsl(var(--primary) / .1); color: hsl(var(--primary)); display: flex; align-items: center; justify-content: center; transition: background .3s ease; }
.card:hover .icon-box { background: hsl(var(--primary) / .2); }
.icon-box-lg { width: 4rem; height: 4rem; border-radius: 1rem; margin: 0 auto; }
.icon-box-lg svg { width: 2rem; height: 2rem; }
.card h4 { font-size: 1.25rem; font-weight: 700; margin: 1rem 0 .5rem; }
.card p { color: hsl(var(--muted-foreground)); }
.card h3 { font-size: 1.25rem; font-weight: 700; margin: 1rem 0 .75rem; }
.benefits { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid hsl(var(--border)); }
.benefits .label { font-size: .875rem; font-weight: 600; color: hsl(var(--accent)); margin-bottom: .35rem; }
.benefits p { font-size: .875rem; }
.cta-banner { margin-top: 3rem; padding: 2rem; border-radius: 1rem; background: var(--gradient-accent); color: #fff; text-align: center; }
.cta-banner h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.cta-banner p { opacity: .9; font-size: 1.125rem; }
.reason { display: flex; gap: 1rem; align-items: flex-start; }
.reason .icon-box { flex: 0 0 auto; width: 3rem; height: 3rem; }
.reason h3 { margin: 0 0 .35rem; }
.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-item .icon-box { width: 3rem; height: 3rem; }
.info-item .label { font-weight: 600; }
.info-item a, .info-item span { color: hsl(var(--muted-foreground)); transition: color .2s ease; }
.info-item a:hover { color: hsl(var(--primary)); }
.socials { padding-top: 2rem; border-top: 1px solid hsl(var(--border)); }
.socials .row { display: flex; gap: 1rem; margin-top: 1rem; }
.social { width: 3rem; height: 3rem; border-radius: .875rem; background: hsl(var(--primary) / .1); color: hsl(var(--primary)); display: flex; align-items: center; justify-content: center; transition: all .3s ease; }
.social:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); transform: scale(1.1); }
.field { margin-bottom: 1.25rem; }
input, textarea {
  width: 100%; font: inherit; color: inherit; padding: .65rem .85rem;
  border: 1px solid hsl(var(--border)); border-radius: calc(var(--radius) - 2px);
  background: hsl(var(--background)); transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus { outline: none; border-color: hsl(var(--primary-glow)); box-shadow: 0 0 0 3px hsl(var(--primary-glow) / .2); }
input.invalid, textarea.invalid { border-color: hsl(var(--destructive)); }
.error { color: hsl(var(--destructive)); font-size: .875rem; margin-top: .35rem; }
.footer { background: hsl(var(--card)); border-top: 1px solid hsl(var(--border)); padding: 3rem 0; text-align: center; }
.footer h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }
.footer .tagline { color: hsl(var(--muted-foreground)); font-style: italic; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 2rem 0; color: hsl(var(--muted-foreground)); }
.footer-links a:hover { color: hsl(var(--primary)); }
.footer .copyright { font-size: .875rem; color: hsl(var(--muted-foreground)); }
.toast-wrap { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100; display: grid; gap: .75rem; }
.toast { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: var(--radius); box-shadow: var(--shadow-premium); padding: 1rem 1.25rem; max-width: 22rem; animation: fade-in .3s ease both; }
.toast strong { display: block; margin-bottom: .25rem; }
.toast span { color: hsl(var(--muted-foreground)); font-size: .9rem; }
@keyframes fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.visible { animation: fade-in .6s ease forwards; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }
