@charset "UTF-8";

:root {
  --bg: #0b1021;
  --bg-alt: #0f1a33;
  --card: #131c34;
  --primary: #00d084;
  --primary-dark: #00a66a;
  --text: #e8ecf3;
  --muted: #b7c3d9;
  --border: #1f2a46;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
}

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

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 10%, rgba(0, 208, 132, 0.08), transparent 25%),
              radial-gradient(circle at 90% 10%, rgba(0, 121, 255, 0.08), transparent 22%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.flex {
  display: flex;
}

.between {
  justify-content: space-between;
}

.center {
  align-items: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

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

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11, 16, 33, 0.85);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand img,
.brand picture {
  display: block;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-tagline {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
}

.nav a {
  padding: 8px 10px;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.cta-group {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.solid {
  background: linear-gradient(135deg, var(--primary), #00bfa6);
  color: #041018;
  box-shadow: 0 10px 30px rgba(0, 208, 132, 0.35);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.solid:hover {
  box-shadow: 0 12px 36px rgba(0, 208, 132, 0.45);
}

.btn.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 72px 0;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.15;
  margin: 12px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 208, 132, 0.12);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

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

.hero-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: var(--muted);
}

.hero-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.hero-list li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(19, 28, 52, 0.9);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 260px;
  color: var(--text);
}

.floating-card strong {
  display: block;
  color: var(--primary);
  margin: 6px 0;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}

.section-header p {
  color: var(--muted);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.tile {
  background: linear-gradient(145deg, rgba(0, 208, 132, 0.1), rgba(0, 26, 46, 0.7));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.tile h4 {
  margin: 0 0 8px;
}

.tile p {
  color: var(--muted);
  margin: 0 0 10px;
}

.tile a {
  color: var(--primary);
  font-weight: 700;
}

.promo-card {
  background: linear-gradient(160deg, #0f1f3c, #0b1021);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}

.promo-card h3 {
  margin-top: 0;
}

.promo-card span {
  color: var(--muted);
}

.list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  color: var(--muted);
}

.list li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 20px;
}

.stat span {
  color: var(--muted);
}

.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-top: 8px;
  color: var(--muted);
}

.cta {
  background: radial-gradient(circle at 20% 20%, rgba(0, 208, 132, 0.15), transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(0, 121, 255, 0.15), transparent 36%),
              var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Footer */
.footer {
  background: #080c18;
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
}

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

.footer h4 {
  margin: 0 0 10px;
}

.footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--primary);
}

.footer-desc {
  color: var(--muted);
  margin: 12px 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.legal {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.legal p {
  color: var(--muted);
}

/* Responsive tweaks */
@media (max-width: 960px) {
  .nav {
    display: none;
  }
  .topbar {
    padding: 14px 0;
  }
  .hero {
    padding: 56px 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
  }
  .cta-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .cta-group .btn {
    font-size: 14px;
    padding: 10px 16px;
  }
  .floating-card {
    position: static;
    margin-top: 12px;
  }
}

/* News Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.news-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--primary), #00bfa6);
  color: #041018;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 208, 132, 0.4);
}

.news-content {
  padding: 20px;
}

.news-date {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 600;
}

.news-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--text);
}

.news-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.news-read-more {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.news-card:hover .news-read-more {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}