:root {
  --tf-primary: #f2ca50;
  --tf-primary-container: #d4af37;
  --tf-on-primary: #3c2f00;
  --tf-background: #121317;
  --tf-surface: #121317;
  --tf-surface-container: #1e1f23;
  --tf-surface-container-high: #292a2e;
  --tf-surface-container-lowest: #0d0e12;
  --tf-on-background: #e3e2e7;
  --tf-on-surface: #e3e2e7;
  --tf-on-surface-variant: #d0c5af;
  --tf-outline-variant: #4d4635;
  --tf-surface-tint: #e9c349;
}

body {
  background-color: var(--tf-background);
  color: var(--tf-on-background);
}

.glass-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gold-glow {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.gold-glow-hover:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  transform: translateY(-8px);
}

.grid-bg {
  background-image: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.tf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tf-primary);
  stroke: currentColor;
}

.tf-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.tf-icon--sm {
  width: 1.125rem;
  height: 1.125rem;
}

.tf-icon--md {
  width: 1.5rem;
  height: 1.5rem;
}

.tf-icon--lg {
  width: 2rem;
  height: 2rem;
}

.tf-icon--xl {
  width: 2.25rem;
  height: 2.25rem;
}

.tf-icon--danger {
  color: #ff6b6b;
}

.tf-icon--success {
  color: #4ade80;
}

.tf-icon--chevron {
  color: var(--tf-on-surface-variant);
}

details[open] > summary .tf-icon--chevron,
details.group-open summary .tf-icon--chevron {
  transform: rotate(180deg);
}

.speed-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 202, 80, 0.3), transparent);
  width: 200px;
  animation: move-lines 3s infinite linear;
  pointer-events: none;
}

@keyframes move-lines {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    transform: translateX(100vw);
    opacity: 0;
  }
}

.pulse-btn {
  position: relative;
  overflow: hidden;
}

.pulse-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-150%) rotate(45deg);
  }

  20%,
  100% {
    transform: translateX(150%) rotate(45deg);
  }
}

.pulse-btn:not(.btn-cta-primary):hover {
  box-shadow: 0 0 25px rgba(242, 202, 80, 0.6);
}

@keyframes cta-glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 14px rgba(255, 234, 0, 0.22),
      0 0 28px rgba(255, 179, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      0 0 0 1px rgba(255, 234, 0, 0.28),
      0 10px 28px rgba(255, 179, 0, 0.28),
      0 3px 10px rgba(0, 0, 0, 0.45);
  }

  50% {
    box-shadow:
      0 0 18px rgba(255, 234, 0, 0.3),
      0 0 36px rgba(255, 179, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      0 0 0 1px rgba(255, 245, 157, 0.35),
      0 12px 32px rgba(255, 179, 0, 0.34),
      0 4px 12px rgba(0, 0, 0, 0.42);
  }
}

.btn-cta-primary {
  --cta-padding-y: 1.15rem;
  --cta-padding-x: 2.875rem;
  --cta-font-size: 1.265rem;

  padding: var(--cta-padding-y) var(--cta-padding-x);
  font-size: var(--cta-font-size);
  line-height: 1.15;
  background: linear-gradient(135deg, #fff59d 0%, #ffea00 38%, #ffb300 100%);
  color: #120c00;
  font-weight: 800;
  letter-spacing: 0.025em;
  border: 1px solid rgba(255, 245, 157, 0.55);
  box-shadow:
    0 0 14px rgba(255, 234, 0, 0.22),
    0 0 28px rgba(255, 179, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(255, 234, 0, 0.28),
    0 10px 28px rgba(255, 179, 0, 0.28),
    0 3px 10px rgba(0, 0, 0, 0.45);
  animation: cta-glow-pulse 3.5s ease-in-out infinite;
}

.btn-cta-primary--sm {
  --cta-padding-y: 0.575rem;
  --cta-padding-x: 1.725rem;
  --cta-font-size: 0.92rem;
}

.btn-cta-primary--hero {
  --cta-padding-y: 1.15rem;
  --cta-padding-x: 2.3rem;
  --cta-font-size: 1.15rem;
}

.btn-cta-primary--xl {
  --cta-padding-y: 1.4375rem;
  --cta-padding-x: 3.45rem;
  --cta-font-size: 1.4375rem;
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #fffde7 0%, #ffee58 35%, #ffc400 100%);
  box-shadow:
    0 0 20px rgba(255, 234, 0, 0.38),
    0 0 40px rgba(255, 179, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 0 1px rgba(255, 245, 157, 0.5),
    0 14px 36px rgba(255, 179, 0, 0.4),
    0 4px 14px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
  animation: none;
}

.btn-cta-primary .tf-icon {
  color: inherit;
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-block--align-start {
  align-items: flex-start;
}

.cta-icon {
  font-size: 1.25em;
  line-height: 1;
  flex-shrink: 0;
}

.cta-note {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--tf-on-surface-variant);
  opacity: 0.9;
}

.cta-browsers {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--tf-on-surface-variant);
  opacity: 0.75;
}

.cta-browsers--footer {
  font-size: 0.75rem;
  opacity: 0.85;
}

.cta-strip {
  background: linear-gradient(180deg, rgba(242, 202, 80, 0.08) 0%, transparent 100%);
  border-top: 1px solid rgba(242, 202, 80, 0.12);
  border-bottom: 1px solid rgba(242, 202, 80, 0.12);
}

.section-accent-bar {
  height: 3px;
  width: 48px;
  background: linear-gradient(90deg, var(--tf-primary), transparent);
  border-radius: 2px;
}

.benefit-card--highlight {
  border-color: rgba(242, 202, 80, 0.35);
  background: linear-gradient(145deg, rgba(242, 202, 80, 0.06) 0%, rgba(26, 26, 26, 0.6) 60%);
}

/* Section dividers & panels */
.section-divider {
  height: 1px;
  max-width: var(--tf-container, 1280px);
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(242, 202, 80, 0.22) 20%,
    rgba(242, 202, 80, 0.35) 50%,
    rgba(242, 202, 80, 0.22) 80%,
    transparent 100%
  );
  opacity: 0.85;
}

.section-panel--how {
  background: linear-gradient(180deg, rgba(30, 31, 35, 0.4) 0%, transparent 100%);
}

.section-panel--benefits {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(242, 202, 80, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(36, 26, 0, 0.25) 0%, rgba(18, 19, 23, 0) 100%);
  border-top: 1px solid rgba(242, 202, 80, 0.08);
  border-bottom: 1px solid rgba(242, 202, 80, 0.06);
}

.section-panel--features {
  background: linear-gradient(180deg, transparent 0%, rgba(151, 176, 255, 0.04) 50%, transparent 100%);
}

.elevated-card {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.elevated-card:hover {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(242, 202, 80, 0.12);
}

/* How it works */
.how-steps {
  position: relative;
}

@media (min-width: 768px) {
  .how-steps::before {
    content: "";
    position: absolute;
    top: 4.5rem;
    left: 16.666%;
    right: 16.666%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(242, 202, 80, 0.35), transparent);
    z-index: 0;
  }
}

.how-step-card {
  position: relative;
  z-index: 1;
}

.how-step-card__num {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(242, 202, 80, 0.45);
}

.how-step-card--featured {
  border-color: rgba(242, 202, 80, 0.4) !important;
  box-shadow:
    0 8px 32px rgba(242, 202, 80, 0.12),
    0 0 0 1px rgba(242, 202, 80, 0.2);
}

.how-step-card__icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(242, 202, 80, 0.08);
  border: 1px solid rgba(242, 202, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Benefits */
.benefit-card__icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: rgba(242, 202, 80, 0.1);
  border: 1px solid rgba(242, 202, 80, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-card__icon-wrap .tf-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Features list */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list__item:last-child {
  border-bottom: 0;
}

.feature-list__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(242, 202, 80, 0.1);
  border: 1px solid rgba(242, 202, 80, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list__icon .tf-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-panel {
  padding: 1.75rem 2rem;
  border-radius: 1rem;
}

/* Screenshot highlights */
.process-shot__frame--annotate {
  position: relative;
}

.shot-highlight {
  position: absolute;
  border: 2px solid rgba(242, 202, 80, 0.85);
  border-radius: 0.5rem;
  box-shadow:
    0 0 0 3px rgba(242, 202, 80, 0.15),
    inset 0 0 12px rgba(242, 202, 80, 0.08);
  pointer-events: none;
  z-index: 2;
}

.shot-highlight--pulse {
  animation: shot-highlight-pulse 2.2s ease-in-out infinite;
}

@keyframes shot-highlight-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgba(242, 202, 80, 0.15),
      0 0 16px rgba(242, 202, 80, 0.25);
  }

  50% {
    box-shadow:
      0 0 0 5px rgba(242, 202, 80, 0.28),
      0 0 28px rgba(242, 202, 80, 0.45);
  }
}

.shot-callout {
  position: absolute;
  z-index: 3;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #241a00;
  background: linear-gradient(135deg, #ffe088, #f2ca50);
  border-radius: 0.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.shot-arrow {
  position: absolute;
  z-index: 3;
  color: var(--tf-primary);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.shot-arrow .tf-icon {
  width: 2rem;
  height: 2rem;
}

/* Screenshot 1: кнопка создания */
.process-shot--step1 .shot-highlight--primary {
  top: 11%;
  left: 14%;
  width: 72%;
  height: 9%;
}

.process-shot--step1 .shot-callout {
  top: 4%;
  right: 6%;
}

/* Screenshot 2: поля формы */
.process-shot--step2 .shot-highlight--primary {
  top: 19%;
  left: 9%;
  width: 82%;
  height: 58%;
}

.process-shot--step2 .shot-highlight--secondary {
  top: 52%;
  left: 9%;
  width: 48%;
  height: 12%;
  border-color: rgba(151, 176, 255, 0.7);
  box-shadow: 0 0 0 2px rgba(151, 176, 255, 0.15);
}

.process-shot--step2 .shot-callout {
  top: 12%;
  left: 6%;
}

.process-shot--step2 .shot-arrow {
  bottom: 18%;
  right: 12%;
  transform: rotate(-30deg);
}

/* Screenshot 4: выбор объявления в панели расширения */
.process-shot--step3 .shot-highlight--primary {
  top: 31%;
  left: 11%;
  width: 49%;
  height: 40%;
  border-radius: 0.375rem;
}

.process-shot--step3 .shot-callout {
  top: 22%;
  left: 9%;
  max-width: 10.5rem;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  font-size: 0.5625rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

@media (max-width: 767px) {
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.before-after-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tf-on-surface-variant);
  opacity: 0.5;
}

@media (max-width: 767px) {
  .before-after-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }
}

.before-after-stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.5rem 0 0.25rem;
  line-height: 0.9;
}

@media (min-width: 640px) {
  .before-after-stat {
    justify-content: flex-start;
  }
}

.before-after-stat__value {
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.before-after-stat__unit {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  padding-bottom: 0.35em;
}

.before-after-stat--before .before-after-stat__value,
.before-after-stat--before .before-after-stat__unit {
  color: #ff5c5c;
  text-shadow: 0 0 40px rgba(255, 92, 92, 0.35);
}

.before-after-stat--after .before-after-stat__value,
.before-after-stat--after .before-after-stat__unit {
  color: #4ade80;
  text-shadow: 0 0 40px rgba(74, 222, 128, 0.35);
}

.before-after-stat__caption {
  margin-top: 0;
}

.before-card {
  border-color: rgba(255, 92, 92, 0.35);
  background: linear-gradient(145deg, rgba(147, 0, 10, 0.18) 0%, rgba(26, 26, 26, 0.55) 100%);
}

.after-card {
  border-color: rgba(74, 222, 128, 0.35);
  background: linear-gradient(145deg, rgba(74, 222, 128, 0.1) 0%, rgba(26, 26, 26, 0.55) 100%);
}

.process-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.process-shot__frame {
  aspect-ratio: 16 / 10;
  background: rgba(30, 31, 35, 0.9);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-shot__frame--annotate {
  position: relative;
}

.process-shot__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.process-shot__caption {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--tf-on-surface-variant);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.process-shot__step {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(242, 202, 80, 0.15);
  border: 1px solid rgba(242, 202, 80, 0.35);
  color: var(--tf-primary);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #a7f3d0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-bullets {
    justify-content: flex-start;
  }
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tf-on-surface-variant);
}

.hero-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tf-primary);
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.demo-video-wrap {
  position: relative;
}

.demo-video-overlay-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.demo-video-wrap.is-paused .demo-video-overlay-btn {
  opacity: 1;
  pointer-events: auto;
}

.demo-video-overlay-icon {
  width: 88px;
  height: 88px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c2f00;
  background: #f2ca50;
  box-shadow: 0 0 50px rgba(242, 202, 80, 0.5);
  transition: transform 0.2s ease;
}

.demo-video-overlay-icon.tf-icon--play {
  width: 88px;
  height: 88px;
}

.demo-video-overlay-icon.tf-icon--play svg {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.2rem;
}

.demo-video-overlay-btn:hover .demo-video-overlay-icon {
  transform: scale(1.08);
}

.ambient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(242, 202, 80, 0.05) 0%, transparent 50%);
  animation: ambient-pulse 10s infinite ease-in-out;
  z-index: 0;
  pointer-events: none;
}

@keyframes ambient-pulse {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.2) translate(5%, 5%);
    opacity: 0.6;
  }
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e3e2e7;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #d0c5af;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: #d0c5af;
  line-height: 1.625;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
}

.legal-content ul li + li {
  margin-top: 0.35rem;
}

.legal-content a {
  color: #f2ca50;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  opacity: 0.85;
}

/* Share menu (footer) */
.share-wrap {
  position: relative;
  display: inline-flex;
}

.share-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin: -4px;
  border: 0;
  background: transparent;
  color: var(--tf-on-surface-variant);
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.share-trigger .tf-icon {
  color: inherit;
}

.share-trigger:hover,
.share-trigger[aria-expanded="true"] {
  color: var(--tf-primary);
}

.share-trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--tf-primary) 55%, transparent);
  outline-offset: 2px;
}

.share-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 50;
  min-width: 248px;
  padding: 6px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--tf-surface-container-high) 92%, var(--tf-surface-container-lowest));
  border: 1px solid color-mix(in srgb, var(--tf-outline-variant) 45%, transparent);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.35),
    0 12px 28px -4px rgba(0, 0, 0, 0.45),
    0 0 0 1px color-mix(in srgb, var(--tf-primary) 6%, transparent);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.22s;
}

.share-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.share-menu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--tf-on-surface);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.share-menu__item:hover,
.share-menu__item:focus-visible {
  background: color-mix(in srgb, var(--tf-primary) 12%, transparent);
  color: var(--tf-on-background);
  outline: none;
}

.share-menu__item:focus-visible {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tf-primary) 35%, transparent);
}

.share-menu__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tf-primary);
}

.share-menu__icon .tf-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: inherit;
}

.share-menu__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.share-menu__label {
  flex: 1;
  line-height: 1.35;
}

.share-menu__item--hidden {
  display: none;
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  transform: translateX(-50%) translateY(12px);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--tf-on-primary);
  background: var(--tf-primary);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 0 32px color-mix(in srgb, var(--tf-primary) 35%, transparent);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.25s;
}

.share-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hero-stat-headline,
.hero-stat-subline {
  transition: opacity 0.28s ease;
}

.hero-stat-headline.is-fading,
.hero-stat-subline.is-fading {
  opacity: 0.2;
}

.hero-stat-mark {
  margin-left: 0.12em;
  font-size: 0.42em;
  font-weight: 600;
  line-height: 0;
  vertical-align: super;
  color: rgba(242, 202, 80, 0.75);
}

.hero-stat-footnote {
  margin: 0.35rem 0 0;
  padding: 0;
  max-width: 36rem;
  font-size: 0.6875rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: rgba(230, 225, 210, 0.52);
}

.hero-stat-footnote__mark {
  margin-right: 0.2em;
  color: rgba(242, 202, 80, 0.65);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 0.5rem;
  background: #292a2e;
  border: 1px solid rgba(77, 70, 53, 0.5);
  color: #e3e2e7;
  font-size: 14px;
  line-height: 1.45;
  z-index: 9999;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.cookie-banner__text {
  margin: 0;
}

.cookie-banner__link {
  color: #f2ca50;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__link:hover {
  color: #ffe088;
}

.cookie-banner__actions {
  margin-top: 12px;
  text-align: right;
}

.cookie-banner__accept {
  background: #f2ca50;
  color: #3c2f00;
  border: none;
  padding: 8px 16px;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.cookie-banner__accept:hover {
  background: #ffe088;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .speed-line,
  .pulse-btn::after,
  .ambient-mesh,
  .gold-glow-hover:hover {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .share-menu,
  .share-toast {
    transition: none !important;
  }

  .share-menu {
    transform: none;
  }

  .share-menu.is-open {
    transform: none;
  }

  .hero-stat-headline,
  .hero-stat-subline {
    transition: none !important;
  }

  .hero-stat-headline.is-fading,
  .hero-stat-subline.is-fading {
    opacity: 1 !important;
  }

  .shot-highlight--pulse {
    animation: none !important;
  }
}
