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

:root {
  --bg: #020817;
  --bg-soft: #050b1f;
  --accent: #2f6bff;
  --accent-soft: rgba(47, 107, 255, 0.12);
  --accent-grad: linear-gradient(135deg, #2f6bff, #6e8bff, #11c5ff);
  --text: #f5f7ff;
  --muted: #9ea3c7;
  --border: rgba(255, 255, 255, 0.08);
  --radius-xl: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 80px rgba(0, 0, 0, 0.55);
  --transition: all 0.25s ease;
  --font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font);
  background: radial-gradient(circle at top, #0a1433, #020817 55%);
  color: var(--text);
  line-height: 1.6;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top left, rgba(47, 107, 255, 0.18), transparent)
    ,rgba(2, 8, 23, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.logo-icon.small {
  width: 26px;
  height: 26px;
  font-size: 14px;
  border-radius: 10px;
}

.logo-text span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logo-text strong {
  font-size: 16px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  transition: var(--transition);
}

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

.nav-cta {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 500;
}
.nav-cta:hover {
  background: var(--accent-grad);
  color: #fff;
}

/* Mobile Menu */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 20px;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 80;
}

.mobile-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  max-width: 320px;
  height: 100%;
  background: #050b1f;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 26px;
  cursor: pointer;
  margin-bottom: 5px;
}

.drawer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 6px;
  border-radius: 10px;
  transition: var(--transition);
}
.drawer-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.drawer-cta {
  margin-top: 10px;
  background: var(--accent-grad);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-pill);
}

/* Hero */

.hero {
  padding: 70px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1.3fr);
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}
.hero-content h1 span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn.primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 500;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--muted);
  background: transparent;
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero-trust {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
}
.hero-trust span {
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

/* Hero visual */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.glass-card {
  width: 100%;
  max-width: 320px;
  padding: 16px 16px 14px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(47, 107, 255, 0.22), rgba(5, 11, 31, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  animation: float 4.5s ease-in-out infinite;
}

.glass-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.txn-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 4px;
  color: var(--muted);
}
.status {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 9px;
}
.status.success {
  background: rgba(0, 255, 148, 0.12);
  color: #35ffb3;
}
.status.pending {
  background: rgba(255, 193, 7, 0.12);
  color: #ffc857;
}

.code-snippet {
  margin-top: 10px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.52);
  font-family: "SF Mono", Menlo, monospace;
  font-size: 9.5px;
  color: #9fccff;
  border: 1px solid rgba(94, 131, 255, 0.5);
}

.floating-badge {
  position: absolute;
  top: 10%;
  right: 5%;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(2, 8, 23, 0.98);
  border: 1px solid rgba(88, 132, 255, 0.6);
  font-size: 9px;
  color: #9ea9ff;
  box-shadow: var(--shadow-soft);
  animation: pulse 2.8s infinite;
}
.floating-badge.second {
  top: auto;
  bottom: 8%;
  left: 4%;
  right: auto;
}

/* Sections */

.section {
  padding: 40px 0;
}

.section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.section h2 span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  padding: 16px 14px;
  border-radius: var(--radius-xl);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  transition: var(--transition);
  font-size: 12px;
  color: var(--muted);
}
.card h3 {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 6px;
}
.card ul {
  margin-top: 8px;
  padding-left: 16px;
}
.card li {
  margin-bottom: 4px;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.75);
}

.pill-card {
  padding: 14px 14px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.18), rgba(5, 11, 31, 0.98));
  border: 1px solid rgba(162, 192, 255, 0.28);
  font-size: 12px;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}
.pill-card h4 {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 4px;
}

.why-item {
  padding: 14px 12px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
}
.why-item h4 {
  color: var(--text);
  font-size: 13px;
  margin-bottom: 4px;
}

/* Pricing */

.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  padding: 16px 14px;
  border-radius: var(--radius-xl);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
  transition: var(--transition);
}
.price-card h3 {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}
.price {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent);
}
.price-card ul {
  padding-left: 16px;
}
.price-card li {
  margin-bottom: 4px;
}
.price-card.highlight {
  background: radial-gradient(circle at top, rgba(47, 107, 255, 0.2), #050b1f);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 1.5fr);
  gap: 22px;
  align-items: flex-start;
}

.contact-details p,
.contact-details a {
  font-size: 13px;
  color: var(--muted);
}
.contact-details a {
  text-decoration: none;
  color: var(--accent);
}
.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 16px 14px;
  border-radius: var(--radius-xl);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.field label {
  font-size: 11px;
  color: var(--muted);
}

.field input,
.field textarea {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 10, 28, 0.98);
  color: var(--text);
  font-size: 12px;
  outline: none;
  transition: var(--transition);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(47, 107, 255, 0.2);
}

.btn.full {
  width: 100%;
  margin-top: 4px;
}

.note {
  margin-top: 4px;
  font-size: 10px;
  color: var(--muted);
}

.thank-you-msg {
  margin-top: 6px;
  font-size: 11px;
  color: #35ffb3;
  display: none;
}

/* Footer */

.footer {
  padding-top: 18px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(47, 107, 255, 0.14), #020817);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 0 18px 8px;
}

.footer-brand {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-brand p {
  font-size: 11px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p,
.footer-contact a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
}
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding: 4px 0 10px;
  font-size: 10px;
  color: var(--muted);
}

/* Animations */

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 107, 255, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(47, 107, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 107, 255, 0); }
}

/* Responsive */

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 720px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-wrap {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-content h1 {
    font-size: 26px;
  }
}
