:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5e6d66;
  --paper: #f7f3ea;
  --panel: #fffaf0;
  --line: #d8cdbb;
  --moss: #2d6b57;
  --coral: #cc4f3c;
  --gold: #d5a833;
  --cyan: #2d8493;
  --shadow: 0 24px 70px rgba(42, 44, 36, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(213, 168, 51, 0.24), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(45, 132, 147, 0.18), transparent 22rem),
    linear-gradient(120deg, #f7f3ea 0%, #f2eadb 48%, #edf4ef 100%);
}

a {
  color: inherit;
}

.site-header,
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
}

nav,
footer {
  font-size: 0.95rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

nav a,
footer a {
  text-underline-offset: 4px;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: center;
  padding: 38px 0 72px;
}

.eyebrow {
  color: var(--moss);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin: 12px 0 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  max-width: 850px;
}

h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.45);
}

.brief-visual {
  position: relative;
  min-height: 610px;
}

.paper-card,
.video-frame {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow);
}

.paper-card {
  width: 260px;
  padding: 20px;
  z-index: 2;
}

.paper-card span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.paper-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.35rem;
}

.paper-card.one {
  top: 20px;
  left: 0;
  transform: rotate(-4deg);
}

.paper-card.two {
  right: 0;
  bottom: 38px;
  transform: rotate(4deg);
}

.video-frame {
  inset: 110px 54px 105px 70px;
  z-index: 1;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(23, 33, 29, 0.88), rgba(45, 107, 87, 0.82)),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(255, 255, 255, 0.12) 47px 49px);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.caption-bar {
  position: relative;
  width: calc(100% - 42px);
  margin-bottom: 28px;
  padding: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  text-align: center;
  font-weight: 800;
}

.pulse-dot {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 10px rgba(204, 79, 60, 0.22);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 40px 0 90px;
}

.section-grid article,
.policy-band,
.legal {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 48px rgba(42, 44, 36, 0.08);
}

.section-grid article {
  padding: 26px;
}

.step {
  color: var(--coral);
  font-weight: 900;
}

.policy-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 30px;
  align-items: center;
  padding: 34px;
  margin-bottom: 80px;
}

.policy-links {
  display: grid;
  gap: 12px;
}

.policy-links a {
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.legal {
  max-width: 880px;
  padding: clamp(28px, 5vw, 58px);
  margin: 42px auto 80px;
}

.legal h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.legal h2 {
  margin-top: 34px;
  font-size: 2rem;
}

footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

footer span {
  font-weight: 900;
}

@media (max-width: 820px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .section-grid,
  .policy-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 24px;
  }

  .brief-visual {
    min-height: 520px;
  }

  .video-frame {
    inset: 95px 22px 105px;
  }

  .paper-card.two {
    right: 8px;
  }
}
