:root {
  --bg: #07111f;
  --bg-soft: #0f1d31;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --text: #f5f7ff;
  --muted: #9fb2c9;
  --accent: #5fe3c5;
  --accent-2: #57a7ff;
  --border: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(87,167,255,0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(95,227,197,0.16), transparent 30%),
    var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: float 10s ease-in-out infinite;
}

.orb-one {
  width: 280px;
  height: 280px;
  background: #3b82f6;
  top: -80px;
  right: -80px;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: #14b8a6;
  bottom: 90px;
  left: -70px;
  animation-duration: 12s;
}

.orb-three {
  width: 180px;
  height: 180px;
  background: #8b5cf6;
  top: 40%;
  right: 12%;
  animation-duration: 14s;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 48px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #021014;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 12px 30px rgba(95,227,197,0.25);
}

.brand strong { display: block; font-size: 1rem; }
.brand small { color: var(--muted); display: block; margin-top: 2px; }

.site-nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.site-nav a { color: var(--muted); transition: color 0.2s ease, color 0.3s ease; }
.site-nav a:hover,
.site-nav a.active { color: var(--text); }
.site-nav .contact-link {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 38px 0 30px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1, .section-heading h2, .contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero-text, .info-card p, .feature-grid p, .contact-card p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

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

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #01131b;
  box-shadow: 0 10px 30px rgba(95,227,197,0.2);
}
.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--panel);
  color: #dce9f7;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  animation: pulse 3.2s ease-in-out infinite;
}

.hero-badges span:nth-child(2) { animation-delay: 0.4s; }
.hero-badges span:nth-child(3) { animation-delay: 0.8s; }

.hero-card, .info-card, .contact-card, .trust-strip, .tool-list {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-card:hover, .info-card:hover, .contact-card:hover, .trust-strip:hover, .tool-list:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.26);
  border-color: rgba(95,227,197,0.45);
}

.hero-card {
  padding: 20px;
  overflow: hidden;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 600;
}

.page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  margin-top: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.page-update {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(95,227,197,0.12);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.noscript-warning {
  display: block;
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 104, 104, 0.12);
  border: 1px solid rgba(255, 104, 104, 0.24);
  color: #ffd4d4;
}

.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.page-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.page-intro {
  max-width: 730px;
  color: var(--muted);
  line-height: 1.8;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.detail-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 35px rgba(0,0,0,0.14);
}

tool-card {
  display: block;
}

.tool-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-list,
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li,
.process-list li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.process-list li::before {
  content: '•';
  color: var(--accent);
  display: inline-block;
  width: 1.2em;
}

.section-panel {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.card-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.mini-title {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.hero-card h3 { font-size: 1.35rem; margin: 0 0 10px; }
.hero-card ul { padding-left: 18px; color: var(--muted); line-height: 1.7; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px 20px;
  margin: 18px 0 24px;
}
.trust-strip div { display: flex; flex-direction: column; gap: 4px; }
.trust-strip strong { font-size: 1rem; }
.trust-strip span { color: var(--muted); font-size: 0.95rem; }

.section-block { padding: 32px 0; }
.alt-section { padding-top: 10px; }
.section-heading { max-width: 760px; margin-bottom: 20px; }
.section-heading h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }

.card-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card, .feature-grid article {
  padding: 22px;
}
.info-card h3, .feature-grid h3 { margin-top: 0; margin-bottom: 10px; }

.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
}
.tool-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: #e7f4ff;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.tool-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(95,227,197,0.4);
}

.contact-section { padding-top: 12px; }
.contact-card { padding: 28px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.contact-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -16px, 0) scale(1.04); }
}

@keyframes pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 rgba(95,227,197,0); }
  50% { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(95,227,197,0.16); }
}

@media (max-width: 900px) {
  .hero, .card-grid, .feature-grid, .trust-strip, .detail-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 20px; }
  .trust-strip { gap: 10px; }
}

@media (max-width: 640px) {
  .page-shell { padding: 16px 16px 32px; }
  .site-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .site-nav { gap: 12px; flex-wrap: wrap; }
  .hero h1 { font-size: 2.1rem; }
  .contact-card, .hero-card, .info-card, .feature-grid article, .detail-card, .section-panel { padding: 18px; }
  .page-footer { flex-direction: column; align-items: flex-start; }
}

/* Compatibility fix */
.reveal,.js .reveal{opacity:1!important;transform:none!important;}
