:root {
  --bg: #eaf6ff;
  --bg-soft: #cfe9ff;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(57, 138, 214, 0.24);
  --text: #0f2b45;
  --muted: #365a78;
  --accent: #0b9cff;
  --accent-2: #0cc979;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
  background: radial-gradient(circle at 14% 12%, #ffffff 0%, transparent 34%),
    radial-gradient(circle at 84% 18%, #b9ebff 0%, transparent 38%),
    linear-gradient(165deg, #f4fbff 0%, #e1f2ff 42%, #d4ebff 100%);
  position: relative;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(rgba(11, 92, 170, 0.25) 0.4px, transparent 0.4px);
  background-size: 4px 4px;
}

.topbar,
main,
footer {
  width: min(1080px, calc(100vw - 2.2rem));
  margin-inline: auto;
}

.topbar {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(15, 90, 150, 0.2);
  filter: brightness(1.28) contrast(1.12) saturate(1.18);
}

.domain {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

main {
  padding: 2.4rem 0 2rem;
}

.hero {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.hero-copy,
.hero-image-wrap,
.pillars article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 45px rgba(26, 111, 189, 0.12);
}

.hero-copy {
  padding: 2rem;
}

.eyebrow {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

h1 {
  margin: 0.8rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
}

.subhead {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.coming-soon {
  margin: 1.4rem 0 0;
  display: inline-block;
  border: 1px solid rgba(11, 156, 255, 0.38);
  color: var(--accent);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-image-wrap {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(138, 234, 255, 0.12) 46%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: brightness(1.3) contrast(1.08) saturate(1.18);
}

.pillars {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.pillars article {
  padding: 1.1rem 1rem;
}

.pillars h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.pillars p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  padding: 1rem 0 1.8rem;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

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