:root {
  --bg: #f5efe4;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(23, 30, 36, 0.12);
  --text: #182026;
  --muted: #5f6d78;
  --accent: #0d5c63;
  --accent-strong: #0b3d4f;
  --highlight: #f59d2a;
  --shadow: 0 24px 70px rgba(20, 25, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 157, 42, 0.15), transparent 32%),
    radial-gradient(circle at top right, rgba(13, 92, 99, 0.22), transparent 28%),
    linear-gradient(180deg, #f7f1e7 0%, #efe7d9 100%);
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 22px 56px;
}

.ambient {
  position: absolute;
  inset: auto;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.7;
}

.ambient-left {
  top: 90px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: rgba(245, 157, 42, 0.28);
}

.ambient-right {
  top: 140px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: rgba(13, 92, 99, 0.24);
}

.topbar,
.hero-card,
.signal-card,
.info-card {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-lockup h1,
.brand-lockup p {
  margin: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-pill {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(13, 92, 99, 0.16);
  background: rgba(13, 92, 99, 0.08);
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.95fr;
  gap: 22px;
  margin-top: 24px;
}

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

.hero-card {
  padding: 34px;
}

.hero-kicker,
.section-tag,
.signal-header p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-card h2 {
  margin: 16px 0 18px;
  max-width: 12ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-card h2 span {
  color: var(--accent-strong);
}

.hero-copy {
  max-width: 62ch;
  margin: 0 0 28px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.primary-action {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.detail-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.detail-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.signal-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(245, 157, 42, 0.12), rgba(13, 92, 99, 0.12));
}

.signal-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--highlight);
  box-shadow: 0 0 0 6px rgba(245, 157, 42, 0.14);
}

.signal-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding: 16px 0 16px 22px;
  color: var(--text);
  line-height: 1.55;
  border-bottom: 1px solid rgba(23, 30, 36, 0.08);
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.signal-list li:last-child {
  border-bottom: 0;
}

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

.info-card {
  padding: 28px;
}

.info-card h3 {
  margin: 12px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.38rem;
  letter-spacing: -0.03em;
}

.info-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 8px 4px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

  .hero-card h2 {
    max-width: none;
  }
}

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

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

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

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

  .hero-card h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .detail-strip {
    grid-template-columns: 1fr;
  }
}
