:root {
  color-scheme: light;
  --background: #fff8ef;
  --surface: #fffaf4;
  --text: #062748;
  --copy: #2d455e;
  --muted: #7d8da0;
  --line: rgba(6, 39, 72, 0.14);
  --soft-line: rgba(6, 39, 72, 0.1);
  --orange: #ff6a1b;
  --gold: #f7b733;
  --mint: #5fc9b5;
  --pink: #d26be6;
  --purple: #8e49d8;
  --violet: #6255c7;
  --blue: #1089d9;
  --green: #32a144;
  --shadow: rgba(6, 39, 72, 0.16);
  --button: #062748;
  --button-hi: #0b3766;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--background);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.page-shell {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  padding: 34px 0 30px;
}

.site-header {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  color: var(--text);
  font-size: 1.72rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  filter:
    drop-shadow(0 8px 12px rgba(6, 39, 72, 0.14))
    drop-shadow(0 1px 2px rgba(6, 39, 72, 0.18));
  transform: translate3d(0, 0, 0);
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, var(--button-hi), var(--button));
  box-shadow: 0 12px 28px rgba(6, 39, 72, 0.18);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.app-store-link svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.app-store-link:hover,
.app-store-link:focus-visible {
  filter: saturate(1.08) brightness(1.05);
  outline: none;
}

.hero {
  position: relative;
  min-height: 740px;
  margin-top: 40px;
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(580px, 48%);
  padding-top: 96px;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--mint), var(--violet));
}

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

h1 {
  margin-bottom: 26px;
  font-size: 5.9rem;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

h1 span {
  color: transparent;
  background: linear-gradient(92deg, #ff781f 5%, #ff554a 38%, #c06fec 72%, #654dd4 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lede {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--copy);
  font-size: 1.2rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-download {
  min-height: 52px;
  padding-inline: 22px;
  font-size: 1.02rem;
}

.platform-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  position: absolute;
  top: 8px;
  right: -10px;
  z-index: 1;
  width: min(720px, 57%);
  height: 610px;
  pointer-events: none;
}

.mac-screenshot {
  position: absolute;
  top: 6px;
  right: 0;
  width: 690px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 64px rgba(6, 39, 72, 0.17));
  transform: translate3d(0, 0, 0);
}

.iphone-screenshot {
  position: absolute;
  top: 142px;
  right: 88px;
  width: 244px;
  height: auto;
  filter: drop-shadow(0 28px 64px rgba(6, 39, 72, 0.17));
  transform: translate3d(0, 0, 0);
}

.reader-section {
  margin-top: 0;
}

.reader-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.reader-points article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-height: 116px;
  padding: 0 20px;
  border-left: 1px solid var(--soft-line);
}

.reader-points article:first-child {
  border-left: 0;
  padding-left: 0;
}

.reader-points article:last-child {
  padding-right: 0;
}

.feature-icon {
  display: flex;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.feature-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-icon .rss-dot {
  fill: currentColor;
  stroke: none;
}

.feature-icon.orange {
  color: var(--orange);
  background: linear-gradient(140deg, #ffd9c5, #fff0e7);
}

.feature-icon.purple {
  color: var(--purple);
  background: linear-gradient(140deg, #e8d9ff, #f6eeff);
}

.feature-icon.blue {
  color: var(--blue);
  background: linear-gradient(140deg, #cfeeff, #eef9ff);
}

.feature-icon.green {
  color: var(--green);
  background: linear-gradient(140deg, #d9f2d9, #eef9ec);
}

.reader-points h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.14;
  font-weight: 850;
  letter-spacing: 0;
}

.reader-points p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--copy);
  font-size: 0.9rem;
  line-height: 1.42;
}

.reader-points a,
.policy-document a,
.site-footer a {
  color: var(--text);
  font-weight: 850;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  text-align: right;
}

.policy-main {
  margin-top: 52px;
}

.policy-document {
  max-width: 780px;
  padding: 58px 0 10px;
}

.policy-document h1 {
  margin-bottom: 12px;
  font-size: 4.25rem;
  line-height: 0.98;
}

.policy-updated {
  margin: 0 0 34px;
  color: var(--muted);
  font-weight: 750;
}

.policy-document section {
  margin-top: 32px;
}

.policy-document h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.policy-document p {
  margin-bottom: 0;
  color: var(--copy);
  font-size: 1.04rem;
}

@media (max-width: 1120px) {
  .page-shell {
    width: min(100% - 56px, 940px);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 34px;
  }

  .hero-copy {
    order: 1;
    width: min(680px, 100%);
    padding-top: 28px;
  }

  .hero-visual {
    order: 2;
    position: relative;
    top: auto;
    right: 0;
    width: 100%;
    height: 710px;
    margin-top: 72px;
  }

  .mac-screenshot {
    right: 0;
    width: 78%;
  }

  .iphone-screenshot {
    top: 150px;
    right: 12%;
    width: 225px;
  }

  .reader-section {
    margin-top: 48px;
  }

  .reader-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .reader-points article:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  body::before {
    border-radius: 18px;
  }

  .page-shell {
    width: min(100% - 28px, 560px);
    padding-top: 18px;
  }

  .brand {
    font-size: 1.48rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 820px;
    margin-top: 18px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  h1 {
    font-size: 4.2rem;
  }

  .lede {
    font-size: 1.06rem;
    line-height: 1.58;
  }

  .hero-download {
    min-height: 48px;
    width: 100%;
  }

  .platform-note {
    font-size: 0.88rem;
  }

  .hero-visual {
    position: absolute;
    top: 430px;
    height: 300px;
    margin-top: 0;
  }

  .mac-screenshot {
    width: 96%;
  }

  .iphone-screenshot {
    top: 80px;
    right: 10px;
    width: 150px;
    border-radius: 24px;
  }

  .reader-section {
    margin-top: 12px;
  }

  .reader-points {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reader-points article,
  .reader-points article:nth-child(3) {
    min-height: 0;
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--soft-line);
  }

  .reader-points article:first-child {
    border-top: 0;
  }

  .site-footer {
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .footer-links {
    align-items: flex-end;
    gap: 10px;
  }

  .policy-main {
    margin-top: 20px;
  }

  .policy-document {
    padding-top: 36px;
  }

  .policy-document h1 {
    font-size: 3rem;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 820px;
  }

  h1 {
    font-size: 3.48rem;
  }

  .hero-visual {
    top: 430px;
  }

  .iphone-screenshot {
    width: 132px;
  }

  .reader-points article {
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 14px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
}
