:root {
  --bg-0: #070312;
  --bg-1: #130c2f;
  --bg-2: #1e0f44;
  --neon-pink: #ff3fd7;
  --neon-cyan: #3de8ff;
  --neon-blue: #2f6fff;
  --neon-green: #57ff7b;
  --neon-yellow: #ffe15a;
  --text-main: #f5f7ff;
  --text-soft: #ccd4ff;
  --card-bg: rgba(18, 15, 44, 0.82);
  --card-border: rgba(255, 255, 255, 0.16);
  --maxw: 1080px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 50% -10%, #3f1f7a 0%, transparent 45%),
    linear-gradient(180deg, #0f0830 0%, #080417 40%, #06020f 100%);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: var(--neon-cyan);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 3, 13, 0.88);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 63, 215, 0.35);
}

.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.nav-links a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--neon-pink);
  box-shadow: 0 0 14px rgba(255, 63, 215, 0.45);
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(61, 232, 255, 0.35);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 103, 178, 0.36), transparent 34%),
    linear-gradient(to bottom, rgba(9, 3, 30, 0.55), rgba(8, 2, 20, 0.85));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to top,
      rgba(255, 63, 215, 0.15) 0,
      rgba(255, 63, 215, 0.15) 2px,
      transparent 2px,
      transparent 56px
    );
  mask-image: linear-gradient(to bottom, transparent 45%, #000 92%);
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5.2rem 1rem 4.4rem;
}

.hero-logo {
  width: 150px;
  max-width: 38vw;
  display: block;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 18px rgba(61, 232, 255, 0.35));
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
  font-family: "Impact", "Arial Black", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 0.7rem;
  text-shadow: 0 0 15px rgba(255, 63, 215, 0.5);
}

h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  color: #fff;
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.02rem;
  color: var(--neon-cyan);
}

.lead {
  color: var(--text-soft);
  max-width: 68ch;
}

.hero-home-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.3fr);
  gap: 1.15rem;
  align-items: stretch;
}

.hero-copy {
  border-color: rgba(61, 232, 255, 0.35);
  background:
    linear-gradient(160deg, rgba(16, 14, 52, 0.9), rgba(7, 5, 21, 0.9));
}

.hero-kicker {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--neon-cyan);
  font-size: 0.76rem;
}

.hero-statement {
  margin: 1rem 0 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-image-panel {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(4, 2, 14, 0.88);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.45);
}

.hero-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.home-intro {
  padding-top: 2rem;
}

.section-card {
  border-color: rgba(255, 63, 215, 0.3);
}

.actions-panel {
  border-color: rgba(61, 232, 255, 0.35);
}

.action-list {
  columns: 2;
  column-gap: 2rem;
}

.action-list li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}

.principle-card {
  border-color: rgba(87, 255, 123, 0.35);
}

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.6rem 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 8px 24px rgba(0, 0, 0, 0.25);
}

.card strong {
  color: #fff;
}

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

.list-clean li {
  margin-bottom: 0.35rem;
}

.timeline {
  border-left: 2px solid rgba(61, 232, 255, 0.55);
  padding-left: 1rem;
}

.timeline article {
  margin-bottom: 1.2rem;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.2rem 1rem 2rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.page-title {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1rem 1rem;
}

.quote {
  border-left: 4px solid var(--neon-pink);
  padding-left: 0.9rem;
  color: #fff;
  font-style: italic;
}

.small {
  font-size: 0.92rem;
  color: var(--text-soft);
}

@media (max-width: 760px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-inner {
    padding-top: 3.7rem;
  }

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

  .hero-image-panel img {
    min-height: 240px;
  }

  .action-list {
    columns: 1;
  }
}
