:root {
  --rose-50: #fff8fb;
  --rose-100: #fff0f5;
  --rose-200: #f7dce7;
  --rose-300: #ebb9cb;
  --rose-500: #b85c7b;
  --rose-700: #7b2f4b;
  --plum-900: #2f2230;
  --ink-700: #53414e;
  --white: rgba(255, 255, 255, 0.74);
  --white-strong: rgba(255, 255, 255, 0.92);
  --glass: rgba(255, 255, 255, 0.58);
  --line-soft: rgba(184, 92, 123, 0.11);
  --shadow-soft: 0 24px 64px rgba(91, 56, 72, 0.08);
  --shadow-card: 0 18px 42px rgba(85, 52, 67, 0.07);
  --radius-lg: 42px;
  --radius-md: 30px;
  --radius-sm: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--plum-900);
  background:
    radial-gradient(circle at 8% 8%, rgba(232, 188, 207, 0.48), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(248, 226, 234, 0.78), transparent 25%),
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(145deg, #fffafc 0%, #fff3f7 44%, #fffafc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.34) 18% 19%, transparent 19% 100%),
    radial-gradient(ellipse at 15% 42%, rgba(184, 92, 123, 0.08), transparent 34%),
    radial-gradient(ellipse at 86% 78%, rgba(184, 92, 123, 0.08), transparent 30%);
}

img {
  max-width: 100%;
}

header {
  position: relative;
  z-index: 10;
  padding: 1.35rem 1.2rem 0.2rem;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.site-branding {
  display: block;
  width: min(100%, var(--container));
  margin: 0 auto;
  text-align: center;
  padding-bottom: 1rem;
  text-decoration: none;
}

.site-logo {
  display: block;
  width: min(100%, 350px);
  margin: 0 auto;
  height: auto;
  opacity: 0;
  transform: translateY(6px) scale(0.985);
  animation: siteNameReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.06s 1 forwards;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navbar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.8rem 0 1rem;
  border-top: 1px solid rgba(184, 92, 123, 0.1);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: block;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  color: var(--rose-500);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(117, 65, 87, 0.1);
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: calc(100% + 0.5rem);
  transform: translateX(-50%);
  min-width: 235px;
  margin: 0;
  padding: 0.55rem 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(184, 92, 123, 0.1);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(72, 46, 58, 0.1);
  backdrop-filter: blur(18px);
}

.dropdown-menu li a {
  padding: 0.85rem 1.05rem;
  border-radius: 0;
  white-space: nowrap;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus-visible {
  background: var(--rose-100);
  box-shadow: none;
  transform: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

main {
  padding: 4.2rem 1.2rem 5.5rem;
}

.page-layout,
.home-layout {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
}

main.page-section,
main > .newsletter-section {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.page-layout > *,
.home-layout > *,
.page-stack > *,
main.page-section > *,
main > .newsletter-section {
  width: 100%;
}

.panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 246, 250, 0.46));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.section {
  margin-top: clamp(2rem, 4vw, 3.4rem);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

.section-heading {
  max-width: 680px;
  margin: 0 auto 1.7rem;
  text-align: center;
}

.section-heading h2,
.section-heading h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--rose-700);
  line-height: 1.05;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.section-heading h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-heading p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.8;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(184, 92, 123, 0.1);
  color: var(--rose-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
  padding: clamp(1rem, 2.5vw, 1.8rem);
}

.hero-home.panel {
  border-radius: 48px 30px 48px 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(135deg, rgba(255, 247, 250, 0.72), rgba(247, 220, 231, 0.46));
}

.hero-copy,
.hero-spotlight,
.page-hero {
  padding: 2rem;
}

.hero-copy {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.64), rgba(255, 244, 248, 0.34));
  border-radius: 36px 24px 36px 24px;
}

.hero-copy h2,
.page-hero h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.98;
  color: var(--rose-700);
}

.hero-copy p,
.page-hero p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-700);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button-link,
.button-link-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button-link {
  color: white;
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  box-shadow: 0 16px 32px rgba(123, 47, 75, 0.16);
}

.button-link-secondary {
  color: var(--rose-700);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(184, 92, 123, 0.14);
}

.button-link:hover,
.button-link-secondary:hover,
.button-link:focus-visible,
.button-link-secondary:focus-visible {
  transform: translateY(-2px);
}

.feature-card,
.page-card,
.blog-card,
.info-card,
.quote-panel,
.cta-banner,
.archive-filter-panel,
.newsletter-section {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover,
.page-card:hover,
.blog-card:hover,
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(85, 52, 67, 0.09);
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  padding: clamp(1.3rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(135deg, rgba(255, 244, 248, 0.72), rgba(247, 220, 231, 0.44));
}

.newsletter-copy {
  padding: 1.1rem;
}

.newsletter-copy h3 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--rose-700);
}

.newsletter-copy p,
.newsletter-note {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.8;
}

.newsletter-form {
  display: grid;
  gap: 0.95rem;
  padding: 1.25rem;
  border: 1px solid rgba(184, 92, 123, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 38px rgba(85, 52, 67, 0.06);
}

.newsletter-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--rose-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsletter-form input {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(184, 92, 123, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--plum-900);
  font: inherit;
  font-size: 0.98rem;
  text-transform: none;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-form input:focus {
  border-color: rgba(184, 92, 123, 0.48);
  box-shadow: 0 0 0 4px rgba(184, 92, 123, 0.1);
}

.newsletter-form .button-link {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.newsletter-note {
  font-size: 0.9rem;
  text-align: center;
}

.hero-spotlight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  background:
    linear-gradient(180deg, rgba(247, 220, 231, 0.4), rgba(255, 255, 255, 0.58));
  border-radius: 36px 24px 36px 24px;
}

.hero-image {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(70, 42, 53, 0.14);
}

.hero-animation {
  position: relative;
  display: grid;
  place-items: center;
  flex: 1;
  min-height: 500px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(247, 220, 231, 0.88), transparent 28%),
    linear-gradient(145deg, rgba(255, 244, 248, 0.98), rgba(232, 188, 207, 0.88));
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
  box-shadow: 0 20px 44px rgba(70, 42, 53, 0.14);
  isolation: isolate;
}

.hero-animation::before,
.hero-animation::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(1px);
}

.hero-animation::before {
  width: 11rem;
  height: 11rem;
  left: -3rem;
  bottom: -3rem;
  animation: softPulse 6s ease-in-out infinite;
}

.hero-animation::after {
  width: 7rem;
  height: 7rem;
  right: -1.5rem;
  top: 2rem;
  animation: softPulse 7s ease-in-out 0.8s infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(184, 92, 123, 0.18);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.orbit-one {
  width: 78%;
  height: 58%;
  animation: orbitDrift 9s ease-in-out infinite;
}

.orbit-two {
  width: 58%;
  height: 78%;
  animation: orbitDrift 10s ease-in-out 0.6s infinite reverse;
}

.finance-card {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 0.45rem;
  width: min(76%, 300px);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 42px rgba(91, 56, 72, 0.16);
  backdrop-filter: blur(16px);
  animation: heroMainCardLoop 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.finance-card span,
.finance-card small {
  color: var(--ink-700);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.finance-card strong {
  color: var(--rose-700);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
}

.finance-card small {
  color: var(--rose-500);
  font-size: 0.78rem;
}

.finance-chip {
  position: absolute;
  z-index: 5;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(123, 47, 75, 0.9);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(123, 47, 75, 0.18);
  opacity: 0;
  transform: translateY(10px) scale(0.88);
  animation: popFloat 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.chip-one {
  top: 13%;
  left: 9%;
}

.chip-two {
  right: 7%;
  top: 29%;
  animation-delay: 0.45s;
}

.chip-three {
  left: 12%;
  bottom: 18%;
  animation-delay: 0.9s;
}

.mini-metric {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 0.18rem;
  min-width: 8.2rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 30px rgba(91, 56, 72, 0.14);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  animation: metricPop 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.mini-metric span {
  color: var(--ink-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-metric strong {
  color: var(--rose-700);
  font-size: 1.05rem;
}

.metric-one {
  top: 18%;
  right: 12%;
  min-width: 0;
  width: fit-content;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  animation-delay: 1.35s;
}

.metric-two {
  left: 9%;
  top: 44%;
  min-width: 0;
  width: fit-content;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  animation-delay: 1.75s;
}

.metric-three {
  left: 20%;
  bottom: 28%;
  min-width: 0;
  width: fit-content;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  animation-delay: 2.05s;
}

.bar-chart {
  position: absolute;
  right: 10%;
  bottom: 14%;
  z-index: 3;
  display: flex;
  align-items: end;
  gap: 0.42rem;
  height: 7.8rem;
  padding: 0.9rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.bar-chart span {
  display: block;
  width: 0.8rem;
  height: 28%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--rose-700), var(--rose-500));
  transform-origin: bottom;
  transform: scaleY(0.18);
  opacity: 0.88;
  animation: barGrow 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.bar-chart span:nth-child(2) {
  height: 48%;
  animation-delay: 0.15s;
}

.bar-chart span:nth-child(3) {
  height: 68%;
  animation-delay: 0.3s;
}

.bar-chart span:nth-child(4) {
  height: 88%;
  animation-delay: 0.45s;
}

.sparkle {
  position: absolute;
  z-index: 2;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(123, 47, 75, 0.5);
  box-shadow: 0 0 0 8px rgba(184, 92, 123, 0.08);
  opacity: 0;
  animation: sparklePop 8s ease-in-out infinite;
}

.sparkle-one {
  left: 20%;
  top: 24%;
  animation-delay: 0.2s;
}

.sparkle-two {
  right: 24%;
  top: 50%;
  animation-delay: 1.1s;
}

.sparkle-three {
  left: 42%;
  bottom: 18%;
  animation-delay: 2s;
}

.growth-line {
  position: absolute;
  inset: auto 6% 9%;
  z-index: 2;
  width: 88%;
  height: auto;
  color: var(--rose-700);
  opacity: 0.74;
}

.growth-line path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawGrowthLine 8s ease-in-out 0.25s infinite;
}

.growth-line circle {
  fill: currentColor;
  opacity: 0;
  transform-origin: center;
  animation: dotReveal 8s ease-in-out infinite;
}

.growth-line circle:nth-of-type(2) {
  animation-delay: 0.28s;
}

.growth-line circle:nth-of-type(3) {
  animation-delay: 0.56s;
}

.hero-note {
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(184, 92, 123, 0.08);
}

.home-split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: stretch;
}

.home-animation-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.home-content-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: clamp(0.8rem, 2.2vw, 1.4rem);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-content-card h3 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  color: var(--rose-700);
}

.home-content-card p,
.home-content-card li {
  color: var(--ink-700);
  line-height: 1.82;
}

.home-content-card p {
  margin: 0;
}

.home-content-card .list {
  margin: 1rem 0 0;
}

.home-animation-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: clamp(8.2rem, 12vw, 9.6rem) clamp(1.35rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2rem);
  border-radius: 28px 46px 28px 46px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 244, 248, 0.92), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 252, 0.9));
}

.home-animation-card::before,
.home-animation-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-animation-card::before {
  inset: 1rem;
  width: auto;
  height: auto;
  border-radius: 24px 40px 24px 40px;
  background-image:
    linear-gradient(rgba(184, 92, 123, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 92, 123, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
  animation: financeGridDrift 9s ease-in-out infinite;
}

.home-animation-card::after {
  width: 10rem;
  height: 10rem;
  right: -3rem;
  bottom: -3rem;
  background: rgba(184, 92, 123, 0.09);
  animation: softPulse 7s ease-in-out 0.7s infinite;
}

.animation-label {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(123, 47, 75, 0.92);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(123, 47, 75, 0.16);
  animation: popFloat 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.home-animation-card h3,
.home-animation-card p,
.home-animation-card .button-link,
.home-animation-card .button-link-secondary,
.home-animation-card .button-row {
  position: relative;
  z-index: 2;
}

.home-animation-card h3 {
  max-width: 420px;
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  line-height: 1.04;
  color: var(--rose-700);
}

.home-animation-card p {
  max-width: 440px;
  margin: 0 0 1.35rem;
  color: var(--ink-700);
  line-height: 1.75;
}

.home-animation-card .button-row {
  margin-top: 0;
}

.finance-path-animation {
  position: absolute;
  inset: 0.85rem 1rem auto;
  height: 142px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: 22px 36px 22px 36px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184, 92, 123, 0.13) 0 12%, transparent 13%),
    repeating-radial-gradient(ellipse at 50% 50%, rgba(184, 92, 123, 0.14) 0 1px, transparent 2px 18px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 236, 244, 0.46), rgba(255, 255, 255, 0.2));
  box-shadow: inset 0 0 42px rgba(184, 92, 123, 0.1);
}

.finance-path-animation::before,
.finance-path-animation::after {
  content: "";
  position: absolute;
  inset: -18% -8%;
  border-radius: 50%;
  pointer-events: none;
}

.finance-path-animation::before {
  background:
    linear-gradient(72deg, transparent 46%, rgba(184, 92, 123, 0.16) 47% 48%, transparent 49%),
    linear-gradient(108deg, transparent 46%, rgba(184, 92, 123, 0.12) 47% 48%, transparent 49%),
    linear-gradient(0deg, transparent 48%, rgba(184, 92, 123, 0.08) 49% 50%, transparent 51%);
  animation: wormholeSpin 8s linear infinite;
}

.finance-path-animation::after {
  inset: 12% 8%;
  background:
    linear-gradient(135deg, transparent 45%, rgba(123, 47, 75, 0.14) 46% 51%, transparent 52%),
    linear-gradient(35deg, transparent 43%, rgba(184, 92, 123, 0.13) 44% 50%, transparent 51%);
  opacity: 0.7;
  animation: financeGraphDrift 6.5s ease-in-out infinite;
}

.finance-arrow {
  position: absolute;
  inset: 8px 8px 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 4;
}

.finance-arrow .arrow-line {
  fill: none;
  stroke: rgba(184, 92, 123, 0.92);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  filter: drop-shadow(0 8px 12px rgba(184, 92, 123, 0.14));
  animation: drawFinanceArrow 6.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.finance-arrow .arrow-tip-shape {
  fill: none;
  stroke: rgba(184, 92, 123, 0.92);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.finance-dot {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(184, 92, 123, 0.16);
  box-shadow: 0 18px 34px rgba(123, 47, 75, 0.1);
  color: var(--rose-700);
  font-weight: 800;
  animation: financeMarkerPop 6.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.finance-traveller {
  position: absolute;
  z-index: 5;
  left: 8px;
  top: 8px;
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow:
    0 0 0 8px rgba(184, 92, 123, 0.12),
    0 0 30px rgba(184, 92, 123, 0.52);
  offset-path: path("M18 78 C 82 18, 150 118, 222 48 S 292 36, 306 56");
  offset-rotate: 0deg;
  animation: travelFinancePath 6.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.discover-animation .finance-traveller {
  offset-path: path("M16 42 C 86 88, 144 8, 204 58 S 278 96, 306 46");
}

.explore-animation .finance-traveller {
  offset-path: path("M20 64 C 78 18, 126 70, 168 42 S 254 12, 304 72");
}

.wormhole-ring {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 5rem;
  height: 2.25rem;
  border: 1px solid rgba(184, 92, 123, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  animation: tunnelPulse 6.5s ease-in-out infinite;
}

.ring-two {
  width: 9rem;
  height: 4rem;
  animation-delay: 0.45s;
}

.ring-three {
  width: 13rem;
  height: 5.8rem;
  animation-delay: 0.9s;
}

.finance-symbol {
  position: absolute;
  z-index: 2;
  color: rgba(123, 47, 75, 0.42);
  font-size: 0.9rem;
  font-weight: 800;
  animation: symbolTunnelMove 6.5s ease-in-out infinite;
}

.symbol-one {
  left: 24%;
  top: 18%;
}

.symbol-two {
  left: 58%;
  top: 66%;
  animation-delay: 0.55s;
}

.symbol-three {
  right: 17%;
  top: 20%;
  animation-delay: 1s;
}

.coin-dot {
  left: 6%;
  top: 56%;
  border-radius: 50%;
}

.chart-dot {
  left: 40%;
  top: 18%;
  grid-template-columns: repeat(3, 0.35rem);
  gap: 0.18rem;
  align-items: end;
  animation-delay: 0.35s;
}

.chart-dot i {
  display: block;
  width: 0.35rem;
  border-radius: 999px 999px 0 0;
  background: rgba(184, 92, 123, 0.84);
}

.chart-dot i:nth-child(1) {
  height: 0.8rem;
}

.chart-dot i:nth-child(2) {
  height: 1.25rem;
}

.chart-dot i:nth-child(3) {
  height: 1.75rem;
}

.graph-dot {
  right: 8%;
  top: 38%;
  animation-delay: 0.7s;
}

.graph-dot::before {
  content: "";
  width: 2rem;
  height: 1.25rem;
  background: linear-gradient(135deg, transparent 45%, rgba(184, 92, 123, 0.9) 46% 53%, transparent 54%),
    linear-gradient(35deg, transparent 43%, rgba(184, 92, 123, 0.74) 44% 51%, transparent 52%);
}

.card-dot {
  left: 10%;
  top: 24%;
}

.card-dot::before,
.card-dot::after {
  content: "";
  display: block;
  border-radius: 999px;
  background: rgba(184, 92, 123, 0.72);
}

.card-dot::before {
  width: 1.9rem;
  height: 0.35rem;
  margin-bottom: 0.35rem;
}

.card-dot::after {
  width: 1.2rem;
  height: 0.28rem;
  justify-self: start;
}

.discover-animation .coin-dot {
  left: 46%;
  top: 58%;
}

.discover-animation .chart-dot {
  left: auto;
  right: 8%;
  top: 20%;
}

.explore-animation .graph-dot {
  left: 8%;
  right: auto;
  top: 42%;
}

.explore-animation .card-dot {
  left: 42%;
  top: 16%;
}

.explore-animation .coin-dot {
  left: auto;
  right: 8%;
  top: 58%;
}

.hero-note h3,
.quote-panel h3,
.contact-card h3,
.info-card h3,
.stat-card h3 {
  margin: 0 0 0.55rem;
  color: var(--rose-700);
  font-size: 1.12rem;
}

.hero-note p,
.quote-panel p,
.contact-card p,
.info-card p,
.stat-card p,
.list,
.page-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.75;
}

.stats-grid,
.feature-grid,
.card-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

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

.values-section {
  padding: clamp(1.3rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.82), transparent 32%),
    linear-gradient(135deg, rgba(255, 244, 248, 0.66), rgba(255, 255, 255, 0.5));
}

.values-section .section-heading {
  margin-bottom: 1.35rem;
}

.about-open-section {
  padding: clamp(0.8rem, 2vw, 1.2rem) 0;
  background: transparent;
}

.about-open-section .section-heading {
  padding-inline: clamp(0.5rem, 2vw, 1rem);
}

.values-section .stats-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.values-section .stat-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, var(--rose-700), var(--rose-500));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(123, 47, 75, 0.2);
}

.values-section .stat-card + .stat-card {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.values-section .stat-card strong {
  margin-bottom: 0;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.25;
}

.values-section .stat-card p {
  color: rgba(255, 255, 255, 0.9);
}

.feature-grid,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.contact-hero {
  display: block;
  width: 100%;
  overflow: hidden;
}

.contact-hero.panel {
  padding: clamp(0.95rem, 1.8vw, 1.25rem) clamp(1.25rem, 2.6vw, 1.8rem);
  border-radius: 28px 18px 28px 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(135deg, rgba(255, 248, 251, 0.76), rgba(247, 220, 231, 0.28));
  box-shadow: var(--shadow-card);
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.9rem;
}

.contact-hero-copy h2 {
  max-width: 680px;
  margin-bottom: 0.2rem;
  font-size: clamp(2.25rem, 4.4vw, 3.45rem);
}

.contact-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-700);
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  line-height: 1.72;
}

.contact-details {
  display: grid;
  gap: 0;
  padding: clamp(0.8rem, 2vw, 1.2rem) 0;
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(110px, 0.2fr) minmax(0, 1fr) minmax(210px, 0.5fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.1rem, 2.4vw, 1.55rem) 0;
  border-bottom: 1px solid rgba(184, 92, 123, 0.16);
}

.contact-detail:first-child {
  border-top: 1px solid rgba(184, 92, 123, 0.16);
}

.contact-detail-label {
  color: var(--rose-700);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-detail-copy {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-detail a,
.contact-detail p {
  margin: 0;
  color: var(--plum-900);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
}

.contact-detail a {
  text-decoration-color: rgba(184, 92, 123, 0.35);
  text-underline-offset: 0.22em;
}

.contact-detail p {
  color: var(--ink-700);
}

.contact-prompts {
  padding: clamp(0.4rem, 1.5vw, 0.8rem) 0 0;
  background: transparent;
}

.contact-prompt-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.contact-prompt-list p {
  position: relative;
  margin: 0;
  padding: 1rem 0 1rem 2rem;
  border-top: 1px solid rgba(184, 92, 123, 0.14);
  color: var(--ink-700);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.75;
}

.contact-prompt-list p:last-child {
  border-bottom: 1px solid rgba(184, 92, 123, 0.14);
}

.contact-prompt-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.65rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 0 0.35rem rgba(184, 92, 123, 0.1);
}

.stat-card,
.feature-card,
.info-card,
.contact-card,
.page-card,
.quote-panel,
.cta-banner {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.68), rgba(255, 247, 250, 0.44));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.stat-card,
.feature-card,
.info-card,
.contact-card,
.page-card {
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--rose-700);
}

.feature-card h3,
.info-card h3,
.page-card h3 {
  margin: 0 0 0.7rem;
  color: var(--rose-700);
}

.page-card a {
  color: var(--rose-700);
  font-weight: 700;
  text-decoration-color: rgba(184, 92, 123, 0.35);
  text-underline-offset: 0.18em;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  border: 1px solid var(--line-soft);
  border-radius: 34px 24px 34px 24px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.66), rgba(255, 247, 250, 0.42));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.featured-blog-card {
  grid-column: span 2;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(135deg, rgba(255, 244, 248, 0.76), rgba(247, 220, 231, 0.48));
}

.blog-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.blog-card h3 a {
  color: var(--rose-700);
  text-decoration: none;
}

.blog-card h3 a:hover,
.blog-card h3 a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.blog-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.75;
}

.blog-card-meta,
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--rose-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-card-meta span,
.blog-post-meta span {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(184, 92, 123, 0.1);
}

.blog-card .button-link {
  align-self: flex-start;
  margin-top: auto;
}

.archive-empty-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-700);
  text-align: center;
}

.blog-post {
  display: grid;
  gap: 1.4rem;
}

.blog-post-hero {
  padding: 2rem;
  text-align: center;
}

.blog-post-hero h2 {
  max-width: 850px;
  margin: 0 auto 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
  color: var(--rose-700);
}

.blog-post-intro {
  max-width: 720px;
  margin: 0 auto 1.1rem;
  color: var(--ink-700);
  font-size: 1.08rem;
  line-height: 1.8;
}

.blog-post-meta {
  justify-content: center;
}

.blog-post-content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 38px 24px 38px 24px;
}

.blog-post-content p {
  margin: 0 0 1.1rem;
  color: var(--ink-700);
  font-size: 1.03rem;
  line-height: 1.9;
}

.blog-post-content h3 {
  margin: 1.7rem 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--rose-700);
}

.blog-post-content blockquote {
  margin: 1.6rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--rose-500);
  border-radius: 18px;
  background: rgba(255, 244, 248, 0.88);
  color: var(--rose-700);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.blog-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 1.2rem;
  align-items: stretch;
}

.quote-panel,
.cta-banner,
.page-hero {
  padding: 2rem;
}

.quote-panel blockquote {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--rose-700);
}

.quote-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.quote-text blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--rose-700);
}

.list {
  padding-left: 1.15rem;
}

.list li + li {
  margin-top: 0.6rem;
}

.cta-banner {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.84), transparent 32%),
    linear-gradient(135deg, rgba(255, 244, 248, 0.68), rgba(255, 255, 255, 0.52));
  border-radius: 46px 28px 46px 28px;
}

.cta-banner h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--rose-700);
}

.cta-banner p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--ink-700);
  line-height: 1.8;
}

.cta-banner .button-row {
  justify-content: center;
}

.page-stack {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.3rem);
}

.page-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 48px 30px 48px 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.84), transparent 32%),
    linear-gradient(145deg, rgba(255, 247, 250, 0.7), rgba(247, 220, 231, 0.38));
}

.page-hero p {
  max-width: 760px;
}

.page-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
}

.page-card {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.64), rgba(255, 247, 250, 0.42));
}

.community-text-card {
  padding: clamp(0.6rem, 1.7vw, 1rem) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.community-why-card {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

.community-why-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
}

.community-why-card p {
  max-width: 760px;
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  line-height: 1.82;
}

.community-join-plain {
  padding: clamp(0.7rem, 2vw, 1.1rem) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.question-board {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 42px 24px 42px 24px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.88), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(184, 92, 123, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(255, 244, 248, 0.68), rgba(255, 255, 255, 0.42));
  box-shadow: inset 0 0 48px rgba(184, 92, 123, 0.06);
}

.question-board-copy h3 {
  max-width: 780px;
  margin: 0 0 0.75rem;
  color: var(--rose-700);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.question-board-copy p,
.question-board-note,
.question-post p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.75;
}

.question-board-copy p {
  max-width: 780px;
}

.question-board-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
  gap: 1rem;
}

.question-board-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--rose-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.question-board-form input,
.question-board-form select,
.question-board-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(184, 92, 123, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--plum-900);
  font: inherit;
  font-size: 0.98rem;
  text-transform: none;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.question-board-form input,
.question-board-form select {
  border-radius: 999px;
}

.question-board-form textarea {
  resize: vertical;
  line-height: 1.6;
}

.question-board-form input:focus,
.question-board-form select:focus,
.question-board-form textarea:focus {
  border-color: rgba(123, 47, 75, 0.38);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(184, 92, 123, 0.1);
}

.question-board-full,
.question-board-form .button-link,
.question-board-note {
  grid-column: 1 / -1;
}

.question-board-form .button-link {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.question-board-note {
  font-size: 0.92rem;
}

.question-board-list {
  display: grid;
  gap: 0;
}

.question-post {
  padding: 1.05rem 0;
  border-top: 1px solid rgba(184, 92, 123, 0.16);
}

.question-post:last-child {
  border-bottom: 1px solid rgba(184, 92, 123, 0.16);
}

.question-post span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--rose-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.question-post h4 {
  margin: 0 0 0.45rem;
  color: var(--rose-700);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  line-height: 1.12;
}

.archive-filter-panel {
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  padding: clamp(1.3rem, 3vw, 2rem);
}

.archive-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.archive-filters label {
  display: grid;
  gap: 0.55rem;
  color: var(--rose-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.archive-filters select {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(184, 92, 123, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-700);
  font: inherit;
  font-size: 0.95rem;
  text-transform: none;
  box-shadow: 0 12px 26px rgba(85, 52, 67, 0.045);
}

.about-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 1.25rem;
  align-items: start;
}

.about-intro-copy {
  display: grid;
  gap: 1.2rem;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem;
}

.about-started-section {
  grid-template-columns: 1fr;
}

.about-started-open {
  width: 100%;
  padding: clamp(0.5rem, 1.6vw, 0.9rem) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.about-started-open .eyebrow {
  margin-left: 0;
}

.about-notes {
  align-items: stretch;
}

.about-note {
  --write-delay: 0s;
  padding: clamp(0.85rem, 2vw, 1.2rem) 0 0;
  border-top: 1px solid rgba(184, 92, 123, 0.2);
  background: transparent;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.about-note:nth-child(2) {
  --write-delay: 0.9s;
}

.about-note:nth-child(3) {
  --write-delay: 1.8s;
}

.about-note span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--rose-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.about-note h3 {
  margin-bottom: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.about-note .writing-line {
  position: relative;
  display: inline-block;
  max-width: 0;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  animation: writeNoteTitle 3.2s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--write-delay) + 0.35s) forwards;
}

.about-note .writing-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.1em;
  bottom: 0.08em;
  width: 2px;
  border-radius: 999px;
  background: var(--rose-500);
  opacity: 0;
  animation: writingCursor 3.2s ease calc(var(--write-delay) + 0.35s) forwards;
}

.about-note p {
  display: grid;
  gap: 0.22rem;
  font-size: clamp(1rem, 1.6vw, 1.08rem);
}

.writing-copy-line {
  position: relative;
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  animation: writeCopyLine 2.35s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--write-delay) + 3.1s + var(--line-delay, 0s)) forwards;
}

.writing-copy-line:nth-child(2) {
  --line-delay: 0.85s;
}

.writing-copy-line:nth-child(3) {
  --line-delay: 1.7s;
}

.about-slideshow-panel {
  position: sticky;
  top: 11.5rem;
  padding: 1.35rem;
  overflow: hidden;
}

.about-slideshow-heading {
  margin-bottom: 1rem;
}

.about-slideshow-heading h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.about-slideshow-heading p {
  font-size: 0.96rem;
}

.about-slideshow {
  display: grid;
  gap: 1.15rem;
}

.about-slides {
  position: relative;
  min-height: 620px;
  transition: height 0.45s ease;
}

.about-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.988);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.slide-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 470px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 252, 0.96), rgba(248, 230, 238, 0.7)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(184, 92, 123, 0.12);
  box-shadow: 0 20px 48px rgba(88, 54, 71, 0.1);
  overflow: visible;
}

.slide-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 450px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(60, 39, 49, 0.18);
}

.me-tag {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translate(-50%, -0.35rem) rotate(-3deg) scale(0.94);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(184, 92, 123, 0.22);
  box-shadow: 0 12px 24px rgba(97, 61, 78, 0.14);
  color: var(--rose-700);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
}

.me-arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--rose-500);
  pointer-events: none;
}

.me-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.72;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1.15;
  stroke-dashoffset: 1.15;
  filter: drop-shadow(0 2px 2px rgba(184, 92, 123, 0.12));
}

.about-slide-copy {
  display: grid;
  gap: 0.65rem;
  padding: 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(184, 92, 123, 0.12);
  box-shadow: var(--shadow-card);
}

.about-slide-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  line-height: 1.04;
  color: var(--rose-700);
}

.about-slide-copy p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.85;
  font-size: 0.96rem;
}

.about-slide.is-active .me-tag {
  animation: meTagReveal 0.72s cubic-bezier(0.2, 0.9, 0.22, 1) 0.18s forwards;
}

.about-slide.is-active .me-arrow path {
  animation: drawSketchArrow 1.25s cubic-bezier(0.2, 0.8, 0.2, 1) 0.34s forwards;
}

.about-slideshow-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.photobooth-slideshow {
  justify-items: center;
  gap: 0.9rem;
}

.photobooth-window {
  position: relative;
  width: min(100%, 340px);
  height: clamp(560px, 72vh, 700px);
  padding: 1.05rem 1.25rem;
  border-radius: 30px 18px 30px 18px;
  background:
    linear-gradient(90deg, #21191d 0 1.05rem, transparent 1.05rem calc(100% - 1.05rem), #21191d calc(100% - 1.05rem)),
    linear-gradient(180deg, #f8efe7, #fffaf5 42%, #f4e5dc);
  box-shadow:
    inset 0 0 0 1px rgba(76, 49, 58, 0.18),
    0 24px 48px rgba(61, 42, 50, 0.16);
  overflow: hidden;
  isolation: isolate;
}

.photobooth-window::before,
.photobooth-window::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  z-index: 4;
  height: 4.2rem;
  pointer-events: none;
}

.photobooth-window::before {
  top: 0;
  background: linear-gradient(180deg, rgba(33, 25, 29, 0.38), rgba(255, 250, 245, 0));
}

.photobooth-window::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(33, 25, 29, 0.34), rgba(255, 250, 245, 0));
}

.photobooth-strip {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  animation: photoboothScroll 36s linear infinite;
  will-change: transform;
}

.photobooth-strip::before,
.photobooth-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0.44rem;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 250, 245, 0.94) 0 0.42rem,
      transparent 0.42rem 0.86rem
    );
  opacity: 0.85;
}

.photobooth-strip::before {
  left: -0.9rem;
}

.photobooth-strip::after {
  right: -0.9rem;
}

.photobooth-frame {
  position: relative;
  margin: 0;
  padding: 0.75rem 0.75rem 1.15rem;
  border-radius: 18px 14px 18px 14px;
  background: #fffaf5;
  box-shadow:
    inset 0 0 0 1px rgba(78, 52, 61, 0.1),
    0 14px 26px rgba(60, 39, 49, 0.12);
}

.photobooth-frame::after {
  content: "HER FINANCE JOURNEY";
  display: block;
  margin-top: 0.55rem;
  color: rgba(123, 47, 75, 0.56);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.photobooth-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  filter: sepia(0.12) saturate(0.92) contrast(0.96);
}

.photobooth-caption {
  max-width: 320px;
  margin: 0;
  color: var(--ink-700);
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: center;
}

.slideshow-button {
  min-height: 46px;
  padding: 0.78rem 1.15rem;
  border: 1px solid rgba(184, 92, 123, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--rose-700);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.slideshow-button:hover,
.slideshow-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(104, 63, 83, 0.14);
}

.slideshow-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 0 1 auto;
}

.slideshow-dot {
  width: 0.82rem;
  height: 0.82rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(184, 92, 123, 0.2);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.slideshow-dot:hover,
.slideshow-dot:focus-visible {
  transform: scale(1.08);
  background: rgba(184, 92, 123, 0.4);
}

.slideshow-dot.is-active {
  background: var(--rose-500);
  transform: scale(1.08);
}

.contact-card a {
  color: var(--rose-700);
  text-decoration: none;
  font-weight: 600;
}

footer {
  padding: 1.8rem 1rem 2.4rem;
  text-align: center;
  color: #7a6070;
}

.fade-in {
  animation: fadeIn 1.6s ease-in-out;
}

.slide-up {
  animation: slideUp 1.15s ease-out;
}

.soft-float {
  animation: softFloat 3.4s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes softFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.015);
  }
}

@keyframes heroMainCardLoop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  12%,
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-8px) scale(1.015);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes popFloat {
  0%,
  12% {
    opacity: 0;
    transform: translateY(14px) scale(0.86);
  }
  22%,
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-9px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(0.9);
  }
}

@keyframes metricPop {
  0%,
  18% {
    opacity: 0;
    transform: translateY(16px) scale(0.88);
  }
  30%,
  76% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  52% {
    transform: translateY(-6px) scale(1.01);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.92);
  }
}

@keyframes barGrow {
  0%,
  20% {
    transform: scaleY(0.18);
    opacity: 0.35;
  }
  36%,
  78% {
    transform: scaleY(1);
    opacity: 0.9;
  }
  100% {
    transform: scaleY(0.18);
    opacity: 0.35;
  }
}

@keyframes sparklePop {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
  28%,
  62% {
    opacity: 1;
    transform: scale(1);
  }
  74% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes orbitDrift {
  0%,
  100% {
    transform: rotate(-12deg) scale(1);
  }
  50% {
    transform: rotate(-4deg) scale(1.04);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.88);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes financeGridDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.42;
  }
  50% {
    transform: translate3d(8px, -6px, 0);
    opacity: 0.7;
  }
}

@keyframes drawFinanceArrow {
  0% {
    opacity: 0;
    stroke-dashoffset: 420;
  }
  16% {
    opacity: 1;
  }
  58%,
  82% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: -60;
  }
}

@keyframes financeMarkerPop {
  0%,
  12% {
    opacity: 0;
    transform: translateY(10px) scale(0.86);
  }
  24%,
  76% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  46% {
    transform: translateY(-5px) scale(1.03);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.92);
  }
}

@keyframes wormholeSpin {
  0% {
    transform: rotate(0deg) scale(0.96);
    opacity: 0.5;
  }
  50% {
    transform: rotate(180deg) scale(1.04);
    opacity: 0.78;
  }
  100% {
    transform: rotate(360deg) scale(0.96);
    opacity: 0.5;
  }
}

@keyframes financeGraphDrift {
  0%,
  100% {
    transform: translateX(-10px) scale(0.96);
    opacity: 0.34;
  }
  45%,
  76% {
    transform: translateX(10px) scale(1.04);
    opacity: 0.72;
  }
}

@keyframes travelFinancePath {
  0% {
    offset-distance: 0%;
    opacity: 0;
    transform: scale(0.68);
  }
  14% {
    opacity: 1;
    transform: scale(1);
  }
  66%,
  84% {
    offset-distance: 100%;
    opacity: 1;
    transform: scale(1.18);
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
    transform: scale(0.82);
  }
}

@keyframes tunnelPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.42);
  }
  34% {
    opacity: 0.62;
  }
  76% {
    opacity: 0.26;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1.24);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1.45);
  }
}

@keyframes symbolTunnelMove {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(-14px, 10px, 0) scale(0.74) rotate(-8deg);
  }
  24%,
  72% {
    opacity: 0.88;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  88% {
    opacity: 0;
    transform: translate3d(18px, -8px, 0) scale(1.16) rotate(8deg);
  }
}

@keyframes drawGrowthLine {
  0% {
    stroke-dashoffset: 420;
    opacity: 0;
  }
  18% {
    opacity: 0.74;
  }
  62%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.74;
  }
}

@keyframes dotReveal {
  0%,
  32% {
    opacity: 0;
    transform: scale(0.8);
  }
  48%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes siteNameReveal {
  0% {
    opacity: 0;
    letter-spacing: 0.14em;
    transform: translateY(6px) scale(0.985);
    filter: blur(1.2px);
  }
  65% {
    opacity: 1;
    letter-spacing: 0.09em;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.08em;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes photoboothScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50% - 0.5rem));
  }
}

@keyframes writeNoteTitle {
  0% {
    max-width: 0;
  }
  12% {
    max-width: 1.2ch;
  }
  100% {
    max-width: 22ch;
  }
}

@keyframes writingCursor {
  0% {
    opacity: 0;
  }
  8%,
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

@keyframes writeCopyLine {
  0% {
    max-width: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    max-width: 42ch;
    opacity: 1;
  }
}

@keyframes meTagReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -0.75rem) rotate(-5deg) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0) rotate(-2deg) scale(1);
  }
}

@keyframes drawSketchArrow {
  0% {
    stroke-dashoffset: 1.15;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero-home,
  .home-split-section,
  .contact-hero,
  .newsletter-section,
  .split-section,
  .question-board-form,
  .contact-grid,
  .feature-grid,
  .card-grid,
  .page-cards,
  .blog-card-grid,
  .archive-filters,
  .about-intro-layout,
  .about-profile-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .featured-blog-card {
    grid-column: auto;
  }

  .about-slideshow-panel {
    position: static;
  }

  .photobooth-window {
    height: 620px;
  }

  .hero-spotlight,
  .hero-copy,
  .page-hero,
  .quote-panel,
  .cta-banner {
    padding: 1.7rem;
  }

  .about-slides {
    min-height: 690px;
  }

  .slide-frame {
    min-height: 540px;
  }

  .about-slide-copy {
    padding: 1.3rem;
  }

  .home-animation-card {
    padding-top: 8rem;
  }

}

@media (max-width: 720px) {
  header {
    padding: 1rem 0.9rem 0.15rem;
  }

  .site-branding {
    padding-bottom: 0.8rem;
  }

  .site-logo {
    width: min(100%, 290px);
  }

  .nav-links {
    gap: 0.45rem;
  }

  .nav-links a {
    padding: 0.72rem 0.95rem;
    font-size: 0.9rem;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    margin-top: 0.45rem;
  }

  main {
    padding: 2.6rem 0.9rem 3.5rem;
  }

  .hero-home,
  .page-stack {
    gap: 1rem;
  }

  .hero-home {
    padding: 1rem;
  }

  .hero-animation {
    min-height: 420px;
  }

  .photobooth-window {
    width: min(100%, 300px);
    height: 540px;
    padding-inline: 1.05rem;
  }

  .contact-detail {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .mini-metric {
    min-width: 7.2rem;
  }

  .metric-one {
    right: 7%;
  }

  .metric-two {
    left: 7%;
  }

  .metric-three {
    left: 16%;
    bottom: 24%;
  }

  .bar-chart {
    right: 7%;
    bottom: 12%;
  }

  .values-section .stat-card {
    min-height: auto;
  }

  .values-section .stat-card + .stat-card {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    border-top: 0;
  }

  .button-row {
    flex-direction: column;
  }

  .button-link,
  .button-link-secondary {
    width: 100%;
  }

  .about-slideshow-panel {
    padding: 1.25rem;
  }

  .about-slides {
    min-height: 610px;
  }

  .slide-frame {
    min-height: 420px;
    padding: 0.7rem;
  }

  .slide-frame img {
    max-height: 380px;
  }

  .me-tag {
    top: 0.65rem;
    min-width: 3rem;
    padding: 0.42rem 0.78rem;
    font-size: 1.05rem;
  }

  .about-slide-copy h3 {
    font-size: 2rem;
  }

  .about-slideshow-controls {
    justify-content: center;
  }

  .slideshow-dots {
    order: -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-animation::before,
  .hero-animation::after,
  .home-animation-card::before,
  .home-animation-card::after,
  .orbit,
  .mini-orbit,
  .pulse-ring,
  .animation-label,
  .finance-card,
  .finance-chip,
  .mini-metric,
  .bar-chart span,
  .sparkle,
  .growth-line path,
  .growth-line circle,
  .finance-arrow path,
  .finance-dot,
  .finance-path-animation::before,
  .finance-path-animation::after,
  .finance-traveller,
  .wormhole-ring,
  .finance-symbol,
  .photobooth-strip,
  .about-note .writing-line,
  .about-note .writing-line::after,
  .about-note p,
  .writing-copy-line,
  .site-logo {
    animation: none;
  }

  .site-logo {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .about-note .writing-line,
  .writing-copy-line {
    max-width: none;
  }

  .about-note p {
    opacity: 1;
    transform: none;
  }

  .growth-line path {
    stroke-dashoffset: 0;
    opacity: 0.74;
  }

  .finance-arrow path {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .finance-dot {
    opacity: 1;
  }

  .finance-traveller {
    offset-distance: 100%;
    opacity: 1;
  }

  .wormhole-ring,
  .finance-symbol {
    opacity: 0.42;
  }

  .finance-chip,
  .mini-metric,
  .growth-line circle {
    opacity: 1;
  }

  .bar-chart span {
    transform: scaleY(1);
    opacity: 0.9;
  }
}
