﻿:root {
  --bg: #070a12;
  --surface: #0f172a;
  --surface-alt: #0b1020;
  --card: #10182f;
  --accent: #4ad1c8;
  --accent-2: #f7c266;
  --text: #e8eefc;
  --muted: #9db0d9;
  --line: rgba(255, 255, 255, 0.08);
  --pill: rgba(74, 209, 200, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(74, 209, 200, 0.1), transparent 25%),
              radial-gradient(circle at 80% 10%, rgba(247, 194, 102, 0.12), transparent 30%),
              radial-gradient(circle at 20% 80%, rgba(74, 209, 200, 0.12), transparent 32%),
              #060913;
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a:hover { color: var(--accent); }

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

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 22px 72px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-bottom: 28px;
  background: rgba(7, 10, 18, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-logo {
  width: 144px;
  height: 144px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f172a;
  padding: 6px;
  box-shadow: var(--shadow);
}

.brand-name { font-weight: 700; letter-spacing: 0.4px; }
.brand-tagline { color: var(--muted); font-size: 0.85rem; }

.nav { display: flex; align-items: center; gap: 18px; font-weight: 500; }
.nav a { padding: 10px 10px; border-radius: 10px; color: var(--muted); transition: color 0.2s, background 0.2s; }
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--accent), #3ab8b0);
  color: #031015;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s, opacity 0.2s;
  box-shadow: 0 10px 30px rgba(58, 184, 176, 0.35);
  min-height: 44px;
}
.button:hover { transform: translateY(-1px) scale(1.01); box-shadow: 0 12px 38px rgba(58, 184, 176, 0.4); }
.button:active { transform: translateY(0); }

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}
.button.ghost:hover { background: rgba(255, 255, 255, 0.08); }

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: none;
  border: 1px solid var(--line);
}

.button.link {
  background: transparent;
  box-shadow: none;
  color: var(--accent);
  padding-left: 0;
}

.section {
  margin: 80px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0 0 10px;
  font-weight: 700;
}

.section h2 { margin: 0 0 12px; font-size: 2rem; }
.section-lede { margin: 0; color: var(--muted); line-height: 1.6; }

.lede { color: var(--muted); line-height: 1.7; }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--pill);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.hero {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 18px;
  background: linear-gradient(135deg, rgba(74,209,200,0.06), rgba(247,194,102,0.05));
  animation: glowShift 14s ease-in-out infinite alternate;
}

.bg-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(74,209,200,0.12), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(247,194,102,0.12), transparent 40%),
              rgba(6,9,19,0.65);
  backdrop-filter: blur(6px);
  z-index: 0;
  animation: shimmer 18s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-copy h1 { margin: 0 0 12px; font-size: clamp(2.2rem, 4vw, 3.1rem); }

.hero-copy .cta-row { display: flex; gap: 12px; margin: 18px 0; flex-wrap: wrap; }

.hero-meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 0.95rem; }
.hero-meta span { padding: 8px 10px; border-radius: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); }

.hero-visual { position: relative; }

.visual-card {
  background: radial-gradient(circle at 20% 20%, rgba(74, 209, 200, 0.08), transparent 30%),
              radial-gradient(circle at 80% 30%, rgba(247, 194, 102, 0.1), transparent 32%),
              var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.visual-header .dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18);
}
.tab { padding: 6px 10px; border-radius: 8px; background: rgba(255,255,255,0.05); font-weight: 600; }

.visual-card img { width: 100%; display: block; border-radius: 14px; border: 1px solid var(--line); background: var(--surface-alt); }

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.visual-metrics .label { color: var(--muted); font-size: 0.9rem; }
.visual-metrics .metric { font-size: 1.4rem; font-weight: 700; }

.partner-row {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.02);
}
.partner-logos { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.partner-logos img { width: 30px; height: 30px; object-fit: contain; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25)); }
.partner-row .secure { color: var(--muted); font-size: 0.95rem; }

.section.muted {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  padding: 48px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 240px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.hover-glow:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-color: rgba(74,209,200,0.3); }
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.hover-tilt { perspective: 800px; }
.hover-tilt:hover { transform: translateY(-4px) rotateX(4deg) rotateY(-4deg); }

.card-icon { font-size: 1.6rem; margin-bottom: 10px; }

.card h3 { margin: 0 0 10px; }
.card p { color: var(--muted); line-height: 1.5; }
.card ul { padding-left: 18px; color: var(--muted); line-height: 1.5; margin: 12px 0 0; }

.timeline { display: grid; gap: 18px; }

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.7);
}

.badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(74,209,200,0.25), rgba(247,194,102,0.25));
  font-weight: 700;
  color: var(--text);
}

.note { color: var(--muted); margin: 8px 0 0; font-size: 0.95rem; }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.impact-card {
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(74,209,200,0.08), rgba(247,194,102,0.08));
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-card:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,0.45); }

.impact-metric { font-size: 2rem; font-weight: 700; }
.label { color: var(--muted); font-weight: 600; }
.blurb { color: var(--muted); margin: 6px 0 0; line-height: 1.5; }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.stack-item {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stack-item img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.case-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 200px;
}
.case-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--accent); font-weight: 700; margin-bottom: 8px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  perspective: 1200px;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,0.45); border-color: rgba(74,209,200,0.35); }

.pricing-card.featured { background: linear-gradient(135deg, rgba(74,209,200,0.12), rgba(247,194,102,0.12)); border-color: rgba(74,209,200,0.3); }
.pricing-label { color: var(--accent); font-weight: 700; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.about-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: rgba(255,255,255,0.02); }
.faq-list summary { cursor: pointer; font-weight: 600; }
.faq-list p { color: var(--muted); margin: 8px 0 0; }

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.blog-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(0,0,0,0.4); }

.contact { margin-bottom: 60px; }

.contact-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(74, 209, 200, 0.08), rgba(15, 23, 42, 0.9));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-points { color: var(--muted); line-height: 1.6; }
.contact-points li { margin-bottom: 6px; }

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  display: grid;
  gap: 10px;
}

.contact-form label { display: grid; gap: 6px; font-weight: 600; font-size: 0.95rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid rgba(74, 209, 200, 0.4); }

.form-note { color: var(--muted); font-size: 0.9rem; margin: 4px 0 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.footer {
  margin-top: 60px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer p { margin: 0; }

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; gap: 10px; }
}

@media (max-width: 720px) {
  .topbar { flex-wrap: wrap; gap: 10px; }
  .nav { width: 100%; justify-content: center; }
  .footer { flex-direction: column; align-items: flex-start; }
  .section.muted { padding: 32px 18px; }
}

@keyframes glowShift {
  0% { box-shadow: 0 10px 40px rgba(74,209,200,0.12); }
  100% { box-shadow: 0 18px 60px rgba(247,194,102,0.2); }
}

@keyframes shimmer {
  0% { opacity: 0.7; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(-6px); }
}
