:root {
  color-scheme: light;
  --bg: #f5f8fc;
  --bg-sky: #e3eef8;
  --surface: #ffffff;
  --text: #1a2838;
  --muted: #5a6d80;
  --aventu: #3d7ab8;
  --aventu-light: #6ba3d4;
  --flow: #48b8a8;
  --flow-soft: #d0f0ea;
  --day: #f0b848;
  --day-soft: #fdf0d0;
  --border: rgba(26, 40, 56, 0.1);
  --shadow: 0 22px 58px rgba(61, 122, 184, 0.14);
  --radius: 20px;
  --font-display: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body:
    "SF Pro Text",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, var(--day-soft), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, var(--flow-soft), transparent 50%),
    linear-gradient(180deg, var(--bg-sky) 0%, var(--bg) 100%);
}

.backdrop__flow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  opacity: 0.4;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0 60 Q300 20 600 60 T1200 60 L1200 120 L0 120 Z' fill='%2348b8a8' fill-opacity='0.15'/%3E%3Cpath d='M0 80 Q300 40 600 80 T1200 80 L1200 120 L0 120 Z' fill='%233d7ab8' fill-opacity='0.1'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat;
}

.page {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.hero {
  margin-bottom: 32px;
  padding: 38px 34px 42px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hero__copy {
  flex: 1;
  min-width: 0;
}

.day-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--day-soft), var(--surface));
  border: 1px solid rgba(240, 184, 72, 0.35);
}

.day-badge__label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.day-badge__icon {
  width: 36px;
  height: 36px;
  margin: 6px 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--day), #e09830);
  box-shadow: 0 4px 16px rgba(240, 184, 72, 0.4);
}

.day-badge__flow {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--flow);
  letter-spacing: 0.08em;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aventu);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-title .aventu {
  color: var(--aventu);
}

.brand-title .day {
  font-weight: 500;
  color: var(--day);
}

.brand-title .flow {
  display: block;
  margin-top: 4px;
  font-size: 0.5em;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--flow);
}

h1 {
  margin: 16px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.lead {
  margin-top: 12px;
  max-width: 50ch;
  font-size: 0.98rem;
  color: var(--muted);
}

.updated {
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--aventu-light);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.highlights li:nth-child(1) {
  border-left: 4px solid var(--aventu);
}

.highlights li:nth-child(2) {
  border-left: 4px solid var(--day);
}

.highlights li:nth-child(3) {
  border-left: 4px solid var(--flow);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--text);
}

.highlights span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card {
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.card:nth-child(even) {
  margin-left: 16px;
  background: linear-gradient(90deg, var(--surface) 0%, var(--flow-soft) 100%);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aventu);
}

.card p {
  margin: 0;
  font-size: 0.91rem;
  color: var(--muted);
}

.card p + p {
  margin-top: 10px;
}

a {
  color: var(--aventu);
  font-weight: 650;
}

a:hover {
  color: var(--flow);
}

.footer {
  margin-top: 34px;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--aventu) 0%, var(--flow) 100%);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 680px) {
  .hero__row {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .day-badge {
    flex-direction: row;
    gap: 12px;
    padding: 12px 16px;
  }

  .lead {
    max-width: none;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .card:nth-child(even) {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 28px 0 56px;
  }

  .hero {
    padding: 28px 22px 32px;
  }
}
