:root {
  --paper: #f8f5ef;
  --paper-deep: #efeae1;
  --ink: #0b3d4d;
  --ink-soft: #536368;
  --orange: #ffad2f;
  --orange-deep: #f29020;
  --mint: #dcece8;
  --lilac: #eee8f8;
  --white: #fffefa;
  --line: rgba(11, 61, 77, 0.14);
  --shadow: 0 22px 70px rgba(36, 56, 60, 0.12);
  --display: "Arial Rounded MT Bold", "SF Pro Rounded", ui-rounded, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 118px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(11, 61, 77, 0.08);
  background: rgba(248, 245, 239, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-brand {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.nav-brand.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 5px 18px rgba(242, 144, 32, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a,
.footer a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--orange-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding-inline: 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(11, 61, 77, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(11, 61, 77, 0.24);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  justify-self: end;
  min-height: 42px;
  padding-inline: 21px;
  font-size: 14px;
}

.hero {
  padding-top: 0;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  text-align: center;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 960px;
  margin-top: 0;
  font-size: clamp(54px, 7.2vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--orange-deep);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 32px;
}

.store-buttons a {
  display: grid;
  height: 48px;
  place-items: center;
  border-radius: 9px;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.store-buttons a:hover {
  filter: drop-shadow(0 8px 12px rgba(21, 43, 48, 0.15));
  transform: translateY(-2px);
}

.store-buttons a:active {
  transform: translateY(0);
}

.store-buttons a img {
  width: auto;
  max-width: none;
  height: 48px;
  object-fit: contain;
}

.hero-art-wrap {
  position: relative;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-art-wrap picture {
  display: block;
  width: 100%;
}

.hero-art {
  width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
}

.intro {
  position: relative;
  text-align: center;
}

.intro::before {
  position: absolute;
  top: 86px;
  left: 5%;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(255, 173, 47, 0.35);
  border-radius: 50%;
  content: "";
}

.section-kicker {
  margin-bottom: 19px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro h2,
.more-heading h2,
.reviews-heading h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.intro > p:last-child {
  max-width: 690px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.features {
  padding-top: 72px;
  background: var(--white);
}

.features-kicker {
  margin-bottom: 36px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(310px, 0.78fr);
  align-items: center;
  gap: clamp(58px, 8vw, 112px);
  padding-block: 0 100px;
}

.feature-row + .feature-row {
  border-top: 1px solid var(--line);
  padding-top: 100px;
}

.feature-row:last-child {
  padding-bottom: 0;
}

.feature-row-reverse {
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
}

.feature-row-reverse .feature-visual {
  grid-column: 2;
}

.feature-row-reverse .feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.feature-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1.43 / 1;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
}

.feature-visual::after {
  position: absolute;
  inset: auto 12% 9%;
  height: 22%;
  border-radius: 50%;
  background: rgba(29, 55, 60, 0.11);
  filter: blur(30px);
  content: "";
}

.feature-visual img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 92%;
  object-fit: contain;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.feature-visual:hover img {
  transform: scale(1.025) translateY(-4px);
}

.visual-mint {
  background: #e3efec;
}

.visual-peach {
  background: #fff0d9;
}

.visual-lilac {
  background: var(--lilac);
}

.feature-number {
  display: block;
  margin-bottom: 38px;
  color: var(--orange-deep);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
}

.feature-copy h3 {
  font-size: clamp(36px, 4vw, 51px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.feature-subtitle {
  margin-top: 15px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.4;
}

.feature-copy > p:not(.feature-subtitle) {
  margin-top: 21px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.more {
  overflow: hidden;
  background: var(--ink);
}

.more-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 56px;
  color: var(--white);
}

.more-heading::after {
  width: 124px;
  height: 62px;
  border-top: 2px solid rgba(255, 254, 250, 0.38);
  border-radius: 50%;
  content: "";
  transform: rotate(-10deg);
}

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

.practice-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  transition: transform 220ms ease;
}

.practice-card:hover {
  transform: translateY(-5px);
}

.practice-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 31px;
}

.practice-card h3 {
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.practice-card p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.76;
}

.practice-dark {
  color: var(--white);
  background: #174e5e;
}

.practice-orange {
  color: #5e3300;
  background: var(--orange);
}

.practice-light {
  color: var(--ink);
  background: #e8e4f0;
}

.reviews {
  background: var(--paper);
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 9px;
}

.rating span {
  color: var(--orange-deep);
  font-size: 24px;
  letter-spacing: 0.1em;
}

.rating small {
  margin-top: 7px;
  color: #788589;
  font-size: 12px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 326px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 254, 250, 0.8);
}

.review-card blockquote {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.review-card figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid currentColor;
}

.review-card figcaption span {
  font-size: 14px;
  font-weight: 750;
}

.review-card figcaption small {
  font-size: 11px;
  opacity: 0.6;
}

.download {
  padding: 0 16px 72px;
  background: var(--paper);
}

.store-buttons-bottom {
  gap: 12px;
  margin: 0;
}

.footer {
  padding: 40px 0 48px;
  color: #617075;
  background: var(--paper);
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.brand-footer {
  color: var(--ink);
  font-size: 18px;
}

.footer nav {
  display: flex;
  justify-self: end;
  gap: 22px;
}

:focus-visible {
  outline: 3px solid rgba(242, 144, 32, 0.72);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .section {
    padding-block: 92px;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-row-reverse .feature-visual,
  .feature-row-reverse .feature-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-row-reverse .feature-copy {
    order: 2;
  }

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

}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 580px);
  }

  .section {
    padding-block: 78px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .button-small {
    font-size: 13px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-copy {
    margin-top: 24px;
  }

  h1 {
    margin-top: 0;
    font-size: clamp(45px, 13vw, 66px);
    line-height: 0.99;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.5;
  }

  .store-buttons {
    margin-top: 27px;
  }

  .store-buttons a,
  .store-buttons a img {
    height: 44px;
  }

  .hero-art-wrap {
    width: calc(100% - 16px);
  }

  .hero-art {
    width: 100%;
  }

  .intro::before {
    display: none;
  }

  .intro h2,
  .more-heading h2,
  .reviews-heading h2 {
    font-size: 41px;
  }

  .intro > p:last-child {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.58;
  }

  .features-kicker {
    margin-bottom: 30px;
  }

  .features {
    padding-top: 54px;
  }

  .feature-row {
    gap: 34px;
    padding-block: 0 72px;
  }

  .feature-row + .feature-row {
    padding-top: 72px;
  }

  .feature-visual {
    aspect-ratio: 1.36 / 1;
    border-radius: 24px;
  }

  .feature-visual img {
    width: 94%;
    height: 94%;
  }

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

  .feature-copy h3 {
    font-size: 39px;
  }

  .feature-subtitle {
    margin-top: 12px;
    font-size: 17px;
  }

  .feature-copy > p:not(.feature-subtitle) {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.58;
  }

  .more-heading {
    margin-bottom: 38px;
  }

  .more-heading::after {
    display: none;
  }

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

  .practice-card {
    min-height: 330px;
    padding: 28px;
  }

  .practice-card h3 {
    font-size: 29px;
  }

  .reviews-heading {
    align-items: start;
    flex-direction: column;
    gap: 28px;
  }

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

  .review-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .review-card {
    min-height: 286px;
    padding: 27px;
  }

  .review-card blockquote {
    font-size: 21px;
  }

  .download {
    padding-bottom: 56px;
  }

  .footer {
    padding-top: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .brand-footer,
  .footer nav {
    justify-self: center;
  }

  .footer nav {
    gap: 18px;
  }
}

@media (max-width: 390px) {
  .brand span {
    display: none;
  }

  .hero-copy .store-buttons {
    gap: 5px;
  }

}

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

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