:root {
  color-scheme: dark;
  --ink: #f7f3df;
  --muted: #d7ccb0;
  --line: rgba(255, 255, 255, 0.18);
  --green: #164f3b;
  --yellow: #f6d44a;
  --orange: #f18b2f;
  --deep: #0e1512;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--deep);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.page {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 24px clamp(18px, 4vw, 64px) clamp(44px, 8vw, 96px);
}

.hero-banner,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(4, 9, 7, 0.28), rgba(4, 9, 7, 0.58) 44%, rgba(4, 9, 7, 0.93)),
    radial-gradient(circle at 15% 25%, rgba(246, 212, 74, 0.18), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(241, 139, 47, 0.2), transparent 30%);
}

.topbar {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 13, 10, 0.34);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(246, 212, 74, 0.9);
}

.brand span {
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-actions a:hover {
  color: var(--yellow);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  padding-top: 96px;
}

.duck-logo {
  width: clamp(96px, 17vw, 164px);
  height: clamp(96px, 17vw, 164px);
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--yellow);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.ticker,
.eyebrow {
  margin: 20px 0 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.24;
  font-weight: 650;
}

.story-band,
.status-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 64px);
}

.story-band {
  background: #123d2f;
}

.status-band {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  background: #18130d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-copy,
.status-band > div,
.status-band > p {
  max-width: 720px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1;
  letter-spacing: 0;
}

.story-copy p:last-child,
.status-band p {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.quote-panel {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 212, 74, 0.16), rgba(241, 139, 47, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.quote-panel p {
  margin: 0;
  font-size: clamp(23px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 850;
}

@media (max-width: 760px) {
  .hero {
    min-height: 88vh;
  }

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

  .nav-actions {
    padding-top: 12px;
  }

  .story-band,
  .status-band {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    min-height: 220px;
  }
}
