:root {
  --bg: #0f1115;
  --bg-elevated: #14161b;
  --text: #f3f4f6;
  --muted: rgba(243, 244, 246, 0.72);
  --muted2: rgba(243, 244, 246, 0.58);
  --hairline: rgba(243, 244, 246, 0.12);
  --panel: rgba(243, 244, 246, 0.04);
  --panel2: rgba(243, 244, 246, 0.06);
  --panel3: rgba(243, 244, 246, 0.08);

  /* Accent colors */
  --accent: #2fe6a7;
  --accent-hover: #3af5b5;
  --accent-dim: rgba(47, 230, 167, 0.1);
  --accentText: #07110c;

  /* Gradient accents */
  --gradient-1: rgba(47, 230, 167, 0.15);
  --gradient-2: rgba(139, 92, 246, 0.12);

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  letter-spacing: -0.01em;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
}

.skip:focus {
  left: 10px;
  outline: none;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}

.brand {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

/* Circular Logo Wrapper */
.brand__logo-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__logo {
  height: 32px;
  width: auto;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand__logo--circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              linear-gradient(135deg, var(--accent), #8b5cf6) border-box;
  box-shadow: 0 0 20px rgba(47, 230, 167, 0.2),
              0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand__logo-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.brand:hover .brand__logo--circle {
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 0 30px rgba(47, 230, 167, 0.4),
              0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: var(--accent);
}

.brand:hover .brand__logo-glow {
  opacity: 1;
  animation: logoGlowPulse 1.5s ease-in-out infinite;
}

@keyframes logoGlowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.brand__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.brand:hover .brand__text {
  background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand__icon {
  color: var(--accent);
  font-size: 18px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: var(--panel2);
}

.menu-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.menu-toggle__line + .menu-toggle__line {
  margin-top: 5px;
}

.menu-toggle.active .menu-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 640px) {
  .menu-toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(15, 17, 21, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 12px;
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 29;
  }

  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav .nav__link {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    font-size: 16px;
  }

  .header__nav .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-weight: 500;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(243, 244, 246, 0.06);
}

.nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Navigation Dropdown */
.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-arrow {
  transition: transform 0.2s ease;
}

.nav__link--dropdown:hover .nav__dropdown-arrow,
.nav__link--dropdown[aria-expanded="true"] .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.nav__link--dropdown:hover .nav__dropdown,
.nav__link--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav__dropdown-item:hover {
  background: var(--panel);
  color: var(--text);
}

.nav__dropdown-icon {
  font-size: 16px;
}

/* Mobile dropdown styles */
@media (max-width: 640px) {
  .nav__link--dropdown {
    flex-direction: column;
    padding: 0;
  }
  
  .nav__link--dropdown > span,
  .nav__link--dropdown .nav__dropdown-arrow {
    display: none;
  }
  
  .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .nav__dropdown-item {
    background: var(--panel);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 13px;
  }
}

.hero {
  position: relative;
  padding: 80px 0 56px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.6s ease backwards;
}

.hero__headline {
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: rgba(243, 244, 246, 0.96);
  animation: fadeInUp 0.7s ease 0.1s backwards;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__subhead {
  margin: 20px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero__trust {
  margin: 16px 0 0;
  color: var(--muted2);
  font-size: 14px;
}

.hero__cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  animation: fadeInUp 0.9s ease 0.3s backwards;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn__subtext {
  color: var(--muted2);
  font-size: 13px;
  margin-left: 2px;
}

.btn--primary {
  background: var(--accent);
  color: var(--accentText);
  box-shadow: 0 4px 14px rgba(47, 230, 167, 0.3), 
              0 2px 6px rgba(0, 0, 0, 0.15);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(47, 230, 167, 0.3), 
                0 2px 6px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 4px 20px rgba(47, 230, 167, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.2);
  }
}

.btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(47, 230, 167, 0.4), 
              0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.btn--primary:focus-visible {
  outline: 2px solid rgba(47, 230, 167, 0.55);
  outline-offset: 3px;
}

.link {
  color: var(--muted);
  text-decoration: none;
  padding: 4px 0;
}

.link:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero__breath {
  position: absolute;
  inset: -160px -160px auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(243, 244, 246, 0.06);
  filter: blur(0px);
  opacity: 0.06;
  animation: breath 9s ease-in-out infinite;
  pointer-events: none;
}

/* Calming Hero Visual Animation */
.hero__visual {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.8;
}

/* Laptop/Tablet: Keep animation to the left side instead of centered behind text */
@media (max-width: 1024px) and (min-width: 641px) {
  .hero__visual {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.5;
    z-index: 0;
  }
  
  .hero__inner {
    padding-left: 100px;
  }
}

@media (max-width: 640px) {
  .hero__visual {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    opacity: 0.7;
  }
  
  .hero__inner {
    padding-left: 0;
  }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  animation: orbBreathe 8s ease-in-out infinite;
}

.hero__orb--outer {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 60%, rgba(47, 230, 167, 0.05) 100%);
  border: 1px solid rgba(47, 230, 167, 0.1);
  animation-delay: 0s;
}

.hero__orb--middle {
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, transparent 50%, rgba(47, 230, 167, 0.08) 100%);
  border: 1px solid rgba(47, 230, 167, 0.15);
  animation-delay: -2s;
}

.hero__orb--inner {
  width: 45%;
  height: 45%;
  background: radial-gradient(circle, rgba(47, 230, 167, 0.1) 0%, transparent 70%);
  border: 1px solid rgba(47, 230, 167, 0.2);
  animation-delay: -4s;
}

.hero__orb--core {
  width: 20%;
  height: 20%;
  background: radial-gradient(circle, rgba(47, 230, 167, 0.3) 0%, rgba(47, 230, 167, 0.1) 100%);
  box-shadow: 0 0 40px rgba(47, 230, 167, 0.3), 0 0 80px rgba(47, 230, 167, 0.15);
  animation: corePulse 4s ease-in-out infinite;
}

.hero__lotus {
  position: absolute;
  color: var(--accent);
  animation: lotusFloat 6s ease-in-out infinite;
}

.lotus-petal {
  transform-origin: 40px 45px;
}

.lotus-petal--1 {
  animation: petalSway1 8s ease-in-out infinite;
}

.lotus-petal--2 {
  animation: petalSway2 8s ease-in-out infinite;
}

.lotus-petal--3 {
  animation: petalSway3 8s ease-in-out infinite;
}

.lotus-center {
  animation: centerGlow 4s ease-in-out infinite;
}

@keyframes orbBreathe {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes corePulse {
  0%, 100% {
    transform: scale(0.9);
    box-shadow: 0 0 30px rgba(47, 230, 167, 0.3), 0 0 60px rgba(47, 230, 167, 0.1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(47, 230, 167, 0.4), 0 0 100px rgba(47, 230, 167, 0.2);
  }
}

@keyframes lotusFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

@keyframes petalSway1 {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.02); }
}

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

@keyframes petalSway3 {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.03); }
}

@keyframes centerGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

@keyframes breath {
  0% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(0.92);
  }
}

.section {
  padding: 64px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 700px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hairline) 50%, transparent 100%);
  opacity: 0.6;
}

.section__title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
  font-weight: 700;
  animation: fadeInUp 0.8s ease;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

.section__title--highlight {
  font-size: clamp(24px, 3.5vw, 32px);
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s ease, shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.section__decorator {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px;
  margin-bottom: 16px;
  animation: slideInLeft 0.6s ease;
  box-shadow: 0 0 20px rgba(47, 230, 167, 0.3);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.copy {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--muted);
  animation: fadeIn 0.8s ease;
}

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

.copy p {
  margin: 0;
  transition: color 0.3s ease;
}

.copy p:hover {
  color: var(--text);
}

.copy--spaced p + p {
  margin-top: 10px;
}

.copy__gap {
  margin-top: 16px !important;
}

/* Copy with Icons */
.copy--with-icons .copy__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.copy__icon {
  flex-shrink: 0;
  color: var(--muted);
  margin-top: 2px;
  transition: all 0.3s ease;
}

.copy__icon--muted {
  color: var(--muted2);
  opacity: 0.7;
}

.copy__icon--accent {
  color: var(--accent);
}

.copy__item:hover .copy__icon {
  color: var(--accent);
  transform: scale(1.1);
}

.copy__item--highlight {
  color: var(--text);
  font-weight: 500;
}

.stack {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(243, 244, 246, 0.025);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.stack__item {
  padding: 20px 20px 18px;
  transition: all 0.3s ease;
  position: relative;
}

.stack__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.3s ease;
}

.stack__item:hover {
  background: var(--panel2);
  transform: translateX(6px);
}

.stack__item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.stack__item + .stack__item {
  border-top: 1px solid var(--hairline);
}

.stack__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stack__body {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.quote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: linear-gradient(135deg, rgba(243, 244, 246, 0.03) 0%, rgba(243, 244, 246, 0.01) 100%);
  color: var(--muted);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
  transition: all 0.3s ease;
}

.quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  border-color: var(--accent);
}

.bullets {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullets li {
  margin: 10px 0;
}

.muted {
  color: var(--muted2);
}

.section--final {
  padding: 56px 0;
}

.final__cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* Footer - Enhanced Design */
.footer {
  position: relative;
  padding: 48px 0 32px;
  background: linear-gradient(180deg, transparent 0%, var(--panel) 100%);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hairline) 30%, var(--hairline) 70%, transparent 100%);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer__brand-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 280px;
}

.footer__logo-wrapper {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--hairline);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(47, 230, 167, 0.1);
  transition: all 0.3s ease;
}

.footer__logo:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(47, 230, 167, 0.2);
  transform: scale(1.05);
}

.footer__brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tagline {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer__columns {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__column-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted2);
  margin: 0 0 4px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__link:hover::after {
  width: 100%;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  gap: 24px;
  flex-wrap: wrap;
}

.footer__social {
  display: flex;
  gap: 8px;
}

.social__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social__link:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 230, 167, 0.2);
}

.social__link svg {
  transition: transform 0.3s ease;
}

.social__link:hover svg {
  transform: scale(1.1);
}

.footer__copyright {
  color: var(--muted2);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer__main {
    flex-direction: column;
    gap: 32px;
  }

  .footer__columns {
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__social {
    flex-wrap: wrap;
  }
}

/* Legacy footer links kept for compatibility */
.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA click ripple (subtle, <300ms) */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 260ms ease-out;
  background: rgba(7, 17, 12, 0.18);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__breath {
    animation: none;
  }
  .ripple {
    animation: none;
  }
  .brand__icon {
    animation: none;
  }
  .hero__gradient {
    animation: none !important;
  }
  .podcast__pulse {
    animation: none !important;
  }
  .tool__card {
    transition: none !important;
  }
}

/* ==== NEW MODERN COMPONENTS ==== */

/* Section Variations */
.section--problem {
  background: radial-gradient(ellipse at top, var(--panel2) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.section--problem::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(47, 230, 167, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatSlow 12s ease-in-out infinite;
  pointer-events: none;
}

.section--problem .copy {
  animation: fadeInUp 1s ease 0.2s backwards;
}

.section--what {
  background: radial-gradient(ellipse at bottom, var(--panel2) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.section--what::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatSlow 15s ease-in-out infinite reverse;
  pointer-events: none;
}

.section--what .copy {
  animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

/* Hero Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--panel3);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  animation: slideDown 0.6s ease;
}

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

.badge__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* Hero Headline Accent */
.headline__accent {
  background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Features Pills */
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.feature__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.feature__icon {
  color: var(--accent);
  flex-shrink: 0;
}

/* Button Variants */
.btn--large {
  padding: 14px 26px;
  font-size: 16px;
  gap: 8px;
}

.btn--small {
  padding: 7px 13px;
  font-size: 13px;
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--text);
  transition: all 0.2s ease;
}

.btn--secondary:hover {
  background: var(--panel2);
  border-color: var(--muted2);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.btn--outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent-hover);
  color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(47, 230, 167, 0.2);
}

.btn__icon {
  margin-right: 6px;
}

/* Hero Gradients */
.hero__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.hero__gradient--1 {
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gradient-1) 0%, transparent 70%);
  animation: floatGradient 8s ease-in-out infinite;
}

.hero__gradient--2 {
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--gradient-2) 0%, transparent 70%);
  animation: floatGradient 10s ease-in-out infinite reverse;
}

@keyframes floatGradient {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

/* Link Podcast */
.link--podcast {
  margin-top: 6px;
  font-size: 15px;
}

/* Section Headers */
.section__header {
  margin-bottom: 24px;
}

.section__subtitle {
  margin: 6px 0 0;
  color: var(--muted2);
  font-size: 15px;
}

.section__title--large {
  font-size: clamp(24px, 3vw, 32px);
}

/* Tools Grid */
.section--tools {
  background: linear-gradient(180deg, transparent 0%, var(--panel) 50%, transparent 100%);
}

.tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.tool__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, var(--panel2) 0%, rgba(243, 244, 246, 0.02) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tool__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tool__card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(47, 230, 167, 0.15),
              0 8px 24px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tool__card:hover::before {
  opacity: 1;
}

.tool__icon {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.tool__card:hover .tool__icon {
  transform: scale(1.1);
}

.tool__content {
  flex: 1;
}

.tool__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}

.tool__body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.tool__duration {
  margin-top: 10px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  opacity: 0.8;
}

.tool__arrow {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 20px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.tool__card:hover .tool__arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Quote Enhancement */
.quote__icon {
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 8px;
}

/* Podcast Section */
.section--podcast {
  background: radial-gradient(ellipse at center, var(--panel) 0%, transparent 70%);
}

.podcast__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .podcast__card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .podcast__visual {
    order: -1;
  }

  .podcast__artwork svg {
    width: 60px;
    height: 60px;
  }

  .podcast__pulse {
    inset: -15px;
  }

  .podcast__badge {
    display: inline-block;
  }

  .podcast__content .section__title {
    font-size: 20px;
  }

  .podcast__stats {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat__item {
    min-width: 70px;
  }

  .stat__value {
    font-size: 18px;
  }

  .podcast__cta {
    align-items: center;
  }

  .podcast__platforms {
    justify-content: center;
  }
}

.podcast__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast__artwork {
  position: relative;
  z-index: 2;
  color: var(--accent);
}

.podcast__pulse {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  animation: podcastPulse 3s ease-in-out infinite;
}

@keyframes podcastPulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}

.podcast__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.podcast__stats {
  display: flex;
  gap: 24px;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.stat__item {
  text-align: center;
}

.stat__value {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat__label {
  font-size: 12px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.podcast__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.podcast__platforms {
  display: flex;
  gap: 10px;
}

.platform__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  color: var(--muted);
  transition: all 0.2s ease;
  text-decoration: none;
}

.platform__link:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Final CTA Card */
.final__card {
  position: relative;
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--panel2) 0%, rgba(243, 244, 246, 0.02) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.final__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.final__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.final__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted2);
  font-size: 14px;
}

.testimonial__mini {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial__text {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial__author {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 500;
}

/* ==== ADDITIONAL ENHANCEMENTS ==== */

/* Logo styles */
.brand__logo {
  height: 32px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.brand:hover .brand__logo {
  transform: rotate(-2deg) scale(1.05);
}

/* Section decorator */
.section__decorator {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px;
  margin-bottom: 16px;
  animation: slideInLeft 0.6s ease;
  box-shadow: 0 0 20px rgba(47, 230, 167, 0.3);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced title highlight */
.section__title--highlight {
  font-size: clamp(24px, 3.5vw, 32px);
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s ease, shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

/* Problem section enhancement */
.section--problem {
  background: radial-gradient(ellipse at top, var(--panel2) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.section--problem::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(47, 230, 167, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatSlow 12s ease-in-out infinite;
  pointer-events: none;
}

.section--problem .copy {
  animation: fadeInUp 1s ease 0.2s backwards;
}

/* What section enhancement */
.section--what {
  background: radial-gradient(ellipse at bottom, var(--panel2) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.section--what::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatSlow 15s ease-in-out infinite reverse;
  pointer-events: none;
}

.section--what .copy {
  animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

/* Enhanced button styles */
.btn {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn--primary {
  box-shadow: 0 4px 14px rgba(47, 230, 167, 0.3), 
              0 2px 6px rgba(0, 0, 0, 0.15);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(47, 230, 167, 0.3), 
                0 2px 6px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 4px 20px rgba(47, 230, 167, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.2);
  }
}

.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(47, 230, 167, 0.4), 
              0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

/* Enhanced copy text */
.copy p {
  transition: color 0.3s ease;
}

.copy p:hover {
  color: var(--text);
}

/* Enhanced stack items */
.stack__item {
  transition: all 0.3s ease;
}

.stack__item:hover {
  background: var(--panel2);
  transform: translateX(4px);
}

/* Enhanced quote */
.quote {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

/* Enhanced nav links */
.nav__link {
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ==== PROFESSIONAL ENHANCEMENTS ==== */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: var(--accent);
  color: var(--accentText);
}

::-moz-selection {
  background: var(--accent);
  color: var(--accentText);
}

/* Focus visible styling */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--panel3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted2);
}

/* Enhanced header glass effect */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Hero badge enhancement */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--panel3) 0%, var(--panel2) 100%);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  animation: slideDown 0.6s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero__badge:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(47, 230, 167, 0.1);
}

/* Feature pills enhancement */
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.feature__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--panel2) 0%, rgba(243, 244, 246, 0.02) 100%);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.feature__pill:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(47, 230, 167, 0.1);
}

/* Podcast card enhancement */
.podcast__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  padding: 36px;
  background: linear-gradient(135deg, var(--panel2) 0%, rgba(243, 244, 246, 0.02) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Testimonial enhancement */
.testimonial__mini {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.testimonial__text {
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.testimonial__text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 32px;
  color: var(--accent);
  opacity: 0.5;
  font-family: Georgia, serif;
}

.testimonial__author {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  padding-left: 20px;
}

/* Bullets enhancement */
.bullets {
  margin: 20px 0 0;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
}

.bullets li {
  margin: 14px 0;
  padding-left: 28px;
  position: relative;
  transition: all 0.3s ease;
}

.bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.bullets li:hover {
  color: var(--text);
  transform: translateX(4px);
}

/* Muted text enhancement */
.muted {
  color: var(--muted2);
  font-style: italic;
}

/* Section final enhancement */
.section--final {
  padding: 72px 0;
}

/* Mobile responsiveness improvements */
@media (max-width: 640px) {
  .hero {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .hero__headline {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero__features {
    gap: 8px;
  }

  .feature__pill {
    padding: 8px 12px;
    font-size: 12px;
  }

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

  .section {
    padding: 48px 0;
  }

  .final__card {
    padding: 40px 24px;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .hero__breath,
  .hero__gradient {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section::before {
    display: none;
  }
}

/* ==== PAGE STYLES (About, Privacy, Contact) ==== */

/* Page Hero */
.page-hero {
  padding: 100px 0 48px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top center, var(--panel2) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__title {
  margin: 16px 0 0;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.04em;
  font-weight: 700;
  animation: fadeInUp 0.6s ease;
}

.page-hero__subtitle {
  margin: 16px 0 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 55ch;
  line-height: 1.6;
  animation: fadeInUp 0.7s ease 0.1s backwards;
}

.page-hero__date {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--muted2);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted2);
  animation: fadeInUp 0.5s ease;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.breadcrumb span[aria-current="page"] {
  color: var(--text);
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-orb {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-orb__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(47, 230, 167, 0.2);
  animation: orbBreathe 8s ease-in-out infinite;
}

.about-orb__ring--1 {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.about-orb__ring--2 {
  width: 70%;
  height: 70%;
  animation-delay: -2.5s;
}

.about-orb__ring--3 {
  width: 40%;
  height: 40%;
  animation-delay: -5s;
}

.about-orb__core {
  width: 20%;
  height: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 100%);
  box-shadow: 0 0 40px rgba(47, 230, 167, 0.4);
  animation: corePulse 4s ease-in-out infinite;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.value-card {
  padding: 28px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.value-card__icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.value-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.value-card__body {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* Legal Page Styles */
.section--legal {
  padding-bottom: 80px;
}

.legal-content {
  max-width: 720px;
}

.legal-highlight {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.legal-highlight__icon {
  flex-shrink: 0;
  color: var(--accent);
}

.legal-highlight__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.legal-highlight__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-section__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
}

.legal-section__content h3 {
  margin: 20px 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.legal-section__content p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-list {
  margin: 12px 0;
  padding-left: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--muted2);
}

.legal-list--check li::before {
  content: '✓';
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.legal-note {
  padding: 16px;
  background: var(--panel2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

.legal-section__content a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.legal-section__content a:hover {
  text-decoration: underline;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.contact-card {
  padding: 32px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-card__icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.contact-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-card__body {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contact-card__link:hover {
  gap: 12px;
}

.contact-card__link svg {
  transition: transform 0.2s ease;
}

.contact-card__link:hover svg {
  transform: translateX(4px);
}

/* Social Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.social-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(47, 230, 167, 0.15);
}

.social-card svg {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.social-card:hover svg {
  transform: scale(1.15);
}

.social-card__name {
  font-weight: 600;
  font-size: 16px;
}

.social-card__handle {
  color: var(--muted);
  font-size: 14px;
}

/* Nav Active State */
.nav__link--active {
  color: var(--accent);
}

.nav__link--active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Final Card Small Variant */
.final__card--small {
  padding: 40px;
}

/* ==== PILLAR PAGE STYLES ==== */

/* Pillar Hero */
.pillar-hero {
  position: relative;
  padding-bottom: 56px;
}

.pillar-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--panel3);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  animation: fadeInUp 0.5s ease;
}

.pillar-hero__badge .badge__icon {
  font-size: 18px;
}

.pillar-hero__cta {
  margin-top: 28px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.pillar-hero__gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
}

.pillar-hero__gradient--mind {
  background: radial-gradient(ellipse at top right, var(--accent) 0%, transparent 70%);
}

.pillar-hero__gradient--focus {
  background: radial-gradient(ellipse at top right, #8b5cf6 0%, transparent 70%);
}

.pillar-hero__gradient--sleep {
  background: radial-gradient(ellipse at top right, #6366f1 0%, transparent 70%);
}

.pillar-hero__gradient--money {
  background: radial-gradient(ellipse at top right, #22c55e 0%, transparent 70%);
}

.pillar-hero__gradient--grow {
  background: radial-gradient(ellipse at top right, #f59e0b 0%, transparent 70%);
}

/* Text Accent */
.text-accent {
  color: var(--accent);
}

/* Section Decorators by Pillar */
.section__decorator--focus {
  background: linear-gradient(90deg, #8b5cf6 0%, transparent 100%);
}

.section__decorator--sleep {
  background: linear-gradient(90deg, #6366f1 0%, transparent 100%);
}

.section__decorator--money {
  background: linear-gradient(90deg, #22c55e 0%, transparent 100%);
}

.section__decorator--grow {
  background: linear-gradient(90deg, #f59e0b 0%, transparent 100%);
}

/* FAQ Styles */
.faq-list {
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--panel);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item[open] {
  background: var(--panel2);
}

.faq-item__question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Pillar Links */
.pillar-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.pillar-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  text-align: center;
}

.pillar-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pillar-link--mind:hover {
  border-color: var(--accent);
}

.pillar-link--focus:hover {
  border-color: #8b5cf6;
}

.pillar-link--sleep:hover {
  border-color: #6366f1;
}

.pillar-link--money:hover {
  border-color: #22c55e;
}

.pillar-link--grow:hover {
  border-color: #f59e0b;
}

.pillar-link__icon {
  font-size: 32px;
}

.pillar-link__text {
  font-weight: 700;
  font-size: 18px;
}

.pillar-link__desc {
  color: var(--muted);
  font-size: 14px;
}

/* ==== TOOLS HUB STYLES ==== */

/* Tool Categories */
.tool-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-pill:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.category-pill--mind:hover {
  border-color: var(--accent);
  background: rgba(47, 230, 167, 0.1);
}

.category-pill--focus:hover {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
}

.category-pill--sleep:hover {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}

.category-pill--money:hover {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.category-pill--grow:hover {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

/* Section Header Row */
.section__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.section__link {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.section__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section__icon {
  margin-right: 8px;
}

/* Tool Card Coming Soon State */
.tool__card--coming {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.tool__card--coming:hover {
  transform: none;
  box-shadow: none;
}

.tool__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: var(--panel3);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==== LEARN PAGE STYLES ==== */

/* Learn Categories */
.learn-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.learn-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.learn-category:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.learn-category__icon {
  font-size: 36px;
  flex-shrink: 0;
}

.learn-category__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.learn-category__desc {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* Learn Grid */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

/* Learn Card */
.learn-card {
  padding: 24px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.learn-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.learn-card__category {
  display: inline-block;
  padding: 4px 10px;
  background: var(--panel3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.learn-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.learn-card__body {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.learn-card__meta {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}

.learn-card__time {
  font-size: 13px;
  color: var(--muted2);
}

/* ==== ADDITIONAL UTILITY STYLES ==== */

/* Final Card with Glow */
.final__card {
  position: relative;
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--panel2) 0%, rgba(243, 244, 246, 0.02) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}

.final__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.final__trust {
  margin-top: 12px;
  color: var(--muted2);
  font-size: 14px;
}

/* Tools Grid Enhancements */
.tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.tool__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  overflow: hidden;
}

.tool__card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.tool__icon {
  flex-shrink: 0;
  color: var(--accent);
}

.tool__content {
  flex: 1;
}

.tool__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tool__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.tool__duration {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 500;
}

.tool__arrow {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.tool__card:hover .tool__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Section Subtitle */
.section__subtitle {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

/* Section Header */
.section__header {
  margin-bottom: 8px;
}

/* ==== HOMEPAGE PILLARS GRID ==== */

.section--pillars {
  padding: 80px 0;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.pillar__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--panel2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  overflow: hidden;
}

.pillar__card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pillar__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 24px;
}

.pillar__icon--mind {
  background: rgba(139, 92, 246, 0.15);
}

.pillar__icon--focus {
  background: rgba(59, 130, 246, 0.15);
}

.pillar__icon--sleep {
  background: rgba(99, 102, 241, 0.15);
}

.pillar__icon--money {
  background: rgba(234, 179, 8, 0.15);
}

.pillar__icon--grow {
  background: rgba(34, 197, 94, 0.15);
}

.pillar__content {
  flex: 1;
  min-width: 0;
}

.pillar__title {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
}

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

.pillar__arrow {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.pillar__card:hover .pillar__arrow {
  opacity: 1;
  transform: translateX(0);
}

.pillars__cta {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .pillars__grid {
    grid-template-columns: 1fr;
  }
  
  .pillar__desc {
    white-space: normal;
  }
}
