:root {
  --paper: #f6f0e5;
  --paper-bright: #fffaf0;
  --ink: #0b0b0b;
  --ink-soft: #4f4a43;
  --line: rgba(11, 11, 11, 0.22);
  --line-soft: rgba(11, 11, 11, 0.12);
  --coral: #ff5b4d;
  --blue: #1764dc;
  --sage: #c9dbb0;
  --lilac: #b7a3dc;
  --yellow: #ffca45;
  --salmon: #e77b5e;
  --shadow: 0 22px 0 rgba(11, 11, 11, 0.12);
  --display: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper-bright);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer,
.hero,
.section,
.page-hero,
.page-body {
  width: 100%;
}

.site-header__inner,
.site-footer__inner,
.hero__inner,
.section__inner,
.page-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  padding: 24px 0 18px;
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.brand__name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand__name span {
  display: block;
}

.brand__byline {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-bright);
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper-bright);
}

.hero {
  padding: 60px 0 108px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  align-items: start;
  gap: clamp(54px, 9vw, 118px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 7px;
  margin-right: 10px;
  background: var(--coral);
  vertical-align: 1px;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -0.07em;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(64px, 8.6vw, 126px);
  line-height: 0.88;
}

.hero h1 span {
  display: inline-block;
  border-bottom: 10px solid var(--coral);
}

.hero__lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.46;
}

.hero__actions,
.mail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  text-decoration: none;
  font-weight: 820;
  box-shadow: 0 6px 0 var(--ink);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.button:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--ink);
}

.button--primary {
  background: var(--ink);
  color: var(--paper-bright);
}

.button--secondary {
  background: var(--paper-bright);
  color: var(--ink);
}

.hero__note {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
}

.hero__visual {
  position: relative;
  min-height: 660px;
}

.screen {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 38px;
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.screen--today {
  position: relative;
  z-index: 3;
  width: min(100%, 375px);
  margin-left: auto;
}

.screen--progress {
  position: absolute;
  z-index: 1;
  top: 112px;
  left: -94px;
  width: 300px;
  transform: rotate(-4deg);
}

.section {
  padding: 96px 0;
  border-top: 1.5px solid var(--ink);
}

.section--dark {
  background: var(--ink);
  color: var(--paper-bright);
}

.section-title {
  max-width: 850px;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 0.96;
}

.section-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.section--dark .section-lede {
  color: rgba(255, 250, 240, 0.72);
}

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

.feature {
  min-height: 250px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 0 8px 0 var(--ink);
}

.feature:nth-child(1) { background: var(--blue); color: white; }
.feature:nth-child(2) { background: var(--sage); }
.feature:nth-child(3) { background: var(--lilac); }
.feature:nth-child(4) { background: var(--coral); }
.feature:nth-child(5) { background: var(--yellow); }
.feature:nth-child(6) { background: var(--salmon); }

.feature__number {
  display: block;
  margin-bottom: 42px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.feature h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
}

.feature p {
  margin: 14px 0 0;
  font-weight: 650;
  line-height: 1.45;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
  margin-top: 48px;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 30px;
  box-shadow: 0 10px 0 rgba(11, 11, 11, 0.16);
}

.gallery figcaption {
  padding: 16px 4px 0;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 46px;
}

.privacy-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.privacy-points p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
}

.page-hero {
  padding: 70px 0 54px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  align-items: end;
  gap: 60px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
}

.page-hero__lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.page-hero__aside {
  margin: 0;
  padding: 18px 0 0;
  border-top: 7px solid var(--coral);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-body {
  padding: 30px 0 100px;
  border-top: 1.5px solid var(--ink);
}

.page-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  align-items: start;
  gap: clamp(42px, 8vw, 110px);
}

.page-toc {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

.page-toc strong {
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-toc a {
  color: var(--ink-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.prose {
  min-width: 0;
}

.prose section {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 20px;
}

.prose section:first-child {
  padding-top: 16px;
}

.prose h2,
.support-card h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.prose h3 {
  margin: 30px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose p {
  margin: 12px 0;
}

.prose li + li {
  margin-top: 8px;
}

.prose strong {
  color: var(--ink);
}

.updated-note {
  font-size: 14px;
  font-weight: 760;
}

.support-card {
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 26px;
  background: var(--yellow);
  box-shadow: 0 8px 0 var(--ink);
}

.support-address {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 950;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  background: var(--paper-bright);
}

.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 820;
}

.faq details > :not(summary) {
  margin-right: 20px;
  margin-left: 20px;
}

.faq details > :last-child {
  margin-bottom: 20px;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1.5px solid var(--ink);
}

.footer-brand {
  font-size: 14px;
  font-weight: 750;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    width: min(100%, 590px);
    min-height: 640px;
    margin-inline: auto;
  }

  .screen--today {
    margin-inline: auto 0;
  }

  .screen--progress {
    left: 0;
  }

  .feature-grid,
  .privacy-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
    border: 1.5px solid var(--ink);
    border-radius: 18px;
  }

  .page-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header__inner,
  .site-footer__inner,
  .hero__inner,
  .section__inner,
  .page-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    align-items: center;
    gap: 10px;
  }

  .brand {
    flex: 0 0 auto;
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .brand__name {
    font-size: 17px;
  }

  .brand__byline {
    display: none;
  }

  .site-nav {
    min-width: 0;
    max-width: none;
    flex: 0 1 auto;
    gap: 2px;
    overflow: visible;
  }

  .site-nav a {
    padding: 7px 8px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    padding: 44px 0 78px;
  }

  .hero h1 {
    font-size: clamp(58px, 20vw, 86px);
  }

  .hero h1 span {
    border-bottom-width: 7px;
  }

  .hero__visual {
    min-height: 540px;
  }

  .screen--today {
    width: min(78vw, 340px);
  }

  .screen--progress {
    top: 86px;
    width: min(61vw, 265px);
  }

  .section {
    padding: 72px 0;
  }

  .feature-grid,
  .gallery,
  .privacy-points {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 210px;
  }

  .gallery {
    width: min(100%, 390px);
    margin-inline: auto;
    margin-top: 38px;
  }

  .gallery figure:nth-child(n + 2) {
    margin-top: 24px;
  }

  .page-hero {
    padding: 46px 0 38px;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero h1 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .page-toc {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 350px) {
  .brand__name {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
