:root {
  --bg: #0e033c;
  --bg-alt: #101942;
  --surface: #141f4e;
  --surface-soft: #eef8fe;
  --ink: #d9f3ec;
  --ink-dark: #191919;
  --accent: #3bd768;
  --accent-strong: #33c85f;
  --line: rgba(255, 255, 255, 0.1);
  --radius: 20px;
  --shadow: 0 14px 50px rgba(3, 7, 30, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at 8% 4%, rgba(59, 215, 104, 0.24), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(67, 121, 255, 0.16), transparent 30%),
    linear-gradient(160deg, var(--bg) 0%, #101941 45%, var(--bg-alt) 100%);
  color: var(--ink);
}

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

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(14, 3, 60, 0.7);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.brand img {
  width: 170px;
}

.menu {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.menu a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
}

.section {
  padding: 5.2rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 0.95;
  max-width: 9.8ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

h3 {
  font-size: 1.2rem;
}

p,
li {
  line-height: 1.68;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 6.5rem 0 5rem;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.92;
}

.shape-green {
  width: min(760px, 70vw);
  top: -120px;
  right: -90px;
}

.shape-blue {
  width: min(480px, 46vw);
  bottom: -120px;
  left: -100px;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 1rem;
}

.hero-copy p {
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.hero-visual {
  justify-self: center;
}

.hero-visual img {
  width: min(510px, 92vw);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  color: #06152f;
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.4rem;
}

.section-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.pillars {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pill {
  background: rgba(16, 25, 66, 0.75);
  border: 1px solid var(--line);
  padding: 1.2rem;
  border-radius: 14px;
}

.pill h3 {
  margin-bottom: 0.35rem;
  color: var(--accent);
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.structure-card {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-weight: 500;
}

.legal {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(59, 215, 104, 0.03));
}

.legal-grid {
  align-items: stretch;
}

.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.adv-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.adv-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.adv-card h3,
.adv-card ul {
  padding-inline: 1rem;
}

.adv-card h3 {
  margin: 0.95rem 0 0.3rem;
}

.adv-card ul {
  margin: 0 0 1.2rem;
  padding-left: 2.1rem;
}

.cta-band {
  padding-top: 2.2rem;
}

.cta-wrap {
  background: linear-gradient(125deg, #dff8e9 0%, #caefe9 100%);
  color: var(--ink-dark);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.contact-grid {
  align-items: end;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.contact-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.contact-people img {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.6rem;
}

.faq {
  padding-top: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

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

.faq-item p {
  margin: 0.6rem 0 0;
}

.footer {
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer img {
  width: 120px;
}

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

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 980px) {
  .hero-content,
  .section-grid,
  .pillars-grid,
  .structure-grid,
  .adv-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    width: min(420px, 82vw);
  }

  .contact-people {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    display: none;
    position: absolute;
    top: 84px;
    right: 1.2rem;
    width: min(280px, calc(100% - 2.4rem));
    flex-direction: column;
    align-items: flex-start;
    background: rgba(16, 25, 66, 0.96);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.75rem;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .shape-green {
    right: -180px;
    top: -70px;
    width: 560px;
  }

  .shape-blue {
    left: -180px;
    bottom: -80px;
    width: 320px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
