:root {
  --bg: #080b16;
  --bg-soft: #10172d;
  --panel: rgba(16, 23, 45, 0.72);
  --panel-strong: #111936;
  --line: rgba(255, 255, 255, 0.08);
  --text: #edf2ff;
  --muted: #b7c0db;
  --accent: #7c6cff;
  --accent-2: #1ddbb8;
  --accent-3: #ffd76b;
  --success: #14d697;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 108, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(29, 219, 184, 0.12), transparent 28%),
    linear-gradient(180deg, #070a14 0%, #090e1b 48%, #070a14 100%);
  min-height: 100vh;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.35;
}

.site-shell::before {
  background: rgba(124, 108, 255, 0.26);
  top: -120px;
  left: -120px;
}

.site-shell::after {
  background: rgba(29, 219, 184, 0.18);
  right: -120px;
  top: 180px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 11, 22, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(124, 108, 255, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #08121a;
  background: linear-gradient(135deg, var(--accent-3), #fff1bc);
  box-shadow: 0 14px 36px rgba(255, 215, 107, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(255, 215, 107, 0.3);
}

.btn-secondary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(124, 108, 255, 0.18), rgba(29, 219, 184, 0.12));
  border-color: rgba(255, 255, 255, 0.14);
}

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

.hero {
  padding: 70px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  align-items: stretch;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #dbe4ff;
  font-size: 0.92rem;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px rgba(20, 214, 151, 0.7);
}

.hero-panel,
.glass-card,
.doc-card,
.info-card,
.page-card {
  background: linear-gradient(180deg, rgba(20, 28, 52, 0.82), rgba(11, 16, 33, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-panel {
  padding: 34px;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.04;
  margin: 18px 0 18px;
  letter-spacing: -0.04em;
}

.hero-copy p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-proof {
  padding: 22px;
}

.section {
  padding: 28px 0;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.page-copy p,
.page-copy li {
  color: var(--muted);
  line-height: 1.75;
}

.grid-3,
.grid-2,
.details-grid,
.footer-grid,
.docs-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.details-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
}

.docs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.03));
}

.card h3,
.info-card h3,
.doc-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.card p,
.card li,
.info-card p,
.info-card li,
.contact-card p,
.contact-card li {
  color: var(--muted);
  line-height: 1.72;
}

.card ul,
.page-copy ul,
.contact-card ul {
  margin: 0;
  padding-left: 18px;
}

.key-value-list {
  display: grid;
  gap: 14px;
}

.key-value-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.key-value-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.key {
  color: var(--muted);
}

.value {
  text-align: right;
  font-weight: 700;
}

.split-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cfe6ff;
  margin-bottom: 10px;
}

.split-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.info-card,
.contact-card {
  padding: 26px;
}

.official-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dae4ff;
}

.doc-card {
  overflow: hidden;
}

.doc-thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.doc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.doc-card:hover .doc-thumb img {
  transform: scale(1.03);
}

.doc-body {
  padding: 20px;
}

.doc-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card {
  background: linear-gradient(180deg, rgba(20, 28, 52, 0.82), rgba(10, 15, 30, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-pill span:first-child {
  color: var(--muted);
}

.payment-box {
  position: relative;
  overflow: hidden;
}

.payment-box::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 215, 107, 0.12);
  filter: blur(40px);
}

.payment-box > * {
  position: relative;
}

.footer {
  padding: 22px 0 36px;
}

.footer-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 17, 34, 0.96), rgba(8, 11, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer small,
.footer p {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.page-hero {
  padding: 54px 0 18px;
}

.page-card {
  padding: 28px;
}

.page-copy h2 {
  margin-top: 0;
}

.page-copy h3 {
  margin-bottom: 8px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 6, 12, 0.86);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  width: min(100%, 1000px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a1020;
  padding: 18px;
  position: relative;
}

.lightbox img {
  max-height: 80vh;
  width: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .details-grid,
  .footer-grid,
  .grid-3,
  .docs-grid,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 76px;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: min(300px, calc(100vw - 32px));
    padding: 14px;
    border-radius: 22px;
    background: rgba(9, 14, 27, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 42px;
  }

  .hero-panel,
  .page-card,
  .info-card,
  .contact-card,
  .doc-body,
  .hero-proof,
  .footer-card,
  .card {
    padding: 20px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.8rem;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .section {
    padding: 20px 0;
  }

  .contact-pill,
  .key-value-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .value {
    text-align: left;
  }
}
