:root {
  --ink: #13213d;
  --muted: #56657f;
  --paper: #f5f7fb;
  --panel: rgba(255, 255, 255, 0.84);
  --line: rgba(19, 33, 61, 0.09);
  --cold: #173981;
  --mid: #2f76c0;
  --warm: #f2994a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(38, 111, 190, 0.16), transparent 32%),
    linear-gradient(135deg, #eef4fb 0%, #f7f3ec 100%);
}

a {
  color: #1d5fbf;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}

.page.narrow {
  max-width: 820px;
}

.hero {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cold) 0%, var(--mid) 52%, var(--warm) 100%);
  color: white;
  box-shadow: 0 24px 60px rgba(19, 33, 61, 0.16);
}

.hero.compact {
  padding: 24px;
}

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

.brand-mark {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hourglass {
  width: 26px;
  height: 36px;
  position: relative;
}

.hourglass::before,
.hourglass::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-left: 4px solid rgba(255, 255, 255, 0.95);
  border-right: 4px solid rgba(255, 255, 255, 0.95);
}

.hourglass::before {
  top: 0;
  height: 16px;
  clip-path: polygon(0 0, 100% 0, 62% 100%, 38% 100%);
  background: rgba(255, 231, 183, 0.95);
}

.hourglass::after {
  bottom: 0;
  height: 16px;
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  background: rgba(255, 200, 121, 0.98);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  opacity: 0.8;
}

h1, h2 {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.lede {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: white;
  color: var(--cold);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.card-grid,
.info {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.info-card {
  padding: 20px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.card p,
.info-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 640px) {
  .page {
    padding: 20px 14px 36px;
  }

  .hero {
    padding: 22px;
    border-radius: 18px;
  }

  .brand {
    align-items: flex-start;
  }
}
