* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #04172b;
  color: white;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 17, 31, 0.92);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

body.show-footer .site-footer {
  transform: translateY(0);
  opacity: 1;
}

.footer-text {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(3, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-size: 1rem;
  color: white;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.header-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header-nav a:hover {
  color: white;
  border-color: rgba(254, 156, 237, 0.7);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(254, 156, 237, 0.18), transparent 20%),
    radial-gradient(circle at 76% 18%, rgba(153, 147, 224, 0.20), transparent 24%),
    radial-gradient(circle at 82% 70%, rgba(0, 76, 142, 0.35), transparent 26%),
    radial-gradient(circle at 28% 78%, rgba(254, 156, 237, 0.12), transparent 18%),
    linear-gradient(145deg, #03111f 0%, #06264a 45%, #0a3a6c 100%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(4, 23, 43, 0.6) 60%,
    #04172b 100%
  );
  z-index: 1;
}

.logo-placeholder {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translate3d(-50%, calc(-50% + var(--logo-parallax-offset, 0px)), 0);
  will-change: transform;
  width: 68vw;
  height: 68vw;
  max-width: 820px;
  max-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 3rem;
  color: #04172b;
  z-index: 0;
  opacity: 0.9;
}

.logo-placeholder::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.3) 46%, rgba(0, 0, 0, 0.12) 72%, transparent 100%);
  filter: blur(48px);
  transform: scale(1.12);
  z-index: -1;
  pointer-events: none;
}

.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 0 18px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 44px rgba(0, 0, 0, 0.28));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 96px 0;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(3, 17, 31, 0.22), rgba(255, 255, 255, 0.08), rgba(3, 17, 31, 0.22));
  backdrop-filter: blur(4px);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker-scroll 24s linear infinite;
}

.ticker-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.ticker-track span {
  flex: 0 0 auto;
  padding: 14px 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.ticker-track span::after {
  content: "•";
  margin-left: 28px;
  color: rgba(255, 255, 255, 0.52);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.hero-text {
  background: linear-gradient(135deg, rgba(4, 23, 43, 0.85), rgba(4, 23, 43, 0.6));
  padding: 28px 32px;
  backdrop-filter: blur(6px);
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  font-weight: 700;
}

.accent {
  color: #fe9ced;
  text-shadow: 0 0 18px rgba(254, 156, 237, 0.25);
}

.hero p {
  margin-top: 24px;
  font-size: 1.15rem;
  color: white;
  max-width: 700px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: none;
  color: #fe9ced;
  border-bottom: 2px solid #fe9ced;
}

.btn-secondary {
  background: none;
  color: #9993e0;
  border-bottom: 2px solid #9993e0;
}

.btn:hover {
  transform: translateY(-2px);
}

.card {
  border: none;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #a1a1aa;
  font-weight: 700;
}

section {
  padding: 88px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.section-text {
  margin-top: 24px;
  max-width: 760px;
  color: white;
  font-size: 1.06rem;
}

.section-text + .section-text {
  margin-top: 16px;
}

.color-swatches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.color-swatch {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 92px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.color-swatch-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 14px 28px rgba(0, 0, 0, 0.32);
}

.value-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.value-item {
  border: none;
  background: none;
  border-radius: 0;
  padding: 0;
}

.value-item h3,
.phase-card h3,
.why-box h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.muted-section {
  position: relative;
  border-top: 1px solid rgba(153, 147, 224, 0.16);
  border-bottom: 1px solid rgba(153, 147, 224, 0.16);
  background:
    radial-gradient(circle at 15% 30%, rgba(254, 156, 237, 0.10), transparent 20%),
    radial-gradient(circle at 85% 60%, rgba(153, 147, 224, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(4, 20, 40, 0.92), rgba(5, 27, 52, 0.95));
}

.muted-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    linear-gradient(135deg, transparent 0 12%, rgba(254, 156, 237, 0.18) 12% 13%, transparent 13% 20%, rgba(153, 147, 224, 0.16) 20% 21%, transparent 21% 100%),
    linear-gradient(35deg, transparent 0 18%, rgba(0, 76, 142, 0.30) 18% 19%, transparent 19% 32%, rgba(254, 156, 237, 0.12) 32% 33%, transparent 33% 100%);
  mix-blend-mode: screen;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.phase-card {
  border: none;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.phase-number {
  color: #fe9ced;
  font-weight: 700;
  font-size: 0.95rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
}

.gradient-card {
  background: none;
}

.feature-grid,
.roles-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

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

.why-box,
.role-box,
.next-box {
  border: none;
  background: none;
  border-radius: 0;
  padding: 0;
}

.role-box {
  font-weight: 600;
}

.cta {
  padding-bottom: 96px;
}

.cta-card {
  border: none;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.next-box ul {
  margin-top: 16px;
  padding-left: 18px;
  color: #f4f4f5;
}

.next-box li + li {
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .hero-inner,
  .two-col,
  .split-grid,
  .cta-grid,
  .phase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1200px, calc(100% - 60px));
  }

  .site-footer {
    padding: 16px 0 20px;
  }

  .footer-text {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .header-inner,
  .header-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
  }

  .header-nav {
    gap: 14px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  section,
  .hero-inner,
  .cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .feature-grid,
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .logo-placeholder {
    width: 92vw;
    height: 92vw;
    top: 52%;
    left: 58%;
    font-size: 1.8rem;
  }

  h1 {
    line-height: 1;
  }
}
