:root {
  --bg: #050a1b;
  --bg-deep: #030612;
  --navy: #0b1633;
  --text: #f5f7fb;
  --muted: #b7c2d6;
  --teal: #00d2d4;
  --teal-deep: #00a8b5;
  --purple: #9b5cff;
  --violet: #7a3dff;
  --card: rgba(236, 242, 255, 0.86);
  --card-text: #0b1633;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Montserrat, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 85% 20%, #14204a 0%, transparent 55%),
    radial-gradient(900px 600px at 10% 90%, #1a0f3a 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
}

.glow-a {
  width: 340px;
  height: 340px;
  right: 8%;
  top: 8%;
  background: #1ec8d4;
}

.glow-b {
  width: 420px;
  height: 420px;
  left: -8%;
  bottom: 4%;
  background: #6a2ad8;
}

.glow-c {
  width: 220px;
  height: 220px;
  right: 28%;
  bottom: 18%;
  background: #3a5bff;
  opacity: 0.25;
}

.site-header,
.hero,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 28px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  animation: rise 0.8s var(--ease) both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.brand-mark {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 210, 212, 0.25));
}

.brand-type {
  display: grid;
  line-height: 0.85;
}

.brand-name {
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.brand-bio {
  justify-self: end;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  margin-right: 2px;
}

.eyebrow {
  margin: 0 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 500;
}

.soon {
  justify-self: end;
  border: 1px solid rgba(0, 210, 212, 0.45);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 210, 212, 0.08);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.hero-copy {
  animation: rise 0.9s var(--ease) 0.08s both;
}

.hero-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 11.4em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--teal) 0%, #6aa8ff 42%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 0 28px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 400;
}

.icon-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.icon-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #e8eef8;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #f4f8ff;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.icon svg {
  width: 40px;
  height: 40px;
}

.icon-row li:hover .icon {
  color: var(--teal);
  transform: translateY(-3px);
}

.section-kicker {
  margin: 34px 0 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
}

.icon-row-apps .icon {
  color: #b9f6f7;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  animation: rise 1s var(--ease) 0.16s both;
  transition: transform 0.35s var(--ease);
}

.hero-visual img {
  width: 118%;
  max-width: none;
  margin-left: -6%;
  mask-image: radial-gradient(80% 70% at 55% 48%, #000 55%, transparent 100%);
  animation: float 9s ease-in-out infinite;
}

.quote-card {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: min(320px, 86%);
  padding: 18px 20px 16px;
  border-radius: 16px;
  background: var(--card);
  color: var(--card-text);
  box-shadow: 0 18px 50px rgba(2, 6, 18, 0.35);
  backdrop-filter: blur(16px);
}

.quote-card p {
  margin: 0;
  font-weight: 700;
  font-size: 1.02rem;
}

.quote-emphasis {
  font-size: 1.28rem;
  margin-top: 2px !important;
}

.quote-card hr {
  border: 0;
  height: 1px;
  background: rgba(11, 22, 51, 0.18);
  margin: 10px 0 8px;
}

.quote-close {
  font-weight: 500 !important;
  font-size: 0.92rem !important;
  color: #24324f;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 28px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-kicker {
  margin: 0 0 6px;
  color: #d5def0;
  letter-spacing: 0.04em;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header {
    align-items: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 8px;
  }

  .hero-copy h1 {
    max-width: 16ch;
  }

  .hero-visual {
    min-height: 0;
    order: -1;
  }

  .hero-visual img {
    width: 100%;
    margin: 0;
    mask-image: radial-gradient(90% 80% at 50% 45%, #000 62%, transparent 100%);
  }

  .quote-card {
    right: 8%;
    bottom: 8%;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .icon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -28px;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .brand-mark {
    width: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual img,
  .site-header,
  .hero-copy,
  .hero-visual {
    animation: none;
  }
}
