*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

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

html {
  scroll-behavior: smooth;
  font-size: 92%;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  background: none;
}

ol,
ul {
  list-style: none;
}


:root {

  --clr-bg: #0d0b14;
  --clr-bg-2: #13101f;
  --clr-bg-3: #1a1528;
  --clr-surface: rgba(255, 255, 255, 0.04);
  --clr-surface-hover: rgba(255, 255, 255, 0.07);
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-border-hover: rgba(255, 255, 255, 0.16);
  --clr-text: #f0ecfa;
  --clr-text-muted: rgba(240, 236, 250, 0.6);
  --clr-text-faint: rgba(240, 236, 250, 0.35);


  --clr-accent: #c855f0;
  --clr-accent-2: #f05a9f;
  --clr-accent-3: #7c3aed;
  --clr-gold: #f0b429;
  --clr-blue: #3b82f6;
  --clr-teal: #14b8a6;


  --grad-brand: linear-gradient(135deg, #c855f0 0%, #f05a9f 100%);
  --grad-hero: radial-gradient(ellipse 120% 80% at 60% 40%, rgba(124, 58, 237, 0.35) 0%, rgba(192, 85, 240, 0.15) 40%, transparent 70%);
  --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  --grad-gold: linear-gradient(135deg, #f0b429 0%, #f97316 100%);
  --grad-blue: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --grad-teal: linear-gradient(135deg, #14b8a6 0%, #22d3ee 100%);


  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 0 30px rgba(200, 85, 240, 0.25);
  --shadow-gold: 0 0 20px rgba(240, 180, 41, 0.25);


  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 3rem;
  --sp-2xl: 4.5rem;


  --r-sm: 0.5rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;
  --r-full: 9999px;


  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s ease;


  --header-h: 70px;
}


.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 780px;
}

.section {
  padding: var(--sp-2xl) 0;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.section:nth-child(even) {
  background: var(--clr-bg-2);
}


#rankings {
  scroll-margin-top: calc(var(--header-h) + 2rem);
  margin-top: -4rem;
  padding-top: var(--sp-lg);
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  #rankings {
    margin-top: -1rem;
  }
}

.section__head {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-sm);
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
}

.section__desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-text-muted);
  font-size: 1rem;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  background: rgba(13, 11, 20, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}


.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  transition: opacity var(--t-base);
}

.brand:hover {
  opacity: 0.85;
}

.brand__icon {
  font-size: 1.4rem;
  line-height: 1;
}

.brand__name {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-text);
  white-space: nowrap;
}

.brand__name strong {
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover {
  color: var(--clr-text);
  background: var(--clr-surface);
}


.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  padding: 0.2rem 0.5rem;
}

.lang-sep {
  color: var(--clr-border);
  font-size: 0.8rem;
}

.lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  border-radius: var(--r-full);
  padding: 0.25rem 0.55rem;
  transition: color var(--t-fast), background var(--t-fast);
}

.lang-btn:hover {
  color: var(--clr-text);
}

.lang-btn.active {
  background: var(--grad-brand);
  color: #fff;
}


.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}

.burger:hover {
  background: var(--clr-surface);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text-muted);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.15s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--clr-accent);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--clr-accent);
}


.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(13, 11, 20, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
  border-bottom: 1px solid var(--clr-border);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: -1;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__link {
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}

.mobile-nav__link:hover {
  color: var(--clr-text);
  background: var(--clr-surface);
}


.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: 2rem;
  min-height: 480px;
  max-height: 550px;
  overflow: hidden;
  background: var(--clr-bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: url("../images/main-bg.webp") left top / contain no-repeat;
  opacity: 1;
}

.hero__image {
  position: absolute;
  inset: 0;
  background: url('../images/char-sophia.webp') right center / contain no-repeat;
  opacity: 0.8;
  mask-image: linear-gradient(to right, transparent 0%, black 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
}

@media (max-width: 768px) {
  .hero__image {
    background-position: bottom right;
    mask-image: linear-gradient(to top, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
    opacity: 0.5;
  }
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 15, 20, 0.85) 0%, rgba(15, 15, 20, 0.5) 45%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem 1.25rem 2rem;
  width: 100%;
}

.hero__content {
  max-width: 580px;
  padding-bottom: 45px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(200, 85, 240, 0.15);
  border: 1px solid rgba(200, 85, 240, 0.3);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: var(--sp-md);
  animation: fadeDown 0.6s ease both;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: var(--sp-md);
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero__title em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: var(--sp-lg);
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-muted);
}

.hero__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  flex-shrink: 0;
}


.hero__widget {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: fadeLeft 0.8s ease 0.2s both;
}

.widget-card {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow-lg), var(--shadow-accent);
}

.widget-card__header {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-text);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--clr-border);
}

.widget-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.widget-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: background var(--t-fast), border-color var(--t-fast);
}

.widget-item:hover {
  background: var(--clr-surface-hover);
  border-color: var(--clr-border-hover);
}

.widget-item--gold {
  border-color: rgba(240, 180, 41, 0.3);
  background: rgba(240, 180, 41, 0.07);
}

.widget-item--silver {
  border-color: rgba(148, 163, 184, 0.3);
  background: rgba(148, 163, 184, 0.05);
}

.widget-item--bronze {
  border-color: rgba(180, 120, 80, 0.3);
  background: rgba(180, 120, 80, 0.05);
}

.widget-item__rank {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--clr-text-faint);
  width: 28px;
}

.widget-item--gold .widget-item__rank {
  color: var(--clr-gold);
}

.widget-item__name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text);
}

.widget-stars {
  font-size: 0.7rem;
  color: var(--clr-gold);
  letter-spacing: -1px;
}

.widget-item__score {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--clr-accent);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn--hero {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  animation: fadeUp 0.7s ease 0.4s both;
}

.btn--sm {
  font-size: 0.875rem;
  padding: 0.55rem 1.4rem;
}

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200, 85, 240, 0.35);
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 85, 240, 0.5);
}

.btn--secondary {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn--secondary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}

.btn--outline {
  border-color: var(--clr-teal);
  color: var(--clr-teal);
}

.btn--outline:hover:not(:disabled) {
  background: rgba(20, 184, 166, 0.1);
  transform: translateY(-2px);
}

.btn--cta:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


.stars {
  display: inline-flex;
  gap: 2px;
}

.stars::before {
  content: '★★★★★';
  letter-spacing: 2px;
  background: linear-gradient(to right,
      var(--clr-gold) calc(var(--fill, 100%) * 1%),
      rgba(240, 180, 41, 0.25) calc(var(--fill, 100%) * 1%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.95rem;
}

.stars[data-rating="5"]::before {
  --fill: 100;
}

.stars[data-rating="4"]::before {
  --fill: 80;
}

.stars[data-rating="4.5"]::before {
  --fill: 90;
}

.stars[data-rating="3"]::before {
  --fill: 60;
}


.rankings {
  background: var(--clr-bg);
}

.rankings__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rank-card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  overflow: hidden;
}

.rank-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: var(--grad-card);
  z-index: -1;
}

.rank-card:hover {
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.rank-card--featured {
  border-color: rgba(200, 85, 240, 0.35);
  background: linear-gradient(145deg, rgba(200, 85, 240, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 0 40px rgba(200, 85, 240, 0.1);
}

.rank-card--featured:hover {
  border-color: rgba(200, 85, 240, 0.55);
  box-shadow: 0 0 60px rgba(200, 85, 240, 0.2);
}

.rank-card__badge-featured {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
}

.rank-card__body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.rank-card__logo {
  width: 72px;
  height: 72px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--clr-bg);
  overflow: hidden;
}

.rank-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(0.5);
}

.rank-card__info {
  flex: 1;
}

.rank-card__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.rank-card__number {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--clr-text-faint);
  background: var(--clr-surface);
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-sm);
}

.rank-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--clr-text);
}

.rank-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
}

.rank-card__label--gold {
  background: rgba(240, 180, 41, 0.15);
  color: var(--clr-gold);
  border: 1px solid rgba(240, 180, 41, 0.3);
}

.rank-card__label--blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.rank-card__label--teal {
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.rank-card__score {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-left: auto;
}

.rank-card__desc {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.rank-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-text-muted);
}

.rank-card__pros {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pro-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}

.pro-item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  flex-shrink: 0;
}


.rank-card__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 140px;
}

.score-circle {
  position: relative;
  width: 80px;
  height: 80px;
}

.score-circle__svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.score-circle__bg {
  fill: none;
  stroke: var(--clr-surface);
  stroke-width: 2.5;
}

.score-circle__fill {
  fill: none;
  stroke: var(--clr-accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}

.score-circle--blue .score-circle__fill {
  stroke: var(--clr-blue);
}

.score-circle--teal .score-circle__fill {
  stroke: var(--clr-teal);
}

.score-circle__num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-text);
}

.rank-card__trusted {
  font-size: 0.72rem;
  color: var(--clr-teal);
  font-weight: 500;
}


.disclosure-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: 0.78rem;
  color: var(--clr-text-faint);
  line-height: 1.5;
}

.disclosure-bar svg {
  flex-shrink: 0;
  color: var(--clr-text-faint);
}


.characters {
  background: var(--clr-bg-2);
}

.characters__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.character-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.character-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-md), var(--shadow-accent);
}

.character-card__media {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--clr-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.char-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.char-avatar--sophia {
  background: linear-gradient(135deg, #c855f0, #f05a9f);
}

.char-avatar--emma {
  background: linear-gradient(135deg, #f97316, #ec4899);
}

.char-avatar--mia {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.char-avatar--luna {
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
}

.char-avatar--aria {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.char-avatar--yuki {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

.char-avatar__glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(20px);
}

.char-avatar--sophia .char-avatar__glow {
  background: #c855f0;
}

.char-avatar--emma .char-avatar__glow {
  background: #f97316;
}

.char-avatar--mia .char-avatar__glow {
  background: #3b82f6;
}

.char-avatar--luna .char-avatar__glow {
  background: #14b8a6;
}

.char-avatar--aria .char-avatar__glow {
  background: #f59e0b;
}

.char-avatar--yuki .char-avatar__glow {
  background: #6366f1;
}

.char-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
}

.char-badge--live {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
}

.char-badge--hot {
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
}

.char-badge--new {
  background: rgba(59, 130, 246, 0.9);
  color: #fff;
}

.character-card__body {
  padding: 1.25rem;
}

.character-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--clr-text);
  margin-bottom: 0.3rem;
}

.character-card__trait {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.75rem;
}

.character-card__stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--clr-text-faint);
}


.how-it-works {
  background: var(--clr-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-connector {
  align-self: center;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-2));
  border-radius: 2px;
  margin-top: -2rem;
  opacity: 0.5;
}

.step-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.step-card:hover {
  border-color: rgba(200, 85, 240, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(200, 85, 240, 0.12);
  border: 1px solid rgba(200, 85, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-accent);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}


.methodology {
  background: var(--clr-bg-2);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.method-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.method-card:hover {
  border-color: rgba(200, 85, 240, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.method-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(200, 85, 240, 0.12);
  border: 1px solid rgba(200, 85, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.method-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-accent);
}

.method-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.method-card__text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}


.reviews {
  background: var(--clr-bg);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--t-base), transform var(--t-base);
}

.review-card:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-2px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.review-card__author {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.review-card__platform {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-accent);
  font-weight: 500;
}

.review-card__quote {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--clr-text-faint);
  margin-top: auto;
}


.seo-block {
  background: var(--clr-bg-2);
}

.seoblock {
  max-width: 820px;
  margin: 0 auto;
}

.seoblock h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--clr-text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.seoblock .gtext {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seoblock p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}


.faq {
  background: var(--clr-bg);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base);
}

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

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  text-align: left;
  transition: background var(--t-fast);
}

.faq-item__question:hover {
  background: var(--clr-surface);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--clr-accent);
  transition: transform var(--t-base);
}

.faq-item__question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item__answer.open {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
}

.faq-item__answer-inner p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}


.disclaimer {
  padding: var(--sp-xl) 0;
  background: var(--clr-bg-2);
}

.disclaimer__box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
}

.disclaimer__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-accent);
}

.disclaimer__icon svg {
  width: 28px;
  height: 28px;
}

.disclaimer__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--clr-text);
  margin-bottom: 1rem;
}

.disclaimer__text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.disclaimer__badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.4rem 1.25rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}

.disclaimer__date {
  font-size: 0.75rem;
  color: var(--clr-text-faint);
}


.site-footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-xl) 0 var(--sp-lg);
}

.footer__inner {}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--clr-border);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-top: 0.75rem;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  margin-bottom: 0.5rem;
}

.footer__nav-col a {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  transition: color var(--t-fast);
}

.footer__nav-col a:hover {
  color: var(--clr-accent);
}

.footer__bottom {}

.footer__copy {
  font-size: 0.78rem;
  color: var(--clr-text-faint);
  line-height: 1.6;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@media (max-width: 1024px) {
  .hero__inner {
    text-align: left;
  }

  .hero__meta {
    justify-content: center;
  }

  .hero__widget {
    justify-content: center;
  }

  .widget-card {
    max-width: 400px;
  }

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

  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    gap: 1.5rem;
  }

  .step-connector {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    gap: 2rem;
  }
}


@media (max-width: 768px) {

  :root {
    --sp-2xl: 4rem;
  }

  .nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero {
    min-height: 250px;
    max-height: initial;
    padding-top: 35px;
    padding-bottom: 5px;
  }

  .hero__inner {
    padding: var(--sp-lg) 1.25rem;
  }

  .rank-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .rank-card__aside {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: auto;
  }

  .rank-card__body {
    flex-direction: column;
  }

  .rank-card__desc {
    display: none !important;
  }

  .score-circle {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    transform: scale(0.8);
    transform-origin: top right;
  }

  .characters__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .method-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .reviews__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer__top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .rank-card__badge-featured {
    font-size: 0.6rem;
    top: 0.75rem;
    right: 0.75rem;
  }

  .section__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .characters__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__meta {
    gap: 3px;
    margin-bottom: 0;
  }

  .hero__badge {
    margin-bottom: 7px;
  }

  .hero__content {
    padding-bottom: 0;
  }

  .hero__bg {
    background: url(../images/main-bg.webp) left top / cover no-repeat;
  }

  .lang-switcher {
    display: none;
  }

  .rank-card {
    padding: 1.25rem;
  }

  .rank-card__header {
    gap: 0.35rem;
  }

  .rank-card__name {
    font-size: 1.1rem;
  }

  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}




.characters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.character-card {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.character-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(200, 85, 240, 0.5);
  box-shadow: 0 12px 50px rgba(200, 85, 240, 0.2);
}

.character-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--clr-bg-3);
}

.character-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}

.character-card:hover .character-card__media img {
  transform: scale(1.06);
}


.char-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(13, 11, 20, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

.char-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-full);
  width: fit-content;
}

.char-badge--live {
  background: rgba(16, 185, 129, 0.95);
  color: #fff;
  animation: pulse-live 2s ease-in-out infinite;
}

.char-badge--hot {
  background: rgba(239, 68, 68, 0.95);
  color: #fff;
}

.char-badge--new {
  background: rgba(59, 130, 246, 0.95);
  color: #fff;
}

@keyframes pulse-live {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
  }
}

.char-stats {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.char-stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(240, 236, 250, 0.8);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 0.2rem 0.5rem;
}

.char-stat svg {
  color: var(--clr-accent);
  flex-shrink: 0;
}


.character-card__body {
  padding: 1rem 1rem 1.1rem;
}

.char-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.character-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--clr-text);
  font-weight: 700;
}

.char-age {
  font-size: 0.75rem;
  color: var(--clr-text-faint);
  background: var(--clr-surface);
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-full);
  border: 1px solid var(--clr-border);
}

.character-card__trait {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.char-tags-row {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.char-mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  padding: 0.2rem 0.55rem;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.char-mini-tag svg {
  color: var(--clr-accent);
  flex-shrink: 0;
}

.character-card:hover .char-mini-tag {
  border-color: rgba(200, 85, 240, 0.3);
  color: var(--clr-accent);
}


.brand__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.brand__icon svg {
  width: 22px;
  height: 22px;
}


.char-avatar {
  display: none;
}


@media (max-width: 1200px) {
  .characters__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .characters__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .characters__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .character-card__body {
    padding: 0.75rem;
  }

  .character-card__name {
    font-size: 1rem;
  }
}


.hero__gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(200, 85, 240, 0.015) 3px,
      rgba(200, 85, 240, 0.015) 4px);
  pointer-events: none;
}


.hero__meta-item svg,
.pro-item svg,
.method-card__icon svg,
.step-card__icon svg {
  color: var(--clr-accent);
}


.widget-item__rank {
  font-size: 0.7rem;
  font-weight: 800;
  width: 28px;
  color: var(--clr-text-faint);
}

.widget-item--gold .widget-item__rank {
  color: var(--clr-gold);
}

.widget-item--silver .widget-item__rank {
  color: #94a3b8;
}

.widget-item--bronze .widget-item__rank {
  color: #b87840;
}


.characters {
  padding-top: 4rem;
  padding-bottom: 4rem;
}


.hero-char-preview {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  animation: fadeLeft 0.8s ease 0.3s both;
}

.hero-char-preview__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(200, 85, 240, 0.3);
  box-shadow: 0 20px 80px rgba(200, 85, 240, 0.25), 0 0 0 1px rgba(200, 85, 240, 0.1);
  aspect-ratio: 3/4;
  max-height: 480px;
}

.hero-char-preview__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-char-preview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, transparent 35%, rgba(13, 11, 20, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.hero-char-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(16, 185, 129, 0.95);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
  width: fit-content;
  animation: pulse-live 2s ease-in-out infinite;
}

.hero-char-preview__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-char-preview__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-char-preview__trait {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}


.hero-float-widget {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: rgba(19, 16, 31, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 1rem;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero-float-widget__title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-float-widget__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-float-widget .widget-item {
  background: transparent;
  border: none;
  padding: 0.3rem 0;
  gap: 0.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.hero-float-widget .widget-item:last-child {
  border-bottom: none;
}

.hero-float-widget .widget-item svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.hero-float-widget .widget-item--gold svg {
  opacity: 1;
  color: var(--clr-gold);
}

.hero-float-widget .widget-item svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  .hero-char-preview {
    max-width: 300px;
  }

  .hero-float-widget {
    right: -0.5rem;
    bottom: -1rem;
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .hero-char-preview {
    max-width: 280px;
  }

  .hero-char-preview__card {
    max-height: 55vh;
  }

  .hero-float-widget {
    right: 0;
    bottom: -0.5rem;
  }
}



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

@media (max-width: 991px) {

  .hero__widget,
  .widget-card,
  .hero__inner .btn--hero,
  .hero__subtitle,
  #rankings .section__desc {
    display: none !important;
  }

  .hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 3rem 1.25rem 1.22rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  #rankings {
    padding-top: 20px;
  }

  .section__head {
    margin-bottom: 10px;
  }

  .reveal.visible {
    margin-bottom: 4px;
  }

  .hero__illustration {
    display: none;
  }
}