:root {
  --ink: #171715;
  --ink-soft: #2a2926;
  --paper: #f4eddc;
  --paper-bright: #fffaf0;
  --coral: #ef5b49;
  --blue: #4b91c7;
  --yellow: #f3bd38;
  --purple: #8786de;
  --line: rgba(23, 23, 21, 0.18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(135, 134, 222, 0.22), transparent 25rem),
    radial-gradient(circle at 8% 34%, rgba(239, 91, 73, 0.13), transparent 26rem),
    var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", Avenir, system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: var(--coral);
}

a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-header,
main,
footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 132px;
  height: auto;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 0.93rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--coral);
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(40px, 8vw, 108px);
  align-items: center;
  padding: 72px 0 88px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 850;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(239, 91, 73, 0.14);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 7.2vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: #4d4a43;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 24px;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 6px 0 rgba(23, 23, 21, 0.14);
}

.apple {
  color: var(--yellow);
  font-size: 0.7rem;
}

.text-link {
  font-size: 0.94rem;
  font-weight: 750;
}

.hero-art {
  position: relative;
  isolation: isolate;
}

.hero-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25%;
  transform: rotate(2deg);
  box-shadow: 0 26px 70px rgba(23, 23, 21, 0.22);
}

.icon-glow {
  position: absolute;
  inset: 8% -8% -5% 4%;
  z-index: -1;
  border-radius: 48%;
  background: var(--yellow);
  transform: rotate(-7deg);
  opacity: 0.72;
}

.paper-note {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  line-height: 1;
}

.note-one {
  left: -8%;
  top: 12%;
  color: #b83c2d;
  transform: rotate(-8deg);
}

.note-two {
  right: -5%;
  bottom: 10%;
  color: #315f8d;
  transform: rotate(6deg);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.features article {
  min-height: 245px;
  padding: 34px;
}

.features article + article {
  border-left: 1px solid var(--line);
}

.feature-number {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.features h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.features p {
  margin-bottom: 0;
  color: #565149;
}

.story {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 60px;
  padding: 120px 0;
}

.story-label {
  align-self: start;
  width: fit-content;
  padding: 8px 12px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
  transform: rotate(-2deg);
}

.story h2,
.last-call h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.story p {
  max-width: 760px;
  margin-bottom: 0;
  color: #4d4a43;
  font-size: 1.15rem;
}

.last-call {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  padding: 54px 64px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 28px;
  overflow: hidden;
}

.last-call img {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(-3deg);
}

.last-call h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.last-call p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 1.1rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
}

footer p {
  margin: 0;
}

footer div {
  display: flex;
  gap: 24px;
}

.policy-shell {
  max-width: 920px;
}

.policy-intro {
  padding: 96px 0 70px;
  border-bottom: 2px solid var(--ink);
}

.policy-intro h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.policy-intro .lede {
  max-width: 760px;
}

.updated {
  margin-bottom: 0;
  color: #625e55;
  font-size: 0.88rem;
  font-weight: 800;
}

.policy-content {
  padding: 28px 0 100px;
}

.policy-content section {
  display: grid;
  grid-template-columns: 235px 1fr;
  column-gap: 55px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.policy-content p {
  grid-column: 2;
  margin-bottom: 14px;
  color: #4d4a43;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-art {
    width: min(82%, 520px);
    margin: 10px auto 20px;
  }

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

  .features article {
    min-height: 0;
  }

  .features article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 90px 0;
  }

  .last-call {
    grid-template-columns: 150px 1fr;
    gap: 36px;
    padding: 42px;
  }

  .policy-content section {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .policy-content p {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 104px;
  }

  nav {
    gap: 16px;
    font-size: 0.84rem;
  }

  .hero {
    gap: 48px;
    padding: 54px 0 72px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art {
    width: 88%;
  }

  .note-two {
    right: -8%;
  }

  .features article {
    padding: 30px 12px;
  }

  .feature-number {
    margin-bottom: 18px;
  }

  .story {
    padding: 76px 0;
  }

  .last-call {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 28px;
    margin-bottom: 70px;
  }

  .last-call img {
    width: 145px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-intro {
    padding: 70px 0 50px;
  }

  .policy-content {
    padding-bottom: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
