:root {
  --ink: #10110e;
  --muted-ink: #676a5d;
  --cream: #f6f5ea;
  --cream-deep: #e9e8d8;
  --lime: #c6f13c;
  --lime-soft: #e6f8a3;
  --olive: #596d20;
  --white: #ffffff;
  --line: rgba(16, 17, 14, 0.16);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 9px 12px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 5px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  padding: 16px 32px;
  background: rgba(246, 245, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted-ink);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a,
.footer-links a,
.text-link {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--olive);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 5px;
}

.nav-download:hover {
  color: var(--cream) !important;
  opacity: 0.82;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: 56px;
  align-items: center;
  width: min(100%, var(--max-width));
  min-height: 730px;
  margin: 0 auto;
  padding: 80px 64px 100px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 100px;
  right: -120px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(89, 109, 32, 0.26);
  border-radius: 50%;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 85px;
  bottom: 48px;
  width: 82px;
  height: 82px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 0;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

h1 {
  max-width: 640px;
  font-size: clamp(68px, 10vw, 142px);
}

h2 {
  font-size: clamp(48px, 6vw, 84px);
}

h2 em {
  color: var(--olive);
  font-style: normal;
}

.hero-tagline {
  margin: 28px 0 22px;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.hero-description {
  max-width: 450px;
  margin-bottom: 30px;
  color: var(--muted-ink);
  font-size: 16px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
}

.button-symbol {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-ink);
  font-size: 13px;
  font-weight: 800;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 35px;
  color: var(--muted-ink);
  font-size: 12px;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 625px;
  place-items: center;
}

.device {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 8px solid var(--ink);
  border-radius: 42px;
  box-shadow:
    0 24px 45px rgba(16, 17, 14, 0.15),
    0 4px 0 rgba(16, 17, 14, 0.16);
}

.device::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  content: "";
  pointer-events: none;
}

.device img {
  width: 100%;
  height: auto;
}

.device-hero {
  z-index: 2;
  width: min(100%, 340px);
  transform: rotate(4deg);
}

.device-speaker {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 108px;
  height: 25px;
  background: var(--ink);
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(89, 109, 32, 0.36);
  border-radius: 50%;
}

.hero-ring-one {
  width: 510px;
  height: 510px;
}

.hero-ring-two {
  width: 390px;
  height: 390px;
  border-color: rgba(198, 241, 60, 0.82);
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--muted-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-caption span:first-child {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0;
}

.statement-band {
  display: grid;
  grid-template-columns: 0.6fr 1.6fr 0.8fr;
  gap: 30px;
  align-items: center;
  padding: 58px max(32px, calc((100vw - var(--max-width)) / 2 + 64px));
  color: var(--cream);
  background: var(--ink);
}

.statement-label {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
}

.statement-band p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.statement-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  color: rgba(246, 245, 234, 0.6);
  font-size: 11px;
  font-weight: 700;
}

.statement-meta span::before {
  margin-right: 8px;
  color: var(--lime);
  content: "•";
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-right: 64px;
  padding-left: 64px;
}

.features-section {
  padding-top: 128px;
  padding-bottom: 136px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  column-gap: 80px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-intro {
  max-width: 415px;
  margin: 0 0 5px;
  color: var(--muted-ink);
  font-size: 15px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 92px;
}

.feature-item {
  min-height: 240px;
  padding: 18px 0 0;
  border-top: 1px solid var(--ink);
}

.feature-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.feature-number {
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-glyph {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
}

.glyph-book {
  font-size: 23px;
}

.glyph-prayer {
  font-size: 23px;
}

.feature-item h3 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.feature-item p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 13px;
  line-height: 1.65;
}

.screens-section {
  padding-top: 112px;
  padding-bottom: 120px;
  background: var(--cream-deep);
}

.screens-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: end;
}

.screens-heading .section-intro {
  justify-self: end;
}

.screen-rail {
  display: grid;
  grid-auto-columns: minmax(220px, 285px);
  grid-auto-flow: column;
  gap: 18px;
  width: min(100%, var(--max-width));
  margin: 70px auto 0;
  padding: 0 64px 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--olive) transparent;
  scrollbar-width: thin;
}

.screen-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 14px 14px 15px;
  border: 1px solid var(--ink);
  border-radius: 7px;
}

.screen-card-dark {
  background: var(--ink);
}

.screen-card-lime {
  background: var(--lime);
}

.screen-card-cream {
  background: var(--cream);
}

.screen-card-olive {
  color: var(--cream);
  background: var(--olive);
}

.screen-card-light {
  background: var(--white);
}

.device-small {
  border-width: 5px;
  border-radius: 27px;
  box-shadow: none;
}

.device-small::after {
  border-radius: 22px;
}

.screen-card figcaption {
  display: flex;
  justify-content: space-between;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.download-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 126px 64px 136px;
  background: var(--lime);
}

.download-section .eyebrow {
  color: var(--olive);
}

.download-section .button:hover {
  color: var(--cream);
  background: var(--olive);
  border-color: var(--olive);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 64px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 48px 64px 34px;
  color: var(--cream);
  background: var(--ink);
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(246, 245, 234, 0.62);
  font-size: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(246, 245, 234, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding-top: 18px;
  color: rgba(246, 245, 234, 0.42);
  border-top: 1px solid rgba(246, 245, 234, 0.18);
  font-size: 11px;
}

@media (max-width: 980px) {
  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 32px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .device-hero {
    width: min(100%, 300px);
  }

  .hero-ring-one {
    width: 430px;
    height: 430px;
  }

  .hero-ring-two {
    width: 330px;
    height: 330px;
  }

  .section {
    padding-right: 40px;
    padding-left: 40px;
  }

  .statement-band {
    padding-right: 40px;
    padding-left: 40px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .feature-item {
    min-height: 205px;
  }

  .screen-rail {
    padding-right: 40px;
    padding-left: 40px;
  }

  .download-section,
  .site-footer {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .site-nav {
    gap: 13px;
    font-size: 11px;
  }

  .site-nav a:nth-child(1),
  .site-nav a:nth-child(2) {
    display: none;
  }

  .nav-download {
    padding: 9px 10px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 72px 22px 78px;
  }

  .hero::before {
    top: 290px;
    right: -210px;
    width: 400px;
    height: 400px;
  }

  .hero::after {
    right: 24px;
    bottom: 30px;
    width: 54px;
    height: 54px;
  }

  h1 {
    font-size: clamp(72px, 22vw, 112px);
  }

  .hero-tagline {
    margin-top: 24px;
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 48px;
  }

  .device-hero {
    width: min(72vw, 310px);
  }

  .hero-ring-one {
    width: 360px;
    height: 360px;
  }

  .hero-ring-two {
    width: 280px;
    height: 280px;
  }

  .hero-caption {
    right: 6px;
    bottom: 26px;
  }

  .statement-band {
    display: block;
    padding: 42px 22px;
  }

  .statement-band p {
    margin: 24px 0 27px;
    font-size: 28px;
  }

  .statement-meta {
    justify-content: flex-start;
  }

  .section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .features-section {
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .section-heading,
  .screens-heading {
    display: block;
  }

  .section-heading .section-intro,
  .screens-heading .section-intro {
    margin-top: 28px;
  }

  h2 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 62px;
  }

  .feature-item {
    min-height: 0;
    padding: 18px 0 28px;
  }

  .feature-topline {
    margin-bottom: 30px;
  }

  .screens-section {
    padding-top: 78px;
    padding-bottom: 76px;
  }

  .screen-rail {
    grid-auto-columns: minmax(220px, 74vw);
    gap: 14px;
    margin-top: 48px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .download-section {
    display: block;
    padding: 78px 22px 84px;
  }

  .download-section .button {
    margin-top: 34px;
  }

  .site-footer {
    display: block;
    padding: 38px 22px 26px;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 32px;
  }

  .footer-copyright {
    margin-top: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
