*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #05060b;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #e8ecf4;
  --muted: #c1c7d6;
  --accent: #6be6b4;
  --accent-2: #7cb8ff;
  --gradient: linear-gradient(135deg, #1a1f35 0%, #111827 50%, #0d1118 100%);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 72px;
  background: radial-gradient(100% 120% at 50% 0%, rgba(108, 206, 255, 0.12) 0%, rgba(107, 230, 180, 0.08) 35%, rgba(5, 6, 11, 0) 65%), var(--gradient);
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  color: #d8f7ff;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  position: sticky;
  top: 16px;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: #0c1022;
  border: 1px solid var(--border);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-tag {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #041016;
  box-shadow: 0 10px 30px rgba(124, 184, 255, 0.25);
}

.btn.ghost {
  border: 1px solid var(--border);
  background: var(--panel-strong);
}

.btn.full {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 64px 0 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0;
  line-height: 1.1;
}

h2 {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  margin: 8px 0 12px;
  line-height: 1.2;
}

h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

p {
  margin: 8px 0 0;
  color: var(--muted);
}

.lead {
  font-size: 17px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 10px 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 420px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #0b1021;
}

.hero-card__body {
  padding: 18px 18px 20px;
}

.hero-card__title {
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-card__list {
  padding-left: 18px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}

.hero-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}

.dot {
  color: var(--accent-2);
}

.section {
  margin: 56px 0;
}

.section__header {
  max-width: 720px;
  margin-bottom: 28px;
}

.cards .card-grid {
  gap: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  min-height: 170px;
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--panel);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.card__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 14px 16px;
  background: none;
  color: var(--text);
  border: none;
  text-align: left;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--accent);
  font-weight: 700;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: var(--muted);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 16px 14px;
}

.info-card {
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  align-items: start;
}

.contact__intro .contact__highlights {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  padding: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.contact__highlights img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.form {
  padding: 20px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-2);
  border-color: transparent;
}

textarea {
  resize: vertical;
}

.form__note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.form__status {
  margin-top: 10px;
  font-weight: 700;
}

.footer {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    position: static;
  }

  .nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 36px;
  }

  .footer__meta {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .page {
    padding: 24px 16px 64px;
  }

  .topbar {
    border-radius: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero-card__image {
    height: 180px;
  }
}

