:root {
  /* Core */
  --blue: #4285f4;
  --green: #34a853;
  --yellow: #f9ab00;
  --red: #ea4335;

  /* Halftones */
  --blue-half: #57caff;
  --green-half: #5cdb6d;
  --yellow-half: #ffd427;
  --red-half: #ff7daf;

  /* Pastels */
  --blue-pastel: #c3ecf6;
  --green-pastel: #ccf6c5;
  --yellow-pastel: #ffe7a5;
  --red-pastel: #f8d8d8;

  /* Grayscale */
  --off-white: #f0f0f0;
  --black-02: #1e1e1e;
  --surface: #262626;
  --border: #3a3a3a;
  --text-muted: #a3a3a3;

  --font-sans: "Google Sans", "Product Sans", Roboto, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono: "Google Sans Code", "Google Sans Mono", "Roboto Mono",
    ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--black-02);
  color: var(--off-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.shell {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 0;
}

img,
svg {
  display: block;
}

/* ---------- decorative brand shapes ---------- */

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

.deco--globe {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -60px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.2;
  opacity: 0.22;
}

.deco--asterisk {
  width: 90px;
  height: 90px;
  bottom: 12%;
  left: 4%;
  stroke: var(--yellow);
  stroke-width: 2;
  opacity: 0.3;
}

.deco--arc {
  width: 160px;
  height: 320px;
  top: 30%;
  right: -40px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.4;
  opacity: 0.18;
}

/* ---------- header ---------- */

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.logo {
  width: min(300px, 60vw);
  height: auto;
}

/* ---------- layout ---------- */

.page {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--blue-half);
}

.headline {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.15;
  color: var(--off-white);
}

/* ---------- coming soon card ---------- */

.coming-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--yellow);
  border-radius: 28px;
  padding: 32px 32px 56px;
  text-align: left;
  overflow: hidden;
}

.coming-card__icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.coming-card__icons .bars {
  width: 30px;
  height: 24px;
  fill: none;
  stroke: var(--black-02);
  stroke-width: 6;
}

.coming-card__icons .chevrons {
  width: 38px;
  height: 20px;
  fill: none;
  stroke: var(--black-02);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

.coming-card__label {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(30, 30, 30, 0.7);
}

.coming-card__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--black-02);
}

.coming-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 52px;
  height: 36px;
  fill: none;
  stroke: var(--black-02);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- recruitment pill ---------- */

.recruit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--off-white);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.recruit-pill:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.recruit-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(52, 168, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 168, 83, 0);
  }
}

/* ---------- super core ---------- */

.super-core {
  width: 100%;
}

.super-core__title {
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.super-core__title span {
  color: var(--off-white);
}

.super-core__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.super-core__list li:first-child {
  grid-column: 1 / -1;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--black-02);
}

.card--blue {
  background: var(--blue-pastel);
}

.card--yellow {
  background: var(--yellow-pastel);
}

.card--green {
  background: var(--green-pastel);
}

.card--red {
  background: var(--red-pastel);
}

.card .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
}

.card .name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.02rem;
}

/* ---------- footer ---------- */

.contact {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 24px 48px;
}

.contact__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact__pill svg {
  width: 16px;
  height: 16px;
}

.contact__pill:hover {
  color: var(--off-white);
  border-color: var(--blue);
}

@media (max-width: 480px) {
  .super-core__list {
    grid-template-columns: 1fr;
  }

  .super-core__list li:first-child {
    grid-column: auto;
  }

  .coming-card {
    padding: 26px 22px 48px;
  }
}
