:root {
  color-scheme: light;
  --ink: #18212a;
  --muted: #52616f;
  --paper: #fffaf0;
  --panel: #ffffff;
  --honey: #f2b72e;
  --honey-dark: #b66a12;
  --leaf: #277864;
  --sky: #7aa7c7;
  --rose: #b65b66;
  --line: rgba(24, 33, 42, 0.16);
  --shadow: 0 18px 60px rgba(24, 33, 42, 0.16);
  font-family: "Segoe UI", "Aptos", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(242, 183, 46, 0.14), transparent 34%),
    linear-gradient(315deg, rgba(39, 120, 100, 0.16), transparent 38%),
    var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 40px;
}

.hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

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

.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.55;
}

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

.actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(24, 33, 42, 0.08);
  font-weight: 700;
  text-decoration: none;
}

.actions a:first-child {
  background: var(--ink);
  color: white;
}

.desktop-preview {
  justify-self: center;
  width: min(430px, 100%);
  aspect-ratio: 1.05;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.56)),
    repeating-linear-gradient(60deg, rgba(242, 183, 46, 0.16) 0 10px, transparent 10px 20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  height: 38px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.window-bar span:nth-child(2) {
  background: var(--honey);
}

.window-bar span:nth-child(3) {
  background: var(--leaf);
}

.hive-preview {
  position: relative;
  height: calc(100% - 38px);
  display: grid;
  place-items: center;
}

.hive {
  width: 140px;
  aspect-ratio: 0.9;
  border-radius: 48% 48% 38% 38%;
  background:
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(182, 106, 18, 0.25) 18px 24px),
    linear-gradient(180deg, #ffd86b, #d8891f);
  box-shadow: inset 0 -16px 0 rgba(80, 42, 8, 0.18), 0 18px 42px rgba(182, 106, 18, 0.28);
}

.bee {
  position: absolute;
  width: 34px;
  height: 24px;
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, #f7cf48 0 8px, #1d252d 8px 13px);
  box-shadow: 0 10px 24px rgba(24, 33, 42, 0.16);
}

.bee::before,
.bee::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 18px;
  height: 14px;
  border-radius: 50%;
  background: rgba(122, 167, 199, 0.72);
}

.bee::before {
  left: 4px;
}

.bee::after {
  right: 4px;
}

.bee-one {
  top: 26%;
  left: 18%;
}

.bee-two {
  right: 18%;
  top: 34%;
  transform: rotate(12deg);
}

.bee-three {
  bottom: 28%;
  right: 28%;
  transform: rotate(-10deg);
}

.hive-preview p {
  position: absolute;
  right: 18px;
  bottom: 16px;
  margin: 0;
  color: var(--leaf);
  font-size: 0.85rem;
  font-weight: 800;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.status-strip article,
.content-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.status-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.status-strip strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

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

.content-grid p,
.timeline span {
  color: var(--muted);
  line-height: 1.55;
}

.timeline {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.timeline ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--honey-dark);
  font-weight: 800;
}

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

  .hero {
    min-height: auto;
    padding: 32px 0;
  }

  .desktop-preview {
    justify-self: stretch;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
