:root {
  --ink: #111523;
  --muted: #5f6372;
  --purple: #72297e;
  --purple-deep: #4a1455;
  --purple-light: #f2e7f4;
  --lavender: #faf3fb;
  --cream: #fbfaf7;
  --line: rgba(17, 21, 35, 0.12);
  --green: #087752;
  --white: #fff;
  --shadow: 0 24px 70px rgba(114, 41, 126, 0.16);
  --display: "Plus Jakarta Sans", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  z-index: 90;
  inset: 0;
  content: "";
  background: #fbfaf7;
}

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

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

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

.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: 200;
  left: 16px;
  top: -60px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transition: top 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 247, 0.9);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(17, 21, 35, 0.06);
  backdrop-filter: blur(18px);
}

.site-header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(10, 7, 15, 0.58), rgba(10, 7, 15, 0));
}

.site-header:not(.scrolled) .brand {
  color: var(--white);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.site-header:not(.scrolled) .brand > span > span {
  color: #ddcaff;
}

.site-header:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.48);
}

.site-header:not(.scrolled) .nav-links a::after {
  background: #d1ffbf;
}

.site-header:not(.scrolled) .nav-links a:hover,
.site-header:not(.scrolled) .nav-links a:focus-visible {
  color: var(--white);
}

.site-header:not(.scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.94);
  color: var(--purple);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.site-header:not(.scrolled) .nav-cta:hover,
.site-header:not(.scrolled) .nav-cta:focus-visible {
  background: var(--white);
}

body.menu-open .site-header {
  background: var(--cream);
  border-color: var(--line);
}

body.menu-open .site-header .brand {
  color: var(--ink);
  text-shadow: none;
}

body.menu-open .site-header .brand > span > span {
  color: var(--purple);
}

body.menu-open .site-header .menu-toggle span:not(.sr-only) {
  background: var(--ink);
  box-shadow: none;
}

body.menu-open .site-header .nav-links a {
  color: var(--ink);
  text-shadow: none;
}

.nav {
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  font: 800 18px/1 var(--display);
  letter-spacing: -0.04em;
}

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

.brand > span > span {
  color: var(--purple);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  color: #383b47;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--purple);
  transition: right 0.2s ease;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.nav-cta {
  justify-self: end;
}

.mobile-login-link {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--purple);
  border-radius: 12px;
  background: var(--purple);
  color: var(--white);
  font: 700 14px/1 var(--display);
  box-shadow: 0 14px 32px rgba(114, 41, 126, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #5f1f69;
  box-shadow: 0 18px 36px rgba(114, 41, 126, 0.28);
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding-bottom: 82px;
  background: #17121d;
  color: var(--white);
}

.hero-photo,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-photo {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  background:
    linear-gradient(90deg, rgba(17, 11, 24, 0.76), rgba(30, 15, 48, 0.36)),
    url("/assets/landing/worship-space.png") center 28% / cover no-repeat;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.045);
  transform-origin: center;
  will-change: transform;
}

.hero-wash {
  background:
    radial-gradient(circle at 22% 34%, rgba(114, 41, 126, 0.48), transparent 34%),
    linear-gradient(180deg, rgba(12, 9, 17, 0.08) 0%, rgba(19, 12, 29, 0.28) 44%, #191120 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 168px;
  text-align: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #eee3ff;
  backdrop-filter: blur(12px);
}

.eyebrow span {
  color: #c4ffae;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 960px;
  margin: 24px auto 20px;
  font-size: clamp(46px, 6.3vw, 82px);
  line-height: 1.02;
}

.hero h1 em {
  color: #d1ffbf;
  font-style: normal;
}

.hero-copy {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-notes {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.hero-notes span {
  margin-right: 6px;
  color: #a9f58c;
}

.product-stage {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 72px));
  margin: 64px auto 0;
}

.product-stage.is-visible {
  transform: translateY(0);
}

.product-window {
  --parallax-y: 0px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.product-window img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: contain;
  background: #fbf9f7;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading h2,
.tour-intro h2,
.trust-copy h2,
.faq-intro h2 {
  margin-top: 14px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}

.section-heading > p,
.tour-intro > p,
.trust-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 360px;
  grid-column: span 4;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.feature-card-wide {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  grid-column: span 8;
}

.feature-card h3 {
  margin: 12px 0;
  font-size: 25px;
  line-height: 1.15;
}

.feature-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: var(--purple-light);
  color: var(--purple);
  font: 700 18px/1 var(--display);
}

.feature-number {
  display: block;
  margin-top: 26px;
  color: #9a9aa3;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.13em;
}

.feature-card-purple {
  border-color: var(--purple);
  background:
    radial-gradient(circle at 100% 100%, rgba(169, 110, 255, 0.65), transparent 42%),
    var(--purple);
  color: var(--white);
}

.feature-card-purple p,
.feature-card-purple .feature-number {
  color: rgba(255, 255, 255, 0.72);
}

.feature-icon-light {
  background: rgba(255, 255, 255, 0.12);
  color: #d1ffbf;
}

.feature-card-soft {
  background: #efedf5;
}

.mini-library {
  align-self: center;
  overflow: hidden;
  padding: 14px;
  border: 1px solid #e4dff1;
  border-radius: 18px;
  background: #faf9fc;
  box-shadow: 0 22px 45px rgba(37, 19, 75, 0.12);
  transform: rotate(2deg);
}

.mini-library > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 10px;
  border-bottom: 1px solid #eae6f0;
  font-size: 10px;
}

.mini-library > div:last-child {
  border-bottom: 0;
}

.mini-library .mini-search {
  justify-content: flex-start;
  margin-bottom: 5px;
  border: 1px solid #ded9e9;
  border-radius: 8px;
  background: var(--white);
  color: #92909a;
}

.mini-library span {
  color: #9a96a3;
}

.signal {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: end;
  gap: 5px;
}

.signal i {
  width: 5px;
  height: 9px;
  border-radius: 2px;
  background: #d1ffbf;
}

.signal i:nth-child(2) {
  height: 14px;
}

.signal i:nth-child(3) {
  height: 19px;
}

.signal i:nth-child(4) {
  height: 24px;
}

.signal span {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.75);
  font: 500 9px/1 var(--mono);
  text-transform: uppercase;
}

.agenda {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
}

.agenda div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(17, 21, 35, 0.08);
  color: #777483;
  font-size: 10px;
}

.agenda div.active {
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 8px 22px rgba(31, 22, 49, 0.09);
}

.feature-card-editor {
  align-items: center;
  background: #fdfcff;
}

.projector-preview {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 15%, rgba(116, 52, 229, 0.38), transparent 32%),
    #131019;
  color: var(--white);
  box-shadow: 0 22px 45px rgba(21, 11, 36, 0.24);
}

.projector-preview small,
.projector-preview span {
  color: rgba(255, 255, 255, 0.48);
  font: 500 9px/1 var(--mono);
  text-transform: uppercase;
}

.projector-preview strong {
  margin: 26px 0 auto;
  font: 700 24px/1.25 var(--display);
}

.product-tour {
  border-top: 1px solid var(--line);
  background: #f0eef5;
}

.tour-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 30px 100px;
  margin-bottom: 70px;
}

.tour-intro .kicker {
  grid-column: 1 / -1;
}

.tour-list {
  display: grid;
  gap: 28px;
}

.tour-item {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
  min-height: 430px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
}

.tour-item-reverse .tour-copy {
  order: 2;
}

.tour-copy > span {
  color: var(--purple);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-copy h3 {
  margin: 18px 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
}

.tour-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tour-image {
  display: grid;
  width: 100%;
  max-width: 610px;
  aspect-ratio: 8 / 5;
  place-items: center;
  justify-self: center;
  overflow: hidden;
  padding: 8px;
  border: 1px solid #e1dce8;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tour-item-reverse .tour-image {
  order: 1;
}

.tour-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.download-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 42%, rgba(114, 41, 126, 0.13), transparent 34%),
    var(--white);
}

.download-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 80px;
}

.download-copy h2 {
  margin: 16px 0 22px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.06;
}

.download-copy > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.platform-list span {
  padding: 8px 11px;
  border: 1px solid #ddd6e9;
  border-radius: 999px;
  background: #faf8fd;
  color: #5b5665;
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  min-width: 158px;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 9px 14px 9px 10px;
  border: 1px solid #dcd6e6;
  border-radius: 13px;
  background: var(--white);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.store-button:hover,
.store-button:focus-visible {
  border-color: var(--purple);
  box-shadow: 0 12px 28px rgba(114, 41, 126, 0.12);
  transform: translateY(-2px);
}

.store-button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.store-button small,
.store-button b {
  display: block;
}

.store-button small {
  margin-bottom: 2px;
  color: #898591;
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
}

.store-button-dark small {
  color: rgba(255, 255, 255, 0.55);
}

.store-button b {
  font: 700 13px/1.1 var(--display);
}

.store-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 10px;
  background: #f0ecf7;
  color: var(--purple);
  font-size: 16px;
}

.store-button-dark .store-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.store-icon-apple {
  padding-bottom: 2px;
  font-size: 20px;
}

.store-icon-play {
  padding-left: 2px;
  font-size: 13px;
}

.device-showcase {
  position: relative;
  min-height: 590px;
}

.desktop-device {
  --parallax-y: 0px;
  position: absolute;
  top: 58px;
  right: -90px;
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid #d9d2e4;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(44, 24, 83, 0.2);
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.desktop-device img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: contain;
}

.device-bar {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid #ede9f1;
  background: #faf9fb;
}

.device-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ded8e5;
}

.device-bar span {
  margin-left: auto;
  color: #8e8994;
  font-size: 8px;
}

.phone-device {
  --device-rotate: 0deg;
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  z-index: 2;
  overflow: hidden;
  width: 150px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  background: #17131c;
  box-shadow: 0 26px 60px rgba(18, 10, 31, 0.3);
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0)
    rotate(var(--device-rotate));
  transform-origin: center bottom;
  will-change: transform;
}

.phone-device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.phone-device-one {
  --device-rotate: -3deg;
  bottom: 6px;
  left: 20%;
}

.phone-device-two {
  --device-rotate: 2deg;
  bottom: -10px;
  left: 52%;
}

.trust-section {
  background: var(--ink);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
}

.trust-photo {
  position: relative;
}

.trust-photo img {
  min-height: 540px;
  border-radius: 28px;
  object-fit: cover;
  filter: saturate(0.78);
}

.trust-photo > div {
  position: absolute;
  right: -36px;
  bottom: 32px;
  max-width: 280px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(24, 18, 33, 0.78);
  backdrop-filter: blur(16px);
}

.trust-photo b,
.trust-photo span {
  display: block;
}

.trust-photo b {
  font: 700 13px/1.3 var(--display);
}

.trust-photo span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.trust-copy h2 {
  max-width: 560px;
}

.trust-copy > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
}

.trust-copy ul {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.trust-copy li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-copy li > span {
  color: #d1ffbf;
  font: 500 10px/1.5 var(--mono);
}

.trust-copy li b,
.trust-copy li small {
  display: block;
}

.trust-copy li b {
  font: 700 14px/1.4 var(--display);
}

.trust-copy li small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.founder-card {
  display: grid;
  max-width: 980px;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 100px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(114, 41, 126, 0.22), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.founder-photo {
  position: relative;
  width: 145px;
  height: 150px;
  justify-self: center;
  overflow: hidden;
  border-radius: 20px;
}

.founder-photo::after {
  position: absolute;
  content: "";
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  box-shadow: inset 0 -90px 100px rgba(17, 21, 35, 0.14);
  pointer-events: none;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-copy {
  padding-right: 32px;
}

.founder-copy h3 {
  margin: 16px 0 4px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.founder-copy p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.founder-copy .founder-role {
  margin-top: 10px;
  color: #d1ffbf;
  font: 600 13px/1.5 var(--display);
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.founder-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.price-card-featured {
  border-color: var(--purple);
  box-shadow: 0 24px 60px rgba(114, 41, 126, 0.14);
}

.popular {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.plan-name {
  font: 700 19px/1.3 var(--display);
}

.price-card > p {
  min-height: 46px;
  margin: 10px 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.price {
  min-height: 62px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.price-promo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.price-promo small {
  display: block;
  margin-top: 7px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 600;
}

.price-promo s {
  margin-right: 3px;
  color: #8f8b95;
}

.price b {
  font: 700 31px/1.2 var(--display);
  letter-spacing: -0.04em;
}

.price span {
  margin-left: 5px;
  color: var(--muted);
  font-size: 12px;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.price-card li span {
  margin-right: 8px;
  color: var(--purple);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.button-outline {
  border-color: #ded7eb;
  background: var(--white);
  color: var(--purple);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--purple-light);
  box-shadow: none;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #292d3b;
  box-shadow: none;
}

.pricing-note {
  margin: 22px 0 0;
  color: #85858e;
  font-size: 11px;
  text-align: center;
}

.faq-section {
  padding-top: 80px;
  background: var(--lavender);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p {
  margin-top: 22px;
}

.faq-intro a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  font: 700 16px/1.45 var(--display);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d5cce3;
  border-radius: 50%;
  color: var(--purple);
  font: 400 20px/1 var(--body);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 640px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding: 90px 0;
  background: var(--lavender);
}

.contact-card {
  position: relative;
  display: grid;
  min-height: 580px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
}

.contact-photo,
.contact-shade {
  position: absolute;
  inset: 0;
}

.contact-photo {
  background: url("/assets/landing/worship-space.png") center / cover no-repeat;
}

.contact-shade {
  background:
    radial-gradient(circle at 70% 30%, rgba(105, 39, 209, 0.3), transparent 32%),
    linear-gradient(90deg, rgba(17, 14, 26, 0.97) 0%, rgba(26, 17, 38, 0.92) 48%, rgba(24, 16, 33, 0.72) 100%);
}

.contact-content,
.contact-side {
  position: relative;
  z-index: 2;
}

.contact-content {
  padding: 70px;
}

.kicker-light {
  color: #d1ffbf;
}

.contact-content h2 {
  margin: 18px 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
}

.contact-content > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--purple);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  background: #f3edff;
  box-shadow: none;
}

.contact-mail {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.contact-mail span {
  margin-left: 6px;
  color: #d1ffbf;
}

.contact-side {
  display: grid;
  align-self: stretch;
  align-content: center;
  padding: 50px 70px 50px 30px;
}

.contact-side > div {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-side > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-side > div > span {
  color: #d1ffbf;
  font: 500 10px/1.5 var(--mono);
}

.contact-side p {
  margin: 0;
}

.contact-side b,
.contact-side small {
  display: block;
}

.contact-side b {
  font: 700 13px/1.4 var(--display);
}

.contact-side small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.footer {
  padding: 70px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
}

.brand-footer {
  margin-bottom: 20px;
}

.footer-grid > div:first-child p {
  max-width: 290px;
  color: var(--muted);
  font-size: 12px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid b {
  margin-bottom: 8px;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  width: max-content;
  color: var(--muted);
  font-size: 12px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--purple);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #9999a0;
  font: 500 9px/1.4 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.product-stage.reveal {
  transform: translateY(24px);
}

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

.product-stage.reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    justify-self: end;
    gap: 5px;
    padding: 0;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-header:not(.scrolled) .menu-toggle span:not(.sr-only) {
    background: var(--white);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links.open {
    position: fixed;
    z-index: 102;
    inset: 78px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    height: calc(100dvh - 78px);
    padding: 40px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background-color: #fbfaf7;
    opacity: 1;
    isolation: isolate;
  }

  .nav-links.open a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-shadow: none;
    font: 700 22px/1.2 var(--display);
  }

  .nav-links.open .mobile-login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 28px;
    padding: 0 22px;
    border: 1px solid var(--purple);
    border-radius: 12px;
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(114, 41, 126, 0.2);
  }

  .nav-links.open .mobile-login-link::after {
    display: none;
  }

  body.menu-open .site-header .nav-links .mobile-login-link,
  body.menu-open .site-header .nav-links .mobile-login-link:hover,
  body.menu-open .site-header .nav-links .mobile-login-link:focus-visible {
    background: var(--purple);
    color: var(--white);
  }

  .feature-card,
  .feature-card-wide {
    grid-column: span 6;
  }

  .feature-card-wide {
    display: block;
  }

  .mini-library {
    margin-top: 25px;
  }

  .projector-preview {
    margin-top: 28px;
  }

  .download-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
  }

  .device-showcase {
    min-height: 520px;
  }

  .desktop-device {
    right: -150px;
  }

  .phone-device {
    width: 132px;
  }

  .phone-device-one {
    left: 14%;
  }

  .phone-device-two {
    left: 51%;
  }

  .tour-item {
    gap: 45px;
    padding: 40px;
  }

  .trust-grid {
    gap: 55px;
  }

  .founder-card {
    gap: 44px;
  }

  .founder-copy {
    padding-right: 18px;
  }

  .trust-photo > div {
    right: 20px;
  }

  .price-card {
    padding: 30px;
  }

  .faq-grid {
    gap: 60px;
  }

  .contact-content {
    padding: 52px 32px 52px 50px;
  }

  .contact-side {
    padding-right: 40px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .nav {
    height: 70px;
  }

  .nav-links.open {
    inset: 70px 0 0;
    height: calc(100dvh - 70px);
  }

  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero-content {
    padding-top: 126px;
  }

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

  .hero h1 br {
    display: none;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
    gap: 7px;
    text-align: left;
  }

  .product-stage {
    width: calc(100% - 28px);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading,
  .tour-intro,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .tour-intro h2,
  .trust-copy h2,
  .faq-intro h2 {
    font-size: 38px;
  }

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

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 350px;
    padding: 28px;
  }

  .feature-card-editor {
    display: block;
  }

  .tour-intro .kicker {
    grid-column: auto;
  }

  .tour-item,
  .tour-item-reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 28px;
  }

  .tour-item-reverse .tour-copy {
    order: 0;
  }

  .tour-image,
  .tour-item-reverse .tour-image {
    transform: none;
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .device-showcase {
    min-height: 500px;
  }

  .desktop-device {
    top: 25px;
    right: -120px;
    left: 30px;
    width: auto;
  }

  .phone-device-one {
    left: 12%;
  }

  .phone-device-two {
    left: 52%;
  }

  .trust-photo img {
    min-height: 390px;
  }

  .trust-photo > div {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .founder-card {
    grid-template-columns: 125px 1fr;
    gap: 22px;
    margin-top: 70px;
    padding: 18px 18px 34px;
  }

  .founder-photo {
    width: 120px;
    height: 124px;
    max-height: none;
  }

  .founder-copy {
    padding: 0 10px;
  }

  .pricing-heading {
    margin-bottom: 55px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .faq-intro {
    position: static;
  }

  .contact-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .contact-content {
    padding: 50px 28px 20px;
  }

  .contact-content h2 {
    font-size: 42px;
  }

  .contact-side {
    padding: 20px 28px 50px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 26px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

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

  .hero h1 {
    font-size: 40px;
  }

  .hero-copy {
    line-height: 1.6;
  }

  .product-stage {
    margin-top: 44px;
  }

  .feature-card {
    min-height: 380px;
  }

  .feature-card-wide:first-child {
    min-height: 515px;
  }

  .projector-preview {
    min-height: 200px;
  }

  .download-actions {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .device-showcase {
    min-height: 420px;
  }

  .desktop-device {
    right: -150px;
    left: 18px;
  }

  .phone-device {
    width: 110px;
  }

  .phone-device-one {
    left: 7%;
  }

  .phone-device-two {
    left: 51%;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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

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

  .hero-photo,
  .product-window,
  .desktop-device {
    transform: none;
    will-change: auto;
  }

  .phone-device {
    transform: rotate(var(--device-rotate));
    will-change: auto;
  }
}
