:root {
  --bg: #071425;
  --bg-soft: #0c2139;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(8, 26, 45, 0.1);
  --text: #0c1d33;
  --muted: #65778c;
  --text-inverse: #f4f8fc;
  --blue: #1676c5;
  --blue-strong: #0f4f85;
  --blue-soft: #eef5fb;
  --cyan: #70d7ff;
  --shadow: 0 28px 70px rgba(3, 16, 31, 0.24);
  --radius: 26px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(22, 118, 197, 0.24), transparent 28rem),
    radial-gradient(circle at top right, rgba(112, 215, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, #06111f 0%, #0a1a2d 24%, #eff5fa 24%, #f6f9fc 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(4, 14, 27, 0.88), rgba(7, 20, 37, 0.72)),
    url("./assets/hero-nexya-human.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(112, 215, 255, 0.14), transparent 16rem),
    radial-gradient(circle at 14% 22%, rgba(22, 118, 197, 0.22), transparent 18rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 46vh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 38px 0 18px;
}

.brand-logo {
  height: 46px;
  width: auto;
  margin-bottom: 28px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(0, 10, 22, 0.18);
}

.eyebrow {
  display: inline-block;
  color: #9edaff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 13ch;
  margin: 12px 0 14px;
  color: var(--text-inverse);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.05rem, 4.4vw, 3.8rem);
  line-height: 1.04;
}

.hero-copy p {
  max-width: 670px;
  margin: 0;
  color: rgba(244, 248, 252, 0.84);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-pills span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d8ebfb;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #d8ecfa;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.42rem;
  line-height: 1.2;
}

.hero-panel p {
  margin: 12px 0 0;
  color: rgba(244, 248, 252, 0.82);
  line-height: 1.7;
}

.hero-shortcuts {
  position: relative;
  z-index: 1;
  margin-top: -8px;
  padding-bottom: 34px;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.shortcut-card {
  position: relative;
  min-height: 182px;
  display: grid;
  gap: 12px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 24px 54px rgba(12, 29, 51, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  overflow: hidden;
}

.shortcut-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(22, 118, 197, 0.1), transparent 38%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.shortcut-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(22, 118, 197, 0.16);
  box-shadow: 0 30px 70px rgba(12, 29, 51, 0.14);
}

.shortcut-card:hover::before {
  opacity: 1;
}

.shortcut-card.spotlight {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top right, rgba(112, 215, 255, 0.14), transparent 13rem),
    linear-gradient(145deg, #0f3d66, #0a2340 58%, #081729);
  border-color: rgba(255, 255, 255, 0.08);
}

.shortcut-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  font-weight: 900;
  letter-spacing: 0.04em;
}

.shortcut-card.spotlight .shortcut-icon {
  background: linear-gradient(135deg, #2ba4f7, #1676c5);
}

.shortcut-label {
  display: block;
  color: var(--blue-strong);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shortcut-card.spotlight .shortcut-label {
  color: #9edaff;
}

.shortcut-copy h3 {
  margin: 8px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.2;
}

.shortcut-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.shortcut-card.spotlight .shortcut-copy p {
  color: rgba(244, 248, 252, 0.82);
}

.shortcut-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue-strong);
  background: var(--blue-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.shortcut-card.spotlight .shortcut-action {
  color: #07213b;
  background: #fff;
}

@media (max-width: 940px) {
  .hero-content,
  .shortcut-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-shortcuts {
    margin-top: 18px;
  }
}

@media (max-width: 720px) {
  .hero-content {
    min-height: auto;
    padding: 30px 0 12px;
  }

  .brand-logo {
    height: 40px;
    margin-bottom: 22px;
  }

  .hero-copy p,
  .shortcut-copy p {
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .shortcut-card,
  .hero-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .shortcut-card {
    min-height: 190px;
  }
}
