
/* =========================================================
   AMBER LERMA PERSONAL WEBSITE - CLEANED STYLESHEET v366
   Theme: Aurora / Lilac / Seafoam / Cosmic Glass
   ========================================================= */

/* =========================================================
   SELF-HOSTED FONT: INTER
   Purpose:
   Loads Inter directly from this website instead of Google Fonts.
   Notes:
   Only 500 and 700 are declared because those are the files currently uploaded.
========================================================= */

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-v20-latin/inter-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-v20-latin/inter-v20-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --deep: #071227;
  --plum: #160d2d;
  --sea: #92ffea;
  --sea-soft: #8fffe6;
  --lilac: #c7a6ff;
  --violet: #9b6cff;
  --cream: #fff0b8;
  --text: #fbf8ff;
  --muted: rgba(255, 255, 255, 0.78);
  --card: rgba(10, 15, 34, 0.62);
  --border: rgba(255, 255, 255, 0.14);
  --button-text: #07111f;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--text);
  text-align: center;

  background: linear-gradient(115deg,
    #061426 0%,
    #0b2740 20%,
    #3f8581 38%,
    #6fc7b8 50%,
    #3f8581 60%,
    #6a5a9a 72%,
    #4a3a78 85%,
    #190f34 100%
  );

  background-attachment: fixed;
}


.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  left: 0;
  top: 0;
  z-index: 9999;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
  mix-blend-mode: screen;
  filter: blur(18px);
  background:
    radial-gradient(circle, rgba(146, 255, 234, 0.20), transparent 62%),
    radial-gradient(circle, rgba(199, 166, 255, 0.16), transparent 72%);
}

/* Layout */
.wrap {
  width: min(1220px, calc(100% - 32px));
  margin: auto;
}

.section {
  padding: 58px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(8, 12, 28, 0.58);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 42px;
  filter: drop-shadow(0 0 12px rgba(146, 255, 234, 0.55));
}

.brand .logo-text,
.logo-text,
.footer-brand strong,
.footer-brand .logo-text,
footer .brand span,
footer .logo-text {
  font-family: 'Pinyon Script', cursive !important;
  font-size: 2rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0.5px !important;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.links a:hover,
.links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.mobile-menu-btn,
.mobile-dropdown {
  display: none;
}

/* Hero, panels, cards */
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 60px 0;
}

.panel,
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 38px;
  background: var(--card);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.panel::before,
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 35%, rgba(146, 255, 234, 0.05));
}

.hero-main {
  padding: 54px 42px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), var(--violet));
  box-shadow: 0 0 18px var(--sea);
  animation: pulse 2s infinite;
}

/* Typography */
h1,
h2,
h3,
h4,
.section-title,
.card-title,
.page-title,
.about-title,
.professional-title,
.quote,
.cosmic-popup-box h3,
.page-link-card h3,
.content-card h3,
.feature-card h3 {
  font-family: 'Spectral', serif;
  font-weight: 500;
}

h1 {
  margin: 22px auto;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.18;
}

p {
  max-width: 820px;
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.quote {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.18;
}

.grad {
  color: transparent;
  background: linear-gradient(90deg, var(--sea), var(--lilac), var(--cream), var(--sea));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientShift 7s ease-in-out infinite;
}

.soft {
  opacity: 0.75;
  font-size: 0.95rem;
}

/* Logo orb */
.logo-orb {
  width: 165px;
  height: 165px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 255, 234, 0.12), rgba(199, 166, 255, 0.13), transparent 72%);
}

.logo-orb img {
  width: 118px;
  filter: drop-shadow(0 0 16px rgba(146, 255, 234, 0.60));
}

/* Buttons */
.btnrow,
.button-row,
.btn-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.btn-wide {
  display: block;
  max-width: 260px;
  margin: 12px auto 0;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--button-text);
  text-decoration: none;
  font-weight: 900;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(199, 166, 255, 0.40), rgba(146, 255, 234, 0.28));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
}

.btn.primary,
.btn:not(.primary):hover {
  color: var(--button-text);
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, var(--violet), var(--sea), var(--lilac), var(--sea));
  background-size: 260% 260%;
  animation: buttonGradientShift 8s ease-in-out infinite;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.38), transparent 34%);
  transition: opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(146, 255, 234, 0.58);
  box-shadow: 0 0 0 1px rgba(146, 255, 234, 0.20), 0 14px 34px rgba(146, 255, 234, 0.24), 0 0 26px rgba(155, 108, 255, 0.22);
  filter: brightness(1.06);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn .ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.65s ease-out forwards;
}

/* Dividers */
.divider {
  width: 40px;
  height: 2px;
  margin: 16px auto;
  opacity: 0.6;
  background: linear-gradient(90deg, #7ee7c8, #a78bfa);
}

.cosmic-divider,
.mini-divider {
  position: relative;
  width: 160px;
  height: 1px;
  margin: 26px auto;
  opacity: 0.75;
  background: linear-gradient(90deg, transparent, var(--violet), var(--sea), transparent);
}

.cosmic-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--violet);
  box-shadow: 0 0 14px rgba(155, 108, 255, 0.9), 0 0 28px rgba(146, 255, 234, 0.35);
}

/* Clickable cards */
.page-link-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.page-link-card,
.page-link-card:link,
.page-link-card:visited,
.page-link-card:hover,
.page-link-card:active,
.page-link-card *,
.page-link-card *:link,
.page-link-card *:visited,
.page-link-card *:hover,
.page-link-card *:active {
  color: var(--text) !important;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  text-decoration-color: transparent !important;
  -webkit-tap-highlight-color: transparent;
}

.page-link-card h3 {
  color: #ffffff !important;
}

.page-link-card p {
  color: var(--muted) !important;
}

.page-link-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(146, 255, 234, 0.12), transparent 70%);
  transition: opacity 0.4s ease;
}

.page-link-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(146, 255, 234, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(146, 255, 234, 0.15), 0 25px 60px rgba(146, 255, 234, 0.18), 0 0 40px rgba(155, 108, 255, 0.18);
}

.page-link-card:hover::after {
  opacity: 1;
}

.explore-home-section .page-link-card .card-icon {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  min-height: 72px !important;
  display: block !important;
  margin: 0 auto 18px !important;
  border: 2px solid rgba(127, 212, 193, 0.85) !important;
  border-radius: 50% !important;
  background-color: rgba(15, 18, 38, 0.95) !important;
  background-size: 58% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 0 14px rgba(127, 212, 193, 0.35), 0 0 26px rgba(159, 124, 255, 0.25) !important;
}

.explore-home-section .page-link-card:hover .card-icon {
  transform: translateY(-4px) scale(1.05);
}

/* Right-click protection popup */
.cosmic-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 6, 20, 0.55);
  backdrop-filter: blur(8px);
}

.cosmic-popup.active {
  display: flex;
}

.cosmic-popup-box {
  width: min(420px, calc(100% - 40px));
  padding: 28px;
  border: 1px solid rgba(143, 255, 230, 0.35);
  border-radius: 26px;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(143, 255, 230, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(199, 166, 255, 0.22), transparent 40%),
    rgba(8, 12, 28, 0.92);
  box-shadow: 0 0 35px rgba(143, 255, 230, 0.22), 0 25px 70px rgba(0, 0, 0, 0.5);
}

.cosmic-popup-box h3 {
  margin: 0 0 12px;
  color: #8fffe6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cosmic-popup-box p {
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.82);
}

.cosmic-popup-box button {
  border: none;
  border-radius: 999px;
  padding: 11px 24px;
  color: #07111f;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #c7a6ff, #8fffe6);
}

/* Global footer */
.site-footer {
  width: min(1220px, calc(100% - 32px));
  margin: 60px auto 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px 28px 0 0;
  background: rgba(8, 12, 28, 0.62);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  display: block;
  object-fit: contain;
  padding: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 70%);
  box-shadow: 0 0 18px rgba(159, 124, 255, 0.25), 0 0 35px rgba(127, 212, 193, 0.18);
  filter: drop-shadow(0 0 14px rgba(143, 255, 230, 0.55));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.footer-brand strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
}

.footer-brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

/* FOOTER — DESKTOP LINK GRID */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 22px 72px;
  text-align: center;
}

.footer-links a {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--sea-soft);
}

.footer-copy {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-align: center;
}

footer:not(.site-footer) {
  padding: 42px 0 55px;
  color: rgba(255, 255, 255, 0.62);
}

/* Centered subpage layouts */
.professional-hero-center,
.soul-hero-center {
  display: block;
  min-height: auto;
  padding-top: 80px;
}

.professional-main,
.soul-main {
  max-width: 980px;
  margin: 0 auto;
}

.professional-main h1,
.soul-main h1 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.professional-main p,
.soul-main p {
  max-width: 820px;
}

.soul-feature {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px;
}

/* Homepage phoenix hero */
.phoenix-hero {
  position: relative;
  display: block;
  min-height: auto;
  padding: 34px 0 58px !important;
}

.hero-top {
  position: relative;
  max-width: 1100px !important;
  margin: 0 auto 34px !important;
  padding: 0 20px !important;
  text-align: center;
}

.phoenix-kicker {
  position: relative;
  z-index: 4;
  margin-bottom: 18px !important;
}

.phoenix-bg {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: -58px !important;
  width: min(1460px, 128vw) !important;
  max-width: none;
  opacity: 0.20 !important;
  pointer-events: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 18px rgba(199, 166, 255, 0.22)) drop-shadow(0 0 26px rgba(146, 255, 234, 0.08)) !important;
}

.phoenix-title {
  position: relative;
  z-index: 3;
  max-width: 1050px !important;
  margin: 120px auto 18px !important;
  color: #ffffff;
  font-family: 'Spectral', serif;
  font-size: clamp(40px, 4.7vw, 68px) !important;
  line-height: 1.07 !important;
  letter-spacing: -0.025em !important;
}

.phoenix-subtext {
  position: relative;
  z-index: 3;
  max-width: 760px !important;
  margin: 22px auto 22px !important;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.hero-top::after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  margin: 26px auto 0;
  opacity: 0.75;
  background: linear-gradient(90deg, transparent, var(--violet), var(--sea), transparent);
  box-shadow: 0 0 14px rgba(155, 108, 255, 0.45);
}

.hero-top::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  z-index: 4;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  box-shadow: 0 0 14px rgba(155, 108, 255, 0.95), 0 0 28px rgba(146, 255, 234, 0.35);
}

.phoenix-card-grid {
  position: relative;
  z-index: 3;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 30px !important;
  width: min(1080px, calc(100% - 40px)) !important;
  max-width: 1080px !important;
  margin: 42px auto 0 !important;
}

.phoenix-card {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 300px !important;
  padding: 46px 42px 40px !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(8, 12, 28, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.phoenix-card::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 150px;
  height: 1px;
  opacity: 0.7;
  pointer-events: none;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--violet), var(--sea), transparent);
  box-shadow: 0 0 14px rgba(155, 108, 255, 0.35);
}

.card-glow-dot {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px auto 30px !important;
  border-radius: 50%;
  opacity: 0.8;
  transform: translateX(-50%);
  background: radial-gradient(circle, #b88cff, transparent);
}

.phoenix-card-inner,
.phoenix-card-inner.right {
  display: grid !important;
  grid-template-columns: 130px 1fr !important;
  align-items: center !important;
  gap: 34px !important;
  width: 100% !important;
  text-align: left !important;
}

.feather-icon,
.mini-logo-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.feather-icon img {
  width: 110px !important;
  max-width: 110px !important;
  height: auto !important;
  display: block !important;
  opacity: 0.98 !important;
  filter: drop-shadow(0 0 14px rgba(199, 166, 255, 0.65)) drop-shadow(0 0 28px rgba(146, 255, 234, 0.35));
}

.mini-logo-wrap img {
  width: 110px;
  max-width: 110px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(140, 200, 255, 0.25));
}

.phoenix-card h2 {
  margin: 0 0 16px;
  font-family: 'Spectral', serif;
  font-size: clamp(28px, 2.6vw, 38px) !important;
  line-height: 1.15;
  text-align: left !important;
}

.phoenix-card p,
.card-copy p {
  max-width: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.7 !important;
  text-align: left !important;
}

.card-copy h2 {
  margin: 0 0 16px;
  font-family: 'Spectral', serif;
  font-size: clamp(28px, 2.6vw, 38px) !important;
  line-height: 1.15 !important;
  text-align: left !important;
}

.phoenix-card .mini-divider {
  width: 150px;
  margin: 18px auto 22px 0 !important;
}

/* Portrait and signature */
.portrait-section {
  position: relative;
  padding: 40px 20px 10px !important;
}

.profile-caption {
  position: relative;
  z-index: 2;
  margin-top: 14px !important;
  text-align: center;
}

.profile-caption strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
}

.profile-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.signature-line {
  position: relative;
  isolation: isolate;
  margin-top: 16px !important;
  color: transparent !important;
  font-family: 'Spectral', serif !important;
  font-size: 1.25rem !important;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, var(--lilac), var(--sea), var(--cream), var(--lilac));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 10px rgba(146, 255, 234, 0.22), 0 0 18px rgba(199, 166, 255, 0.18);
  animation: signatureGlow 8s linear infinite;
}

.signature-line::before {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  margin: 0 auto 10px !important;
  opacity: 0.8;
  background: linear-gradient(90deg, transparent, var(--violet), var(--sea), transparent);
  box-shadow: 0 0 14px rgba(155, 108, 255, 0.35);
}

.signature-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(620px, 85vw) !important;
  height: 60px !important;
  opacity: 0.6 !important;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 50%, rgba(146, 255, 234, 0.18), transparent 42%),
    radial-gradient(circle at 65% 50%, rgba(199, 166, 255, 0.18), transparent 45%);
  filter: blur(18px);
  animation: signatureAuraPulse 6s ease-in-out infinite;
}

.portrait-caption.signature-line {
  margin-top: 6px !important;
  margin-bottom: 0 !important;
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
  letter-spacing: 0.3px;
}

.orbit-portrait {
  width: 440px !important;
  height: 440px !important;
}

.portrait-img {
  width: 355px !important;
  height: 355px !important;
  box-shadow: 0 0 42px rgba(146, 255, 234, 0.34), 0 0 90px rgba(199, 166, 255, 0.26), 0 0 130px rgba(155, 108, 255, 0.16) !important;
}

.orbit-ring {
  width: 420px !important;
  height: 198px !important;
  border-color: rgba(146, 255, 234, 0.38) !important;
  box-shadow: 0 0 20px rgba(146, 255, 234, 0.18), 0 0 34px rgba(199, 166, 255, 0.12);
}

.orbit-ring.two {
  width: 448px !important;
  height: 210px !important;
  border-color: rgba(199, 166, 255, 0.32) !important;
}

.orbit-dot {
  transform-origin: center !important;
  box-shadow: 0 0 16px rgba(146, 255, 234, 0.95), 0 0 28px rgba(199, 166, 255, 0.35) !important;
}

.orbit-dot.purple {
  box-shadow: 0 0 16px rgba(155, 108, 255, 0.95), 0 0 28px rgba(146, 255, 234, 0.25) !important;
}

.portrait-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: 2px;
  height: 60px;
  opacity: 0.7;
  pointer-events: none;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(146, 255, 234, 0), rgba(146, 255, 234, 0.9), rgba(199, 166, 255, 0.9), rgba(146, 255, 234, 0));
  background-size: 100% 200%;
  filter: blur(1px);
  animation: energyFlow 4.5s ease-in-out infinite;
}

/* Home story card */
.home-story-card h2 {
  font-family: 'Spectral', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.home-story-card p {
  max-width: 760px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.85;
}

.panel p,
.card p {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.panel p:first-child,
.panel p:nth-child(2),
.panel p:nth-child(4),
.panel p:nth-child(5) {
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: 'Spectral', serif !important;
  font-size: 1.28rem !important;
  font-weight: 500 !important;
  line-height: 1.75 !important;
  letter-spacing: 0.2px;
}

.panel hr {
  margin: 26px auto;
  opacity: 0.25;
}

/* Professional page */
.professional-hero {
  padding: 48px 20px 40px;
  text-align: center;
}

.professional-kicker {
  width: fit-content;
  margin: 0 auto 28px;
}

.professional-title {
  max-width: 1080px;
  margin: 0 auto 48px;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.professional-feature {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr) !important;
  align-items: center;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.professional-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center !important;
}

.professional-copy p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.85;
  letter-spacing: 0.1px;
}

.professional-copy .btn {
  margin-top: 8px;
  border: none;
  color: #0f1226 !important;
  font-weight: 700;
  background: linear-gradient(135deg, #7fd4c1, #9f7cff) !important;
  box-shadow: 0 10px 30px rgba(127, 212, 193, 0.35);
}

.professional-copy .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(159, 124, 255, 0.35);
}

.professional-photo-card {
  min-height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  padding: 38px !important;
  border-color: rgba(146, 255, 234, 0.28) !important;
  background: radial-gradient(circle at center, rgba(146, 255, 234, 0.10), transparent 58%), rgba(8, 12, 28, 0.58) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), 0 0 38px rgba(146, 255, 234, 0.10) !important;
}

.professional-profile-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: 390px !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.profile-glow {
  position: absolute;
  top: 54px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  opacity: 0.75;
  pointer-events: none;
  filter: blur(6px);
  background: radial-gradient(circle, rgba(127, 212, 193, 0.28), transparent 68%);
}

.clean-photo-orb {
  position: relative !important;
  z-index: 2;
  width: 275px !important;
  height: 275px !important;
  margin: 0 auto !important;
  padding: 7px;
  border-radius: 50% !important;
  background: conic-gradient(from 0deg, var(--sea), var(--lilac), var(--violet), var(--cream), var(--sea)) !important;
  box-shadow: 0 0 26px rgba(146, 255, 234, 0.28), 0 0 46px rgba(199, 166, 255, 0.20) !important;
  animation: professionalPhotoRing 8s linear infinite;
}

.professional-photo-orb,
.professional-photo-orb img,
.clean-photo-orb img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  object-fit: cover;
}

.profile-caption strong {
  color: transparent !important;
  font-family: 'Spectral', serif !important;
  font-size: 2rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  background: linear-gradient(90deg, var(--sea), var(--lilac), var(--cream));
  -webkit-background-clip: text;
  background-clip: text;
}

.profile-caption span {
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
}

.professional-photo-link {
  display: inline-block;
}

.professional-photo-link:hover .professional-photo-orb,
.professional-photo-link:hover .clean-photo-orb {
  transform: scale(1.03);
  transition: transform 0.25s ease;
  cursor: pointer;
}

/* Music page */
.frequency-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
  height: 42px;
  margin: 10px auto 32px;
}

.frequency-bars span {
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--sea), var(--lilac), var(--cream));
  box-shadow: 0 0 12px rgba(146, 255, 234, 0.45), 0 0 24px rgba(199, 166, 255, 0.28);
  animation: frequencyPulse 1.4s ease-in-out infinite;
}

.frequency-bars span:nth-child(2) { animation-delay: 0.15s; }
.frequency-bars span:nth-child(3) { animation-delay: 0.3s; }
.frequency-bars span:nth-child(4) { animation-delay: 0.45s; }
.frequency-bars span:nth-child(5) { animation-delay: 0.3s; }
.frequency-bars span:nth-child(6) { animation-delay: 0.15s; }
.frequency-bars span:nth-child(7) { animation-delay: 0.05s; }

@media (min-width: 901px) {
  body.music-page .music-hero {
    display: grid !important;
    grid-template-columns: 1.05fr 0.95fr !important;
    grid-template-areas: "kicker kicker" "main side" !important;
    align-items: center !important;
    gap: 28px !important;
    padding: 58px 0 70px !important;
  }

  body.music-page .music-kicker {
    grid-area: kicker !important;
    justify-self: center !important;
    align-self: center !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: fit-content !important;
    margin: -16px auto 16px !important;
    transform: none !important;
  }

  body.music-page .hero-main {
    grid-area: main !important;
    padding: 20px 28px 40px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.music-page .hero-main::before {
    display: none !important;
  }

  body.music-page .music-hero > aside {
    grid-area: side !important;
  }
}


@keyframes pulse { 50% { transform: scale(1.15); opacity: 0.75; } }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes buttonGradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes ripple { to { transform: translate(-50%, -50%) scale(18); opacity: 0; } }
@keyframes signatureGlow { 0% { background-position: 0% center; } 100% { background-position: 220% center; } }
@keyframes signatureAuraPulse { 0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.96); } 50% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.04); } }
@keyframes energyFlow { 0%, 100% { background-position: 0% 0%; opacity: 0.55; } 50% { background-position: 0% 100%; opacity: 0.9; } }
@keyframes professionalPhotoRing { to { background: conic-gradient(from 360deg, var(--sea), var(--lilac), var(--violet), var(--cream), var(--sea)); } }
@keyframes frequencyPulse { 0%, 100% { height: 14px; opacity: 0.65; } 50% { height: 38px; opacity: 1; } }

/* Tablet */
@media (max-width: 900px) {
  .hero,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .navin {
    flex-direction: column;
    border-radius: 28px;
  }

  .panel,
  .card,
  .hero-main {
    padding: 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    flex-direction: column;
  }

  .phoenix-bg {
    width: 135vw !important;
    top: -20px !important;
    opacity: 0.15 !important;
  }

  .phoenix-title {
    margin-top: 92px !important;
    font-size: clamp(38px, 9vw, 58px) !important;
  }

  .phoenix-card-grid {
    grid-template-columns: 1fr !important;
  }

  .phoenix-card-inner,
  .phoenix-card-inner.right {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .phoenix-card p,
  .phoenix-card h2,
  .card-copy,
  .card-copy p,
  .card-copy h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .phoenix-card .mini-divider {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.music-page .music-hero {
    position: relative !important;
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  body.music-page .music-kicker {
    display: inline-flex !important;
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    z-index: 10 !important;
    width: fit-content !important;
    margin: 0 !important;
    white-space: nowrap !important;
    transform: translateX(-50%) !important;
  }

  body.music-page .hero-main {
    padding-top: 80px !important;
  }

  body.music-page .hero-main h1 {
    margin-top: 0 !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .wrap,
  .nav,
  .navin,
  .hero,
  .panel,
  .section,
  .site-footer {
    max-width: 100%;
    box-sizing: border-box;
  }

  .wrap,
  .site-footer {
    width: min(100% - 20px, 1220px);
  }

  .nav {
    left: 0;
    right: 0;
    padding-bottom: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .navin {
    z-index: 1000 !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
    overflow: visible !important;
    padding: 12px 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .brand {
    position: relative !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center !important;
    width: 100% !important;
    gap: 10px;
    padding: 8px 54px 8px 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(12, 16, 34, 0.55);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-menu-btn {
    display: block !important;
    position: absolute;
    right: 18px !important;
    top: 51% !important;
    z-index: 30;
    padding: 4px 6px;
    border: none;
    color: rgba(255, 255, 255, 0.88);
    background: none;
    font-size: 1.45rem !important;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .mobile-dropdown {
    position: relative !important;
    z-index: 1001 !important;
    width: min(92vw, 360px);
    max-height: 62vh !important;
    margin: 10px auto 0 !important;
    overflow-y: auto !important;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(8, 12, 28, 0.88);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-dropdown.open {
    display: grid !important;
    gap: 10px;
  }

  .mobile-dropdown a {
    padding: 10px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.95rem;
  }

  .mobile-dropdown a.active,
  .mobile-dropdown a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
  }

  .links {
    width: 100vw !important;
    max-width: 100vw !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    margin: 4px calc(50% - 50vw) 0 !important;
    padding: 14px 22px 26px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    scrollbar-width: none !important;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch !important;
  }

  .links::-webkit-scrollbar {
    display: none !important;
  }

  .links a {
    flex: 0 0 68px !important;
    width: 68px !important;
    min-width: 68px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    overflow: visible !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    font-size: 0.72rem !important;
    line-height: 1.1 !important;
    text-align: center !important;
    white-space: normal !important;
    scroll-snap-align: center;
  }

  .links a::before {
    content: "" !important;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    display: flex !important;
    border: 3px solid rgba(127, 212, 193, 0.9) !important;
    border-radius: 50% !important;
    background-color: rgba(15, 18, 38, 0.95) !important;
    background-size: 58% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    box-shadow: 0 0 12px rgba(127, 212, 193, 0.35), 0 0 22px rgba(159, 124, 255, 0.22) !important;
  }

  .links a.active::before {
    border-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 0 18px rgba(127, 212, 193, 0.55), 0 0 30px rgba(159, 124, 255, 0.38) !important;
  }

  /* ========================================================= */
  /* MOBILE CIRCLE NAV ICON IMAGES */
  /* Supports root-relative clean URLs, clean URLs, and .html URLs */
  /* ========================================================= */

  .links a[href="/"]::before,
  .links a[href="index.html"]::before {
    background-image: url("/assets/icons/home.webp") !important;
  }

  .links a[href="/astrology"]::before,
  .links a[href="astrology"]::before,
  .links a[href="astrology.html"]::before {
    background-image: url("/assets/icons/astrology.webp") !important;
  }

  .links a[href="/spirituality"]::before,
  .links a[href="spirituality"]::before,
  .links a[href="spirituality.html"]::before {
    background-image: url("/assets/icons/spirituality.webp") !important;
  }

  .links a[href="/tarot"]::before,
  .links a[href="tarot"]::before,
  .links a[href="tarot.html"]::before {
    background-image: url("/assets/icons/tarot.webp") !important;
  }

  .links a[href="/crystals"]::before,
  .links a[href="crystals"]::before,
  .links a[href="crystals.html"]::before {
    background-image: url("/assets/icons/crystals.webp") !important;
  }

  .links a[href="/beauty"]::before,
  .links a[href="beauty"]::before,
  .links a[href="beauty.html"]::before {
    background-image: url("/assets/icons/beauty.webp") !important;
  }

  .links a[href="/music"]::before,
  .links a[href="music"]::before,
  .links a[href="music.html"]::before {
    background-image: url("/assets/icons/music.webp") !important;
  }

  .links a[href="/professional"]::before,
  .links a[href="professional"]::before,
  .links a[href="professional.html"]::before {
    background-image: url("/assets/icons/professional.webp") !important;
  }

  .links a[href="/soul-of-chiron"]::before,
  .links a[href="soul-of-chiron"]::before,
  .links a[href="soul-of-chiron.html"]::before {
    background-image: url("/assets/icons/SOCC.webp") !important;
  }

  .links a[href="/connect"]::before,
  .links a[href="connect"]::before,
  .links a[href="connect.html"]::before {
    background-image: url("/assets/icons/connect.webp") !important;
  }



  .hero {
    gap: 10px !important;
    padding-top: 0 !important;
  }

  .hero-main {
    position: relative !important;
    margin-top: -36px !important;
    padding-top: 18px !important;
    padding-bottom: 26px !important;
  }

  .hero-main .kicker {
    position: relative !important;
    z-index: 5 !important;
    margin-top: -45px !important;
    margin-bottom: 8px !important;
  }

  .hero-main h1 {
    position: relative !important;
    z-index: 5 !important;
    margin-top: -12px !important;
    margin-bottom: 16px !important;
    font-size: clamp(28px, 7.5vw, 42px) !important;
    line-height: 1.25 !important;
  }

  .hero-main p {
    margin-top: 18px !important;
    margin-bottom: 22px !important;
    padding: 0 12px !important;
  }

  body.home-page .hero-main {
    transform: translateY(-55px) !important;
  }

  .glass-card,
  .content-card,
  .card {
    padding: 28px 20px !important;
    border-radius: 18px !important;
  }

  .glass-card p,
  .content-card p,
  .card p {
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
  }

  .section,
  .content-section {
    margin-bottom: 28px !important;
  }

  .glass-card {
    min-height: unset !important;
  }

  body:not(.home-page) main {
    padding-top: 28px !important;
  }

  body:not(.home-page) main > section:first-of-type {
    padding-top: 70px !important;
  }

  body:not(.home-page) .kicker {
    position: relative !important;
    z-index: 2 !important;
    margin-bottom: 22px !important;
  }

  body:not(.home-page) .kicker + h1,
  body:not(.home-page) .kicker + h2 {
    margin-top: 10px !important;
  }

  body.home-page .phoenix-kicker,
  body.professional-page .professional-kicker,
  body.professional-page .kicker {
    color: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(199, 166, 255, 0.28) !important;
    background: rgba(26, 19, 55, 0.78) !important;
    box-shadow: 0 0 18px rgba(155, 108, 255, 0.22), 0 8px 24px rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }

  body.home-page .phoenix-kicker *,
  body.professional-page .professional-kicker *,
  body.professional-page .kicker * {
    color: rgba(255, 255, 255, 0.96) !important;
  }

  .phoenix-hero {
    padding-top: 0 !important;
  }

  .hero-top {
    margin-top: -28px !important;
    margin-bottom: 22px !important;
  }

  .phoenix-kicker {
    position: relative !important;
    z-index: 5 !important;
    margin-top: -16px !important;
    margin-bottom: 2px !important;
  }

  .phoenix-bg {
    top: 20px !important;
    width: 132vw !important;
    opacity: 0.17 !important;
  }

  .phoenix-title {
    position: relative !important;
    z-index: 4 !important;
    max-width: 86vw !important;
    margin-top: 54px !important;
    margin-bottom: 22px !important;
    font-size: clamp(26px, 8vw, 38px) !important;
    line-height: 1.06 !important;
  }

  .phoenix-subtext {
    margin-top: 20px !important;
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75), 0 0 1px rgba(0, 0, 0, 0.8);
  }

  .portrait-section {
    margin-top: 0 !important;
    padding-top: 30px !important;
    padding-bottom: 34px !important;
  }

  .orbit-portrait {
    width: 320px !important;
    height: 320px !important;
    margin-top: -10px !important;
  }

  .portrait-img {
    width: 260px !important;
    height: 260px !important;
  }

  .orbit-ring {
    width: 310px !important;
    height: 150px !important;
  }

  .orbit-ring.two {
    width: 330px !important;
    height: 158px !important;
  }

  .portrait-caption,
  .portrait-text,
  .portrait-section h2 {
    margin-top: 20px !important;
  }

  .panel,
  .home-feature-card,
  .card {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  h2 {
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .card button,
  .card a.button {
    margin-top: 18px;
  }

  body.professional-page main,
  body.professional-page main > section:first-of-type {
    padding-top: 0 !important;
  }

  body.professional-page .professional-hero {
    padding-top: 0 !important;
    padding-bottom: 28px !important;
    margin-top: -18px !important;
  }

  body.professional-page .professional-kicker {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
  }

  body.professional-page .professional-title {
    margin-top: 0 !important;
    margin-bottom: 36px !important;
  }

  body.professional-page .professional-feature {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .professional-copy {
    text-align: center;
  }

  .professional-photo-card {
    order: -1;
    min-height: auto !important;
    height: auto !important;
    padding: 32px 18px 34px !important;
  }

  .professional-profile-frame {
    min-height: auto !important;
    height: auto !important;
  }

  .clean-photo-orb {
    width: 220px !important;
    height: 220px !important;
    max-width: 260px !important;
    margin: 0 auto 14px auto !important;
  }

  .profile-caption {
    margin-top: 6px !important;
  }

  .frequency-bars {
    height: 36px;
    margin: 6px auto 32px;
  }

  .frequency-bars span {
    width: 5px;
  }
}

@media (max-width: 700px) {
  .site-footer {
    width: calc(100% - 32px);
    max-width: 100%;
    margin: 70px auto 24px !important;
    padding: 30px 22px 28px;
    border-radius: 28px;
    box-sizing: border-box;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-brand img {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .footer-brand strong,
  .footer-brand .logo-text {
    margin: 0;
    font-size: 2.15rem !important;
    line-height: 1;
  }

  .footer-brand span {
    display: block;
    max-width: 300px;
    margin: 6px auto 0;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .footer-links {
    justify-content: center;
    gap: 14px 22px;
    max-width: 330px;
    margin: 0 auto;
  }

  .footer-links a {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .footer-copy {
    margin-top: 24px;
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

@media (max-width: 560px) {
  .links a {
    font-size: 13px;
    padding: 8px 10px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  p {
    font-size: 16px;
  }

  .logo-orb {
    width: 135px;
    height: 135px;
  }

  .logo-orb img {
    width: 96px;
  }

  .page-link-card {
    min-height: 190px;
    padding: 28px 22px;
  }

  .page-link-card h3 {
    font-size: 28px;
    line-height: 1.2;
  }

  .page-link-card p {
    font-size: 17px;
    line-height: 1.6;
  }

  .phoenix-card-grid {
    padding: 0 !important;
  }

  .phoenix-card {
    padding: 28px 22px !important;
  }
}

/* =========================
   MOBILE RESTORE FIX
   ========================= */

@media (max-width: 768px) {

  /* INDEX / HOMEPAGE: push main hero content lower */
  body.home-page .phoenix-hero {
  padding-top: 0px !important;
  transform: translateY(-45px);
}

  body.home-page .hero-top {
    margin-top: 18px !important;
  }

  body.home-page .phoenix-title {
  margin-top: 70px !important; /* was 80px */
}

  body.home-page .phoenix-subtext {
  margin-top: 10px !important; /* was 18px */
}

  body.home-page .hero-kicker,
  body.home-page .hero-pill,
  body.home-page .kicker {
  margin-top: -8px !important;
  margin-bottom: 10px !important;
}

  

  /* ALL SUBPAGES: reduce the huge empty gap before glass card */
  body:not(.home-page) main {
    padding-top: 0 !important;
  }

  body:not(.home-page) main > section:first-of-type {
    padding-top: 28px !important;
  }

  body:not(.home-page) .hero,
  body:not(.home-page) .music-hero,
  body:not(.home-page) .professional-hero,
  body:not(.home-page) .soul-hero-center {
    padding-top: 24px !important;
    margin-top: 0 !important;
  }

  body:not(.home-page) .hero-main,
  body:not(.home-page) .panel,
  body:not(.home-page) .card {
    margin-top: 0 !important;
  }


  /* MUSIC PAGE: put pill back inside/centered above the card */
  body.music-page .music-hero {
    display: grid !important;
    grid-template-columns: 1fr !important;
    position: relative !important;
    
  }

  body.music-page .music-kicker {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 5 !important;
    margin: 0 auto -60px !important;
    width: fit-content !important;
    white-space: nowrap !important;
  }

  body.music-page .hero-main {
    padding-top: 70px !important;
    margin-top: -15px !important;
  }


  /* OTHER SUBPAGE PILLS: center them closer to the card */
  body:not(.home-page):not(.music-page) .kicker {
    margin: 0 auto 22px !important;
    width: fit-content !important;
  }
}


@media (max-width: 768px) {
/* =========================================
   MOBILE ONLY — PROFESSIONAL PAGE ALIGNMENT
   Purpose:
   - Align Professional page top spacing with Homepage
   - Prevent affecting all other subpages
   - Controls ONLY the top hero + kicker positioning
   ========================================= */

body.professional-page main > section:first-of-type {
  padding-top: 0 !important;
}

body.professional-page .professional-hero {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.professional-page .professional-title,
body.professional-page .professional-hero h1 {
  transform: translateY(-25px) !important;
}

body.professional-page .professional-kicker,
body.professional-page .kicker {
  margin: 0 auto -25px !important;
  width: fit-content !important;
  transform: translateY(-25px) !important;
}


/* =========================================
   MOBILE ONLY — HOMEPAGE CARD ICON SPACING
   Adjust spacing between divider + icon
   (does NOT affect desktop)
   ========================================= */

body.home-page .cosmic-divider {
  margin-bottom: 24px !important;
}

body.home-page .feather-icon {
  margin-top: 12px !important;
}

body.home-page .mini-logo-wrap {
  margin-top: 12px !important;
    }
}



/* =========================================
   FOOTER TEXT — SOFT GLOW BACKDROP (MATCH HERO SUBTEXT)
   ========================================= */

.footer-copy-outside {
  position: relative;
  text-align: center;
  margin: 26px auto 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);

  /* THIS is the glow */
  text-shadow:
    0 0 10px rgba(140, 200, 255, 0.25),
    0 0 18px rgba(180, 150, 255, 0.18),
    0 0 28px rgba(80, 120, 255, 0.12);
}


/* =========================================
   GLOBAL — COSMIC FOOTER GLASS BASE
   Applies to BOTH desktop + mobile
   ========================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  margin: 80px auto 0;

  background:
    radial-gradient(circle at 18% 45%, rgba(199, 166, 255, 0.16), transparent 34%),
    radial-gradient(circle at 86% 40%, rgba(146, 255, 234, 0.16), transparent 38%),
    rgba(8, 12, 28, 0.58);

  border: 1px solid rgba(199, 166, 255, 0.18);

  box-shadow:
    0 0 34px rgba(199, 166, 255, 0.10),
    0 22px 70px rgba(0, 0, 0, 0.28);
}


/* =========================================
   GLOBAL — FOOTER CUSTOM BACKGROUND LAYER
   Purpose:
   Keeps the footer background layer available for desktop,
   but prevents the heavy decorative image from loading on mobile.
========================================= */

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
  transform: none;
  animation: none;
}

/* Desktop only: load the footer background image on larger screens. */
@media (min-width: 769px) {
  .site-footer::before {
    background: url('/assets/backgrounds/footer-bg.webp') center / cover no-repeat;
  }
}

/* =========================================================
   MOBILE FOOTER BACKGROUND RESTORE
   Purpose:
   Restores the footer background image on mobile, but keeps
   it softer so it does not overpower the footer content.
========================================================= */

@media (max-width: 768px) {
  .site-footer::before {
    content: "";
    display: block !important;
    background: url("/assets/backgrounds/footer-bg.webp") center/cover no-repeat !important;
    opacity: 0.22 !important;
  }
}


/* =========================================
   GLOBAL — KEEP FOOTER CONTENT ABOVE IMAGE
   ========================================= */

.footer-inner {
  position: relative;
  z-index: 2;
}


/* =========================================
   THEMED GLASS CARDS — PAGE-SPECIFIC BACKDROPS
   Applies only to cards with class="themed-card"
   ========================================= */

.themed-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.themed-card > * {
  position: relative;
  z-index: 2;
}

.themed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(199, 166, 255, 0.14), transparent 34%),
    radial-gradient(circle at 85% 70%, rgba(146, 255, 234, 0.12), transparent 38%),
    rgba(8, 12, 28, 0.42);
  pointer-events: none;
}

.themed-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background-size: cover;
  background-position: center;

  opacity: 0.18;
  pointer-events: none;

  mix-blend-mode: screen;
}

/* ===== PER PAGE BACKGROUNDS ===== */

body.astrology-page .themed-card::after {
  background-image: url('/assets/images/astrology-bg.webp');
}

body.spirituality-page .themed-card::after {
  background-image: url('/assets/images/spirituality-bg.webp');
}

body.tarot-page .themed-card::after {
  background-image: url('/assets/images/tarot-bg.webp');
}

body.crystals-page .themed-card::after {
  background-image: url('/assets/images/crystals-bg.webp');
}

body.beauty-page .themed-card::after {
  background-image: url('/assets/images/beauty-bg.webp');
}

body.music-page .themed-card::after {
  background-image: url('/assets/images/music-bg.webp');
}

body.professional-page .themed-card::after {
  background-image: url('/assets/images/professional-bg.webp');
}

body.socc-page .themed-card::after {
  background-image: url('/assets/images/socc-bg.webp');
}



/* HOMEPAGE — CLEANER GLASS CARDS */
body.home-page .page-link-card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    rgba(110,170,220,0.10),
    rgba(110,80,180,0.12)
  ) !important;

  border: 1px solid rgba(180,255,235,0.20);

  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 12px 35px rgba(0,0,0,0.22);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border 0.28s ease;
}

/* Hover */
body.home-page .page-link-card:hover {
  transform: translateY(-5px);

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.14),
    rgba(120,190,235,0.12),
    rgba(120,90,210,0.15)
  ) !important;

  border: 1px solid rgba(180,255,235,0.38);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 18px 45px rgba(0,0,0,0.28),
    0 0 24px rgba(120,255,220,0.10);
}

/* Hover = alive + luminous */
body.home-page .page-link-card:hover {
  transform: translateY(-6px);

  border: 2px solid rgba(180, 255, 230, 0.85);

  box-shadow:
    0 20px 65px rgba(120, 80, 255, 0.55),
    0 0 35px rgba(200, 160, 255, 0.45),
    0 0 18px rgba(160, 255, 220, 0.45),
    inset 0 0 35px rgba(230, 200, 255, 0.22);
}


/* SOCIAL MEDIA ICONS — FOOTER + MOBILE DROPDOWN */

/* Footer social container */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

/* Footer icon links */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px;
}

/* Footer icons */
.footer-social img {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  object-fit: contain !important;
  display: block !important;

  opacity: 0.9;
  transition: all 0.25s ease;

  filter: drop-shadow(0 0 6px rgba(160, 255, 220, 0.25));
}

.footer-social a:hover img {
  transform: scale(1.12);

  filter:
    drop-shadow(0 0 12px rgba(180, 255, 230, 0.6))
    drop-shadow(0 0 18px rgba(180, 140, 255, 0.4));
}

/* Hide mobile dropdown social icons by default */
.mobile-social {
  display: none;
}

/* MOBILE ONLY — hamburger dropdown icons */
@media (max-width: 768px) {
  .mobile-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px;
  }

  .mobile-social img {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    object-fit: contain !important;
    display: block !important;

    opacity: 0.9;
    transition: all 0.25s ease;

    filter: drop-shadow(0 0 6px rgba(160, 255, 220, 0.25));
  }

  .mobile-social a:hover img {
    transform: scale(1.12);

    filter:
      drop-shadow(0 0 10px rgba(180, 255, 230, 0.6))
      drop-shadow(0 0 16px rgba(180, 140, 255, 0.4));
  }
}

/* MOBILE: tighten spacing for hero → portrait → caption flow */
@media (max-width: 768px) {

  /* Reduce space under the top glass card section */
  body.home-page .phoenix-hero {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
  }

  /* Pull portrait section upward */
  body.home-page .portrait-section {
    padding-top: 0 !important;
    margin-top: -40px !important;
  }

  /* Tighten space above the portrait image */
  body.home-page .orbit-portrait {
    margin-top: -10px !important;
  }

  /* Reduce gap under the portrait (your title area) */
  body.home-page .portrait-caption {
    margin-top: 12px !important;
    padding-top: 0 !important;
  }

}

/* ============================= */
/* DESKTOP BACKGROUND ONLY */
/* Uses dedicated desktop-bg.png */
/* ============================= */

@media (min-width: 769px) {

  body {
    background:
      linear-gradient(
        rgba(3, 8, 20, 0.22),
        rgba(3, 8, 20, 0.22)
      ),
      url("/assets/backgrounds/desktop-bg.webp") center center / cover no-repeat fixed !important;

    background-color: #08111f;
  }

}

/* MOBILE BACKGROUND ONLY */
/* Fixed unified mobile background */

@media (max-width: 768px) {

  html {
    background: #08111f;
  }

  body {
    background: transparent !important;
    isolation: isolate;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background:
      linear-gradient(
        rgba(3, 8, 20, 0.08),
        rgba(3, 8, 20, 0.08)
      ),
      url("/assets/backgrounds/mobile-bg-v2.webp") top center / cover no-repeat;

    pointer-events: none;
  }
}

/* ========================================= */
/* HERO OVERLAY — Helps Phoenix stand out   */
/* Adds subtle dark contrast behind hero     */
/* ========================================= */

.hero-section {
  position: relative;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(3, 8, 20, 0.16);

  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
}

/* ========================================= */
/* PHOENIX VISIBILITY BOOST                  */
/* Makes phoenix more visible on background  */
/* ========================================= */

.hero-phoenix,
.hero-wings,
.hero-image,
.hero-bg-image {
  opacity: 0.92;
  filter:
    brightness(1.08)
    contrast(1.12)
    drop-shadow(0 0 18px rgba(180, 220, 255, 0.22));
}

/* ========================================= */
/* SOFT GHOST PHOENIX EFFECT                 */
/* Ethereal / atmospheric appearance         */
/* ========================================= */

.phoenix-bg {
  opacity: 0.35 !important;

  filter:
    brightness(1.04)
    contrast(1.08)
    saturate(1.02)
    drop-shadow(0 0 12px rgba(185, 220, 255, 0.12));

  mix-blend-mode: screen;
}


/* HOMEPAGE TAGLINE — cleaner readable lift */
body.home-page .intro-line,
body.home-page .hero-intro,
body.home-page .hero-tagline {
  color: rgba(245, 240, 255, 0.96) !important;

  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 3px 10px rgba(0, 0, 0, 0.55),
    0 0 10px rgba(170, 120, 255, 0.12);

  filter: contrast(1.05);
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  body.home-page .intro-line,
  body.home-page .hero-intro,
  body.home-page .hero-tagline {

    color: rgba(255,255,255,0.98) !important;

    text-shadow:
      0 2px 4px rgba(0,0,0,0.95),
      0 4px 14px rgba(0,0,0,0.72);

    letter-spacing: 0.2px;

    filter: none;
  }
}


/* =========================================
   MOBILE LONG-PRESS IMAGE PROTECTION
   Helps prevent save/copy menu on mobile
========================================= */

img,
a,
.logo,
.hero-photo,
.protected-image {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Optional: prevents dragging/selecting most page elements */
body {
  -webkit-user-select: none;
  user-select: none;
}


/* ============================= */
/* CONNECT PAGE BUTTON GRID */
/* Keeps Connect page buttons in a clean 2-by-2 layout */
/* ============================= */

.connect-btnrow {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
  gap: 14px !important;
  max-width: 520px !important;
  margin: 42px auto 0 !important;
}

.connect-btnrow .btn {
  width: 100% !important;
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Desktop only, Professional Page balances the left and right top Connect cards */
@media (min-width: 769px) {
  .hero {
    align-items: stretch !important;
  }

  .hero > .panel {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
}



/* Mobile keeps buttons stacked and easy to tap */
@media (max-width: 768px) {
  .connect-btnrow {
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
    gap: 12px !important;
    margin-top: 34px !important;
  }

  .connect-btnrow .btn {
    min-height: 52px !important;
  }
}

/* ============================= */
/* GLOBAL DESKTOP HERO CARD BALANCE */
/* Makes standard two-card hero layouts equal height and width */
/* Pages with custom hero layouts can override this inside their page HTML */
/* ============================= */

@media (min-width: 769px) {
  .hero {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: stretch !important;
    gap: 34px !important;
  }

  .hero > .panel {
    width: 100% !important;
    height: 100% !important;
    min-height: 640px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .hero-main {
    max-width: none !important;
  }
}


/* ============================= */
/* CONNECT PAGE — FIX KICKER WIDTH */
/* Centers the kicker and prevents full-card stretching */
/* ============================= */

.hero-main .kicker {
  width: fit-content !important;
  max-width: max-content !important;
  margin: 0 auto 26px !important;
  align-self: center !important;
}


/* =========================================
   PRIVACY + TERMS PAGE HEADING REFINEMENT
   Calms oversized utility-page headings
========================================= */

.privacy-page h1,
.terms-page h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(120, 180, 170, 0.18);
}

/* Optional subtitle refinement */
.privacy-page .hero-text,
.terms-page .hero-text,
.privacy-page p,
.terms-page p {
  font-size: 1rem;
  line-height: 1.75;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .privacy-page h1,
  .terms-page h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
}


/* ========================================= */
/* GLOBAL MOBILE SECTION SPACING CLEANUP */
/* Reduces oversized gaps between sections */
/* ========================================= */

@media (max-width: 768px) {

  section,
  .section {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  section h2,
  section h3,
  .section h2,
  .section h3 {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .card,
  .glass-card {
    margin-bottom: 22px !important;
  }

}


/* ========================================= */
/* MOBILE TERMS + PRIVACY SPACING FIX */
/* ========================================= */

@media (max-width: 768px) {

  body.terms-page .page-hero,
  body.privacy-page .page-hero,
  body.terms-page .section,
  body.privacy-page .section {
    padding-top: 18px !important;
    margin-top: 0 !important;
  }

  body.terms-page h1,
  body.privacy-page h1 {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    line-height: 1.1 !important;
  }

}


/* ============================= */
/* 404 PAGE - CLEAN SINGLE PANEL */
/* ============================= */

.error-page .error-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 90px;
}

.error-page .error-panel {
  width: min(920px, 92%);
  margin: 0 auto;
  padding: 70px 52px;
  text-align: center;
  border-radius: 34px;
  background: rgba(8, 16, 36, 0.72);
  border: 1px solid rgba(190, 180, 255, 0.24);
  box-shadow:
    0 0 45px rgba(142, 230, 209, 0.14),
    0 0 80px rgba(137, 97, 255, 0.12);
  backdrop-filter: blur(18px);
}

.error-page .error-orb {
  margin: 32px auto 24px;
}

.error-page .error-panel h1 {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.error-page .error-panel p {
  max-width: 680px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.error-page .error-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #07111f;
  background: linear-gradient(135deg, #9ff4df, #c8b5ff);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 0 22px rgba(159, 244, 223, 0.35),
    0 0 36px rgba(200, 181, 255, 0.25);
  transition: all 0.25s ease;
}

.error-page .error-button:hover {
  transform: translateY(-2px);
  color: #07111f;
  box-shadow:
    0 0 30px rgba(159, 244, 223, 0.5),
    0 0 48px rgba(200, 181, 255, 0.4);
}

@media (max-width: 700px) {
  .error-page .error-wrap {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .error-page .error-panel {
    padding: 46px 24px;
    border-radius: 28px;
  }

  .error-page .error-panel h1 {
    font-size: clamp(2.25rem, 13vw, 3.8rem);
  }
}


/* =========================================
   CONNECT PAGE BUTTONS
   Page-specific button sizing, color, logo
   alignment, and hover treatment.
========================================= */

.connect-btnrow .btn {
  width: 240px;
  height: 64px;
}

/* Main button appearance */

.connect-btnrow .btn.primary {
  background:
    linear-gradient(
      135deg,
      rgba(155, 118, 255, 0.28),
      rgba(112, 238, 216, 0.18)
    );

  border: 1px solid rgba(205, 185, 255, 0.36);

  color: rgba(255, 255, 255, 0.94);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -12px 28px rgba(0,0,0,0.18),
    0 10px 24px rgba(0,0,0,0.22);

  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
}

/* Hover */

.connect-btnrow .btn.primary:hover {
  background:
    linear-gradient(
      135deg,
      rgba(112, 238, 216, 0.30),
      rgba(155, 118, 255, 0.26)
    );

  border-color: rgba(133, 255, 230, 0.48);

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -12px 28px rgba(0,0,0,0.16),
    0 12px 28px rgba(0,0,0,0.28),
    0 0 20px rgba(150, 120, 255, 0.16);
}

/* Logo buttons */

.logo-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  overflow: hidden;
}

/* Logo images */

.logo-btn img {
  max-height: 42px;
  width: auto;

  display: block;
  object-fit: contain;

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

/* Logo hover */

.logo-btn:hover img {
  transform: scale(1.06);

  filter:
    drop-shadow(0 0 8px rgba(190, 150, 255, 0.55))
    drop-shadow(0 0 14px rgba(124, 255, 228, 0.34));
}


/* =========================================================
   MOBILE PHOENIX HERO STABILITY FIX
   Purpose:
   Reserves stable space for the homepage hero so Lighthouse
   does not count the hero shifting while images/fonts/partials load.
========================================================= */

@media (max-width: 768px) {
  body.home-page .phoenix-hero {
    min-height: 760px !important;
  }

  body.home-page .hero-top {
    min-height: 360px !important;
  }

  body.home-page .phoenix-card-grid {
    min-height: 520px !important;
  }
}
