
:root {
  --background: #03071a;
  --background-soft: #07112d;
  --text: #f7f9ff;
  --muted: #aeb9d7;
  --line: rgba(120, 165, 255, .18);
  --blue: #1261ff;
  --cyan: #54ddff;
  --card: rgba(10, 25, 62, .56);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 10%, rgba(15, 74, 197, .18), transparent 36rem),
    linear-gradient(180deg, #04091c 0%, #030718 62%, #020512 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.grid {
  position: absolute;
  inset: -40%;
  opacity: .14;
  transform: perspective(700px) rotateX(72deg) translateY(25%);
  background-image:
    linear-gradient(rgba(73, 139, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 139, 255, .16) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 10%, black 65%, transparent);
}

.glow, .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.glow-one {
  width: 34rem;
  height: 34rem;
  left: -18rem;
  top: 30%;
  background: rgba(20, 97, 255, .17);
}

.glow-two {
  width: 28rem;
  height: 28rem;
  right: -14rem;
  top: 10%;
  background: rgba(71, 220, 255, .11);
}

.orb {
  width: 4px;
  height: 4px;
  filter: none;
  background: var(--cyan);
  box-shadow:
    10vw 18vh 0 rgba(84, 221, 255, .45),
    27vw 45vh 0 rgba(84, 221, 255, .35),
    62vw 24vh 0 rgba(18, 97, 255, .45),
    82vw 58vh 0 rgba(84, 221, 255, .28),
    93vw 17vh 0 rgba(18, 97, 255, .35),
    48vw 79vh 0 rgba(84, 221, 255, .25);
  animation: drift 16s ease-in-out infinite alternate;
}

.site-header,
main,
footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: .94rem;
  font-weight: 760;
  letter-spacing: .18em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .91rem;
  transition: color .2s ease;
}

nav a:hover { color: white; }

.section {
  padding: 110px 0;
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-logo-wrap {
  width: 176px;
  height: 176px;
  margin-bottom: 26px;
  position: relative;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 32%;
  background: rgba(25, 112, 255, .35);
  filter: blur(45px);
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  position: relative;
  box-shadow: 0 24px 70px rgba(12, 80, 255, .22);
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--cyan);
  letter-spacing: .3em;
  font-size: .75rem;
  font-weight: 700;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 930px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-copy,
.content-section > p,
.contact > p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

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

.primary {
  color: white;
  background: linear-gradient(100deg, var(--blue), #268eff 55%, var(--cyan));
  box-shadow: 0 12px 38px rgba(30, 105, 255, .3);
}

.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, .035);
}

.secondary:hover { border-color: rgba(84, 221, 255, .52); }

.content-section {
  border-top: 1px solid var(--line);
}

h2 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.values {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(150deg, var(--card), rgba(4, 12, 35, .26));
  backdrop-filter: blur(14px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(84, 221, 255, .44);
  background: linear-gradient(150deg, rgba(15, 44, 102, .65), rgba(5, 14, 39, .45));
}

.card-number {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .74rem;
}

.card h3 {
  margin: 68px 0 14px;
  font-size: 1.28rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.statement {
  border-block: 1px solid var(--line);
  text-align: center;
}

blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 750;
}

.contact {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

footer {
  min-height: 130px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .88rem;
}

footer div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

footer strong {
  color: white;
  letter-spacing: .18em;
}

footer p { margin: 0; }

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

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

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(18px, -15px); }
}

@media (max-width: 900px) {
  .values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { height: 76px; }
  nav { display: none; }
  .section { padding: 82px 0; }
  .hero { min-height: calc(100vh - 76px); }
  .hero-logo-wrap { width: 136px; height: 136px; }
  .values { grid-template-columns: 1fr; }
  .card { min-height: 220px; }
  .card h3 { margin-top: 48px; }
  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
