
:root {
  color-scheme: dark;
  --page: #07080b;
  --page-raised: #0d0f14;
  --surface: rgba(17, 19, 25, 0.86);
  --surface-strong: #151820;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --ink: #f7f8fa;
  --muted: #a3a8b4;
  --faint: #717784;
  --accent: #4ef2df;
  --accent-2: #5b8cff;
  --accent-rgb: 78, 242, 223;
  --accent-2-rgb: 91, 140, 255;
  --danger: #ff6f7d;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --display: "Syne", "Arial Black", sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
}

.theme-now {
  --accent: #d9ff5c;
  --accent-2: #ff8f4e;
  --accent-rgb: 217, 255, 92;
  --accent-2-rgb: 255, 143, 78;
}

.theme-editorial {
  --accent: #d6b4ff;
  --accent-2: #ff8fb6;
  --accent-rgb: 214, 180, 255;
  --accent-2-rgb: 255, 143, 182;
}

.theme-focus {
  --accent: #7cf5c5;
  --accent-2: #5da8ff;
  --accent-rgb: 124, 245, 197;
  --accent-2-rgb: 93, 168, 255;
}

.theme-worship {
  --page: #061522;
  --page-raised: #0a2033;
  --surface: rgba(11, 35, 56, 0.82);
  --surface-strong: #102d46;
  --surface-soft: rgba(210, 238, 255, 0.065);
  --line: rgba(208, 232, 247, 0.16);
  --line-strong: rgba(239, 218, 160, 0.34);
  --ink: #fbfdff;
  --muted: #c4d6e4;
  --faint: #8daec3;
  --accent: #f6d892;
  --accent-2: #8edcff;
  --accent-rgb: 246, 216, 146;
  --accent-2-rgb: 142, 220, 255;
  --display: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 32px 100px rgba(0, 8, 18, 0.46);
}

.theme-app {
  --accent: #ff68d4;
  --accent-2: #56ddff;
  --accent-rgb: 255, 104, 212;
  --accent-2-rgb: 86, 221, 255;
}

.theme-training {
  --accent: #ff5b45;
  --accent-2: #ffe14f;
  --accent-rgb: 255, 91, 69;
  --accent-2-rgb: 255, 225, 79;
}

.theme-training-br {
  --accent: #6df286;
  --accent-2: #ffd94a;
  --accent-rgb: 109, 242, 134;
  --accent-2-rgb: 255, 217, 74;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body.theme-worship {
  background:
    radial-gradient(circle at 50% -8%, rgba(139, 218, 255, 0.22), transparent 31rem),
    radial-gradient(circle at 88% 18%, rgba(246, 216, 146, 0.11), transparent 26rem),
    linear-gradient(180deg, #071b2d 0%, #061522 38%, #04101c 100%);
}

body.theme-worship::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(142, 220, 255, 0.36) 0 1px, transparent 1.3px);
  background-position: 0 0, 37px 53px;
  background-size: 92px 92px, 137px 137px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.42) 58%, transparent);
  opacity: 0.55;
}

body.theme-worship::after {
  position: fixed;
  right: -15vw;
  bottom: -28vh;
  left: -15vw;
  z-index: -4;
  height: 58vh;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at center, rgba(165, 224, 255, 0.12), transparent 67%);
  content: "";
  pointer-events: none;
}

.theme-worship #signal-canvas {
  opacity: 0.18;
}

.theme-worship .noise {
  opacity: 0.022;
}

.theme-worship .site-header {
  border-color: rgba(213, 234, 248, 0.17);
  background: rgba(5, 22, 36, 0.74);
  box-shadow: 0 18px 60px rgba(0, 8, 18, 0.34);
}

.theme-worship .site-header.is-scrolled {
  border-color: rgba(var(--accent-rgb), 0.36);
  background: rgba(5, 21, 35, 0.93);
}

.theme-worship .brand-mark {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.22), transparent 30%),
    rgba(var(--accent-rgb), 0.1);
  box-shadow:
    inset 0 0 20px rgba(var(--accent-rgb), 0.1),
    0 0 24px rgba(var(--accent-rgb), 0.08);
}

.theme-worship .hero h1 {
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.theme-worship .hero h1 em {
  background: linear-gradient(100deg, #f8e9bd, #a9e4ff 72%);
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

button,
a,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.55);
  outline-offset: 4px;
}

.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;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--accent);
  color: #050607;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
}

.aurora {
  position: fixed;
  z-index: -3;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.11;
  filter: blur(90px);
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

.aurora-a {
  top: 12vh;
  right: -120px;
  background: var(--accent);
}

.aurora-b {
  bottom: 4vh;
  left: -180px;
  background: var(--accent-2);
  animation-delay: -7s;
  animation-duration: 20s;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0.035;
  pointer-events: none;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  margin-top: 14px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 9, 13, 0.76);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(var(--accent-rgb), 0.25);
  background: rgba(8, 9, 13, 0.93);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.7);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: inset 0 0 20px rgba(var(--accent-rgb), 0.08);
}

.brand-name {
  max-width: 310px;
  overflow: hidden;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-header nav a,
.footer-links a {
  transition: color 150ms ease;
}

.site-header nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  border-radius: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(420px, 0.93fr);
  align-items: center;
  min-height: calc(100vh - 98px);
  padding-block: 80px 100px;
  gap: clamp(36px, 6vw, 100px);
}

.eyebrow,
.feature-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 25px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.hero h1 {
  max-width: 880px;
  margin: 24px 0 26px;
  font-family: var(--display);
  font-size: clamp(52px, 6.4vw, 88px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.89;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
  text-shadow: 0 0 36px rgba(var(--accent-rgb), 0.2);
}

.hero-description {
  max-width: 720px;
  margin: 0;
  color: #c5c9d1;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

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

.button-primary {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #060708;
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.2);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(var(--accent-rgb), 0.34);
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.07);
}

.button-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #060708;
  box-shadow: 0 0 0 0 rgba(6, 7, 8, 0.35);
  animation: buttonPulse 2s ease-out infinite;
}

.hero-promise {
  margin: 20px 0 0;
  color: var(--faint);
  font-size: 13px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 50px 0 0;
}

.hero-stats div {
  min-width: 130px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.hero-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dt {
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}

.hero-stats dd {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  width: min(100%, 560px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.055);
  box-shadow:
    inset 0 0 80px rgba(var(--accent-rgb), 0.08),
    0 0 140px rgba(var(--accent-2-rgb), 0.07);
  content: "";
}

.orbit {
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
  animation: orbitSpin 24s linear infinite;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  content: "";
}

.orbit-one {
  inset: 7%;
}

.orbit-two {
  inset: 20%;
  border-style: dashed;
  border-color: rgba(var(--accent-2-rgb), 0.32);
  animation-direction: reverse;
  animation-duration: 19s;
}

.orbit-two::after {
  background: var(--accent-2);
  box-shadow: 0 0 18px var(--accent-2);
}

.orbit-three {
  inset: 32%;
  animation-duration: 12s;
}

.signal-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 34%;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  border-radius: 50%;
  background: #0a0c10;
  box-shadow:
    inset 0 0 44px rgba(var(--accent-rgb), 0.11),
    0 0 60px rgba(var(--accent-rgb), 0.12);
}

.signal-core strong {
  font-family: var(--display);
  color: var(--accent);
  font-size: clamp(32px, 5vw, 62px);
  letter-spacing: -0.08em;
  line-height: 1;
}

.signal-core small {
  margin-top: 8px;
  color: var(--faint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.signal-live {
  position: absolute;
  top: -28px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--page);
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.frequency {
  position: absolute;
  z-index: 2;
  display: flex;
  height: 70px;
  align-items: center;
  gap: 5px;
}

.frequency i {
  display: block;
  width: 2px;
  height: 18px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
  animation: equalize 1.25s ease-in-out infinite alternate;
}

.frequency i:nth-child(2n) { animation-delay: -0.7s; }
.frequency i:nth-child(3n) { animation-delay: -0.35s; }
.frequency i:nth-child(4n) { animation-duration: 0.85s; }

.frequency-a {
  top: 6%;
  right: 19%;
  transform: rotate(25deg);
}

.frequency-b {
  bottom: 8%;
  left: 14%;
  transform: rotate(-34deg);
}

.floating-label {
  position: absolute;
  z-index: 4;
  max-width: 170px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 9, 13, 0.78);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.label-one {
  top: 24%;
  left: -1%;
}

.label-two {
  right: -1%;
  bottom: 25%;
}

.celestial-visual {
  min-height: 560px;
  overflow: visible;
}

.celestial-visual::before {
  inset: 2%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 247, 215, 0.2), transparent 23%),
    radial-gradient(circle at 50% 50%, rgba(142, 220, 255, 0.14), transparent 60%);
  box-shadow: none;
}

.heaven-rays {
  position: absolute;
  inset: 2%;
  z-index: -1;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -18deg at 50% 43%,
    rgba(255, 242, 198, 0.17) 0deg 2deg,
    transparent 2deg 16deg
  );
  filter: blur(0.2px);
  mask-image: radial-gradient(circle, black 0 10%, transparent 68%);
  animation: rayTurn 46s linear infinite;
}

.celestial-portal {
  position: relative;
  z-index: 4;
  display: grid;
  width: 42%;
  aspect-ratio: 0.72;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.74);
  border-bottom-width: 2px;
  border-radius: 52% 52% 19px 19px;
  background:
    linear-gradient(180deg, rgba(207, 237, 255, 0.18), rgba(6, 25, 42, 0.58)),
    radial-gradient(circle at 50% 22%, rgba(255, 248, 218, 0.34), transparent 46%);
  box-shadow:
    inset 0 0 60px rgba(146, 220, 255, 0.14),
    inset 0 -48px 70px rgba(2, 12, 22, 0.38),
    0 0 0 11px rgba(var(--accent-rgb), 0.025),
    0 0 0 12px rgba(var(--accent-rgb), 0.12),
    0 0 100px rgba(145, 219, 255, 0.16);
  backdrop-filter: blur(10px);
}

.celestial-portal::before,
.celestial-portal::after {
  position: absolute;
  bottom: -8%;
  width: 44%;
  height: 32%;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 50% 50% 12px 12px;
  content: "";
}

.celestial-portal::before {
  left: -23%;
  transform: rotate(-10deg);
}

.celestial-portal::after {
  right: -23%;
  transform: rotate(10deg);
}

.celestial-portal .signal-live {
  top: -34px;
  width: max-content;
  background: rgba(5, 22, 36, 0.9);
}

.portal-dove {
  margin-bottom: 6px;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 48px);
  filter: drop-shadow(0 0 18px rgba(var(--accent-rgb), 0.4));
}

.celestial-portal strong {
  font-family: var(--display);
  color: #fff7df;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 0.82;
  text-shadow: 0 0 34px rgba(var(--accent-rgb), 0.24);
}

.celestial-portal small {
  margin-top: 14px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.38em;
}

.celestial-star {
  position: absolute;
  z-index: 2;
  color: #fff4c9;
  text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.7);
  animation: starPulse 3.4s ease-in-out infinite;
}

.star-one { top: 13%; left: 19%; font-size: 18px; }
.star-two { top: 20%; right: 14%; font-size: 25px; animation-delay: -1.2s; }
.star-three { right: 22%; bottom: 20%; font-size: 13px; animation-delay: -2.1s; }

.cloud {
  position: absolute;
  z-index: 5;
  height: 15%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(232, 246, 255, 0.8) 0 24%, transparent 25%),
    radial-gradient(ellipse at 49% 35%, rgba(219, 240, 252, 0.72) 0 32%, transparent 33%),
    radial-gradient(ellipse at 76% 54%, rgba(197, 229, 247, 0.68) 0 27%, transparent 28%);
  filter: blur(5px);
  opacity: 0.72;
  animation: cloudFloat 9s ease-in-out infinite alternate;
}

.cloud-one { right: -4%; bottom: 10%; width: 60%; }
.cloud-two { bottom: 2%; left: -3%; width: 68%; opacity: 0.58; animation-delay: -4s; }
.cloud-three { top: 24%; left: -9%; z-index: 1; width: 48%; opacity: 0.23; animation-delay: -6s; }

.theme-worship .floating-label {
  border-color: rgba(210, 234, 248, 0.2);
  background: rgba(6, 27, 45, 0.76);
  color: #d7e7f2;
}

.radio-section,
.experience-section {
  padding-block: 110px;
}

.radio-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-heading h2,
.final-cta h2 {
  max-width: 760px;
  margin: 17px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.station-card {
  position: relative;
  display: flex;
  min-height: 142px;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.station-card::after {
  position: absolute;
  right: -25px;
  bottom: -35px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  opacity: 0;
  filter: blur(28px);
  transition: opacity 180ms ease;
}

.station-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.42);
  background: rgba(var(--accent-rgb), 0.055);
}

.station-card.is-active {
  border-color: rgba(var(--accent-rgb), 0.8);
  background: rgba(var(--accent-rgb), 0.085);
}

.station-card.is-active::after {
  opacity: 0.22;
}

.station-symbol {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
}

.station-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 6px;
}

.station-copy strong {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.2;
}

.station-copy small {
  color: var(--faint);
  font-size: 11px;
  line-height: 1.45;
}

.station-arrow {
  color: var(--faint);
  font-size: 12px;
}

.listening-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.82fr) minmax(300px, 0.68fr);
  gap: 18px;
}

.player-card,
.session-card,
.catalog-block,
.feature-card,
.final-cta {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.player-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.player-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.player-topline > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: livePulse 1.8s ease-in-out infinite;
}

.favorite-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 21px;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.favorite-button:hover,
.favorite-button[aria-pressed="true"] {
  border-color: rgba(var(--accent-rgb), 0.6);
  background: rgba(var(--accent-rgb), 0.09);
  color: var(--accent);
}

.now-playing {
  display: grid;
  grid-template-columns: minmax(190px, 0.66fr) minmax(0, 1.34fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.artwork-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.artwork-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.artwork-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.player-card.is-playing .artwork-wrap img {
  transform: scale(1.035);
}

.artwork-scan {
  position: absolute;
  inset: -50% 0 auto;
  height: 35%;
  background: rgba(var(--accent-rgb), 0.07);
  transform: skewY(-10deg);
  animation: artworkScan 6s linear infinite;
}

.track-station {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.track-copy h3 {
  margin: 0;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(25px, 3.5vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-overflow: ellipsis;
}

.track-copy > p:not(.track-station) {
  margin: 8px 0 0;
  color: var(--muted);
}

.track-progress {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  font-size: 10px;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 0;
  appearance: none;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  appearance: none;
  border: 2px solid var(--page);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.55);
}

input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 2px solid var(--page);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.55);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.player-controls > button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.player-controls > button:hover {
  transform: scale(1.06);
  border-color: rgba(var(--accent-rgb), 0.5);
  color: var(--accent);
}

.player-controls .play-button {
  width: 54px;
  height: 54px;
  border-color: var(--accent);
  background: var(--accent);
  color: #050607;
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.23);
}

.player-controls .play-button:hover {
  color: #050607;
}

.volume-control {
  display: flex;
  max-width: 124px;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: var(--faint);
}

.volume-control input {
  width: 88px;
}

.dna-panel {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.dna-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dna-heading small {
  color: var(--faint);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}

.dna-grid > div {
  display: grid;
  grid-template-columns: 70px 1fr 26px;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-size: 9px;
  text-transform: uppercase;
}

.dna-grid b {
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
}

.dna-grid i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.6);
  transition: width 600ms cubic-bezier(.2,.8,.2,1);
}

.dna-grid output {
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.sleep-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sleep-row > div {
  display: flex;
  gap: 5px;
}

.sleep-option {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.sleep-option:hover,
.sleep-option.is-active {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
}

.session-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.session-card h3 {
  margin: 16px 0 10px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.session-card > p:not(.feature-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.session-orbit {
  position: absolute;
  top: -85px;
  right: -85px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
}

.session-orbit::before,
.session-orbit::after {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(var(--accent-rgb), 0.14);
  border-radius: inherit;
  content: "";
}

.session-orbit::after {
  inset: 46px;
  border-style: solid;
}

.timer-face {
  display: grid;
  width: min(220px, 78%);
  aspect-ratio: 1;
  place-items: center;
  align-self: center;
  margin: 34px auto;
  border: 1px solid rgba(var(--accent-rgb), 0.32);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.035);
  box-shadow:
    inset 0 0 40px rgba(var(--accent-rgb), 0.06),
    0 0 50px rgba(var(--accent-rgb), 0.05);
}

.timer-face > div {
  display: grid;
  text-align: center;
}

#timer-display {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 56px);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.055em;
}

#timer-phase {
  margin-top: 2px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.timer-controls {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 8px;
  margin-top: auto;
}

.timer-controls .button {
  min-height: 46px;
  padding-inline: 12px;
  font-size: 12px;
}

.session-cycles {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.session-cycles i {
  width: 22px;
  height: 3px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
}

.session-cycles i.is-active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.6);
}

.catalog-block {
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.catalog-heading h3 {
  margin: 8px 0 2px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.catalog-heading p:not(.feature-kicker) {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
}

.catalog-pager {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-pager button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
}

.catalog-pager button:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.catalog-pager button:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

#catalog-page {
  min-width: 86px;
  color: var(--faint);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.track-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  cursor: pointer;
  text-align: left;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.track-card:hover,
.track-card.is-current {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.06);
}

.track-card img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--surface-strong);
  object-fit: cover;
}

.track-card-copy {
  min-width: 0;
}

.track-card strong,
.track-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-card strong {
  font-family: var(--display);
  font-size: 12px;
}

.track-card small {
  margin-top: 3px;
  color: var(--faint);
  font-size: 10px;
}

.track-card .track-energy {
  position: absolute;
  right: 8px;
  bottom: 7px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
}

.track-skeleton {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(105deg, rgba(255,255,255,.025) 20%, rgba(255,255,255,.07) 40%, rgba(255,255,255,.025) 60%);
  background-size: 220% 100%;
  animation: skeleton 1.5s linear infinite;
}

.local-note {
  margin: 16px 0 0;
  color: var(--faint);
  font-size: 10px;
  text-align: right;
}

.experience-section {
  border-top: 1px solid var(--line);
}

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

.feature-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card::before {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 28px rgba(var(--accent-rgb), 0.025),
    0 0 0 56px rgba(var(--accent-rgb), 0.018);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.43);
}

.feature-index {
  margin-bottom: 70px;
  color: rgba(var(--accent-rgb), 0.27);
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.feature-card h3 {
  max-width: 310px;
  margin: 13px 0 12px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

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

.feature-card a {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  transition: color 150ms ease;
}

.feature-card a:hover {
  color: var(--accent);
}

.sacred-bridge {
  padding-block: 120px;
  border-top: 1px solid var(--line);
}

.biblia6d-showcase,
.course365-showcase {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 54, 82, 0.78), rgba(5, 22, 36, 0.9)),
    radial-gradient(circle at 88% 10%, rgba(var(--accent-rgb), 0.12), transparent 35%);
  box-shadow: var(--shadow);
  scroll-margin-top: 104px;
}

.biblia6d-showcase {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  min-height: 620px;
}

.biblia6d-showcase::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.04) 50%, transparent 50.2%),
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 100% 100%, 100% 72px;
  content: "";
  pointer-events: none;
}

.biblia6d-copy,
.course365-copy {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 6vw, 76px);
}

.experience-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 58px;
}

.experience-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.64);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.08);
}

.experience-brand > span:last-child {
  display: grid;
}

.experience-brand small {
  color: var(--faint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}

.experience-brand strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
}

.biblia6d-copy h3,
.course365-copy h3,
.course-page-copy h1 {
  max-width: 740px;
  margin: 14px 0 20px;
  font-family: var(--display);
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .94;
}

.biblia6d-copy > p:not(.feature-kicker, .integration-note),
.course365-copy > p:not(.feature-kicker, .integration-note) {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.experience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.experience-chips li {
  padding: 8px 12px;
  border: 1px solid rgba(var(--accent-2-rgb), .22);
  border-radius: 999px;
  background: rgba(var(--accent-2-rgb), .055);
  color: #cceafb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.integration-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 11px;
  line-height: 1.55;
}

.scripture-window {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  align-content: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(127, 204, 242, .14), rgba(4, 18, 30, .38)),
    radial-gradient(circle at 50% 34%, rgba(255, 241, 194, .19), transparent 30%);
}

.scripture-window::before {
  position: absolute;
  right: 13%;
  bottom: -8%;
  left: 13%;
  height: 76%;
  border: 1px solid rgba(var(--accent-rgb), .5);
  border-radius: 48% 48% 0 0;
  box-shadow:
    inset 0 0 80px rgba(var(--accent-2-rgb), .08),
    0 0 0 10px rgba(var(--accent-rgb), .025);
  content: "";
}

.scripture-halo {
  position: absolute;
  top: 12%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(var(--accent-rgb), .18) 0 2deg,
    transparent 2deg 14deg
  );
  filter: blur(.2px);
  mask-image: radial-gradient(circle, transparent 0 18%, black 20%, transparent 69%);
  animation: rayTurn 60s linear infinite reverse;
}

.scripture-window > span,
.scripture-window > strong,
.scripture-window > b {
  position: relative;
  z-index: 2;
}

.scripture-window > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .34em;
}

.scripture-window > strong {
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(62px, 8vw, 108px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .85;
}

.scripture-window > b {
  margin-top: 12px;
  color: #bfe6fa;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
}

.scripture-lines {
  position: relative;
  z-index: 2;
  display: grid;
  width: 46%;
  gap: 7px;
  margin-top: 30px;
}

.scripture-lines i {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 241, 251, .45), transparent);
}

.course365-showcase {
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  margin-top: 24px;
  background:
    linear-gradient(125deg, rgba(9, 29, 47, .94), rgba(31, 36, 45, .84)),
    radial-gradient(circle at 10% 15%, rgba(var(--accent-rgb), .12), transparent 38%);
}

.course365-art {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.course365-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, rgba(7, 23, 37, .72));
  content: "";
  pointer-events: none;
}

.course365-art img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  background: #f3f0e9;
  filter: saturate(.82) contrast(1.04);
}

.course365-art > span,
.course-page-art > span {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(var(--accent-rgb), .44);
  border-radius: 999px;
  background: rgba(4, 19, 31, .88);
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.course-numbers {
  display: flex;
  gap: 0;
  margin: 30px 0 0;
}

.course-numbers div {
  min-width: 112px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.course-numbers div:first-child {
  padding-left: 0;
  border-left: 0;
}

.course-numbers dt {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 600;
}

.course-numbers dd {
  margin: 0;
  color: var(--faint);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.final-cta h2 {
  max-width: 810px;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.final-cta .button {
  position: relative;
  z-index: 2;
  min-width: 240px;
}

.final-light {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.11;
  filter: blur(80px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 60px;
  align-items: start;
  padding-block: 50px 36px;
  border-top: 1px solid var(--line);
}

.site-footer > div:first-child p {
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: #515661;
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 16px;
  transform: translateY(24px);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 12px;
  background: rgba(9, 10, 14, 0.94);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  color: var(--ink);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(.2,.75,.2,1), opacity 700ms ease;
}

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

.feature-card:nth-child(2) {
  transition-delay: 80ms;
}

.feature-card:nth-child(3) {
  transition-delay: 160ms;
}

.station-detail-page {
  min-height: 100vh;
}

.station-detail-hero {
  min-height: min(780px, 86vh);
}

.station-detail-hero .hero-copy {
  max-width: 760px;
}

.station-detail-hero h1 {
  font-size: clamp(52px, 5.4vw, 76px);
  letter-spacing: -.05em;
}

.station-detail-hero .hero-description {
  max-width: 660px;
}

.station-guide-grid .feature-card {
  min-height: 330px;
}

.moment-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.moment-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.moment-list li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), .6);
  content: "";
}

.station-detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.simple-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.simple-page main {
  max-width: 650px;
  text-align: center;
}

.simple-page main > p {
  margin: 30px 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.simple-page h1 {
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 78px);
  letter-spacing: -.05em;
}

.portal-page {
  min-height: 100vh;
}

.portal-header {
  position: relative;
}

.portal-header nav a[aria-current="page"] {
  color: var(--accent);
}

.integration-main {
  padding-bottom: 28px;
}

.integration-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
  align-items: end;
  gap: 50px;
  padding-block: 72px 34px;
}

.integration-intro h1 {
  max-width: 840px;
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .88;
}

.integration-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.embedded-experience {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #f0eee9;
  box-shadow: var(--shadow);
}

.embed-toolbar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 16px;
  background: #071a2b;
  color: var(--faint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.embed-toolbar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.embed-toolbar span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79e3a0;
  box-shadow: 0 0 14px rgba(121, 227, 160, .7);
}

.embed-toolbar a {
  color: var(--accent);
}

.embedded-experience iframe {
  display: block;
  width: 100%;
  height: max(760px, calc(100vh - 150px));
  border: 0;
  background: #efede8;
}

.embedded-experience noscript p {
  margin: 0;
  padding: 36px;
  color: #1c1917;
}

.embedded-experience noscript a {
  color: #8b6914;
  text-decoration: underline;
}

.course-page-hero {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(38px, 7vw, 110px);
  min-height: calc(100vh - 94px);
  padding-block: 70px 100px;
}

.course-page-art {
  position: relative;
  width: min(100%, 540px);
  justify-self: center;
  isolation: isolate;
}

.course-page-art .heaven-rays {
  inset: -24%;
}

.course-page-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(var(--accent-rgb), .22);
  border-radius: 32px;
  box-shadow:
    0 38px 100px rgba(0, 5, 14, .48),
    0 0 80px rgba(var(--accent-rgb), .08);
}

.course-page-copy h1 {
  font-size: clamp(50px, 6.8vw, 88px);
}

.course-page-copy h1 em {
  color: var(--accent);
  font-style: normal;
}

.course-page-copy > p:not(.eyebrow, .integration-note) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.course-detail-section {
  padding-block: 110px;
  border-top: 1px solid var(--line);
}

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

.course-feature-grid article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(17, 48, 73, .7), rgba(7, 24, 39, .84));
}

.course-feature-grid article > span {
  color: rgba(var(--accent-rgb), .35);
  font-family: var(--display);
  font-size: 48px;
}

.course-feature-grid h3 {
  margin: 66px 0 10px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.course-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.64;
}

@keyframes drift {
  from { transform: translate3d(-4%, -4%, 0) scale(.9); }
  to { transform: translate3d(8%, 8%, 0) scale(1.12); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes equalize {
  from { height: 9px; opacity: .42; }
  to { height: 48px; opacity: 1; }
}

@keyframes buttonPulse {
  70% { box-shadow: 0 0 0 8px rgba(6, 7, 8, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 7, 8, 0); }
}

@keyframes livePulse {
  50% { opacity: .45; transform: scale(.75); }
}

@keyframes artworkScan {
  from { transform: translateY(-30%) skewY(-10deg); }
  to { transform: translateY(500%) skewY(-10deg); }
}

@keyframes skeleton {
  to { background-position-x: -220%; }
}

@keyframes rayTurn {
  to { transform: rotate(360deg); }
}

@keyframes starPulse {
  50% { transform: scale(.72); opacity: .42; }
}

@keyframes cloudFloat {
  from { transform: translate3d(-2%, 2%, 0) scale(.96); }
  to { transform: translate3d(4%, -3%, 0) scale(1.05); }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr);
  }

  .hero h1 {
    font-size: clamp(52px, 8.2vw, 82px);
  }

  .station-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .station-card:nth-child(4),
  .station-card:nth-child(5) {
    min-height: 120px;
  }

  .listening-layout {
    grid-template-columns: 1fr;
  }

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

  .timer-face {
    width: 190px;
  }

  .track-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .header-cta span:first-child {
    display: none;
  }

  .header-cta {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    min-width: 0;
    padding-block: 82px 70px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    width: min(100%, 500px);
    min-width: 0;
    justify-self: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .station-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .station-card {
    min-height: 128px;
  }

  .now-playing {
    grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
  }

  .dna-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .feature-index {
    margin-bottom: 40px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta .button {
    width: fit-content;
  }

  .biblia6d-showcase,
  .course365-showcase,
  .course-page-hero,
  .integration-intro {
    grid-template-columns: 1fr;
  }

  .scripture-window {
    min-height: 520px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .course365-art {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .course365-art img {
    min-height: 440px;
  }

  .course-page-hero {
    min-height: auto;
  }

  .course-page-art {
    width: min(100%, 480px);
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-header {
    width: calc(100% - 22px);
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
    min-height: 58px;
    padding: 8px 9px 8px 12px;
  }

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

  .brand-name {
    max-width: 185px;
    font-size: 11px;
  }

  .header-cta {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-block: 70px 60px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(46px, 15.5vw, 70px);
  }

  .theme-worship .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

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

  .hero-actions {
    display: grid;
  }

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

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 38px;
  }

  .hero-stats div {
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-stats dt {
    font-size: 17px;
  }

  .hero-stats dd {
    font-size: 8px;
    line-height: 1.3;
  }

  .hero-visual {
    width: 100%;
    margin-left: 0;
  }

  .floating-label {
    font-size: 8px;
  }

  .radio-section,
  .experience-section {
    padding-block: 76px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .section-heading > p {
    font-size: 15px;
  }

  .station-grid {
    display: flex;
    width: calc(100vw - 11px);
    margin-right: -11px;
    padding-right: 11px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .station-grid::-webkit-scrollbar {
    display: none;
  }

  .station-card,
  .station-card:nth-child(4),
  .station-card:nth-child(5) {
    min-width: 230px;
    min-height: 120px;
    scroll-snap-align: start;
  }

  .player-card,
  .session-card,
  .catalog-block {
    padding: 18px;
    border-radius: 24px;
  }

  .now-playing {
    grid-template-columns: 1fr;
  }

  .artwork-wrap {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .track-copy {
    text-align: center;
  }

  .track-progress {
    text-align: left;
  }

  .player-controls {
    justify-content: center;
  }

  .volume-control {
    display: none;
  }

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

  .sleep-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .sleep-row > div {
    width: 100%;
  }

  .sleep-option {
    flex: 1;
    padding-inline: 5px;
  }

  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .local-note {
    text-align: left;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card a {
    right: 24px;
    left: 24px;
  }

  .final-cta {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .final-cta .button {
    width: 100%;
    min-width: 0;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .sacred-bridge,
  .course-detail-section {
    padding-block: 76px;
  }

  .biblia6d-copy,
  .course365-copy {
    padding: 28px 22px;
  }

  .experience-brand {
    margin-bottom: 38px;
  }

  .biblia6d-copy h3,
  .course365-copy h3,
  .course-page-copy h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .bridge-actions {
    display: grid;
  }

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

  .scripture-window {
    min-height: 430px;
  }

  .course365-art,
  .course365-art img {
    min-height: 360px;
  }

  .course-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .course-numbers div {
    min-width: 0;
    padding-inline: 12px;
  }

  .integration-intro {
    padding-block: 54px 26px;
  }

  .integration-intro h1 {
    font-size: clamp(43px, 14vw, 64px);
  }

  .embed-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 13px;
  }

  .embedded-experience {
    width: 100%;
    border-radius: 16px;
  }

  .embedded-experience iframe {
    height: calc(100vh - 108px);
    min-height: 640px;
  }

  .course-page-hero {
    padding-block: 60px 76px;
  }

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

  .course-feature-grid article {
    min-height: 250px;
  }
}

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

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

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