/* Fridheimr home redesign v2.0 */

.home #content .ast-container,
.home .site-content .ast-container {
  width: 100%;
  max-width: none !important;
  padding-left: 0;
  padding-right: 0;
}

.home #primary,
.home .site-main,
.home .entry-content,
.home .ast-article-single {
  margin: 0;
  padding: 0;
}

.home.ast-plain-container.ast-no-sidebar #primary {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.home .entry-content > .fh-home {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-top: 0;
}

.home {
  overflow-x: hidden;
}

.home .promo-bar {
  position: sticky;
  top: 0;
  z-index: 10020;
  isolation: isolate;
  overflow: hidden;
  min-height: 50px;
  padding: 8px 24px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,0.22), transparent 16%),
    radial-gradient(circle at 82% 50%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(90deg, #7c2ce0 0%, #9d42eb 48%, #7d2dd9 100%);
  background-size: 180% 100%, 180% 100%, 220% 100%;
  box-shadow: 0 4px 20px rgba(99, 37, 173, 0.22);
  animation: fh-promo-gradient 9s ease-in-out infinite;
}

.home .promo-bar::before,
.home .promo-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home .promo-bar::before {
  inset: -70% -24%;
  background: linear-gradient(108deg, transparent 36%, rgba(255,255,255,0.26) 48%, transparent 60%);
  transform: translateX(-76%) skewX(-12deg);
  animation: fh-promo-sweep 7.2s ease-in-out infinite;
}

.home .promo-bar::after {
  background:
    radial-gradient(circle at 24% 50%, rgba(255,231,131,0.22), transparent 22%),
    radial-gradient(circle at 76% 50%, rgba(255,255,255,0.18), transparent 24%);
  opacity: 0.58;
  animation: fh-promo-glow 5.8s ease-in-out infinite;
}

.home .promo-bar > * {
  position: relative;
  z-index: 1;
}

.home .promo-bar__sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home .promo-bar__sparkles i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: block;
  width: var(--s);
  height: var(--s);
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.42) rotate(var(--r));
  animation: fh-promo-random-sparkle var(--t) ease-in-out infinite;
  animation-delay: var(--d);
}

.home .promo-bar__sparkles i::before {
  content: "\2726";
  display: block;
  font-size: var(--s);
  filter: drop-shadow(0 0 7px rgba(255,255,255,0.7)) drop-shadow(0 0 14px rgba(255,231,131,0.32));
}

.home .promo-bar__sparkles i:nth-child(3n)::before {
  color: rgba(255, 238, 165, 0.92);
  font-size: calc(var(--s) * 0.82);
}

.home .promo-bar__sparkles i:nth-child(4n) {
  animation-name: fh-promo-random-sparkle-soft;
}

.home .promo-bar__sparkles i:nth-child(5n) {
  animation-duration: calc(var(--t) + 1200ms);
}

.home .promo-bar__text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.home .promo-bar__text::before,
.home .promo-bar__text::after {
  content: "\2726";
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  margin: 0 14px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.36));
  transform-origin: center;
  animation: fh-promo-star-twinkle 2.8s ease-in-out infinite;
}

.home .promo-bar__text::after {
  animation-delay: 1.35s;
}

.home .promo-bar .btn-cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
  min-width: 178px;
  color: #21133f !important;
  background: linear-gradient(180deg, #ffe783 0%, #f2c943 100%) !important;
  box-shadow: 0 8px 18px rgba(74, 37, 112, 0.18);
  animation: fh-promo-cta-breathe 4.8s ease-in-out infinite;
}

.home .promo-bar .btn-cta::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -70%;
  z-index: 0;
  width: 48%;
  background: linear-gradient(104deg, transparent, rgba(255,255,255,0.62), transparent);
  transform: translateX(-20%) skewX(-16deg);
  pointer-events: none;
  animation: fh-promo-button-shine 5.6s ease-in-out infinite;
}

.home .promo-bar .btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 22px rgba(74, 37, 112, 0.24);
}

@keyframes fh-promo-gradient {
  0%, 100% {
    background-position: 0% 50%, 100% 50%, 0% 50%;
  }
  50% {
    background-position: 100% 50%, 0% 50%, 100% 50%;
  }
}

@keyframes fh-promo-sweep {
  0%, 58% {
    transform: translateX(-76%) skewX(-12deg);
    opacity: 0;
  }
  68% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(76%) skewX(-12deg);
    opacity: 0;
  }
}

@keyframes fh-promo-glow {
  0%, 100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.78;
  }
}

@keyframes fh-promo-star-twinkle {
  0%, 100% {
    opacity: 0.54;
    transform: scale(0.86) rotate(0deg);
  }
  42% {
    opacity: 1;
    transform: scale(1.18) rotate(18deg);
  }
}

@keyframes fh-promo-random-sparkle {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.36) rotate(var(--r));
  }
  18% {
    opacity: 0;
  }
  34% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.18) rotate(calc(var(--r) + 18deg));
  }
  48% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(0.72) rotate(calc(var(--r) + 28deg));
  }
  62% {
    opacity: 0.84;
    transform: translate(-50%, -50%) scale(1) rotate(calc(var(--r) + 36deg));
  }
  78% {
    opacity: 0;
  }
}

@keyframes fh-promo-random-sparkle-soft {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotate(var(--r));
  }
  42% {
    opacity: 0.58;
    transform: translate(-50%, -50%) scale(0.98) rotate(calc(var(--r) - 16deg));
  }
  68% {
    opacity: 0;
  }
}

@keyframes fh-promo-cta-breathe {
  0%, 100% {
    box-shadow: 0 8px 18px rgba(74, 37, 112, 0.18);
  }
  50% {
    box-shadow: 0 10px 24px rgba(255, 226, 106, 0.3), 0 8px 18px rgba(74, 37, 112, 0.18);
  }
}

@keyframes fh-promo-button-shine {
  0%, 56% {
    left: -70%;
    opacity: 0;
  }
  66% {
    opacity: 0.75;
  }
  100% {
    left: 118%;
    opacity: 0;
  }
}

.fh-home {
  --fh-ink: #1f173b;
  --fh-muted: #68607c;
  --fh-purple: #8d3ee6;
  --fh-purple-dark: #35136b;
  --fh-purple-soft: #f6f0ff;
  --fh-line: rgba(139, 92, 246, 0.22);
  --fh-gold: #f3cc50;
  --fh-gold-dark: #d6a91b;
  --fh-card: rgba(255, 255, 255, 0.88);
  color: var(--fh-ink);
  font-family: var(--font-main, "Inter", sans-serif);
  background: #fff;
  overflow: hidden;
}

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

.fh-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.fh-center {
  text-align: center;
}

.fh-kicker,
.fh-section-label {
  margin: 0 0 14px;
  color: #8b3fe4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fh-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
}

.fh-kicker::before {
  content: "";
  width: 24px;
  height: 21px;
  flex: 0 0 auto;
  background: #8d3ee6;
  -webkit-mask: url("https://runesmagic.com/wp-content/themes/fridheimr-child/assets/img/valknut.svg") center / contain no-repeat;
  mask: url("https://runesmagic.com/wp-content/themes/fridheimr-child/assets/img/valknut.svg") center / contain no-repeat;
}

.fh-kicker svg {
  display: none;
  width: 22px;
  height: 20px;
  flex: 0 0 auto;
}

.fh-home h1,
.fh-home h2,
.fh-home h3,
.fh-home p {
  margin-top: 0;
}

.fh-home h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: #201541;
  font-size: clamp(36px, 3.3vw, 48px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.fh-home h2 {
  margin-bottom: 18px;
  color: #15121d;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: 0;
}

.fh-home h3 {
  color: #1d1536;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

.fh-home p {
  color: var(--fh-muted);
}

.fh-section {
  position: relative;
  padding: 70px 0;
}

.fh-section-text {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.72;
}

.fh-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
  overflow: hidden;
}

.fh-btn:hover {
  transform: translateY(-1px);
}

.fh-btn--gold {
  color: #21133f !important;
  background: linear-gradient(180deg, #ffe887 0%, var(--fh-gold) 100%);
  box-shadow: 0 13px 26px rgba(193, 146, 24, 0.24);
}

.fh-btn--gold::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 42%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  opacity: 0;
  pointer-events: none;
  animation: fh-gold-sheen 5.8s ease-in-out infinite;
}

.fh-btn--gold:hover {
  background: linear-gradient(180deg, #ffec96 0%, #efc33a 100%);
  box-shadow: 0 16px 30px rgba(193, 146, 24, 0.3);
}

.fh-btn--ghost {
  color: #8239dd !important;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid rgba(139, 62, 228, 0.7);
}

.fh-btn--ghost:hover {
  border-color: #7f35da;
  background: #fff;
}

.fh-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes fh-gold-sheen {
  0%, 58% {
    left: -55%;
    opacity: 0;
  }
  68% {
    opacity: 0.75;
  }
  82%, 100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes fh-soft-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes fh-hero-drift {
  0%, 100% {
    transform: scale(1) translateX(0);
  }
  50% {
    transform: scale(1.025) translateX(10px);
  }
}

.fh-hero {
  position: relative;
  min-height: 520px;
  padding: 64px 0 108px;
  background:
    radial-gradient(circle at 13% 24%, rgba(142, 74, 235, 0.12), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  overflow: hidden;
}

.fh-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.64) 24%, rgba(255,255,255,0.08) 58%, rgba(255,255,255,0) 100%),
    url("https://runesmagic.com/wp-content/uploads/2026/06/hand_runes-scaled.jpg") center right / cover no-repeat;
  transform-origin: center right;
  animation: fh-hero-drift 18s ease-in-out infinite;
}

.fh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.98) 26%, rgba(255,255,255,0.58) 49%, rgba(255,255,255,0.04) 75%),
    linear-gradient(180deg, rgba(255,255,255,0) 72%, rgba(248,244,255,0.96) 100%);
  pointer-events: none;
}

.fh-hero__shell {
  position: relative;
  z-index: 2;
}

.fh-hero__copy {
  max-width: 650px;
}

.fh-hero__lead {
  max-width: 600px;
  margin-bottom: 22px;
  color: #5d566f;
  font-size: 18px;
  line-height: 1.68;
}

.fh-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 30px;
}

.fh-hero__trust span {
  position: relative;
  color: #3d3456;
  font-size: 14px;
  font-weight: 750;
  padding-left: 16px;
}

.fh-hero__trust span::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #8d3ee6;
}

.fh-corner {
  position: absolute;
  z-index: 3;
  width: 58px;
  height: 58px;
  opacity: 0.5;
  pointer-events: none;
}

.fh-corner::before,
.fh-corner::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
}

.fh-corner::before {
  width: 48px;
  height: 1px;
}

.fh-corner::after {
  width: 1px;
  height: 48px;
}

.fh-corner--tl {
  top: 26px;
  left: calc(50% + 70px);
}

.fh-corner--br {
  right: 24px;
  bottom: 76px;
  transform: rotate(180deg);
}

.fh-proof-strip {
  position: relative;
  z-index: 5;
  width: min(1240px, calc(100% - 48px));
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 22px;
  border: 1px solid rgba(139, 62, 228, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(71, 40, 114, 0.13);
  backdrop-filter: blur(14px);
}

.fh-proof {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 0 24px;
  border-right: 1px solid rgba(139, 62, 228, 0.15);
}

.fh-proof:last-child {
  border-right: 0;
}

.fh-proof__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #8a3fe2;
  background: #f4edff;
  animation: fh-soft-float 5.6s ease-in-out infinite;
}

.fh-proof:nth-child(2) .fh-proof__icon { animation-delay: -1.1s; }
.fh-proof:nth-child(3) .fh-proof__icon { animation-delay: -2.2s; }
.fh-proof:nth-child(4) .fh-proof__icon { animation-delay: -3.3s; }

.fh-proof__icon::before {
  color: currentColor;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.fh-proof:nth-child(1) .fh-proof__icon::before { content: "☉"; }
.fh-proof:nth-child(2) .fh-proof__icon::before { content: "↗"; }
.fh-proof:nth-child(3) .fh-proof__icon::before { content: "▣"; }
.fh-proof:nth-child(4) .fh-proof__icon::before { content: "◇"; }

.fh-proof__icon svg {
  display: none;
  width: 27px;
  height: 27px;
}

.fh-proof__icon svg *,
.fh-step__icon svg *,
.fh-chat-card svg * {
  fill: none !important;
  stroke: currentColor !important;
}

.fh-proof h3 {
  margin: 0 0 5px;
  font-size: 14px;
}

.fh-proof p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.fh-requests {
  padding-top: 58px;
  background: #fff;
  overflow: hidden;
}

.fh-requests::before {
  content: "";
  position: absolute;
  left: calc(50% + 500px);
  right: auto;
  top: -120px;
  width: 990px;
  height: 990px;
  border-radius: 50%;
  transform: translateX(-50%) scale(0.78);
  background:
    radial-gradient(circle, transparent 0 31%, rgba(141,62,230,0.11) 31.3% 31.9%, transparent 32.4% 45%),
    radial-gradient(circle, transparent 0 46%, rgba(141,62,230,0.095) 46.3% 46.9%, transparent 47.4% 60%),
    radial-gradient(circle, transparent 0 61%, rgba(141,62,230,0.075) 61.3% 61.9%, transparent 62.4% 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: fh-rune-ripple 6.4s ease-out infinite;
}

.fh-requests::after {
  content: "";
  position: absolute;
  left: calc(50% + 500px);
  right: auto;
  top: -120px;
  width: 990px;
  height: 990px;
  transform: translateX(-50%);
  background: url("https://runesmagic.com/wp-content/uploads/2026/06/runes_futhark.png") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
  filter: sepia(0.5) hue-rotate(232deg) saturate(1.8);
  transform-origin: center;
  z-index: 0;
  animation: fh-rune-breathe 7.2s ease-in-out infinite;
}

.fh-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 118px;
  align-items: center;
}

@keyframes fh-rune-breathe {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.052;
  }
  50% {
    transform: translateX(-50%) scale(1.035);
    opacity: 0.082;
  }
}

@keyframes fh-rune-ripple {
  0% {
    transform: translateX(-50%) scale(0.74);
    opacity: 0;
  }
  18% {
    opacity: 0.28;
  }
  72% {
    opacity: 0.1;
  }
  100% {
    transform: translateX(-50%) scale(1.18);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fh-requests::before,
  .fh-requests::after,
  .fh-hero::before,
  .fh-btn--gold::after,
  .fh-proof__icon,
  .fh-telegram-cta__mark,
  .fh-telegram-cta__mark::after {
    animation: none;
  }

  .fh-requests::before {
    opacity: 0.08;
  }
}

.fh-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.fh-request-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid rgba(139, 62, 228, 0.2);
  border-radius: 12px;
  color: #261c43;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 9px 24px rgba(95, 57, 145, 0.06);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.fh-request-grid__wide {
  grid-column: 1 / -1;
}

.fh-request-grid i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #883fe2;
  background: #f4edff;
  font-style: normal;
  font-weight: 800;
  flex: 0 0 auto;
}

.fh-note-card {
  position: relative;
  z-index: 1;
  padding: 34px 34px 32px;
  border: 1px solid rgba(139, 62, 228, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(252, 249, 255, 0.98), rgba(245, 237, 255, 0.98));
  box-shadow: 0 26px 52px rgba(83, 46, 126, 0.12);
}

.fh-note-card::before {
  content: "✦";
  position: absolute;
  top: 22px;
  left: 22px;
  color: #7e3ce0;
}

.fh-note-card h3 {
  margin: 0 0 20px;
  padding-left: 28px;
}

.fh-note-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.fh-note-card li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 28px;
  color: #3c3255;
  font-size: 14px;
  line-height: 1.45;
}

.fh-note-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8439df;
  font-weight: 900;
}

.fh-note-card p {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 62, 228, 0.15);
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 901px) {
  .fh-note-card {
    align-self: end;
  }
}

.fh-steps {
  padding: 54px 0 62px;
  background: linear-gradient(90deg, #fbf8ff 0%, #f5efff 50%, #fbf8ff 100%);
}

.fh-steps__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 270px;
  gap: 34px;
  align-items: start;
  margin-top: 34px;
}

.fh-steps__grid::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 96px;
  width: calc(75% - 142px);
  height: 1px;
  background: linear-gradient(90deg, rgba(130, 57, 220, 0.18), rgba(130, 57, 220, 0.45), rgba(130, 57, 220, 0.18));
}

.fh-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.fh-step__num {
  position: absolute;
  top: 28px;
  left: calc(50% - 74px);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #9b49ed, #7330d4);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(107, 46, 198, 0.22);
}

.fh-step__icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  border: 1px dashed rgba(133, 63, 224, 0.45);
  border-radius: 999px;
  color: #843de0;
  background: rgba(255, 255, 255, 0.55);
}

.fh-step__icon::before {
  color: currentColor;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.fh-step:nth-child(1) .fh-step__icon::before { content: "☷"; }
.fh-step:nth-child(2) .fh-step__icon::before { content: "⌕"; }
.fh-step:nth-child(3) .fh-step__icon::before { content: "✉"; }

.fh-step__icon svg {
  display: none;
  width: 48px;
  height: 48px;
}

.fh-step h3 {
  margin-bottom: 8px;
}

.fh-step p {
  max-width: 245px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.55;
}

.fh-chat-card {
  min-height: 176px;
  padding: 28px;
  border: 1px solid rgba(139, 62, 228, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,246,255,0.95)),
    radial-gradient(circle at 92% 100%, rgba(139, 62, 228, 0.24), transparent 28%);
  box-shadow: 0 22px 48px rgba(83, 46, 126, 0.12);
}

.fh-chat-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  border-radius: 999px;
  color: #8139df;
  background: #f3ebff;
}

.fh-chat-card span::before {
  content: "▣";
  color: currentColor;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.fh-chat-card svg {
  display: none;
  width: 24px;
  height: 24px;
}

.fh-chat-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
}

/* Steps block: refined to match the airy visual reference. */
.fh-steps {
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(154, 93, 230, 0.11), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(154, 93, 230, 0.12), transparent 31%),
    linear-gradient(180deg, #fbf8ff 0%, #f5efff 52%, #fbf8ff 100%);
  overflow: hidden;
}

.fh-steps .fh-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(440px, 100%);
  margin: 0 auto 18px;
  letter-spacing: 0.32em;
  white-space: nowrap;
}

.fh-steps .fh-section-label::before,
.fh-steps .fh-section-label::after {
  content: "";
  display: block;
  flex: 1 1 auto;
  min-width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 62, 228, 0.34));
}

.fh-steps .fh-section-label::after {
  background: linear-gradient(90deg, rgba(139, 62, 228, 0.34), transparent);
}

.fh-steps h2 {
  margin-bottom: 0;
  color: #15121d;
  font-family: var(--font-main, "Inter", sans-serif);
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: 0;
}

.fh-steps__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) 260px;
  gap: 34px;
  margin-top: 48px;
}

.fh-steps__grid::before {
  top: 64px;
  left: 98px;
  width: calc(75% - 128px);
  z-index: 0;
  background:
    radial-gradient(circle, #c7a3ff 0 4px, transparent 5px) 33.333% 50% / 50% 12px no-repeat,
    radial-gradient(circle, #c7a3ff 0 4px, transparent 5px) 66.666% 50% / 50% 12px no-repeat,
    linear-gradient(90deg, rgba(130, 57, 220, 0.1), rgba(130, 57, 220, 0.43), rgba(130, 57, 220, 0.1));
}

.fh-steps__grid::after {
  content: "";
  position: absolute;
  top: 63px;
  left: 98px;
  z-index: 0;
  width: calc(75% - 128px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(139, 62, 228, 0.08), rgba(139, 62, 228, 0.78), rgba(255, 255, 255, 0.95), transparent);
  background-repeat: no-repeat;
  background-size: 34% 100%;
  background-position: -44% 50%;
  filter: blur(0.1px);
  opacity: 0;
  pointer-events: none;
  animation: fh-step-line-wave 7.5s ease-in-out infinite;
}

.fh-step {
  transition: transform 220ms ease;
}

.fh-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(139, 62, 228, 0.16), rgba(139, 62, 228, 0.05) 45%, transparent 72%);
  opacity: 0;
  transform: translateX(-50%) scale(0.84);
  pointer-events: none;
  animation: fh-step-sync-halo 7.5s ease-in-out infinite;
}

.fh-step__num {
  top: 16px;
  left: calc(50% - 72px);
  z-index: 3;
  width: 32px;
  height: 32px;
  font-size: 15px;
  box-shadow: 0 10px 20px rgba(107, 46, 198, 0.23);
  animation: fh-step-sync-num 7.5s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.fh-step:nth-child(2)::before,
.fh-step:nth-child(2) .fh-step__num,
.fh-step:nth-child(2) .fh-step__icon::after {
  animation-delay: 0.95s;
}

.fh-step:nth-child(3)::before,
.fh-step:nth-child(3) .fh-step__num,
.fh-step:nth-child(3) .fh-step__icon::after {
  animation-delay: 1.9s;
}

.fh-step__icon {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 47%, rgba(245, 238, 255, 0.96) 48% 67%, transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 237, 255, 0.92));
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.5),
    0 18px 34px rgba(89, 56, 126, 0.11);
  animation: fh-step-ring-breathe 6.4s ease-in-out infinite;
  transition: transform 220ms ease, color 220ms ease, filter 220ms ease;
}

.fh-step:nth-child(2) .fh-step__icon {
  animation-delay: -1.45s;
}

.fh-step:nth-child(3) .fh-step__icon {
  animation-delay: -2.9s;
}

.fh-step:nth-child(1) .fh-step__icon::before,
.fh-step:nth-child(2) .fh-step__icon::before,
.fh-step:nth-child(3) .fh-step__icon::before,
.fh-step__icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(139, 62, 228, 0.2);
  border-radius: inherit;
  font-size: 0;
  animation: fh-step-ring-line 6.4s ease-in-out infinite;
}

.fh-step:nth-child(2) .fh-step__icon::before {
  animation-delay: -1.45s;
}

.fh-step:nth-child(3) .fh-step__icon::before {
  animation-delay: -2.9s;
}

.fh-step__icon svg {
  position: relative;
  z-index: 1;
  display: none;
  width: 56px;
  height: 56px;
  stroke-width: 1.35;
}

.fh-step__icon::after {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 56px;
  height: 56px;
  background: currentColor;
  transform-origin: center;
  animation: fh-step-sync-icon 7.5s ease-in-out infinite;
}

.fh-step:nth-child(2) .fh-step__icon::after {
  animation-delay: 0.95s;
}

.fh-step:nth-child(3) .fh-step__icon::after {
  animation-delay: 1.9s;
}

.fh-step:nth-child(1) .fh-step__icon::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M18%208h24l8%208v38H18z%22%2F%3E%3Cpath%20d%3D%22M42%208v10h10%22%2F%3E%3Cpath%20d%3D%22M25%2025h16M25%2034h12M25%2043h8%22%2F%3E%3Ccircle%20cx%3D%2245%22%20cy%3D%2245%22%20r%3D%2210%22%2F%3E%3Cpath%20d%3D%22m40%2045%204%204%207-9%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M18%208h24l8%208v38H18z%22%2F%3E%3Cpath%20d%3D%22M42%208v10h10%22%2F%3E%3Cpath%20d%3D%22M25%2025h16M25%2034h12M25%2043h8%22%2F%3E%3Ccircle%20cx%3D%2245%22%20cy%3D%2245%22%20r%3D%2210%22%2F%3E%3Cpath%20d%3D%22m40%2045%204%204%207-9%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.fh-step:nth-child(2) .fh-step__icon::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%2215%22%2F%3E%3Cpath%20d%3D%22m39%2039%2013%2013%22%2F%3E%3Cpath%20d%3D%22M44%2010l2.5%206%206%202.5-6%202.5-2.5%206-2.5-6-6-2.5%206-2.5zM16%2044l1.7%204%204%201.7-4%201.7-1.7%204-1.7-4-4-1.7%204-1.7z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%2215%22%2F%3E%3Cpath%20d%3D%22m39%2039%2013%2013%22%2F%3E%3Cpath%20d%3D%22M44%2010l2.5%206%206%202.5-6%202.5-2.5%206-2.5-6-6-2.5%206-2.5zM16%2044l1.7%204%204%201.7-4%201.7-1.7%204-1.7-4-4-1.7%204-1.7z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.fh-step:nth-child(3) .fh-step__icon::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2022%2032%2010l20%2012v28H12z%22%2F%3E%3Cpath%20d%3D%22m12%2022%2020%2015%2020-15M12%2050l15-16M52%2050%2037%2034%22%2F%3E%3Cpath%20d%3D%22M44%2010l2%205%205%202-5%202-2%205-2-5-5-2%205-2z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2022%2032%2010l20%2012v28H12z%22%2F%3E%3Cpath%20d%3D%22m12%2022%2020%2015%2020-15M12%2050l15-16M52%2050%2037%2034%22%2F%3E%3Cpath%20d%3D%22M44%2010l2%205%205%202-5%202-2%205-2-5-5-2%205-2z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.fh-step h3 {
  max-width: 250px;
  margin: 0 auto 12px;
  color: #17112d;
  font-family: var(--font-main, "Inter", sans-serif);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
  transition: color 220ms ease;
}

.fh-step p {
  max-width: 250px;
  color: #665e7c;
  font-size: 14px;
  line-height: 1.62;
}

.fh-step:hover {
  transform: translateY(-3px);
}

.fh-step:hover .fh-step__icon {
  color: #7935dc;
  transform: translateY(-4px) scale(1.035);
  filter: drop-shadow(0 10px 16px rgba(105, 43, 188, 0.12));
}

.fh-step:hover .fh-step__num {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 24px rgba(107, 46, 198, 0.31);
}

.fh-step:hover h3 {
  color: #26124f;
}

.fh-chat-card {
  position: relative;
  min-height: 238px;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 100%, rgba(139, 62, 228, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(252,248,255,0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 22px 48px rgba(83, 46, 126, 0.13);
  overflow: hidden;
}

.fh-chat-card::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -10px;
  width: 112px;
  height: 74px;
  border-bottom: 1px solid rgba(139, 62, 228, 0.12);
  border-left: 1px solid rgba(139, 62, 228, 0.09);
  border-radius: 0 0 0 100%;
  transform: rotate(-18deg);
}

.fh-chat-card span {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  color: #9657e9;
  background:
    radial-gradient(circle, rgba(255,255,255,0.98) 0 43%, rgba(244,237,255,0.88) 44% 65%, transparent 66%),
    rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(139, 62, 228, 0.18);
  animation: fh-chat-mark-breathe 5.4s ease-in-out infinite;
}

.fh-chat-card span::before {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: 34px;
  height: 34px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 3 3.7 10.4c-.9.4-.9 1.6.1 1.9l4.5 1.4 1.8 5.3c.3.9 1.5 1.1 2 .3l2.5-3.5 4.8 3.5c.8.6 1.9.1 2-1l1.1-13.7C22.6 3.5 21.8 2.7 21 3Zm-3.8 5.1-7.1 6.4-.4 2.5-1.1-3.4 8.6-5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 3 3.7 10.4c-.9.4-.9 1.6.1 1.9l4.5 1.4 1.8 5.3c.3.9 1.5 1.1 2 .3l2.5-3.5 4.8 3.5c.8.6 1.9.1 2-1l1.1-13.7C22.6 3.5 21.8 2.7 21 3Zm-3.8 5.1-7.1 6.4-.4 2.5-1.1-3.4 8.6-5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fh-chat-card span::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(139, 62, 228, 0.25);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.78);
  animation: fh-chat-ripple 3.8s ease-out infinite;
}

.fh-chat-card svg {
  display: none;
}

.fh-chat-card h3 {
  margin-bottom: 14px;
  color: #17112d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
}

.fh-chat-card p {
  position: relative;
  z-index: 1;
  color: #665e7c;
  font-size: 15px;
  line-height: 1.68;
}

@keyframes fh-step-ring-breathe {
  0%, 100% {
    box-shadow:
      inset 0 0 0 10px rgba(255, 255, 255, 0.5),
      0 18px 34px rgba(89, 56, 126, 0.11);
  }
  50% {
    box-shadow:
      inset 0 0 0 10px rgba(255, 255, 255, 0.62),
      0 20px 42px rgba(105, 43, 188, 0.17),
      0 0 0 8px rgba(139, 62, 228, 0.045);
  }
}

@keyframes fh-step-ring-line {
  0%, 100% {
    border-color: rgba(139, 62, 228, 0.18);
    opacity: 0.72;
  }
  50% {
    border-color: rgba(139, 62, 228, 0.42);
    opacity: 1;
  }
}

@keyframes fh-step-line-wave {
  0%, 24% {
    background-position: -44% 50%;
    opacity: 0;
  }
  34% {
    opacity: 0.72;
  }
  62% {
    background-position: 142% 50%;
    opacity: 0.2;
  }
  72%, 100% {
    background-position: 142% 50%;
    opacity: 0;
  }
}

@keyframes fh-step-sync-halo {
  0%, 24%, 45%, 100% {
    opacity: 0;
    transform: translateX(-50%) scale(0.84);
  }
  31% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1.04);
  }
  38% {
    opacity: 0.12;
    transform: translateX(-50%) scale(1.18);
  }
}

@keyframes fh-step-sync-num {
  0%, 24%, 45%, 100% {
    background: linear-gradient(180deg, #9b49ed, #7330d4);
    box-shadow: 0 10px 20px rgba(107, 46, 198, 0.23);
  }
  31% {
    background: linear-gradient(180deg, #b15dff, #7838df);
    box-shadow: 0 0 0 7px rgba(139, 62, 228, 0.12), 0 14px 28px rgba(107, 46, 198, 0.32);
  }
  38% {
    background: linear-gradient(180deg, #a14df0, #7330d4);
    box-shadow: 0 0 0 2px rgba(139, 62, 228, 0.08), 0 10px 20px rgba(107, 46, 198, 0.24);
  }
}

@keyframes fh-step-sync-icon {
  0%, 24%, 45%, 100% {
    opacity: 0.98;
    transform: scale(1);
    filter: none;
  }
  31% {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(139, 62, 228, 0.22));
  }
  38% {
    opacity: 1;
    transform: scale(1.02);
    filter: drop-shadow(0 0 3px rgba(139, 62, 228, 0.14));
  }
}

@keyframes fh-chat-mark-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0 0 0 1px rgba(139, 62, 228, 0.18);
  }
  50% {
    transform: scale(1.035);
    box-shadow: inset 0 0 0 1px rgba(139, 62, 228, 0.3), 0 12px 24px rgba(111, 48, 197, 0.12);
  }
}

@keyframes fh-chat-ripple {
  0% {
    transform: scale(0.78);
    opacity: 0;
  }
  24% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

.fh-services {
  padding: 62px 0 68px;
  background:
    radial-gradient(circle at -2% 55%, rgba(139, 62, 228, 0.11), transparent 20%),
    radial-gradient(circle at 102% 55%, rgba(139, 62, 228, 0.09), transparent 21%),
    #fff;
}

.fh-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 26px;
}

.fh-service-card {
  min-height: 254px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(139, 62, 228, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
  box-shadow: 0 16px 38px rgba(71, 40, 114, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fh-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 62, 228, 0.35);
  box-shadow: 0 24px 48px rgba(71, 40, 114, 0.13);
}

.fh-service-card > span {
  display: block;
  margin-bottom: 18px;
  color: #8239df;
  font-size: 43px;
  line-height: 1;
  font-weight: 600;
}

.fh-service-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.fh-service-card p {
  min-height: 68px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.55;
}

.fh-service-card strong {
  display: block;
  margin-bottom: 15px;
  color: #833be0;
  font-size: 16px;
  font-weight: 900;
}

.fh-service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 22px;
  border-radius: 999px;
  color: #21133f !important;
  background: linear-gradient(180deg, #ffe887, #f3cc50);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none !important;
}

.fh-reviews {
  padding: 64px 0 58px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(249,245,255,0.92)),
    url("https://runesmagic.com/wp-content/uploads/2026/06/runes_futhark.png") calc(100% + 92px) center / 390px auto no-repeat,
    #faf7ff;
}

.fh-reviews__inner {
  display: block;
}

.fh-review-emblem {
  display: none;
}

.fh-review-emblem::before {
  content: none;
}

.fh-review-emblem svg {
  display: none;
  width: 80px;
  height: 72px;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.42));
}

.fh-review-grid {
  display: block;
  overflow: hidden;
  position: relative;
  margin-top: 24px;
}

.fh-review-track {
  display: flex;
  gap: 22px;
  transition: transform 650ms cubic-bezier(0.22, 0.72, 0.22, 1);
  will-change: transform;
}

.fh-review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(139, 62, 228, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(71, 40, 114, 0.08);
}

.fh-review-card::before {
  content: "“";
  display: block;
  margin-bottom: -10px;
  color: #8340de;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.fh-review-card span {
  display: block;
  margin-bottom: 12px;
  color: #f2c446;
  letter-spacing: 0.08em;
  font-size: 15px;
}

.fh-review-card p {
  margin-bottom: 14px;
  color: #3a304e;
  font-size: 13px;
  font-style: italic;
  line-height: 1.62;
}

.fh-review-card strong {
  color: #716782;
  font-size: 12px;
  font-weight: 750;
}

.fh-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.fh-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(132, 64, 224, 0.24);
}

.fh-dots span:first-child {
  background: #843fe0;
}

.fh-dots span.is-active {
  background: #843fe0;
}

.fh-dots span:not(.is-active):first-child {
  background: rgba(132, 64, 224, 0.24);
}

.fh-expand {
  position: relative;
  padding: 46px 0 52px;
  background:
    radial-gradient(circle at 12% 42%, rgba(139, 62, 228, 0.08), transparent 18%),
    radial-gradient(circle at 88% 40%, rgba(243, 204, 80, 0.12), transparent 16%),
    #fff;
  overflow: hidden;
}

.fh-expand::before,
.fh-expand::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 230px;
  height: 230px;
  background: url("https://runesmagic.com/wp-content/uploads/2026/06/runes_futhark.png") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
  filter: sepia(0.3) hue-rotate(230deg) saturate(2);
}

.fh-expand::before {
  left: -70px;
}

.fh-expand::after {
  right: -70px;
  transform: scaleX(-1);
}

.fh-expand__inner {
  position: relative;
  z-index: 1;
  display: block;
  align-items: center;
}

.fh-expand__decor {
  display: none;
}

.fh-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.fh-tags span {
  min-width: 142px;
  padding: 11px 22px;
  border: 1px dashed rgba(139, 62, 228, 0.4);
  border-radius: 999px;
  color: #8239df;
  background: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 750;
}

.fh-telegram-cta {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 40%, rgba(255,255,255,0.16), transparent 18%),
    radial-gradient(circle at 88% 22%, rgba(255,255,255,0.12), transparent 18%),
    linear-gradient(112deg, #2b0e67 0%, #5621b0 50%, #8338df 100%);
}

.fh-telegram-cta::before,
.fh-telegram-cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  pointer-events: none;
}

.fh-telegram-cta::before {
  left: -80px;
  bottom: -120px;
}

.fh-telegram-cta::after {
  right: -120px;
  top: -100px;
}

.fh-telegram-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 128px minmax(260px, 1fr) minmax(300px, 440px) auto;
  gap: 32px;
  align-items: center;
}

.fh-telegram-cta__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  color: #fff;
  background: radial-gradient(circle, rgba(255,255,255,0.26) 0 28%, rgba(255,255,255,0.08) 29% 58%, rgba(255,255,255,0.03) 59% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), 0 20px 48px rgba(12, 4, 38, 0.24);
  overflow: visible;
  animation: fh-telegram-mark-breathe 3.8s ease-in-out infinite;
}

.fh-telegram-cta__mark::before {
  content: "";
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 4 17.6 20.1c-.2 1-1.4 1.3-2.1.6l-4.8-4-2.5 2.4c-.5.5-1.3.2-1.4-.5L6 13.5 2.4 12c-.9-.3-.9-1.6.1-1.9L19.8 3c.7-.3 1.4.3 1.2 1Z' fill='%23ffffff'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fh-telegram-cta__mark::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 0 53%, rgba(255,255,255,0.2) 54% 55%, transparent 56% 100%),
    radial-gradient(circle, transparent 0 70%, rgba(255,255,255,0.12) 71% 72%, transparent 73% 100%);
  opacity: 0;
  transform: scale(0.72);
  animation: fh-telegram-ripple 3.2s ease-out infinite;
}

.fh-telegram-cta__mark svg {
  display: none;
  width: 54px;
  height: 54px;
}

@keyframes fh-telegram-mark-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), 0 20px 48px rgba(12, 4, 38, 0.24);
  }
  50% {
    transform: scale(1.045);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22), 0 24px 58px rgba(12, 4, 38, 0.3);
  }
}

@keyframes fh-telegram-ripple {
  0% {
    transform: scale(0.72);
    opacity: 0;
  }
  22% {
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.fh-telegram-cta h2 {
  margin-bottom: 11px;
  color: #fff;
  font-size: clamp(26px, 2.3vw, 36px);
}

.fh-telegram-cta p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.fh-telegram-cta__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.fh-telegram-cta__items span {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.fh-telegram-cta__items span::before {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
  font-size: 19px;
  font-weight: 800;
  }

.fh-telegram-cta__items span:nth-child(1)::before { content: "↗"; }
.fh-telegram-cta__items span:nth-child(2)::before { content: "◇"; }
.fh-telegram-cta__items span:nth-child(3)::before { content: "○"; }

.home #fridheimr-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(116, 64, 219, 0.28), transparent 28%),
    linear-gradient(180deg, #170a35 0%, #100724 100%) !important;
  padding: 34px 20px 28px !important;
}

.home #fridheimr-footer .footer-inner {
  max-width: 1240px !important;
}

.home #fridheimr-footer .footer-links a {
  min-width: 124px;
  color: #ded3ff !important;
  background: rgba(255,255,255,0.08) !important;
}

.home #fridheimr-footer .footer-copy {
  color: rgba(222, 211, 255, 0.48) !important;
}

@media (max-width: 1180px) {
  .fh-shell,
  .fh-proof-strip {
    width: min(100% - 36px, 1060px);
  }

  .fh-home h1 {
    font-size: clamp(34px, 4.6vw, 46px);
  }

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

  .fh-proof:nth-child(2) {
    border-right: 0;
  }

  .fh-proof:nth-child(-n+2) {
    border-bottom: 1px solid rgba(139, 62, 228, 0.15);
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .fh-split {
    gap: 50px;
  }

  .fh-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fh-chat-card {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
  }

  .fh-telegram-cta__inner {
    grid-template-columns: 100px 1fr;
  }

  .fh-telegram-cta__items,
  .fh-telegram-cta .fh-btn {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .home .promo-bar__text::before,
  .home .promo-bar__text::after {
    display: none;
  }

  .fh-shell,
  .fh-proof-strip {
    width: min(100% - 28px, 720px);
  }

  .fh-hero {
    min-height: auto;
    padding: 56px 0 98px;
  }

  .fh-hero::before {
    width: 100%;
    opacity: 0.28;
  }

  .fh-hero::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9));
  }

  .fh-hero__copy,
  .fh-hero__lead {
    max-width: 100%;
  }

  .fh-proof-strip,
  .fh-split,
  .fh-reviews__inner,
  .fh-expand__inner {
    grid-template-columns: 1fr;
  }

  .fh-proof {
    border-right: 0;
    border-bottom: 1px solid rgba(139, 62, 228, 0.15);
    padding: 16px 6px;
  }

  .fh-proof:nth-child(-n+2) {
    margin-bottom: 0;
  }

  .fh-proof:last-child {
    border-bottom: 0;
  }

  .fh-note-card {
    max-width: 520px;
  }

  .fh-steps__grid,
  .fh-review-grid {
    grid-template-columns: 1fr;
  }

  .fh-review-card {
    flex-basis: 100%;
  }

  .fh-steps__grid::before,
  .fh-steps__grid::after {
    display: none;
  }

  .fh-step__num {
    left: calc(50% - 70px);
  }

  .fh-review-emblem {
    display: none;
  }

  .fh-expand__decor {
    display: none;
  }

  .fh-telegram-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fh-telegram-cta__mark {
    margin: 0 auto;
  }

  .fh-telegram-cta__items,
  .fh-telegram-cta .fh-btn {
    grid-column: auto;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .home .promo-bar {
    gap: 10px;
    padding: 10px 14px;
  }

  .home .promo-bar__text {
    width: 100%;
    font-size: 12px;
  }

  .home .promo-bar .btn-cta {
    min-width: 156px;
  }

  .fh-home h1 {
    font-size: 30px;
    line-height: 1.22;
  }

  .fh-home h2 {
    font-size: 26px;
  }

  .fh-section {
    padding: 52px 0;
  }

  .fh-hero {
    padding: 40px 0 78px;
  }

  .fh-hero__lead {
    font-size: 16px;
    line-height: 1.58;
  }

  .fh-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fh-btn {
    width: 100%;
    white-space: normal;
  }

  .fh-proof-strip {
    margin-top: -44px;
    padding: 14px;
  }

  .fh-proof {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    min-height: auto;
  }

  .fh-proof__icon {
    width: 48px;
    height: 48px;
  }

  .fh-request-grid,
  .fh-service-grid,
  .fh-telegram-cta__items {
    grid-template-columns: 1fr;
  }

  .fh-request-grid__wide {
    grid-column: auto;
  }

  .fh-note-card {
    padding: 28px 22px;
  }

  .fh-service-card p {
    min-height: 0;
  }

  .fh-tags {
    gap: 10px;
  }

  .fh-tags span {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .fh-steps {
    padding: 58px 0 66px;
  }

  .fh-steps__grid {
    gap: 34px 26px;
  }

  .fh-steps__grid::before {
    width: calc(100% - 196px);
  }

  .fh-chat-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .fh-steps__grid {
    gap: 38px;
    margin-top: 42px;
  }

  .fh-step__num {
    left: calc(50% - 72px);
  }

  .fh-chat-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .fh-steps {
    padding: 52px 0 58px;
  }

  .fh-steps .fh-section-label {
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .fh-steps .fh-section-label::before,
  .fh-steps .fh-section-label::after {
    min-width: 28px;
  }

  .fh-step__icon {
    width: 116px;
    height: 116px;
  }

  .fh-step::before {
    width: 116px;
    height: 116px;
  }

  .fh-step__icon svg {
    width: 52px;
    height: 52px;
  }

  .fh-step__icon::after {
    width: 52px;
    height: 52px;
  }

  .fh-step__num {
    top: 14px;
    left: calc(50% - 66px);
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .fh-step h3 {
    font-size: 20px;
  }

  .fh-step p,
  .fh-chat-card p {
    font-size: 14px;
  }

  .fh-chat-card {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .fh-chat-card span {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .promo-bar,
  .home .promo-bar::before,
  .home .promo-bar::after,
  .home .promo-bar__sparkles i,
  .home .promo-bar__text::before,
  .home .promo-bar__text::after,
  .home .promo-bar .btn-cta,
  .home .promo-bar .btn-cta::after,
  .fh-step,
  .fh-step::before,
  .fh-step__num,
  .fh-step__icon,
  .fh-step__icon::before,
  .fh-step__icon::after,
  .fh-steps__grid::after,
  .fh-chat-card span,
  .fh-chat-card span::after {
    animation: none !important;
    transition: none !important;
  }

  .fh-step:hover,
  .fh-step:hover .fh-step__icon,
  .fh-step:hover .fh-step__num,
  .home .promo-bar .btn-cta:hover {
    transform: none;
  }
}
