@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

/* ══ Music Toggle ══ */
.music-toggle{position:fixed;top:12px;right:12px;z-index:100;padding:6px 10px;border:1px solid rgba(74,63,138,0.2);background:rgba(240,244,255,0.85);backdrop-filter:blur(8px);font-size:1rem;cursor:pointer;transition:all 0.3s;border-radius:16px;line-height:1;color:#4a3f8a}
.music-toggle:hover{background:rgba(74,63,138,0.06)}
.music-toggle.playing{color:#4a9e6d;border-color:rgba(74,158,109,0.3);background:rgba(74,158,109,0.05)}

:root {
  --wood: #4a9e6d;
  --fire: #d4564a;
  --earth: #c4a35a;
  --metal: #9ca3af;
  --water: #3b82c4;
  --bg: #F0F4FF;
  --bg2: #E8EEFF;
  --bg3: #F5F0FF;
  --bg-card: rgba(255,255,255,0.7);
  --bg-card-hover: rgba(255,255,255,0.9);
  --text: #2D1810;
  --text-muted: #5A3A2E;
  --accent: #D4A24E;
  --accent-glow: rgba(212, 162, 78, 0.15);
  --border: rgba(74,63,138,0.1);
  --border-light: rgba(74,63,138,0.18);
  --fire-glow: rgba(212, 86, 74, 0.2);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Background ambiance ── */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(212,162,78,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(107,158,125,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(212,86,74,0.05) 0%, transparent 40%);
  animation: ambiance 30s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes ambiance {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(5deg) scale(1.05); }
}

/* ── Container ── */
.app-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

/* ── Header ── */
.header {
  text-align: center;
  padding: 40px 0 32px;
}

.header-brand {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
}

.header-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.header-subtitle {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.header-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 24px auto;
}

/* ── Trigram Display ── */
.trigram-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trigram-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.3s;
}

.trigram-chip:hover {
  background: var(--bg-card-hover);
  color: var(--text);
  border-color: var(--accent);
}

.trigram-symbol {
  font-size: 18px;
}

/* ── Card ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.12);
}

.card-accent {
  border-left: 3px solid var(--accent);
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ── Oracle Section ── */
.oracle-intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.question-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
  color: var(--text);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  transition: all 0.3s;
  outline: none;
}

.question-input::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.question-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  background: rgba(255,255,255,0.8);
}

/* ── Cast Button ── */
.cast-btn {
  position: relative;
  padding: 14px 40px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), #b8903a);
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: all 0.3s;
  overflow: hidden;
}

.cast-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,87,0.3);
}

.cast-btn:active:not(:disabled) {
  transform: translateY(0);
}

.cast-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.cast-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.cast-btn:hover:not(:disabled)::after {
  transform: translateX(100%);
}

/* ── Coin Animation ── */
.coins-area {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
  min-height: 60px;
}

.coin {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid var(--accent);
  background: rgba(212,162,78,0.15);
  color: var(--accent);
  opacity: 0;
  transform: rotateY(180deg) scale(0.5);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coin.visible {
  opacity: 1;
  transform: rotateY(0) scale(1);
}

.coin.spinning {
  animation: coinSpin 0.6s ease-in-out;
}

@keyframes coinSpin {
  0% { transform: rotateY(0) scale(1); }
  50% { transform: rotateY(180deg) scale(0.8); }
  100% { transform: rotateY(360deg) scale(1); }
}

/* ── Hexagram Lines ── */
.hexagram-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  gap: 0;
}

.hex-line-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hex-line-row.visible {
  opacity: 1;
  transform: translateX(0);
}

.line-num {
  font-size: 11px;
  color: var(--text-muted);
  width: 18px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.yang-line {
  width: 140px;
  height: 12px;
  border-radius: 3px;
  transition: all 0.3s;
}

.yang-line.normal { background: var(--text); }
.yang-line.changing { background: var(--fire); box-shadow: 0 0 12px var(--fire-glow); }

.yin-line {
  display: flex;
  gap: 12px;
}

.yin-half {
  width: 64px;
  height: 12px;
  border-radius: 3px;
  transition: all 0.3s;
}

.yin-half.normal { background: var(--text); }
.yin-half.changing { background: var(--fire); box-shadow: 0 0 12px var(--fire-glow); }

.changing-label {
  font-size: 11px;
  color: var(--fire);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── Result ── */
.hex-result {
  text-align: center;
  margin-top: 24px;
  animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hex-number {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hex-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.hex-meaning {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  max-width: 540px;
  margin: 0 auto 24px;
  font-weight: 300;
}

/* ── Changing Lines Box ── */
.changing-box {
  padding: 20px;
  border-radius: 12px;
  background: rgba(212, 86, 74, 0.12);
  border-left: 3px solid var(--fire);
  text-align: left;
  max-width: 540px;
  margin: 0 auto 20px;
  animation: fadeUp 0.6s ease-out 0.2s both;
}

.changing-box-title {
  font-weight: 600;
  font-size: 15px;
  color: #c1472e;
  margin-bottom: 8px;
}

.changing-box-text {
  font-size: 14px;
  color: #3d2f2a;
  line-height: 1.7;
}

/* ── Transformed Hexagram ── */
.transform-box {
  padding: 20px;
  border-radius: 12px;
  background: rgba(59, 130, 196, 0.12);
  border-left: 3px solid var(--water);
  text-align: left;
  max-width: 540px;
  margin: 0 auto 20px;
  animation: fadeUp 0.6s ease-out 0.3s both;
}

.transform-box-title {
  font-weight: 600;
  font-size: 15px;
  color: #2563a3;
  margin-bottom: 8px;
}

.transform-box-text {
  font-size: 14px;
  color: #3d2f2a;
  line-height: 1.7;
}

/* ── Reflection Box ── */
.reflection-box {
  padding: 20px;
  border-radius: 12px;
  background: rgba(212,162,78,0.12);
  border: 1px solid rgba(212,162,78,0.25);
  text-align: left;
  max-width: 540px;
  margin: 0 auto 20px;
  animation: fadeUp 0.6s ease-out 0.4s both;
}

.reflection-title {
  font-weight: 600;
  font-size: 15px;
  color: #9d7a3a;
  margin-bottom: 8px;
}

.reflection-text {
  font-size: 14px;
  color: #3d2f2a;
  line-height: 1.7;
}

.reflection-question {
  font-style: italic;
  color: #2D1810;
  margin-bottom: 8px;
}

/* ── Trigram Info Section ── */
.trigram-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 540px;
  margin: 0 auto 20px;
  animation: fadeUp 0.6s ease-out 0.35s both;
}

.trigram-card {
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
}

.trigram-card-symbol {
  font-size: 32px;
  margin-bottom: 4px;
}

.trigram-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.trigram-card-element {
  font-size: 12px;
  color: var(--text-muted);
}

.trigram-card-label {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ── History ── */
.history-section { margin-top: 32px; }

.history-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.history-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
}

.history-hex-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  width: 44px;
  text-align: center;
}

.history-details {
  flex: 1;
  min-width: 0;
}

.history-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.history-question {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-time {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.history-clear {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.history-clear:hover {
  border-color: var(--fire);
  color: var(--fire);
}

/* ── About Card ── */
.about-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-text em {
  color: var(--text);
  font-style: italic;
}

/* ── Method Steps ── */
.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.method-step {
  padding: 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
  text-align: center;
}

.method-step-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.method-step-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-brand {
  color: var(--accent);
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .app-container { padding: 16px 14px 40px; }
  .header-title { font-size: 36px; }
  .header-subtitle { font-size: 18px; }
  .card { padding: 20px; }
  .trigram-bar { gap: 8px; }
  .trigram-chip { padding: 5px 10px; font-size: 12px; }
  .yang-line { width: 110px; }
  .yin-half { width: 49px; }
  .hex-name { font-size: 22px; }
  .trigram-info { grid-template-columns: 1fr 1fr; gap: 10px; }
  .method-steps { grid-template-columns: 1fr; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(74,63,138,0.2); border-radius: 3px; }

/* ── Line value tooltip ── */
.line-value-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.line-value-badge.yang { background: rgba(107,158,125,0.2); color: #5A3A2E; }
.line-value-badge.yin { background: rgba(107,158,125,0.2); color: #5A3A2E; }
.line-value-badge.old-yang { background: var(--fire-glow); color: var(--fire); }
.line-value-badge.old-yin { background: var(--fire-glow); color: var(--fire); }

/* ── Pulse on cast ── */
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulseOut 1s ease-out forwards;
}

@keyframes pulseOut {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

/* ── Floating Yi Jing symbols ── */
.float-symbols {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-sym {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0;
  animation: float-sym 14s infinite ease-out;
  color: rgba(107, 158, 125, 0.5);
}
.float-sym:nth-child(1) { left: 3%; animation-delay: 0s; font-size: 2rem; }
.float-sym:nth-child(2) { left: 12%; animation-delay: 1.8s; font-size: 3.5rem; color: rgba(74,63,138,0.4); }
.float-sym:nth-child(3) { left: 22%; animation-delay: 4s; font-size: 2.8rem; }
.float-sym:nth-child(4) { left: 32%; animation-delay: 0.8s; font-size: 4.5rem; color: rgba(74,63,138,0.35); }
.float-sym:nth-child(5) { left: 42%; animation-delay: 3s; font-size: 2.2rem; }
.float-sym:nth-child(6) { left: 52%; animation-delay: 5.5s; font-size: 3.8rem; color: rgba(107,158,125,0.4); }
.float-sym:nth-child(7) { left: 62%; animation-delay: 1.2s; font-size: 2.5rem; }
.float-sym:nth-child(8) { left: 72%; animation-delay: 6.5s; font-size: 5rem; color: rgba(74,63,138,0.35); }
.float-sym:nth-child(9) { left: 82%; animation-delay: 2.5s; font-size: 3rem; }
.float-sym:nth-child(10) { left: 92%; animation-delay: 7.5s; font-size: 2.8rem; }
.float-sym:nth-child(11) { left: 8%; animation-delay: 3.5s; font-size: 5.5rem; color: rgba(107,158,125,0.3); animation-duration: 16s; }
.float-sym:nth-child(12) { left: 18%; animation-delay: 8s; font-size: 3rem; animation-duration: 12s; }
.float-sym:nth-child(13) { left: 37%; animation-delay: 1.5s; font-size: 6rem; color: rgba(74,63,138,0.3); animation-duration: 18s; }
.float-sym:nth-child(14) { left: 48%; animation-delay: 5s; font-size: 2.5rem; animation-duration: 13s; }
.float-sym:nth-child(15) { left: 58%; animation-delay: 9s; font-size: 4rem; animation-duration: 15s; }
.float-sym:nth-child(16) { left: 68%; animation-delay: 2s; font-size: 7rem; color: rgba(107,158,125,0.25); animation-duration: 20s; }
.float-sym:nth-child(17) { left: 78%; animation-delay: 6s; font-size: 3.2rem; animation-duration: 11s; }
.float-sym:nth-child(18) { left: 88%; animation-delay: 4.5s; font-size: 5rem; animation-duration: 17s; }
.float-sym:nth-child(19) { left: 25%; animation-delay: 10s; font-size: 4.5rem; color: rgba(74,63,138,0.3); animation-duration: 14s; }
.float-sym:nth-child(20) { left: 55%; animation-delay: 7s; font-size: 6.5rem; color: rgba(107,158,125,0.25); animation-duration: 19s; }

@keyframes float-sym {
  0% { transform: translateY(100vh) rotate(0deg) scale(0.8); opacity: 0; }
  8% { opacity: 0.35; }
  50% { opacity: 0.22; }
  85% { opacity: 0.10; }
  100% { transform: translateY(-20vh) rotate(360deg) scale(1.1); opacity: 0; }
}
/* ── Donation Section ── */
.donation-section-yj {
  padding: 60px 20px;
  text-align: center;
}
.donation-card-yj {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(240,244,255,0.7);
  border: 1px solid rgba(74,63,138,0.12);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(45, 24, 16, 0.04);
}
.donation-card-yj h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  color: #4A3F8A;
  margin-bottom: 8px;
}
.donation-card-yj .donation-sub {
  font-size: 1.05rem;
  color: #D4A24E;
  font-style: italic;
  margin-bottom: 28px;
}
.donation-card-yj p {
  color: #5A3A2E;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.donation-purposes-yj {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
  text-align: center;
}
.purpose-item-yj {
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid rgba(74,63,138,0.08);
  background: rgba(240,244,255,0.5);
}
.purpose-item-yj .purpose-icon { font-size: 2rem; margin-bottom: 10px; }
.purpose-item-yj .purpose-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2D1810;
  margin-bottom: 6px;
}
.purpose-item-yj .purpose-desc {
  font-size: 0.85rem;
  color: #5A3A2E;
  line-height: 1.6;
}
.donate-btn-yj {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #B8860B, #D4A24E);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.25);
  text-decoration: none;
}
.donate-btn-yj:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.35);
}
@media (max-width: 640px) {
  .donation-card-yj { padding: 32px 24px; }
  .donation-purposes-yj { grid-template-columns: 1fr; }
}

/* ── Life Analysis CTA Banner ── */
.life-cta-banner {
  margin: 40px auto;
  max-width: 720px;
  padding: 40px 32px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(184,134,11,0.06), rgba(123,16,36,0.04));
  border: 1px solid rgba(184,134,11,0.15);
  position: relative;
  z-index: 5;
}
.life-cta-banner .cta-icon { font-size: 2.4rem; margin-bottom: 12px; }
.life-cta-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #7B1024;
  margin-bottom: 12px;
  line-height: 1.4;
}
.life-cta-banner p {
  font-size: 0.92rem;
  color: #5A3A2E;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 20px;
}
.life-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #B8860B, #D4A24E);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(184,134,11,0.25);
}
.life-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,134,11,0.35);
}
.life-cta-sub {
  font-size: 0.78rem;
  color: #C4A88A;
  margin-top: 12px;
  font-style: italic;
}
.life-cta-home {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: #7B1024;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}
.life-cta-home:hover { opacity: 0.7; }
