@font-face {
  font-family: "Manrope";
  src: url("/assets/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
}

:root {
  --midnight: #0d1b2a;
  --steam: #e53935;
  --handle: #43a047;
  --cup: #1e88e5;
  --gold: #ffc107;
  --mist: #eef3f8;
  --ink: #162233;
  --line: rgba(13, 27, 42, 0.12);
  --card: rgba(255, 255, 255, 0.76);
  --shadow: 0 30px 80px rgba(13, 27, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(30, 136, 229, 0.14), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(67, 160, 71, 0.18), transparent 24%),
    linear-gradient(160deg, #f9fbfd 0%, #edf3f8 50%, #fefefe 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 32px 24px 48px;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.55;
  pointer-events: none;
}

.ambient-left {
  top: 110px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.16), transparent 70%);
}

.ambient-right {
  right: -70px;
  bottom: 90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.18), transparent 72%);
}

.topbar,
.hero-grid,
.content-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.brandmark {
  width: min(240px, 52vw);
  height: auto;
}

.eyebrow,
.label,
.card-kicker,
.status-pill {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(13, 27, 42, 0.62);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card,
.signal-panel,
.info-card {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 44px;
  border-radius: 32px;
}

.label {
  margin: 0 0 18px;
  color: var(--steam);
  font-weight: 800;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.45rem, 5.25vw, 4.65rem);
  line-height: 0.98;
  color: var(--midnight);
}

.lede {
  margin: 24px 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(22, 34, 51, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.primary-link,
.status-pill {
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-link {
  background: var(--midnight);
  color: #fff;
}

.status-pill {
  border: 1px solid rgba(13, 27, 42, 0.12);
  color: rgba(13, 27, 42, 0.7);
  background: rgba(255, 255, 255, 0.9);
}

.signal-panel {
  position: relative;
  isolation: isolate;
  border-radius: 32px;
  min-height: 420px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(239, 245, 250, 0.92)),
    linear-gradient(135deg, rgba(30, 136, 229, 0.09), rgba(67, 160, 71, 0.08));
}

.signal-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.signal-caption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 27, 42, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(13, 27, 42, 0.12);
  text-align: right;
}

.signal-caption span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.56);
}

.signal-caption strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.15;
  color: var(--midnight);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.info-card {
  border-radius: 24px;
  padding: 28px 24px;
}

.card-kicker {
  margin: 0 0 12px;
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 800;
}

.info-card p:last-child {
  margin: 0;
  line-height: 1.7;
  color: rgba(22, 34, 51, 0.8);
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .signal-panel {
    min-height: auto;
  }

  .signal-panel {
    min-height: 360px;
    padding: 14px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 20px 16px 32px;
  }

  .hero-card,
  .signal-panel,
  .info-card {
    border-radius: 24px;
  }

  .hero-card {
    padding: 28px 22px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .signal-caption {
    right: 18px;
    bottom: 18px;
    padding: 12px 14px;
  }

  .signal-caption strong {
    font-size: 1.08rem;
  }
}
