:root {
  color-scheme: dark;
  --bg: #130d0a;
  --card: rgba(31, 20, 15, 0.34);
  --surface: rgba(126, 72, 40, 0.2);
  --surface-hover: rgba(151, 86, 46, 0.28);
  --text: #ead6c8;
  --muted: rgba(214, 188, 170, 0.68);
  --line: rgba(255, 195, 145, 0.19);
  --orange: #ff9000;
  --blue: #00aff0;
  --green: #58d783;
  --rose: #e62968;
  --wine: #722747;
  --blush: #ffb2c8;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  color: black;
  transform: translateY(-160%);
}

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

.background-photo {
  position: fixed;
  z-index: 0;
  inset: -4vh -4vw;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(32, 13, 5, 0.2), rgba(10, 7, 6, 0.06) 48%, rgba(38, 16, 7, 0.22)),
    url("assets/premium-glass-bg-v2.webp") center / cover no-repeat;
  filter: saturate(0.92) brightness(0.76) contrast(1.03);
  pointer-events: none;
  animation: scenic-drift 34s ease-in-out infinite alternate;
  transform-origin: center;
}

.background-photo::before,
.background-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.background-photo::before {
  inset: 0;
  background:
    radial-gradient(circle at 73% 12%, rgba(255, 202, 159, 0.2), transparent 27%),
    linear-gradient(115deg, rgba(22, 12, 8, 0.28), rgba(13, 10, 10, 0.02) 48%, rgba(27, 14, 9, 0.28));
}

.background-photo::after {
  right: 8%;
  bottom: 10%;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 169, 105, 0.14);
  filter: blur(70px);
  animation: atmospheric-glow 16s ease-in-out infinite alternate;
}

.profile-page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
}

.profile-card {
  width: 100%;
  min-height: 100svh;
  background: rgba(26, 17, 13, 0.24);
}

.portrait {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: rgba(24, 15, 11, 0.45);
  isolation: isolate;
}

.portrait > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.portrait-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 17, 15, 0.28) 0%, transparent 34%, rgba(20, 17, 15, 0.08) 52%, rgba(23, 19, 17, 0.9) 100%),
    linear-gradient(90deg, rgba(20, 17, 15, 0.18), transparent 48%);
  pointer-events: none;
}

.profile-topbar {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(17px, env(safe-area-inset-top)) 17px 0;
}

.wordmark {
  color: #ead9ce;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.wordmark::first-letter {
  color: var(--orange);
}

.wordmark span {
  color: var(--orange);
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-pill,
.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  border: 1px solid rgba(255, 195, 145, 0.24);
  border-radius: 999px;
  background: rgba(71, 42, 27, 0.3);
  color: rgba(241, 225, 214, 0.9);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 211, 174, 0.22),
    0 5px 16px rgba(13, 5, 2, 0.2);
}

.online-pill {
  gap: 6px;
  padding: 0 10px;
}

.online-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(88, 215, 131, 0.12);
}

.age-pill {
  width: 34px;
}

.identity {
  position: absolute;
  z-index: 2;
  right: 21px;
  bottom: 14px;
  left: 11px;
}

.hero-donate {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 16px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 220, 116, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 248, 195, 0.34), transparent 32%),
    linear-gradient(145deg, rgba(116, 69, 26, 0.7), rgba(45, 28, 17, 0.76));
  color: #ffd96a;
  font: 900 29px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 210, 74, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 200, 0.42),
    0 0 0 1px rgba(255, 197, 70, 0.08),
    0 7px 22px rgba(14, 6, 2, 0.38),
    0 0 20px rgba(255, 187, 46, 0.22);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  backdrop-filter: blur(14px) saturate(1.25);
  animation: hero-donate-pulse 2.4s ease-in-out infinite;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-donate::before {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 207, 84, 0.35);
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: hero-donate-ring 2.4s ease-out infinite;
}

.hero-donate:hover,
.hero-donate:focus-visible {
  border-color: rgba(255, 232, 144, 0.92);
  color: #fff0a8;
  transform: translateY(-2px) scale(1.05);
}

.eyebrow {
  margin: 0 0 7px;
  color: rgba(230, 208, 193, 0.76);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

h1 {
  margin: 0;
  color: #efd9ca;
  font-size: clamp(42px, 13vw, 62px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.5);
}

h1 em {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: 18px;
  font-style: normal;
  letter-spacing: -0.02em;
}

.verified {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 3px 14px rgba(0, 175, 240, 0.34);
}

.engagement-stack {
  position: fixed;
  z-index: 220;
  top: max(10px, env(safe-area-inset-top));
  left: 50%;
  width: min(calc(100% - 16px), 430px);
  display: grid;
  gap: 8px;
  transform: translateX(-50%);
  pointer-events: none;
  perspective: 900px;
  isolation: isolate;
}

.engagement-stack-bottom-right {
  top: auto;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(74px, calc(env(safe-area-inset-bottom) + 60px));
  left: auto;
  width: min(calc(100% - 28px), 390px);
  transform: none;
}

.engagement-stack-bottom-right .engagement-toast {
  transform: translate3d(16px, 12px, 0) scale(0.975);
  transform-origin: bottom right;
}

.engagement-stack-bottom-right .engagement-toast.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 520px) {
  .engagement-stack-bottom-right {
    right: 8px;
    bottom: max(68px, calc(env(safe-area-inset-bottom) + 58px));
    left: 8px;
    width: auto;
  }
}

.engagement-toast {
  --toast-glow: rgba(255, 225, 206, 0.15);
  --toast-tint: rgba(38, 27, 24, 0.72);
  position: relative;
  width: 100%;
  max-height: 140px;
  opacity: 0;
  transform: translate3d(0, -14px, 0) scale(0.982);
  transform-origin: top center;
  backface-visibility: hidden;
  will-change: opacity, transform;
  pointer-events: none;
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.engagement-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.engagement-toast.is-leaving {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: none;
  transition:
    opacity 1200ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.engagement-toast-inner {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 76px;
  padding: 10px 52px 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 236, 226, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 0%, var(--toast-glow), transparent 43%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(108, 65, 48, 0.09)),
    var(--toast-tint);
  color: rgba(255, 247, 242, 0.96);
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(255, 178, 132, 0.06),
    0 16px 46px rgba(7, 3, 2, 0.34),
    0 2px 8px rgba(7, 3, 2, 0.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.22) brightness(0.76);
  backdrop-filter: blur(18px) saturate(1.22) brightness(0.76);
  transform: translateZ(0);
}

.engagement-toast-inner::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.13), transparent 28%, transparent 72%, rgba(255, 177, 121, 0.06));
  content: "";
  pointer-events: none;
}

.engagement-toast-inner::after {
  position: absolute;
  z-index: 0;
  top: -70%;
  bottom: -70%;
  left: -55%;
  width: 34%;
  transform: translate3d(-180%, 0, 0) rotate(14deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: engagement-glass-sheen 2200ms 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes engagement-glass-sheen {
  0% {
    opacity: 0;
    transform: translate3d(-180%, 0, 0) rotate(14deg);
  }
  24% {
    opacity: 0.48;
  }
  70% {
    opacity: 0.16;
  }
  100% {
    opacity: 0;
    transform: translate3d(520%, 0, 0) rotate(14deg);
  }
}

.engagement-toast-inner:hover {
  border-color: rgba(255, 236, 226, 0.42);
  background:
    radial-gradient(circle at 15% 0%, var(--toast-glow), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(108, 65, 48, 0.1)),
    var(--toast-tint);
}

.engagement-toast-rose {
  --toast-glow: rgba(255, 181, 190, 0.18);
  --toast-tint: rgba(54, 31, 34, 0.72);
}

.engagement-toast-gold {
  --toast-glow: rgba(255, 205, 147, 0.18);
  --toast-tint: rgba(52, 36, 25, 0.72);
}

.engagement-toast-plum {
  --toast-glow: rgba(218, 170, 226, 0.17);
  --toast-tint: rgba(43, 30, 45, 0.72);
}

.engagement-toast-smoke {
  --toast-glow: rgba(215, 221, 229, 0.14);
  --toast-tint: rgba(33, 33, 36, 0.72);
}

.engagement-toast-clear {
  --toast-glow: rgba(255, 242, 232, 0.13);
  --toast-tint: rgba(36, 29, 27, 0.7);
}

.engagement-toast-avatar {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 238, 0.34);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 3px 12px rgba(9, 4, 2, 0.28);
}

.engagement-toast-avatar > b {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 156, 78, 0.34), rgba(86, 48, 33, 0.42));
  color: rgba(255, 235, 220, 0.92);
  font-size: 13px;
  letter-spacing: -0.04em;
}

.engagement-toast-presence {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 13px;
  height: 13px;
  border: 3px solid rgba(50, 34, 29, 0.94);
  border-radius: 50%;
  background: #36d46b;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 12px rgba(54, 212, 107, 0.5);
}

.engagement-toast-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.engagement-toast-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 4px;
}

.engagement-toast-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: rgba(243, 224, 214, 0.66);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.engagement-toast-meta strong {
  flex: none;
  color: rgba(255, 248, 244, 0.98);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.engagement-toast-meta > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.engagement-toast-message {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 244, 238, 0.91);
  font-size: 13.25px;
  font-weight: 480;
  letter-spacing: -0.012em;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.engagement-toast-action {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 4px;
  margin-top: 1px;
  color: rgba(255, 208, 177, 0.9);
  font-size: 10px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.005em;
}

.engagement-toast-action b {
  font-size: 15px;
  font-weight: 450;
  line-height: 0.8;
}

.engagement-toast-close {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 9px;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 244, 238, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 244, 238, 0.56);
  font: 400 14px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: color 150ms ease, background-color 150ms ease;
}

.engagement-toast-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 248, 244, 0.9);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .engagement-toast-inner {
    background: rgba(51, 36, 31, 0.94);
  }
}

.locale-control {
  position: fixed;
  z-index: 180;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
}

.locale-control select {
  min-height: 34px;
  padding: 0 28px 0 11px;
  border: 1px solid rgba(255, 193, 140, 0.24);
  border-radius: 999px;
  background: rgba(36, 22, 16, 0.76);
  color: rgba(229, 207, 192, 0.84);
  font: 800 9px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(11, 4, 2, 0.25);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.language-picker {
  position: fixed;
  z-index: 230;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  color: rgba(245, 229, 218, 0.94);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.language-picker-trigger {
  display: flex;
  min-width: 88px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 196, 147, 0.3);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(137, 82, 51, 0.3), rgba(44, 27, 20, 0.34)),
    rgba(35, 23, 18, 0.72);
  color: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 201, 0.16),
    0 12px 34px rgba(13, 5, 2, 0.28);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  backdrop-filter: blur(24px) saturate(1.35);
  cursor: pointer;
}

.language-picker-trigger strong {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.language-picker-globe {
  position: relative;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(255, 190, 134, 0.45);
  border-radius: 50%;
  color: #f3b47b;
  font-size: 0;
}

.language-picker-globe::before,
.language-picker-globe::after {
  position: absolute;
  content: "";
}

.language-picker-globe::before {
  width: 14px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.language-picker-globe::after {
  width: 7px;
  height: 15px;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 50%;
}

.language-picker-chevron {
  color: rgba(235, 205, 184, 0.62);
  font-size: 11px;
  transition: transform 180ms ease;
}

.language-picker.is-open .language-picker-chevron {
  transform: rotate(180deg);
}

.language-picker-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  display: grid;
  width: 430px;
  max-width: calc(100vw - 28px);
  max-height: min(610px, calc(100vh - 84px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px;
  border: 1px solid rgba(255, 196, 147, 0.27);
  border-radius: 19px;
  background:
    linear-gradient(145deg, rgba(115, 69, 43, 0.24), rgba(40, 25, 19, 0.2)),
    rgba(31, 20, 16, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 201, 0.13),
    0 20px 55px rgba(12, 4, 2, 0.36);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  backdrop-filter: blur(30px) saturate(1.4);
  scrollbar-color: rgba(240, 168, 102, 0.45) transparent;
  scrollbar-width: thin;
}

.language-picker-menu[hidden] {
  display: none;
}

.language-picker-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgba(235, 216, 203, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.language-picker-menu a:hover,
.language-picker-menu a[aria-current="true"] {
  border-color: rgba(255, 181, 116, 0.24);
  background: rgba(175, 94, 48, 0.22);
  color: #f3d7c4;
}

.language-picker-menu small {
  color: #f0a866;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (max-width: 480px) {
  .language-picker {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .language-picker-trigger {
    min-width: 76px;
    height: 40px;
    padding: 0 11px;
    border-radius: 14px;
  }

  .language-picker-menu {
    display: block;
    width: min(250px, calc(100vw - 20px));
    max-height: min(360px, calc(100vh - 84px));
    overflow-y: auto;
  }
}

.profile-content {
  position: relative;
  z-index: 3;
  margin-top: -13px;
  padding: 21px 15px max(24px, env(safe-area-inset-bottom));
  border-radius: 22px 22px 0 0;
  border: 1px solid rgba(255, 195, 145, 0.2);
  background:
    linear-gradient(145deg, rgba(157, 94, 55, 0.2), rgba(67, 39, 25, 0.1)),
    rgba(27, 18, 14, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 205, 165, 0.24),
    0 -18px 50px rgba(12, 5, 2, 0.22);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  backdrop-filter: blur(28px) saturate(1.35);
}

.welcome-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.site-shortcuts {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
}

.site-shortcuts .welcome-link {
  min-height: 27px;
  padding: 6px 10px;
  font-size: 9px;
}

.welcome-link {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 192, 139, 0.2);
  border-radius: 999px;
  background: rgba(75, 44, 29, 0.22);
  color: rgba(232, 211, 196, 0.78);
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 223, 200, 0.09);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.welcome-link::before {
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: #ff9000;
  box-shadow: 0 0 10px rgba(255, 144, 0, 0.48);
  content: "";
}

.welcome-link-more {
  color: rgba(235, 216, 203, 0.88);
}

.welcome-link-more b {
  color: #ff9a16;
  font-size: 13px;
  line-height: 0;
}

.welcome-link:hover {
  border-color: rgba(255, 163, 82, 0.42);
  background: rgba(112, 61, 32, 0.34);
  color: #f3ded0;
  transform: translateY(-1px);
}

.link-status {
  color: rgba(211, 183, 163, 0.62);
  font-size: 9px;
  text-transform: uppercase;
}

.official-links {
  display: grid;
  gap: 10px;
}

.home-layout-review .official-links {
  gap: 7px;
}

.home-layout-review .online-pill i {
  animation: online-presence-pulse 1.7s ease-in-out infinite;
}

.profile-link {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(151, 91, 53, 0.26), rgba(61, 36, 24, 0.22)),
    rgba(48, 29, 20, 0.18);
  color: var(--text);
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 207, 168, 0.25),
    inset 0 -1px 0 rgba(255, 188, 135, 0.045),
    0 12px 28px rgba(12, 5, 2, 0.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
  backdrop-filter: blur(18px) saturate(1.28);
  isolation: isolate;
  overflow: hidden;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.home-layout-review .profile-link {
  min-height: 68px;
  padding-block: 7px;
}

.home-layout-review .hero-donate {
  width: 44px;
  height: 44px;
  border-color: rgba(255, 157, 68, 0.48);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 210, 164, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(112, 56, 25, 0.72), rgba(43, 26, 17, 0.84));
  color: #f2a05a;
  font-size: 29px;
  text-shadow: 0 0 8px rgba(255, 135, 46, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 208, 166, 0.32),
    0 0 9px rgba(255, 133, 43, 0.34),
    0 0 20px rgba(255, 112, 31, 0.16),
    0 7px 20px rgba(14, 6, 2, 0.36);
  perspective: 180px;
  animation: hero-donate-glow 2.2s ease-in-out infinite;
}

.home-layout-review .hero-donate::before {
  inset: -4px;
  border-color: rgba(255, 148, 60, 0.3);
  box-shadow:
    0 0 8px rgba(255, 126, 36, 0.26),
    inset 0 0 7px rgba(255, 126, 36, 0.18);
  animation: hero-donate-neon-ring 2.2s ease-in-out infinite;
}

.home-layout-review .hero-donate span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-bottom: 2px;
  line-height: 1;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  will-change: transform;
  animation: hero-dollar-flip 2.8s ease-in-out infinite;
}

.home-layout-review .platform-icon.fancentro-icon img,
.home-layout-review .platform-icon.loyalfans-icon img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  filter: none;
  object-fit: cover;
}

.profile-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 197, 145, 0.62), transparent);
  opacity: 0.52;
}

.profile-link::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: -45%;
  left: -20%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 143, 66, 0.16);
  filter: blur(24px);
  pointer-events: none;
  transition: transform 520ms ease, opacity 520ms ease;
}

.profile-link-primary {
  border-color: rgba(255, 170, 94, 0.34);
  background:
    linear-gradient(125deg, rgba(186, 111, 65, 0.36), rgba(80, 45, 28, 0.27)),
    rgba(54, 31, 20, 0.24);
  color: #eed8ca;
  box-shadow:
    inset 0 1px 0 rgba(255, 206, 163, 0.34),
    inset 0 0 26px rgba(255, 143, 59, 0.1),
    0 16px 38px rgba(12, 5, 2, 0.27);
}

.platform-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 199, 153, 0.12);
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow:
    0 7px 13px rgba(12, 5, 2, 0.3),
    0 2px 4px rgba(12, 5, 2, 0.22),
    inset 0 -7px 12px rgba(20, 10, 6, 0.08);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.platform-icon::after {
  position: absolute;
  z-index: 0;
  inset: 2px;
  border-radius: 12px;
  background: radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.2), transparent 44%);
  content: "";
  pointer-events: none;
}

.onlyfans-icon {
  background: #00aeef;
  border-color: rgba(151, 229, 255, 0.28);
}

.fansly-icon {
  background: #090a0d;
  border-color: rgba(57, 180, 238, 0.2);
}

.sheer-icon {
  background: #090a0d;
  border-color: rgba(108, 201, 242, 0.18);
}

.faphouse-icon {
  background: #17140d;
  border-color: rgba(230, 167, 12, 0.22);
}

.fancentro-icon {
  background: #3f3456;
  border-color: rgba(193, 174, 236, 0.24);
}

.fancentro-icon img {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: cover;
}

.loyalfans-icon {
  background: #e51d2a;
  border-color: rgba(217, 10, 22, 0.24);
}

.loyalfans-icon img {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: cover;
}

.platform-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 3px 3px rgba(7, 3, 2, 0.3));
  object-fit: contain;
}

.onlyfans-icon img {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: cover;
}

.sheer-icon img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  filter: drop-shadow(0 5px 6px rgba(7, 3, 12, 0.36));
}

.fansly-icon img {
  width: 39px;
  height: 39px;
  filter: drop-shadow(0 5px 6px rgba(5, 18, 24, 0.34));
}

.clips4sale-icon {
  background: #1c1644;
  border-color: rgba(147, 89, 255, 0.24);
  box-shadow:
    0 7px 13px rgba(12, 5, 2, 0.3),
    0 2px 4px rgba(12, 5, 2, 0.22),
    inset 0 -7px 12px rgba(7, 4, 23, 0.16);
}

.clips4sale-icon img {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: cover;
}

.profile-link:hover .platform-icon {
  box-shadow:
    0 9px 17px rgba(12, 5, 2, 0.34),
    0 3px 5px rgba(12, 5, 2, 0.24),
    inset 0 -7px 12px rgba(20, 10, 6, 0.08);
  transform: translateY(-1px) scale(1.035);
}

.link-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.link-copy small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.profile-link-primary .link-copy small {
  color: rgba(229, 204, 187, 0.84);
}

.link-copy mark {
  position: relative;
  padding: 4px 7px;
  border: 1px solid rgba(255, 190, 112, 0.44);
  border-radius: 5px;
  background: rgba(142, 82, 42, 0.62);
  color: #f2ddce;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.025em;
  box-shadow: inset 0 1px 0 rgba(255, 215, 178, 0.12);
  animation: none;
}

.link-copy strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ecd5c6;
}

.link-detail {
  overflow: hidden;
  color: rgba(213, 188, 171, 0.76);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-link-primary .link-detail {
  color: rgba(222, 197, 180, 0.78);
}

.link-arrow {
  position: relative;
  display: grid;
  flex: none;
  width: 34px;
  height: 34px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(112, 63, 35, 0.22);
  color: rgba(240, 221, 207, 0.84);
  font-size: 0;
  box-shadow: inset 0 1px 0 rgba(255, 232, 215, 0.08);
  transition:
    border-color 520ms ease-in-out,
    background-color 520ms ease-in-out,
    box-shadow 520ms ease-in-out;
}

.link-arrow::before,
.link-arrow::after {
  position: absolute;
  inset: 8px;
  background: currentColor;
  content: "";
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  will-change: opacity, transform;
}

.link-arrow::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15M14 7l5 5-5 5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15M14 7l5 5-5 5'/%3E%3C/svg%3E");
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.link-arrow::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E");
  opacity: 0;
  transform: rotate(-165deg) scale(0.42);
}

@keyframes link-arrow-to-check {
  from { opacity: 1; transform: rotate(0deg) scale(1); }
  to { opacity: 0; transform: rotate(165deg) scale(0.42); }
}

@keyframes link-check-appear {
  from { opacity: 0; transform: rotate(-165deg) scale(0.42); }
  to { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes link-arrow-return {
  from { opacity: 0; transform: rotate(165deg) scale(0.42); }
  to { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes link-check-return {
  from { opacity: 1; transform: rotate(0deg) scale(1); }
  to { opacity: 0; transform: rotate(-165deg) scale(0.42); }
}

@media (hover: hover) and (pointer: fine) {
  .profile-link:hover .link-arrow {
    border-color: rgba(255, 190, 132, 0.5);
    background: rgba(155, 84, 43, 0.38);
    box-shadow:
      inset 0 1px 0 rgba(255, 239, 225, 0.18),
      0 0 16px rgba(255, 144, 65, 0.13);
  }

  .profile-link.is-arrow-hovered .link-arrow::before {
    animation: link-arrow-to-check 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .profile-link.is-arrow-hovered .link-arrow::after {
    animation: link-check-appear 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .profile-link.is-arrow-returning .link-arrow::before {
    animation: link-arrow-return 820ms cubic-bezier(0.4, 0, 0.2, 1) both;
  }

  .profile-link.is-arrow-returning .link-arrow::after {
    animation: link-check-return 820ms cubic-bezier(0.4, 0, 0.2, 1) both;
  }
}

.profile-link-primary .link-arrow {
  border-color: rgba(255, 183, 119, 0.3);
  background: rgba(135, 73, 39, 0.28);
  color: #f6e7dc;
}

.preview-section {
  padding-top: 25px;
}

.preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
  padding: 0 3px;
}

.preview-heading h2 {
  margin: 0;
  color: #e8cfc0;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.preview-heading > span {
  color: var(--muted);
  font-size: 9px;
}

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

.preview-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(89, 51, 31, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 202, 158, 0.18),
    0 10px 24px rgba(12, 5, 2, 0.22);
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(8, 7, 6, 0.84));
}

.preview-label {
  position: absolute;
  z-index: 1;
  bottom: 9px;
  left: 9px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.09em;
  color: #f8eae0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 13px 4px;
  color: rgba(242, 224, 212, 0.94);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 5px;
  padding: 17px 4px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 240, 232, 0.48);
  font-size: 9px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

footer a {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(255, 193, 140, 0.16);
  border-radius: 999px;
  background: rgba(71, 41, 27, 0.22);
  color: rgba(238, 220, 207, 0.72);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 229, 211, 0.07);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

footer a:hover {
  border-color: rgba(255, 157, 73, 0.4);
  background: rgba(111, 59, 31, 0.34);
  color: #f4dfd1;
  transform: translateY(-1px);
}

.profile-footer {
  display: block;
  padding-top: 11px;
  border-top: 0;
}

.profile-footer .profile-guides-link {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 2px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(236, 215, 200, 0.78);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.015em;
  box-shadow: none;
}

.profile-guides-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 145, 44, 0.54), rgba(255, 196, 145, 0.08));
  content: "";
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.profile-guides-link span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.profile-guides-link span::before {
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 11px rgba(255, 144, 0, 0.48);
  content: "";
}

.profile-guides-link i {
  display: grid;
  width: 25px;
  height: 25px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(255, 190, 134, 0.2);
  border-radius: 50%;
  background: rgba(113, 61, 33, 0.18);
  color: rgba(255, 173, 101, 0.84);
  font-size: 12px;
  font-style: normal;
  transition: border-color 260ms ease, background-color 260ms ease, color 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.profile-footer .profile-guides-link:hover {
  border-color: transparent;
  background: transparent;
  color: #f1dacb;
  transform: none;
}

.profile-guides-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.profile-guides-link:hover i {
  border-color: rgba(255, 174, 99, 0.4);
  background: rgba(143, 75, 38, 0.3);
  color: #ffd8bc;
  transform: translate3d(2px, -2px, 0);
}

.site-signature {
  position: absolute;
  z-index: 1;
  bottom: max(8px, env(safe-area-inset-bottom));
  left: 50%;
  width: max-content;
  margin: 0;
  color: rgba(231, 207, 191, 0.48);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: center;
  transform: translateX(-50%);
}

@media (max-width: 699px) {
  .profile-content > footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-bottom: max(58px, calc(env(safe-area-inset-bottom) + 46px));
  }

  .profile-content > footer nav {
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
    padding-right: 120px;
  }

  .profile-content > footer a {
    min-height: 23px;
    padding: 5px 6px;
    font-size: 8px;
  }

  .profile-footer .profile-guides-link {
    width: 100%;
    min-height: 34px;
    padding: 6px 2px;
    font-size: 9px;
  }

}

.noscript {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 12px;
  border-radius: 12px;
  background: white;
  color: black;
  font-size: 12px;
  text-align: center;
}


.editorial-body {
  display: block;
  padding: 0;
}

.editorial-page {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), 1040px);
  margin: 0 auto;
  padding: 22px 0 48px;
}

.editorial-nav,
.editorial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.editorial-nav {
  margin-bottom: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 195, 145, 0.18);
  border-radius: 20px;
  background: rgba(35, 22, 16, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 207, 168, 0.14);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
}

.editorial-nav nav,
.editorial-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.editorial-nav nav a,
.editorial-footer a {
  color: rgba(218, 194, 177, 0.78);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.editorial-nav nav a[aria-current="page"] {
  color: #efd9ca;
}

.editorial-nav .nav-cta {
  padding: 9px 13px;
  border: 1px solid rgba(255, 175, 103, 0.38);
  border-radius: 999px;
  background: rgba(159, 86, 44, 0.3);
  color: #f1d8c7;
}

.editorial-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 195, 145, 0.21);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(147, 84, 48, 0.16), rgba(48, 28, 20, 0.08)),
    rgba(27, 18, 14, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 205, 165, 0.2),
    0 38px 110px rgba(12, 5, 2, 0.38);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  backdrop-filter: blur(30px) saturate(1.3);
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: stretch;
  min-height: 480px;
}

.editorial-hero > div,
.guide-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 6vw, 72px);
}

.editorial-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-left: 1px solid rgba(255, 195, 145, 0.16);
  filter: saturate(0.94) contrast(1.02);
}

.about-hero {
  grid-template-columns: minmax(360px, 1.05fr) minmax(380px, 0.95fr);
}

.about-hero > img:first-child {
  border-right: 1px solid rgba(255, 195, 145, 0.16);
  border-left: 0;
}

.about-hero > div {
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.about-hero h1 {
  font-size: clamp(40px, 5.8vw, 64px);
}

html[lang="ru"] .about-hero h1 {
  font-size: clamp(38px, 4.8vw, 56px);
}

.about-hero .editorial-lead {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.about-hero-links {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.about-hero-links a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  min-height: 67px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 192, 137, 0.23);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(151, 91, 53, 0.27), rgba(61, 36, 24, 0.2)),
    rgba(48, 29, 20, 0.2);
  color: #ead3c4;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 207, 168, 0.22),
    0 10px 25px rgba(12, 5, 2, 0.18);
}

.about-hero-links a:first-child {
  border-color: rgba(255, 169, 91, 0.42);
  background:
    linear-gradient(125deg, rgba(184, 106, 60, 0.36), rgba(78, 43, 27, 0.25)),
    rgba(53, 30, 20, 0.24);
}

.about-hero-links img {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  object-fit: contain;
}

.about-hero-links span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.about-hero-links small {
  color: var(--orange);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-hero-links strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-hero-links i {
  color: var(--orange);
  font-size: 15px;
  font-style: normal;
}

.editorial-hero h1,
.guide-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 7vw, 78px);
}

.editorial-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(218, 192, 175, 0.77);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-grid div {
  display: grid;
  gap: 5px;
  padding: 25px clamp(18px, 4vw, 38px);
}

.stat-grid div + div {
  border-left: 1px solid var(--line);
}

.stat-grid strong {
  color: #edcdb7;
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: -0.04em;
}

.stat-grid span,
.comparison-topline span {
  color: rgba(208, 181, 163, 0.63);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-section {
  padding: clamp(38px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.editorial-section h2 {
  max-width: 710px;
  margin: 0 0 20px;
  color: #ead2c2;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.guides-first-section {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 144, 70, 0.08), transparent 30%),
    rgba(68, 39, 25, 0.12);
}

.guides-first-section h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #ead2c2;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.editorial-section > p:not(.section-kicker) {
  max-width: 780px;
  margin: 0 0 16px;
  color: rgba(215, 188, 170, 0.74);
  font-size: 15px;
  line-height: 1.78;
}

.editorial-section > ul,
.editorial-section > ol {
  max-width: 780px;
  margin: 22px 0;
  padding-left: 22px;
}

.editorial-section > ul li,
.editorial-section > ol li {
  margin: 9px 0;
  color: rgba(215, 188, 170, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

.editorial-section > p a,
.article-meta a {
  color: #e9c7b0;
  text-decoration-color: rgba(255, 151, 74, 0.46);
  text-underline-offset: 3px;
}

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

.editorial-cards a,
.comparison-card {
  border: 1px solid rgba(255, 195, 145, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(142, 81, 47, 0.2), rgba(59, 35, 24, 0.15)),
    rgba(50, 30, 21, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 207, 168, 0.18);
}

.editorial-cards a {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 22px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.editorial-cards a:hover {
  border-color: rgba(255, 177, 107, 0.42);
  transform: translateY(-2px);
}

.editorial-cards span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.editorial-cards strong {
  margin-top: auto;
  color: #ead2c2;
  font-size: 25px;
}

.editorial-cards p {
  margin: 9px 0 0;
  color: rgba(211, 183, 165, 0.7);
  font-size: 12px;
  line-height: 1.55;
}

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

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  padding: 20px 2px;
  color: #e8d0c0;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
}

.faq-section details p {
  max-width: 760px;
  margin: -7px 0 20px;
  color: rgba(211, 184, 166, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.editorial-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(28px, 6vw, 72px);
}

.editorial-final p {
  margin: 0;
  color: rgba(211, 184, 166, 0.7);
  font-size: 13px;
}

.editorial-final a,
.comparison-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 175, 103, 0.38);
  border-radius: 14px;
  background: rgba(155, 83, 43, 0.3);
  color: #eed5c4;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.editorial-footer {
  padding: 22px 5px 0;
  color: rgba(210, 183, 165, 0.54);
  font-size: 10px;
}

.guide-hero {
  min-height: 390px;
  border-bottom: 1px solid var(--line);
}

.comparison-grid {
  padding: clamp(22px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}

.comparison-card {
  display: flex;
  min-width: 0;
  min-height: 410px;
  flex-direction: column;
  padding: 22px;
}

.comparison-card.featured {
  border-color: rgba(255, 167, 87, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 214, 176, 0.25),
    0 18px 50px rgba(32, 11, 3, 0.22);
}

.comparison-topline {
  display: flex;
  min-height: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.comparison-topline mark {
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--orange);
  color: #241006;
  font-size: 9px;
  font-weight: 950;
  box-shadow: 0 7px 20px rgba(255, 112, 0, 0.25);
}

.comparison-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.comparison-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
}

.comparison-brand h2 {
  margin: 0;
  color: #ead2c2;
  font-size: 23px;
}

.comparison-count {
  margin-top: 28px;
  color: #e7c8b4;
  font-size: 20px;
}

.comparison-card > p {
  margin: 12px 0 24px;
  color: rgba(211, 183, 165, 0.7);
  font-size: 12px;
  line-height: 1.62;
}

.comparison-card > a {
  margin-top: auto;
}

.guide-copy {
  padding-top: clamp(42px, 7vw, 78px);
}

.article-hero {
  min-height: 420px;
  padding: clamp(42px, 7vw, 82px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 145, 73, 0.12), transparent 29%),
    linear-gradient(135deg, rgba(113, 59, 34, 0.16), transparent 58%);
}

.article-hero h1 {
  max-width: 820px;
  font-size: clamp(43px, 7vw, 78px);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: clamp(20px, 4vw, 44px);
}

.journal-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 195, 145, 0.19);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 144, 70, 0.12), transparent 28%),
    rgba(66, 38, 25, 0.27);
  color: inherit;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 210, 171, 0.17);
  transition: transform 170ms ease, border-color 170ms ease;
}

.journal-card:hover {
  border-color: rgba(255, 172, 96, 0.42);
  transform: translateY(-2px);
}

.journal-card .section-kicker {
  margin-bottom: auto;
}

.journal-card h2 {
  max-width: 430px;
  margin: 50px 0 12px;
  color: #e9cfbe;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.journal-card p {
  margin: 0;
  color: rgba(211, 184, 166, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.journal-card > span:last-child {
  margin-top: 25px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
}

.article-hero {
  display: grid;
  align-content: end;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: rgba(207, 179, 161, 0.61);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(30px, 6vw, 74px);
  padding: clamp(38px, 7vw, 78px);
}

.article-body {
  min-width: 0;
}

.article-body > p:first-child {
  color: rgba(231, 207, 191, 0.88);
  font-size: 19px;
  line-height: 1.65;
}

.article-body p,
.article-body li {
  color: rgba(211, 185, 168, 0.74);
  font-size: 15px;
  line-height: 1.82;
}

.article-body h2 {
  margin: 48px 0 16px;
  color: #e8cebc;
  font-size: clamp(26px, 4vw, 39px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 24px 26px;
  border: 1px solid rgba(255, 184, 119, 0.24);
  border-radius: 20px;
  background: rgba(99, 54, 32, 0.24);
  color: #e6c9b6;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.series-next {
  display: grid;
  gap: 7px;
  margin-top: 54px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 169, 89, 0.42);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(176, 94, 49, 0.3), rgba(77, 43, 28, 0.3)),
    rgba(64, 36, 24, 0.32);
  color: rgba(237, 213, 197, 0.9);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.series-next span {
  color: rgba(213, 181, 160, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.series-next strong {
  color: #ecd2c0;
  font-size: clamp(19px, 3vw, 25px);
  line-height: 1.25;
}

.series-next:hover {
  border-color: rgba(255, 184, 119, 0.66);
  background:
    linear-gradient(135deg, rgba(189, 101, 52, 0.38), rgba(84, 46, 29, 0.34)),
    rgba(64, 36, 24, 0.36);
  transform: translateY(-1px);
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 190, 133, 0.21);
  border-radius: 22px;
  background: rgba(66, 37, 24, 0.26);
}

.article-aside img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 22%;
}

.article-aside h2 {
  margin: 20px 0 8px;
  color: #e8cebc;
  font-size: 20px;
}

.article-aside p {
  margin: 0 0 18px;
  color: rgba(211, 184, 166, 0.69);
  font-size: 12px;
  line-height: 1.58;
}

.article-aside a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border: 1px solid rgba(255, 169, 89, 0.4);
  border-radius: 14px;
  background: rgba(156, 82, 41, 0.34);
  color: #ecd1bf;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 26px clamp(28px, 7vw, 78px) clamp(38px, 7vw, 78px);
  border-top: 1px solid var(--line);
}

.related-links a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: rgba(226, 202, 186, 0.84);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.profile-link:hover {
  border-color: rgba(255, 184, 119, 0.34);
  background:
    linear-gradient(135deg, rgba(172, 99, 55, 0.34), rgba(75, 42, 27, 0.28)),
    rgba(56, 32, 21, 0.24);
  transform: translateY(-1px);
}

.profile-link:hover::after {
  transform: translate3d(185%, 55%, 0) scale(1.25);
  opacity: 0.78;
}

.profile-link-primary:hover {
  border-color: rgba(255, 176, 101, 0.52);
  background:
    linear-gradient(125deg, rgba(205, 119, 68, 0.42), rgba(94, 51, 30, 0.32)),
    rgba(67, 37, 23, 0.28);
}

.profile-link:active {
  transform: scale(0.987);
}

.profile-link:focus-visible,
.wordmark:focus-visible,
.text-link:focus-visible,
.welcome-link:focus-visible,
footer a:focus-visible,
.preview-grid:focus-visible {
  outline: 3px solid rgba(255, 144, 0, 0.72);
  outline-offset: 3px;
}

@keyframes scenic-drift {
  from {
    transform: translate3d(-1.4%, -0.6%, 0) scale(1.025);
  }
  to {
    transform: translate3d(1.8%, 1.1%, 0) scale(1.075);
  }
}

@keyframes atmospheric-glow {
  from {
    transform: translate3d(8%, 5%, 0) scale(0.92);
    opacity: 0.45;
  }
  to {
    transform: translate3d(-18%, -12%, 0) scale(1.14);
    opacity: 0.72;
  }
}

@keyframes offer-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 4px rgba(255, 144, 0, 0.08),
      0 7px 18px rgba(255, 112, 0, 0.22);
  }
  50% {
    transform: scale(1.045);
    box-shadow:
      0 0 0 6px rgba(255, 144, 0, 0.12),
      0 9px 24px rgba(255, 112, 0, 0.34);
  }
}

@keyframes hero-donate-pulse {
  0%,
  100% {
    opacity: 0.9;
    box-shadow:
      inset 0 1px 0 rgba(255, 249, 200, 0.42),
      0 0 0 1px rgba(255, 197, 70, 0.08),
      0 7px 22px rgba(14, 6, 2, 0.38),
      0 0 14px rgba(255, 187, 46, 0.16);
  }
  50% {
    opacity: 1;
    box-shadow:
      inset 0 1px 0 rgba(255, 249, 200, 0.54),
      0 0 0 1px rgba(255, 215, 105, 0.2),
      0 9px 24px rgba(14, 6, 2, 0.42),
      0 0 27px rgba(255, 187, 46, 0.42);
  }
}

@keyframes hero-donate-ring {
  0%,
  28% {
    opacity: 0;
    transform: scale(0.94);
  }
  48% {
    opacity: 0.48;
  }
  76%,
  100% {
    opacity: 0;
    transform: scale(1.17);
  }
}

@keyframes hero-dollar-flip {
  0%,
  12% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  88%,
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes online-presence-pulse {
  0%,
  100% {
    opacity: 0.48;
    box-shadow:
      0 0 0 3px rgba(88, 215, 131, 0.08),
      0 0 5px rgba(88, 215, 131, 0.22);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 0 4px rgba(88, 215, 131, 0.14),
      0 0 11px rgba(88, 215, 131, 0.68);
  }
}

@keyframes hero-donate-glow {
  0%,
  100% {
    opacity: 0.88;
    filter: brightness(0.96);
  }
  50% {
    opacity: 1;
    filter: brightness(1.07);
  }
}

@keyframes hero-donate-neon-ring {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.97);
  }
  50% {
    opacity: 0.48;
    transform: scale(1.08);
  }
}

@media (max-width: 359px) {
  .portrait {
    min-height: 500px;
  }

  .profile-content {
    padding-inline: 11px;
  }

  .profile-link {
    grid-template-columns: 40px minmax(0, 1fr) 31px;
    gap: 9px;
    padding-inline: 9px;
  }

  .platform-icon {
    width: 40px;
    height: 40px;
  }

  .link-copy strong {
    font-size: 11px;
  }

}

@media (max-width: 699px) {
  .editorial-page {
    width: min(calc(100% - 18px), 1040px);
    padding-top: 9px;
  }

  .editorial-nav {
    padding: 11px 12px;
  }

  .editorial-nav nav {
    gap: 10px;
  }

  .editorial-nav nav a:not(.nav-cta) {
    display: none;
  }

  .editorial-shell {
    border-radius: 24px;
  }

  .editorial-hero {
    grid-template-columns: 1fr;
  }

  .editorial-hero > div {
    min-height: 390px;
    padding: 32px 24px;
  }

  .editorial-hero img {
    height: min(96vw, 520px);
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .stat-grid div {
    grid-template-columns: 92px 1fr;
    align-items: center;
    padding: 18px 24px;
  }

  .stat-grid div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .editorial-section {
    padding: 38px 24px;
  }

  .editorial-cards,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .editorial-cards a {
    min-height: 175px;
  }

  .guide-hero {
    min-height: 360px;
    padding: 36px 24px;
  }

  .comparison-grid {
    padding: 18px;
  }

  .comparison-card {
    min-height: 350px;
  }

  .article-hero {
    min-height: 360px;
    padding: 38px 24px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .journal-card {
    min-height: 250px;
    padding: 24px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    padding: 38px 24px;
  }

  .article-aside {
    position: static;
  }

  .related-links {
    grid-template-columns: 1fr;
    padding: 22px 24px 38px;
  }

  .editorial-final,
  .editorial-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .editorial-final a {
    width: 100%;
  }

  .editorial-footer nav {
    flex-wrap: wrap;
  }
}

@media (min-width: 700px) {
  body.home-layout-review {
    height: 100svh;
    overflow-y: hidden;
  }

  body {
    display: grid;
    place-items: center;
    padding: 24px;
  }

  .background-photo {
    inset: -5vh -4vw;
    filter: saturate(0.92) brightness(0.76) contrast(1.03);
  }

  .profile-page {
    display: grid;
    width: min(100%, 1020px);
    min-height: 0;
    place-items: center;
  }

  .profile-card {
    display: grid;
    grid-template-columns: minmax(340px, 1.08fr) minmax(360px, 0.92fr);
    min-height: 680px;
    overflow: hidden;
    border: 1px solid rgba(255, 191, 137, 0.23);
    border-radius: var(--radius);
    box-shadow:
      inset 0 1px 0 rgba(255, 202, 158, 0.17),
      0 42px 120px rgba(12, 5, 2, 0.48);
  }

  .portrait {
    min-height: 680px;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 34px;
    border: 0;
    border-left: 1px solid rgba(255, 191, 137, 0.18);
    border-radius: 0;
    box-shadow: inset 1px 0 0 rgba(255, 205, 168, 0.06);
  }

  .identity {
    right: 34px;
    bottom: 17px;
    left: 17px;
  }

  .preview-item {
    border-radius: 12px;
  }

  footer {
    margin-top: auto;
  }
}

@media (min-width: 700px) and (max-height: 659px) {
  body.home-layout-review {
    height: auto;
    overflow-y: auto;
  }
}

@media (min-width: 700px) and (max-height: 760px) {
  body {
    padding-block: 12px;
  }

  .profile-card,
  .portrait {
    min-height: 640px;
  }

  .profile-content {
    padding-block: 22px;
  }

  .preview-section {
    padding-top: 18px;
  }

  .preview-item {
    max-height: 120px;
  }
}

@media (min-width: 700px) {
  body.home-layout-review .profile-content {
    justify-content: flex-start;
    padding-block: 18px;
  }

  body.home-layout-review .site-shortcuts {
    flex: 0 0 auto;
  }

  body.home-layout-review .official-links {
    flex: 1 1 auto;
    min-height: 0;
    grid-template-rows: repeat(7, minmax(0, 1fr));
  }

  body.home-layout-review .profile-link {
    min-height: 0;
  }

  body.home-layout-review .link-copy strong {
    font-size: 12px;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .profile-content {
    background: rgba(34, 22, 17, 0.94);
  }

  .profile-link {
    background: rgba(68, 40, 27, 0.96);
  }
}


@media (max-width: 0px) {
  body:not(.editorial-body) {
    padding: 8px;
  }

  .profile-page {
    min-height: 0;
  }

  .profile-card {
    display: grid;
    grid-template-columns: minmax(132px, 43%) minmax(0, 57%);
    grid-template-rows: auto auto auto auto auto;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 191, 137, 0.25);
    border-radius: 28px;
    background:
      linear-gradient(145deg, rgba(150, 88, 51, 0.18), rgba(54, 31, 21, 0.08)),
      rgba(27, 18, 14, 0.62);
    box-shadow:
      inset 0 1px 0 rgba(255, 207, 168, 0.19),
      0 28px 80px rgba(12, 5, 2, 0.4);
    -webkit-backdrop-filter: blur(26px) saturate(1.3);
    backdrop-filter: blur(26px) saturate(1.3);
  }

  .portrait {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 520px;
    border-right: 1px solid rgba(255, 191, 137, 0.19);
  }

  .portrait > img {
    object-position: 51% 25%;
  }

  .portrait-shade {
    background:
      linear-gradient(to bottom, rgba(20, 17, 15, 0.24), transparent 34%, rgba(20, 17, 15, 0.08) 52%, rgba(23, 19, 17, 0.92) 100%),
      linear-gradient(90deg, rgba(20, 17, 15, 0.12), transparent 50%);
  }

  .profile-topbar {
    padding: max(15px, env(safe-area-inset-top)) 12px 0;
  }

  .wordmark {
    font-size: 18px;
  }

  .profile-topbar .online-pill {
    display: none;
  }

  .profile-topbar .age-pill {
    width: 31px;
    min-height: 25px;
    font-size: 8px;
  }

  .identity {
    right: 12px;
    bottom: 10px;
    left: 6px;
  }

  .identity h1 {
    font-size: clamp(32px, 10.5vw, 44px);
  }

  .verified {
    width: 17px;
    height: 17px;
    flex: none;
    font-size: 10px;
  }

  .profile-content {
    display: contents;
  }

  .welcome-line {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    min-width: 0;
    margin: 0;
    padding: 18px 11px 10px;
    font-size: 9px;
  }

  .welcome-line > span:first-child {
    max-width: 115px;
  }

  .link-status {
    display: none;
  }

  .official-links {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    min-width: 0;
    gap: 8px;
    padding: 0 9px 14px;
  }

  .profile-link {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 8px;
    min-height: 94px;
    padding: 9px;
    border-radius: 18px;
  }

  .platform-icon {
    width: 35px;
    height: 35px;
    border-radius: 12px;
  }

  .platform-icon img {
    width: 27px;
    height: 27px;
  }

  .link-arrow {
    display: none;
  }

  .link-copy {
    gap: 4px;
  }

  .link-copy small {
    flex-wrap: wrap;
    gap: 5px;
    font-size: 7px;
  }

  .link-copy mark {
    padding: 4px 6px;
    font-size: 8px;
  }

  .link-copy strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.15;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .link-detail {
    display: -webkit-box;
    overflow: hidden;
    font-size: 8px;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .preview-section,
  .text-link,
  .profile-content > footer {
    grid-column: 1 / -1;
  }

  .preview-section {
    grid-row: 3;
    padding: 24px 14px 0;
  }

  .text-link {
    grid-row: 4;
    margin: 10px 14px 0;
    padding-inline: 2px;
  }

  .profile-content > footer {
    grid-row: 5;
    margin: 0 14px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .editorial-hero.about-hero {
    grid-template-columns: minmax(132px, 43%) minmax(0, 57%);
    min-height: 520px;
  }

  .about-hero > img:first-child {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    border-top: 0;
    border-right: 1px solid var(--line);
    object-position: 51% 25%;
  }

  .about-hero > div {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding: 20px 10px;
  }

  .about-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  html[lang="ru"] .about-hero h1 {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .about-hero .editorial-lead {
    margin-top: 12px;
    font-size: 10px;
    line-height: 1.45;
  }

  .about-hero-links {
    gap: 7px;
    margin-top: 16px;
  }

  .about-hero-links a {
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 7px;
    min-height: 68px;
    padding: 7px;
    border-radius: 15px;
  }

  .about-hero-links img {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .about-hero-links strong {
    font-size: 9px;
    white-space: normal;
  }

  .about-hero-links i {
    display: none;
  }
}

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

  .profile-link {
    transition: none;
  }

  .link-arrow,
  .link-arrow::before,
  .link-arrow::after {
    transition: none;
  }

  .engagement-toast {
    transition: opacity 120ms linear;
  }

  .engagement-toast-inner::after {
    animation: none;
  }

  .background-photo,
  .background-photo::before,
  .background-photo::after,
  .profile-content,
  .link-copy mark,
  .hero-donate,
  .hero-donate::before,
  .home-layout-review .hero-donate,
  .home-layout-review .hero-donate::before {
    animation: none;
  }
}
