:root {
  --ink: #ffffff;
  --muted: #cbbdf8;
  --soft: #a894df;
  --deep: #0d043d;
  --deeper: #07011f;
  --panel: #18075d;
  --panel-2: #251079;
  --purple: #8b20ff;
  --violet: #c13cff;
  --gold: #ffd12f;
  --green: #31a52a;
  --coral: #e65b3d;
  --line: rgba(203, 189, 248, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(34, 10, 114, 0.64), rgba(7, 1, 31, 0) 360px),
    var(--deeper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(203, 189, 248, 0.16);
  background: rgba(7, 1, 31, 0.68);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, #5522d6, #18075d);
  color: #ffdfff;
  box-shadow: 0 0 24px rgba(193, 60, 255, 0.36);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.header-cta,
.button {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta {
  min-width: max-content;
  padding: 11px 18px;
  border: 1px solid rgba(255, 209, 47, 0.34);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 108px clamp(22px, 6vw, 92px) 82px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 1, 31, 0.98) 0%, rgba(7, 1, 31, 0.8) 38%, rgba(7, 1, 31, 0.24) 68%, rgba(7, 1, 31, 0.78) 100%),
    linear-gradient(180deg, rgba(7, 1, 31, 0.15) 0%, rgba(7, 1, 31, 0.88) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  padding-left: min(36vw, 440px);
  opacity: 0.96;
}

.hero-shot {
  width: min(26vw, 325px);
  min-width: 210px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-shot-home {
  transform: translateY(24px) rotate(-7deg);
}

.hero-shot-bible {
  transform: translateY(-26px) rotate(5deg);
}

.hero-shot-wordle {
  transform: translateY(34px) rotate(9deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4.25rem, 12vw, 11rem);
  line-height: 0.86;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.34);
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 950;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: #eee8ff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.56;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.44);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 1000;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.button-primary {
  color: #5e16e9;
  background: var(--gold);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f2ecff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.section,
.showcase,
.download-band {
  padding-right: clamp(22px, 6vw, 92px);
  padding-left: clamp(22px, 6vw, 92px);
}

.feature-band {
  padding-top: 84px;
  padding-bottom: 96px;
  background: #100442;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 34px;
}

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

.feature-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(139, 32, 255, 0.28), rgba(255, 255, 255, 0.05));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(255, 209, 47, 0.15);
  color: var(--gold);
  font-weight: 1000;
}

.feature-card p,
.showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  min-height: 760px;
  padding-top: 74px;
  padding-bottom: 74px;
  border-top: 1px solid rgba(203, 189, 248, 0.12);
}

.scripture-showcase {
  background:
    radial-gradient(circle at 82% 38%, rgba(255, 209, 47, 0.13), transparent 30%),
    #0b0334;
}

.wordle-showcase {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 0.92fr);
  background:
    radial-gradient(circle at 18% 46%, rgba(49, 165, 42, 0.14), transparent 30%),
    #110549;
}

.wordle-showcase .showcase-copy {
  grid-column: 2;
  grid-row: 1;
}

.wordle-showcase .phone-display {
  grid-column: 1;
  grid-row: 1;
}

.journey-showcase {
  background:
    radial-gradient(circle at 78% 54%, rgba(230, 91, 61, 0.16), transparent 30%),
    #0b0334;
}

.showcase-copy {
  max-width: 650px;
}

.showcase-copy p {
  margin-top: 22px;
  max-width: 580px;
  font-size: 1.15rem;
}

.phone-display {
  justify-self: center;
  width: min(390px, 100%);
  padding: 10px;
  border: 1px solid rgba(203, 189, 248, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

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

.download-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 80px;
  padding-bottom: 84px;
  background:
    linear-gradient(135deg, rgba(139, 32, 255, 0.32), rgba(255, 209, 47, 0.12)),
    #160552;
}

.download-band h2 {
  max-width: 860px;
  font-size: clamp(2rem, 4.3vw, 4.1rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 6vw, 92px);
  border-top: 1px solid rgba(203, 189, 248, 0.14);
  color: var(--muted);
  background: #07011f;
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer p,
.site-footer address {
  margin: 0;
}

.footer-company {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.site-footer address {
  max-width: 520px;
  font-style: normal;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
    align-items: flex-end;
    padding-top: 96px;
    padding-bottom: 52px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 1, 31, 0.24) 0%, rgba(7, 1, 31, 0.86) 46%, rgba(7, 1, 31, 0.99) 100%),
      linear-gradient(90deg, rgba(7, 1, 31, 0.34), rgba(7, 1, 31, 0.28));
  }

  .hero-media {
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 72px 0 0;
  }

  .hero-shot {
    width: min(33vw, 250px);
    min-width: 152px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(4.4rem, 18vw, 8rem);
  }

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

  .wordle-showcase .showcase-copy,
  .wordle-showcase .phone-display {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase {
    min-height: auto;
  }

  .phone-display {
    width: min(360px, 100%);
  }

  .download-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer address {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .hero {
    min-height: 84vh;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-media {
    justify-content: flex-start;
    padding-left: 14px;
  }

  .hero-shot {
    width: 48vw;
    min-width: 138px;
  }

  .hero-shot-wordle {
    display: none;
  }

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

  .section,
  .showcase,
  .download-band,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .feature-card {
    min-height: 220px;
    padding: 22px;
  }
}
