:root {
  --bg: #fcfcff;
  --surface: rgba(255, 255, 255, 0.9);
  --text: #14213d;
  --muted: #5b6475;
  --border: rgba(20, 33, 61, 0.08);
  --accent: #8ec5ff;
  --accent-2: #b8f1d8;
  --accent-3: #ffe2b8;
  --shadow: 0 20px 45px rgba(20, 33, 61, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(142, 197, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fcfcff 100%);
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.85;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-one {
  width: 220px;
  height: 220px;
  top: -50px;
  right: -40px;
  background: rgba(142, 197, 255, 0.2);
}

.orb-two {
  width: 180px;
  height: 180px;
  bottom: 90px;
  left: -40px;
  background: rgba(184, 241, 216, 0.25);
  animation-duration: 14s;
}

.orb-three {
  width: 120px;
  height: 120px;
  top: 35%;
  left: 45%;
  background: rgba(255, 226, 184, 0.25);
  animation-duration: 10s;
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
}

.brand-mark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.status-pill {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  color: var(--muted);
}

.hero {
  max-width: 1150px;
  width: 100%;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.info-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 38px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(142, 197, 255, 0.2), rgba(184, 241, 216, 0.25));
  color: #365379;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 24px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #6fb9ff);
  color: #fff;
  box-shadow: 0 10px 20px rgba(110, 185, 255, 0.24);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.highlights li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  color: #41526a;
  font-size: 0.95rem;
}

.info-card {
  padding: 28px;
}

.card-label {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4f6d86;
}

.info-card h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  line-height: 1.45;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(142, 197, 255, 0.12), rgba(184, 241, 216, 0.14));
  border: 1px solid rgba(20, 33, 61, 0.05);
}

.footer {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 6px 4px 0;
  text-align: center;
  color: var(--muted);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(8px, 18px, 0) scale(1.05);
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    margin: 24px auto;
  }

  .hero-copy,
  .info-card {
    padding: 24px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
