@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --bg: #05070d;
  --bg-2: #0d1220;
  --bg-3: #141b2d;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7fb;
  --text-2: rgba(244, 247, 251, 0.82);
  --text-3: rgba(244, 247, 251, 0.58);
  --primary: #56a0ff;
  --secondary: #7c8cff;
  --accent: #27d3b5;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --font: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(86, 160, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(39, 211, 181, 0.12), transparent 28%),
    linear-gradient(180deg, #04060b 0%, #09111f 42%, #05070d 100%);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
  pointer-events: none;
}

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

button,
a {
  color: inherit;
  font: inherit;
}

button {
  background: none;
  border: 0;
}

a {
  text-decoration: none;
}

.page-shell {
  position: relative;
  z-index: 1;
}

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

.page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(5, 7, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.page-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-wordmark {
  display: inline-flex;
  gap: 1px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-wordmark-ti {
  color: var(--primary);
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-nav-link,
.lang-link {
  color: var(--text-2);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-nav-link:hover,
.lang-link:hover {
  color: var(--text);
}

.lang-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-panel,
.card,
.service-link-card,
.footer-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.section-panel,
.footer-panel {
  border-radius: 28px;
}

.hero-copy {
  padding: 34px;
}

.hero-panel {
  padding: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(86, 160, 255, 0.12);
  border: 1px solid rgba(86, 160, 255, 0.18);
  color: #cfe3ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  max-width: 11ch;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.lead,
.section-head p,
.card p,
.service-link-card span,
.panel-copy,
.footer-copy {
  color: var(--text-2);
  line-height: 1.7;
}

.lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7bb5ff);
  color: #06111f;
}

.btn-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.status-stack {
  display: grid;
  gap: 14px;
}

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

.status-card strong,
.panel-title,
.card h3,
.service-link-card strong,
.footer-links strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.status-card strong,
.panel-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.panel-copy {
  margin: 0;
  font-size: 15px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.metric strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.metric span {
  color: var(--text-3);
  font-size: 13px;
}

.section {
  padding: 24px 0 78px;
}

.section-soft .section-panel {
  background: linear-gradient(180deg, rgba(124, 140, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.section-panel {
  padding: 30px;
}

.section-head {
  max-width: 740px;
  margin-bottom: 24px;
}

.section-head p {
  margin: 14px 0 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.card {
  border-radius: 22px;
  padding: 24px;
}

.card-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.card p {
  margin: 0;
  font-size: 15px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-link-card {
  display: block;
  border-radius: 22px;
  padding: 22px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
}

.service-link-card span {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.service-link-card strong {
  font-size: 22px;
  margin-bottom: 8px;
}

.footer {
  padding: 0 0 44px;
}

.footer-panel {
  padding: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.footer-copy {
  margin: 14px 0 0;
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links strong {
  font-size: 18px;
}

.footer-links a {
  color: var(--text-2);
}

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

@media (max-width: 980px) {
  .hero-inner,
  .footer-grid,
  .cards,
  .links-grid {
    grid-template-columns: 1fr;
  }

  .cards.two-up {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy,
  .hero-panel,
  .section-panel,
  .footer-panel {
    border-radius: 22px;
  }

  .hero-copy,
  .hero-panel,
  .section-panel,
  .card,
  .service-link-card,
  .footer-panel {
    padding: 22px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
