:root {
  --bg-0: #04070d;
  --bg-1: #0a1220;
  --bg-2: #102338;
  --panel: rgba(11, 22, 36, 0.78);
  --panel-strong: rgba(8, 16, 28, 0.94);
  --line: rgba(114, 166, 211, 0.34);
  --text-0: #f5fbff;
  --text-1: #bfd5e8;
  --text-2: #89abc6;
  --accent: #3de8d6;
  --accent-2: #62a8ff;
  --warn: #ffc870;
  --danger: #ff9288;
  --radius: 18px;
  --shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-0);
  font-family: "Sora", "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 18% 18%, #14345a 0%, transparent 28%),
    radial-gradient(circle at 82% 12%, #213164 0%, transparent 35%),
    radial-gradient(circle at 45% 90%, #0e3a37 0%, transparent 36%),
    linear-gradient(160deg, var(--bg-0), var(--bg-1) 44%, var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 44vw;
  height: 44vw;
  border-radius: 999px;
  filter: blur(80px);
  z-index: -2;
  opacity: 0.24;
  pointer-events: none;
  animation: floatAura 14s ease-in-out infinite;
}

body::before {
  background: #35b8a4;
  top: -18vw;
  left: -16vw;
}

body::after {
  background: #2f4d9a;
  right: -12vw;
  bottom: -16vw;
  animation-delay: -6s;
}

@keyframes floatAura {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.7vw, -1.4vw, 0) scale(1.08);
  }
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(4, 8, 14, 0.72);
  border-bottom: 1px solid rgba(138, 201, 246, 0.2);
  z-index: 100;
}

.header-inner {
  width: min(1180px, calc(100% - 2.2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-0);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.brand img {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-1);
  text-decoration: none;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: all 0.26s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(83, 174, 254, 0.18);
}

.cta {
  background: linear-gradient(120deg, #41e7d4, #61a9ff);
  color: #041017;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.66rem 1.1rem;
  text-decoration: none;
  display: inline-block;
}

main {
  width: min(1180px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding: 1rem 0 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.9rem);
  margin: 0 0 0.9rem;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hero p {
  color: var(--text-1);
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08);
}

.floating-card {
  position: absolute;
  background: rgba(8, 16, 28, 0.74);
  border: 1px solid rgba(136, 194, 236, 0.32);
  border-radius: 16px;
  padding: 0.82rem 1rem;
  box-shadow: var(--shadow);
  animation: upDown 6s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  font-size: 1.26rem;
  color: var(--accent);
}

.card-a {
  top: 6%;
  left: 4%;
}

.card-b {
  bottom: 8%;
  right: 5%;
  animation-delay: -2.5s;
}

@keyframes upDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.section {
  min-height: auto;
  display: grid;
  align-content: center;
  padding: 3.2rem 0;
}

.section-header {
  max-width: 850px;
  margin-bottom: 1.2rem;
}

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

.section h2 {
  margin: 0.52rem 0 0.8rem;
  font-size: clamp(1.65rem, 2.7vw, 2.9rem);
}

.section h1 {
  margin: 0.52rem 0 0.8rem;
  font-size: clamp(1.75rem, 3.1vw, 3.2rem);
}

.section p {
  color: var(--text-1);
  line-height: 1.74;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.16rem;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin: 0.2rem 0 0.65rem;
}

.panel p,
.panel li {
  color: var(--text-1);
  line-height: 1.65;
}

.panel ul {
  margin: 0.45rem 0 0;
  padding-left: 1.15rem;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.metric {
  min-width: 175px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.88rem;
}

.metric strong {
  font-size: 1.65rem;
  color: var(--accent);
  display: block;
}

.timeline {
  position: relative;
  border-left: 2px solid rgba(133, 179, 230, 0.34);
  margin-left: 0.3rem;
  padding-left: 1.2rem;
}

.timeline .event {
  position: relative;
  margin: 1rem 0;
  padding: 0.9rem 0.9rem 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(12, 24, 37, 0.66);
  border: 1px solid rgba(120, 176, 219, 0.24);
}

.timeline .event::before {
  content: "";
  position: absolute;
  left: -1.72rem;
  top: 1.02rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
}

.contact-card {
  background: linear-gradient(155deg, rgba(9, 19, 32, 0.94), rgba(13, 31, 46, 0.9));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.64rem 0;
  color: var(--text-1);
}

.contact-item img {
  width: 20px;
  height: 20px;
  margin-top: 0.16rem;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
}

.legal-page {
  padding: 1.6rem 0 2.8rem;
}

.legal-page article {
  background: rgba(8, 16, 28, 0.9);
  border: 1px solid rgba(122, 166, 210, 0.3);
  border-radius: 20px;
  padding: 1.2rem 1.2rem 1rem;
}

.legal-page h1 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.legal-page h2 {
  margin-top: 1.1rem;
  border-top: 1px solid rgba(130, 176, 219, 0.18);
  padding-top: 0.8rem;
}

.legal-page h3 {
  margin-top: 1rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-1);
  line-height: 1.72;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.footer {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(140, 189, 239, 0.24);
  background: rgba(4, 8, 14, 0.82);
}

.footer-inner {
  width: min(1180px, calc(100% - 2.2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 1rem 0;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-1);
  text-decoration: none;
}

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

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

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

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .site-nav {
    gap: 0.12rem;
  }

  .site-nav a {
    font-size: 0.85rem;
    padding: 0.5rem 0.65rem;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    min-height: auto;
    padding: 2.4rem 0;
  }

  .hero-visual {
    min-height: 320px;
  }
}
