:root {
  --black: #071831;
  --navy: #071831;
  --navy-2: #0b1f3d;
  --ink: #f8f7f2;
  --gold: #d29a36;
  --gold-2: #f1c56d;
  --paper: #f6f4ee;
  --line-dark: rgba(8, 11, 14, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #071831;
  background: var(--paper);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 18% 0%, rgba(210, 154, 54, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(18, 49, 93, 0.98), rgba(7, 24, 49, 0.98) 62%);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  display: block;
  width: min(210px, 48vw);
  height: auto;
}

.back-link,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(210, 154, 54, 0.72);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button-link {
  color: #071831;
  background: transparent;
}

.hero {
  padding: clamp(70px, 8vw, 116px) 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 14%, rgba(210, 154, 54, 0.2), transparent 34%),
    linear-gradient(135deg, #12315d, #071831 58%),
    var(--navy);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.eyebrow {
  font-weight: 700;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #e8edf2;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.section {
  padding: clamp(44px, 7vw, 88px) 0;
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.win-card,
.content-card {
  min-height: 240px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    #fff;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 54px rgba(16, 18, 20, 0.07);
}

.win-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.win-card.featured {
  color: var(--navy);
  background:
    linear-gradient(135deg, #f1c56d, #d29a36),
    var(--gold);
}

.win-card.highlight {
  color: var(--navy);
  background:
    linear-gradient(135deg, #f1c56d, #d29a36),
    var(--gold);
}

.win-card.reminder {
  grid-column: 1 / -1;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(241, 197, 109, 0.28), rgba(255, 255, 255, 0.9)),
    #fff;
}

.wellness-tile {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wellness-tile:hover,
.wellness-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(210, 154, 54, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 64px rgba(16, 18, 20, 0.12);
}

.tile-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(210, 154, 54, 0.35);
  border-radius: 18px;
  background: rgba(210, 154, 54, 0.1);
  color: var(--gold);
}

.featured .tile-icon {
  border-color: rgba(7, 24, 49, 0.28);
  background: rgba(255, 255, 255, 0.18);
  color: var(--navy);
}

.highlight .tile-icon {
  border-color: rgba(7, 24, 49, 0.28);
  background: rgba(255, 255, 255, 0.18);
  color: var(--navy);
}

.tile-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.win-card h2,
.content-card h2 {
  margin-bottom: 16px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.16;
}

.win-card p,
.content-card p,
.content-card li {
  color: #4f575e;
  font-size: 16px;
  line-height: 1.7;
}

.win-card p,
.content-card p {
  margin-bottom: 0;
}

.content-card p + p {
  margin-top: 12px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 18px;
}

.resource-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.resource-pill {
  padding: 12px 14px;
  border: 1px solid rgba(16, 18, 20, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  color: #4f575e;
  font-size: 15px;
  line-height: 1.45;
}

.resource-pill strong {
  display: block;
  margin-bottom: 3px;
  color: #071831;
}

.video-frame {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 20, 0.12);
  border-radius: 18px;
  background: var(--navy);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.support-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 18, 20, 0.11);
}

.support-section h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.support-section ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

.urgent-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(210, 154, 54, 0.32);
  border-radius: 16px;
  background: rgba(210, 154, 54, 0.08);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(210, 154, 54, 0.68);
  color: #dce2e7;
  background:
    radial-gradient(circle at 78% 42%, rgba(210, 154, 54, 0.18), transparent 32%),
    linear-gradient(135deg, #12315d 0%, #071831 58%),
    var(--navy);
}

@media (max-width: 860px) {
  .shell {
    width: calc(100% - 28px);
  }

  .nav {
    min-height: 130px;
    flex-direction: column;
    justify-content: center;
  }

  .wins-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .win-card,
  .content-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .shell {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: 27px;
    line-height: 1.08;
  }

  .hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .win-card,
  .content-card {
    padding: 20px 22px;
    border-radius: 20px;
  }

  .win-card h2,
  .content-card h2 {
    font-size: 25px;
    line-height: 1.12;
  }

  .win-card p,
  .content-card p,
  .content-card li {
    font-size: 15px;
  }

  .resource-pill {
    font-size: 14px;
  }

  .card-actions {
    display: grid;
  }

  .button-link {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    white-space: normal;
    text-align: center;
  }
}
