@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;600&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --bg: #0f151a;
  --bg-2: #121b21;
  --ink: #e9f1f4;
  --muted: #9bb0ba;
  --accent: #ffb347;
  --accent-2: #56d1ff;
  --card: rgba(17, 25, 30, 0.72);
  --stroke: rgba(233, 241, 244, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1100px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at top, #1b2a33, var(--bg));
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

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

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.65;
  mix-blend-mode: screen;
  animation: float 14s ease-in-out infinite;
}

.blob-a {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, var(--accent-2), transparent 60%);
}

.blob-b {
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%);
  animation-delay: -4s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.3;
}

.page {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  gap: 36px;
}

.hero {
  display: grid;
  gap: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--accent-2);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--ink);
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

button {
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

button.primary {
  background: linear-gradient(120deg, var(--accent), #ffd08a);
  color: #1a1a1a;
  border-color: transparent;
}

button.ghost {
  backdrop-filter: blur(8px);
}

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

.card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  animation: rise 0.8s ease both;
}

.card:nth-child(2) {
  animation-delay: 0.1s;
}

.card:nth-child(3) {
  animation-delay: 0.2s;
}

.strip {
  background: linear-gradient(120deg, rgba(255, 179, 71, 0.14), rgba(86, 209, 255, 0.08));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px;
}

.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -20px);
  }
}

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

@media (max-width: 720px) {
  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
