@font-face {
  font-family: "Spectral";
  src: url("/assets/fonts/Spectral-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Spectral";
  src: url("/assets/fonts/Spectral-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Spectral";
  src: url("/assets/fonts/Spectral-Italic.ttf") format("truetype");
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: "Hanken";
  src: url("/assets/fonts/HankenGrotesk-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Hanken";
  src: url("/assets/fonts/HankenGrotesk-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}

:root {
  --ink: #211d16;
  --ink-soft: #675f50;
  --night: #17130e;
  --night-soft: #201a13;
  --cream: #f4eedf;
  --paper: #fbf8f0;
  --paper-deep: #e9dfca;
  --gold: #b08a3c;
  --gold-bright: #dfbd73;
  --gold-soft: #e8d5a8;
  --line: rgba(63, 52, 31, 0.16);
  --white-line: rgba(255, 244, 218, 0.15);
  --serif: "Spectral", Georgia, serif;
  --sans: "Hanken", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(47, 36, 19, 0.18);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: var(--sans);
}

img,
svg {
  display: block;
}

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

button,
input {
  font-size: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 20px;
  top: -60px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--night);
  background: var(--paper);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(23, 19, 14, 0.9);
  border-color: var(--white-line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--gold-bright);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  color: rgba(251, 248, 240, 0.72);
  font-size: 15px;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--paper);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
}

.button-small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 14px;
}

.button-cream {
  color: var(--night);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 74% 38%, rgba(176, 138, 60, 0.15), transparent 25%),
    linear-gradient(125deg, #17130e 0%, #1c1710 56%, #100e0a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.013) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent, black 55%);
}

.hero-grain,
.tracks-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.hero-halo {
  position: absolute;
  border: 1px solid rgba(223, 189, 115, 0.13);
  border-radius: 50%;
}

.hero-halo-one {
  width: 720px;
  height: 720px;
  right: -170px;
  top: 90px;
}

.hero-halo-two {
  width: 510px;
  height: 510px;
  right: -65px;
  top: 195px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 68px;
  align-items: center;
  min-height: 855px;
  padding-top: 110px;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-gold {
  color: var(--gold-bright);
}

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

h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(58px, 6.3vw, 88px);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(251, 248, 240, 0.72);
  font-size: 19px;
  line-height: 1.7;
}

.signup-form {
  position: relative;
  display: flex;
  gap: 10px;
  max-width: 620px;
}

.signup-form input {
  min-width: 0;
  flex: 1;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(251, 248, 240, 0.18);
  border-radius: 999px;
  outline: none;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.signup-form input::placeholder {
  color: rgba(251, 248, 240, 0.45);
}

.signup-form input:focus {
  border-color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.1);
}

.signup-form button {
  height: 58px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  color: var(--night);
  background: var(--gold-bright);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.signup-form button:hover {
  transform: translateY(-2px);
  background: #ebcc89;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}

.form-status {
  position: absolute;
  top: calc(100% + 8px);
  left: 18px;
  margin: 0;
  color: var(--gold-bright);
  font-size: 13px;
}

.form-status.is-error {
  color: #ef9e91;
}

.form-note {
  margin: 11px 0 28px 18px;
  color: rgba(251, 248, 240, 0.4);
  font-size: 13px;
}

.store-row {
  display: flex;
  gap: 14px;
}

.store-wrap {
  position: relative;
  padding-top: 8px;
}

.coming-pill {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -6px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--night);
  background: var(--gold-bright);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 174px;
  height: 56px;
  padding: 7px 16px;
  border: 1px solid rgba(251, 248, 240, 0.2);
  border-radius: 11px;
  background: #070706;
}

.store-badge svg {
  width: 27px;
  height: 29px;
}

.apple-logo {
  fill: #fff;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  color: white;
  font-size: 20px;
  line-height: 1.05;
}

.store-badge small {
  margin-bottom: 3px;
  font-size: 10px;
}

.hero-visual {
  position: relative;
  align-self: end;
  height: 745px;
}

.arch-light {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -80px;
  width: 480px;
  height: 690px;
  border: 1px solid rgba(223, 189, 115, 0.24);
  border-radius: 240px 240px 0 0;
  transform: translateX(-50%);
  box-shadow: inset 0 0 90px rgba(223, 189, 115, 0.06);
}

.arch-light span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent 15%, rgba(223, 189, 115, 0.15));
  transform-origin: bottom;
}

.arch-light span:nth-child(1) { transform: rotate(-32deg); }
.arch-light span:nth-child(2) { transform: rotate(-16deg); }
.arch-light span:nth-child(3) { transform: rotate(0); }
.arch-light span:nth-child(4) { transform: rotate(16deg); }
.arch-light span:nth-child(5) { transform: rotate(32deg); }

.phone {
  position: relative;
  z-index: 2;
  width: 326px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 48px;
  background: #080807;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
}

.phone img {
  width: 100%;
  border-radius: 40px;
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 86px;
  height: 22px;
  border-radius: 999px;
  background: #090908;
  transform: translateX(-50%);
}

.phone-hero {
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 350px;
  transform: translateX(-50%) rotate(1.7deg);
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(35, 29, 21, 0.86);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.float-card-one {
  top: 205px;
  left: -35px;
}

.float-card-two {
  right: -35px;
  bottom: 125px;
}

.mini-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(223, 189, 115, 0.35);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 11px;
}

.float-card div {
  display: flex;
  flex-direction: column;
}

.float-card strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.float-card small {
  color: rgba(251, 248, 240, 0.48);
  font-size: 11px;
}

.hero-foot {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 75px;
  border-top: 1px solid var(--white-line);
  color: rgba(251, 248, 240, 0.48);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.scripture-band {
  padding: 95px 0 105px;
  background:
    radial-gradient(circle at 50% 50%, rgba(176, 138, 60, 0.08), transparent 42%),
    var(--paper);
}

.scripture-inner {
  max-width: 900px;
  text-align: center;
}

.verse-rule {
  display: block;
  width: 40px;
  height: 1px;
  margin: 0 auto 30px;
  background: var(--gold);
}

blockquote {
  margin: 0 auto 20px;
  color: #383025;
  font-size: clamp(28px, 3.5vw, 46px);
  font-style: italic;
  line-height: 1.35;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 135px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
  align-items: center;
}

.feature-grid-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-copy {
  max-width: 540px;
}

.feature-copy h2,
.rhythm-heading h2,
.progress-copy h2,
.early-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(44px, 5vw, 67px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-lede,
.rhythm-heading > p,
.progress-copy > p,
.early-copy > p {
  color: var(--ink-soft);
  font-size: 18px;
}

.step-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.step-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.step-list > li > span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.step-list h3 {
  margin: -4px 0 2px;
  font-size: 25px;
}

.step-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.feature-art {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
}

.paper-orbit {
  position: absolute;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(176, 138, 60, 0.15);
  border-radius: 50%;
}

.paper-orbit::before,
.paper-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(176, 138, 60, 0.12);
  border-radius: 50%;
}

.paper-orbit::before {
  inset: 62px;
}

.paper-orbit::after {
  inset: 136px;
}

.phone-light {
  width: 330px;
  border-color: rgba(50, 40, 24, 0.18);
  box-shadow: var(--shadow);
}

.verse-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 100px;
  height: 42px;
  padding: 0 18px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(251, 248, 240, 0.92);
  box-shadow: 0 12px 32px rgba(70, 54, 27, 0.1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verse-chip-one {
  left: 8%;
  top: 28%;
}

.verse-chip-two {
  right: 2%;
  top: 44%;
}

.verse-chip-three {
  left: 13%;
  bottom: 18%;
}

.tracks-section {
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 50%, rgba(131, 148, 117, 0.16), transparent 26%),
    radial-gradient(circle at 74% 15%, rgba(176, 138, 60, 0.11), transparent 24%),
    var(--night);
}

.tracks-pattern {
  opacity: 0.12;
}

.feature-copy-light {
  position: relative;
  z-index: 2;
}

.feature-copy-light .section-lede {
  color: rgba(251, 248, 240, 0.62);
}

.tracks-art {
  min-height: 750px;
}

.phone-dark {
  width: 335px;
  transform: rotate(-1.3deg);
}

.track-swatch {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(251, 248, 240, 0.82);
  background: rgba(37, 31, 23, 0.86);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  font-family: var(--serif);
  font-size: 15px;
}

.track-swatch span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #9caca1, #637a77);
}

.swatch-one {
  top: 18%;
  left: -3%;
}

.swatch-two {
  right: -5%;
  top: 46%;
}

.swatch-two span {
  background: linear-gradient(135deg, #cfaa95, #9d705d);
}

.swatch-three {
  left: 2%;
  bottom: 13%;
}

.swatch-three span {
  background: linear-gradient(135deg, #b0b592, #6f7756);
}

.feature-points {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.feature-points > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.feature-points span {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 24px;
}

.feature-points p {
  margin: 0;
  color: rgba(251, 248, 240, 0.56);
  font-size: 15px;
}

.feature-points strong {
  color: var(--paper);
  font-weight: 600;
}

.rhythm-section {
  background: var(--cream);
}

.rhythm-heading {
  max-width: 840px;
  text-align: center;
}

.rhythm-heading h2 {
  margin-inline: auto;
}

.rhythm-heading > p {
  max-width: 710px;
  margin-inline: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 66px;
}

.benefit-card {
  position: relative;
  min-height: 390px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px 55px 4px 4px;
  background: rgba(251, 248, 240, 0.66);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(60, 45, 20, 0.09);
}

.benefit-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(176, 138, 60, 0.55);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.benefit-card svg {
  width: 76px;
  height: 76px;
  margin: 20px 0 64px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 29px;
}

.benefit-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.progress-section {
  position: relative;
  min-height: 930px;
  padding: 130px 0 0;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    #110f0c;
  background-size: 58px 34px;
}

.glass-glow {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.2;
}

.glass-glow-one {
  width: 420px;
  height: 420px;
  right: 9%;
  top: 20%;
  background: #a4513b;
}

.glass-glow-two {
  width: 360px;
  height: 360px;
  right: 29%;
  bottom: -10%;
  background: #4f746f;
}

.progress-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: center;
}

.progress-copy {
  max-width: 500px;
  padding-bottom: 130px;
}

.progress-copy > p {
  color: rgba(251, 248, 240, 0.62);
}

.progress-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 40px;
  padding: 22px 0 0 24px;
  border-top: 1px solid var(--white-line);
  border-left: 2px solid var(--gold-bright);
}

.progress-stat strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.progress-stat span {
  color: rgba(251, 248, 240, 0.44);
  font-size: 14px;
}

.progress-art {
  position: relative;
  min-height: 800px;
}

.phone-progress {
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 372px;
  transform: translateX(-50%);
}

.window-rays {
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 690px;
  height: 790px;
  border: 1px solid rgba(223, 189, 115, 0.18);
  border-radius: 350px 350px 0 0;
  transform: translateX(-50%);
  box-shadow:
    inset 0 0 100px rgba(207, 153, 91, 0.06),
    0 0 100px rgba(207, 153, 91, 0.05);
}

.window-rays::before,
.window-rays::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(223, 189, 115, 0.11);
  border-radius: 310px 310px 0 0;
}

.window-rays::after {
  inset: 80px;
}

.early-section {
  padding: 110px 0;
  background: var(--paper-deep);
}

.early-card {
  display: grid;
  grid-template-columns: 150px 1fr minmax(330px, 0.75fr);
  gap: 50px;
  align-items: center;
  padding: 72px;
  border: 1px solid rgba(73, 56, 28, 0.16);
  border-radius: 4px 78px 4px 4px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(62, 47, 25, 0.09);
}

.early-mark svg {
  width: 120px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
}

.early-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(40px, 4vw, 56px);
}

.early-copy > p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 16px;
}

.early-form {
  display: grid;
}

.early-form input {
  border-color: var(--line);
  color: var(--ink);
  background: var(--cream);
}

.early-form input::placeholder {
  color: #9b917e;
}

.early-form input:focus {
  border-color: var(--gold);
  background: white;
}

.early-form .form-status {
  color: #6e762f;
}

.early-form .form-status.is-error {
  color: #a54038;
}

footer {
  padding: 45px 0;
  color: rgba(251, 248, 240, 0.62);
  background: var(--night);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  color: var(--paper);
  font-size: 25px;
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

.footer-domain {
  justify-self: end;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.14s;
}

.reveal-delay-one {
  transition-delay: 0.1s;
}

.reveal-delay-two {
  transition-delay: 0.2s;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 7vw, 72px);
  }

  .feature-grid,
  .feature-grid-reverse,
  .progress-grid {
    gap: 45px;
  }

  .feature-art {
    min-height: 650px;
  }

  .early-card {
    grid-template-columns: 110px 1fr;
  }

  .early-form {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .feature-grid,
  .feature-grid-reverse,
  .progress-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 165px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-lede {
    margin-inline: auto;
  }

  .hero-form {
    margin-inline: auto;
  }

  .form-note {
    margin-left: 0;
  }

  .store-row {
    justify-content: center;
  }

  .hero-visual {
    height: 690px;
    margin-top: 30px;
  }

  .hero-foot {
    width: 100%;
    gap: 12px;
    font-size: 10px;
  }

  .section {
    padding: 100px 0;
  }

  .feature-copy {
    max-width: 660px;
  }

  .practice-art {
    grid-row: 1;
  }

  .tracks-art {
    min-height: 690px;
  }

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

  .benefit-card {
    min-height: auto;
  }

  .benefit-card svg {
    margin-bottom: 38px;
  }

  .progress-section {
    padding-top: 100px;
  }

  .progress-copy {
    max-width: 650px;
    padding-bottom: 0;
    text-align: center;
  }

  .progress-stat {
    max-width: 480px;
    margin-inline: auto;
    text-align: left;
  }

  .progress-art {
    min-height: 760px;
  }

  .early-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 54px;
    text-align: center;
  }

  .early-mark {
    display: none;
  }

  .early-form {
    grid-column: 1;
    width: min(100%, 500px);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  .nav-shell {
    height: 74px;
  }

  .brand {
    font-size: 26px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .button-small {
    min-height: 39px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .hero-grid {
    padding-top: 132px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .signup-form {
    display: grid;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
  }

  .form-status {
    position: static;
    min-height: 21px;
    margin: 3px 0 -4px;
  }

  .form-note {
    margin-top: 3px;
  }

  .store-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .store-wrap {
    width: 190px;
  }

  .store-badge {
    width: 190px;
  }

  .hero-visual {
    height: 625px;
  }

  .phone-hero {
    width: 300px;
  }

  .arch-light {
    width: 410px;
    height: 590px;
  }

  .float-card {
    min-width: 157px;
    padding: 10px 11px;
  }

  .float-card-one {
    left: -2px;
  }

  .float-card-two {
    right: -3px;
  }

  .float-card small {
    display: none;
  }

  .hero-foot {
    display: none;
  }

  .scripture-band {
    padding: 75px 0;
  }

  blockquote {
    font-size: 27px;
  }

  .section {
    padding: 80px 0;
  }

  .feature-copy h2,
  .rhythm-heading h2,
  .progress-copy h2,
  .early-copy h2 {
    font-size: 43px;
  }

  .feature-art,
  .tracks-art {
    min-height: 620px;
  }

  .phone-light,
  .phone-dark {
    width: 292px;
  }

  .paper-orbit {
    width: 420px;
    height: 420px;
  }

  .verse-chip-one {
    left: -1%;
  }

  .verse-chip-two {
    right: -1%;
  }

  .verse-chip-three {
    left: 3%;
  }

  .track-swatch {
    font-size: 13px;
  }

  .swatch-one {
    left: -2%;
  }

  .swatch-two {
    right: -2%;
  }

  .benefit-card {
    padding: 30px;
  }

  .progress-section {
    min-height: 1080px;
  }

  .progress-art {
    min-height: 700px;
  }

  .phone-progress {
    width: 325px;
  }

  .window-rays {
    width: 520px;
    height: 690px;
  }

  .early-section {
    padding: 65px 0;
  }

  .early-card {
    padding: 42px 24px;
    border-radius: 4px 48px 4px 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-domain {
    justify-self: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
