@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600&display=swap');

/* ── TOKENS ── */
:root {
  --bg: #060D1A;
  --bg-2: #0A1628;
  --bg-3: #0F1E35;
  --green: #00C98D;
  --green-dim: rgba(0,201,141,0.12);
  --green-glow: rgba(0,201,141,0.06);
  --white: #FFFFFF;
  --white-70: rgba(255,255,255,0.7);
  --white-45: rgba(255,255,255,0.45);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --white-04: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --border-green: rgba(0,201,141,0.25);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── GRID ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,13,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo img { height: 38px; width: auto; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop nav { display: flex; gap: 28px; }
.nav-desktop nav a {
  font-size: 14px;
  color: var(--white-70);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.nav-desktop nav a:hover { color: var(--white); }

.btn-nav {
  padding: 9px 20px;
  background: var(--green);
  color: #060D1A;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}
.nav-mobile { display: none; border-top: 1px solid var(--border); background: var(--bg); }
.nav-mobile.open { display: block; }
.nav-mobile nav { padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.nav-mobile nav a { font-size: 15px; color: var(--white-70); text-decoration: none; padding: 6px 0; }
.nav-mobile .btn-nav { text-align: center; margin-top: 8px; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; letter-spacing: -0.02em; line-height: 1.1; }
h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
h3 { font-size: 17px; font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--green);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--green);
  color: #060D1A;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--white-15);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--white-45); transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 96px 0; }
.section-dark { background: var(--bg); }
.section-2 { background: var(--bg-2); }
.section-3 { background: var(--bg-3); }

/* ── HERO ── */
.hero {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(0,201,141,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-label .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 { max-width: 820px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub { font-size: 18px; color: var(--white-70); max-width: 560px; font-weight: 300; line-height: 1.7; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scrolling ticker */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-top: 80px;
  background: var(--bg-2);
}
.ticker {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-45);
  white-space: nowrap;
}
.ticker-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── CARDS ── */
.card {
  background: var(--white-04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--border-green);
  background: var(--green-glow);
  transform: translateY(-3px);
}
.card-icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.card h3 { color: var(--white); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--white-45); line-height: 1.7; }
.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.2s;
}
.card:hover .card-link { opacity: 1; }

/* ── SOLUTIONS GRID ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.solution-cell {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.solution-cell:hover { background: var(--bg-2); }
.solution-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.solution-cell h3 { color: var(--white); margin-bottom: 10px; font-size: 16px; }
.solution-cell p { font-size: 13px; color: var(--white-45); line-height: 1.6; }

/* ── PARTNERS ── */
.partners-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.partner-card {
  background: var(--white-04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.partner-card:hover {
  border-color: var(--border-green);
  background: var(--green-glow);
  transform: translateY(-2px);
}
.partner-card img { height: 36px; width: auto; object-fit: contain; margin: 0 auto 16px; display: block; filter: brightness(0) invert(1); opacity: 0.7; transition: opacity 0.2s; }
.partner-card:hover img { opacity: 1; }
.partner-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.partner-desc { font-size: 12px; color: var(--white-45); line-height: 1.5; }

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell {
  background: var(--bg-2);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-num span { color: var(--green); }
.stat-label { font-size: 13px; color: var(--white-45); margin-top: 6px; }

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,201,141,0.15) 0%, transparent 70%);
}
.checklist { list-style: none; margin-top: 28px; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--white-70);
}
.checklist li:last-child { border-bottom: none; }
.check { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ── CTA BOX ── */
.cta-section {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,201,141,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: var(--white-45); font-size: 17px; max-width: 480px; margin: 0 auto 36px; font-weight: 300; line-height: 1.7; }

/* ── FORM ── */
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white-04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group select option { background: var(--bg-2); color: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  gap: 16px;
}
.faq-q .arrow { font-size: 20px; color: var(--green); flex-shrink: 0; transition: transform 0.2s; }
.faq-a { display: none; padding-bottom: 22px; font-size: 14px; color: var(--white-45); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 80px 0 64px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(32px,4vw,52px); }
.page-hero p { font-size: 18px; color: var(--white-45); max-width: 560px; font-weight: 300; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo { height: 34px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-desc { font-size: 14px; color: var(--white-45); line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: var(--white-45); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--white-45); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white-45);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--white-45);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--green); color: var(--green); }

/* ── LP EXTRAS ── */
.lp-hero { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 80px 0; }
.lp-hero h1 { color: var(--white); margin-bottom: 20px; }
.lp-hero p { color: var(--white-45); font-size: 18px; max-width: 560px; font-weight: 300; line-height: 1.7; }
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
.trust-badge { font-size: 13px; color: var(--white-45); display: flex; align-items: center; gap: 6px; }
.trust-badge::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .solutions-grid { grid-template-columns: 1fr; background: none; border: none; gap: 1px; }
  .solution-cell { border: 1px solid var(--border); border-radius: var(--radius); }
  .partners-row { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-desktop, .nav-desktop + .btn-nav { display: none; }
  .hamburger { display: block; }
  section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .partners-row, .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .cta-section { padding: 48px 24px; }
  section { padding: 48px 0; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
}
