/* =============================================
   THE DIVINE BIBLE — Design System v2
   Font: Sora (display) + Nunito (body)
   Aesthetic: Clean spiritual, blue-purple-gold
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --blue: #3B5BDB;
  --blue-dark: #2F4AC7;
  --blue-deep: #1E3A8A;
  --blue-light: #EEF2FF;
  --blue-mid: #C7D2FE;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FFF7ED;
  --gold: #F59E0B;
  --purple: #6366F1;

  --ink: #0F172A;
  --ink-2: #1E293B;
  --text: #334155;
  --muted: #64748B;
  --subtle: #94A3B8;
  --border: #E2E8F0;
  --border-2: #CBD5E1;
  --bg: #F8FAFC;
  --bg-2: #F1F5F9;
  --surface: #FFFFFF;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-sm: 0 2px 8px rgba(59, 91, 219, .07);
  --shadow: 0 4px 24px rgba(59, 91, 219, .10);
  --shadow-lg: 0 12px 48px rgba(59, 91, 219, .14);
  --shadow-xl: 0 24px 80px rgba(59, 91, 219, .18);

  --display: 'Sora', sans-serif;
  --body: 'Nunito', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden
}

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

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

button {
  font-family: var(--body);
  cursor: pointer;
  border: none;
  outline: none
}

input,
textarea {
  font-family: var(--body)
}

/* TYPE */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700
}

h3 {
  font-size: 1.125rem;
  font-weight: 700
}

h4 {
  font-size: 1rem;
  font-weight: 600
}

p {
  color: var(--text)
}

em {
  font-style: italic;
  font-family: var(--display)
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 55%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 10px;
}

.blue-text {
  color: var(--blue)
}

.orange-text {
  color: var(--orange)
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem
}

.section-pad {
  padding: 7rem 0
}

/* EYEBROW */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--display);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  padding: .3125rem .875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem
}

.eyebrow.orange {
  color: var(--orange-dark);
  background: var(--orange-light);
  border-color: rgba(249, 115, 22, .2)
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9375rem;
  padding: .8125rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all .2s cubic-bezier(.34, 1.56, .64, 1);
  cursor: pointer
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 91, 219, .3)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 91, 219, .38)
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 115, 22, .28)
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249, 115, 22, .38)
}

.btn-outline {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--border-2);
  box-shadow: var(--shadow-xs)
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-1px)
}

/* STORE BADGES */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: var(--ink);
  color: #fff;
  padding: .625rem 1.375rem;
  border-radius: var(--radius);
  font-family: var(--display);
  transition: all .22s;
  border: 1.5px solid transparent
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .22)
}

.store-btn.light {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--shadow-xs)
}

.store-btn.light:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow)
}

.store-btn-icon {
  font-size: 1.375rem;
  line-height: 1;
  flex-shrink: 0
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.store-btn-sub {
  font-size: .6rem;
  opacity: .65;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em
}

.store-btn-name {
  font-size: .9375rem;
  font-weight: 700
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  padding: 1rem 2rem;
  background: rgba(248, 250, 252, .92);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s
}

.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm)
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0625rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 91, 219, .3)
}

.nav-logo-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--ink);
  letter-spacing: -.02em
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .125rem;
  list-style: none
}

.nav-links a {
  font-family: var(--display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  padding: .375rem .875rem;
  border-radius: var(--radius);
  transition: all .18s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 66px;
  inset: auto 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 299
}

.mobile-nav.open {
  display: block
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .375rem;
  margin-bottom: 1.5rem
}

.mobile-nav a {
  display: block;
  font-family: var(--display);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  padding: .625rem .875rem;
  border-radius: var(--radius);
  transition: all .18s
}

.mobile-nav a:hover {
  background: var(--blue-light);
  color: var(--blue)
}

.mobile-nav-stores {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

/* PHONE FRAME */
.phone-frame {
  position: relative;
  flex-shrink: 0;
  background: #fff;
  border-radius: 38px;
  border: 2px solid #E0E7FF;
  padding: 9px;
  box-shadow: 0 24px 64px rgba(59, 91, 219, .14), 0 4px 16px rgba(0, 0, 0, .06)
}

.phone-frame img {
  border-radius: 30px;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: top
}

/* SECTION HEADING */
.sh {
  margin-bottom: 3.5rem
}

.sh.center {
  text-align: center
}

.sh h2 {
  margin-bottom: 1rem
}

.sh p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text)
}

.sh.center p {
  max-width: 560px;
  margin: 0 auto
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.left {
  transform: translateX(-24px)
}

.reveal.right {
  transform: translateX(24px)
}

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

/* ANIMATIONS */
@keyframes float-a {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@keyframes float-b {

  0%,
  100% {
    transform: translateY(0) rotate(2deg)
  }

  50% {
    transform: translateY(-10px) rotate(2deg)
  }
}

@keyframes float-c {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-8px) rotate(-2deg)
  }
}

@keyframes live-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

@keyframes eq-bar {

  0%,
  100% {
    transform: scaleY(.25)
  }

  50% {
    transform: scaleY(1)
  }
}

@keyframes breath {

  0%,
  100% {
    transform: scale(1);
    opacity: .5
  }

  50% {
    transform: scale(1.12);
    opacity: .9
  }
}

@keyframes pulsering {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 91, 219, .35)
  }

  70% {
    box-shadow: 0 0 0 16px rgba(59, 91, 219, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(59, 91, 219, 0)
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fa {
  animation: float-a 6s ease-in-out infinite
}

.fb {
  animation: float-b 7s ease-in-out infinite
}

.fc {
  animation: float-c 8s ease-in-out infinite 1s
}

/* BADGE */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--display);
  letter-spacing: .02em
}

.pill-blue {
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid var(--blue-mid)
}

.pill-orange {
  background: var(--orange-light);
  color: var(--orange-dark);
  border: 1px solid rgba(249, 115, 22, .2)
}

.pill-green {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0
}

.pill-red {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA
}

.pill-gold {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid #FDE68A
}

/* FLOATING CALLOUT */
.callout {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--display);
  white-space: nowrap;
  z-index: 10
}

.callout-icon {
  font-size: 1.25rem;
  flex-shrink: 0
}

.callout-label {
  font-size: .6875rem;
  color: var(--muted);
  line-height: 1.3;
  font-weight: 500
}

.callout-val {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2
}

/* LIVE DOT */
.live {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .6875rem;
  font-weight: 700;
  color: #EF4444;
  font-family: var(--display)
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #EF4444;
  border-radius: 50%;
  animation: live-dot 1.2s ease-in-out infinite;
  flex-shrink: 0
}

/* EQ BARS */
.eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px
}

.eq-b {
  width: 3px;
  border-radius: 2px;
  background: currentColor;
  animation: eq-bar .7s ease-in-out infinite alternate
}

.eq-b:nth-child(1) {
  height: 4px;
  animation-delay: 0s
}

.eq-b:nth-child(2) {
  height: 12px;
  animation-delay: .12s
}

.eq-b:nth-child(3) {
  height: 7px;
  animation-delay: .24s
}

.eq-b:nth-child(4) {
  height: 14px;
  animation-delay: .36s
}

.eq-b:nth-child(5) {
  height: 5px;
  animation-delay: .48s
}

/* CHIP FILTER */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: .375rem .9375rem;
  font-size: .8125rem;
  font-weight: 600;
  font-family: var(--display);
  color: var(--text);
  cursor: pointer;
  transition: all .2s
}

.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light)
}

.chip.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(59, 91, 219, .28)
}

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent)
}

/* FOOTER */
.footer {
  background: var(--ink-2);
  color: rgba(255, 255, 255, .8);
  padding: 5rem 0 2.5rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  margin: 1.125rem 0 1.75rem;
  max-width: 260px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .625rem
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem
}

.footer-logo-name {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff
}

.footer-socials {
  display: flex;
  gap: .5rem
}

.social-icon {
  width: 34px;
  height: 34px;
  /* background: rgba(255, 255, 255, .07); */
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .6);
  transition: all .2s
}

.social-icon:hover {
  /* background: var(--blue); */
  color: #fff
}

.footer-col h4 {
  font-family: var(--display);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 1.25rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.footer-col a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s
}

.footer-col a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .35)
}

.footer-store-row {
  display: flex;
  gap: .625rem
}

.footer-store-btn {
  display: flex;
  align-items: center;
  gap: .375rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: .375rem .875rem;
  font-size: .75rem;
  font-family: var(--display);
  color: rgba(255, 255, 255, .65);
  font-weight: 600;
  transition: all .2s
}

.footer-store-btn:hover {
  background: rgba(255, 255, 255, .13);
  color: #fff
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-actions {
    display: none
  }

  .hamburger {
    display: flex
  }

  .section-pad {
    padding: 4rem 0
  }

  .container {
    padding: 0 1.25rem
  }
}

@media(max-width:640px) {
  .footer-grid {
    grid-template-columns: 1fr
  }

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