/* ============================================================
   Thal Host — shared styles
   Fonts: Bricolage Grotesque (display) + Manrope (body)
   ============================================================ */
:root {
  --navy: #12123B;
  --navy-deep: #0C0C2E;
  --purple: #7A2FF2;
  --purple-hot: #8E44FF;
  --cream: #FAF1E3;
  --cream-deep: #F3E6CF;
  --pink: #FF8AC2;
  --mint: #4FE3C1;
  --yellow: #FFD43B;
  --orange: #FF8A3D;
  --cobalt: #2E5BFF;
  --ink: #1B1B4D;
  --white: #FFFFFF;
  --r-card: 28px;
  --r-big: 44px;
  --ease: cubic-bezier(.34, 1.45, .45, 1);
  --easeout: cubic-bezier(.22, .61, .21, 1);
  --disp: 'Bricolage Grotesque', 'Manrope', sans-serif;
  --body-f: 'Manrope', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px
}

body {
  font-family: var(--body-f);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.disp {
  font-family: var(--disp);
  line-height: 1.04;
  letter-spacing: -.015em
}

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

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

button {
  font-family: inherit
}

.wrap {
  width: min(1180px, 92%);
  margin: 0 auto
}

section {
  position: relative
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 17px 36px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s, color .3s;
}

.btn:hover {
  transform: translateY(-4px) rotate(-1deg) scale(1.03)
}

.btn:active {
  transform: translateY(0) scale(.98)
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 0 rgba(0, 0, 0, .18)
}

.btn-yellow:hover {
  box-shadow: 0 12px 0 rgba(0, 0, 0, .18)
}

.btn-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 8px 0 rgba(0, 0, 0, .18)
}

.btn-white:hover {
  box-shadow: 0 12px 0 rgba(0, 0, 0, .18)
}

.btn-ink {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 0 rgba(27, 27, 77, .25)
}

.btn-ink:hover {
  box-shadow: 0 12px 0 rgba(27, 27, 77, .25)
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, .85)
}

.btn-purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 0 rgba(27, 27, 77, .2)
}

.btn-purple:hover {
  box-shadow: 0 12px 0 rgba(27, 27, 77, .2)
}

/* ============ Header ============ */
header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 200
}

.navbar {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(18, 18, 59, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  transition: background .4s, border-color .4s, box-shadow .4s;
}

header.scrolled .navbar {
  background: rgba(12, 12, 46, .92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  border-color: rgba(255, 255, 255, .18)
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -.02em
}

.logo-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  position: relative
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transition: transform .55s var(--ease)
}

.logo:hover .logo-mark svg {
  transform: rotate(-8deg) scale(1.1)
}

.logo .spark {
  transform-origin: center;
  animation: sparkle 2.8s ease-in-out infinite
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(.55) rotate(20deg);
    opacity: .65
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none
}

.nav-links a {
  font-weight: 800;
  font-size: .85rem;
  color: rgba(255, 255, 255, .85);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .3s, color .3s, transform .3s var(--ease);
  display: inline-block;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transform: rotate(-2deg)
}

.nav-links a.active {
  background: var(--purple);
  color: #fff
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-right .btn {
  padding: 12px 26px;
  font-size: .92rem
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 0;
  cursor: pointer;
  place-items: center
}

.burger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  margin: 4.5px auto;
  transition: .35s var(--ease)
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.burger.open span:nth-child(2) {
  opacity: 0
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  top: 86px;
  left: 3%;
  right: 3%;
  z-index: 190;
  background: var(--navy-deep);
  border: 2px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateY(-14px) scale(.98);
  pointer-events: none;
  transition: opacity .35s var(--easeout), transform .35s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

.mobile-menu a {
  display: block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
  padding: 13px 10px;
  border-bottom: 2px dashed rgba(255, 255, 255, .12)
}

.mobile-menu a:last-of-type {
  border: 0
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 12px
}

/* ============ Hero (home) ============ */
.hero {
  background:
    radial-gradient(900px 500px at 50% -10%, var(--purple-hot), transparent 70%),
    radial-gradient(700px 500px at 100% 110%, #6620D9, transparent 60%),
    var(--purple);
  border-radius: 0 0 56px 56px;
  padding: 172px 0 0;
  text-align: center;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  pointer-events: none;
  z-index: 0
}

.blob-pink {
  width: 420px;
  height: 420px;
  background: var(--pink);
  top: -8%;
  left: -10%;
  animation: blobDrift 18s ease-in-out infinite alternate
}

.blob-mint {
  width: 380px;
  height: 380px;
  background: var(--mint);
  bottom: -6%;
  right: -8%;
  opacity: .32;
  animation: blobDrift 22s ease-in-out infinite alternate-reverse
}

@keyframes blobDrift {
  0% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(60px, 40px) scale(1.12)
  }

  100% {
    transform: translate(-40px, 70px) scale(.94)
  }
}

.hero-inner {
  position: relative;
  z-index: 5
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .14);
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: 9px 22px;
  font-weight: 800;
  font-size: .88rem;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 32px;
  transform: rotate(-1.5deg);
}

.hero-pill b {
  background: var(--yellow);
  color: var(--ink);
  padding: 4px 13px;
  border-radius: 999px;
  font-size: .78rem
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: .96;
  margin: 0 auto 18px;
  max-width: 16.5ch;
}

.hline {
  display: block;
  overflow: hidden;
  padding: .04em 0
}

.hline .w {
  display: inline;
  transform: translateY(120%) rotate(5deg);
  animation: wordUp 1s var(--ease) forwards;
}

.hline:nth-child(1) .w {
  animation-delay: .12s
}

.hline:nth-child(2) .w {
  animation-delay: .26s
}

.hline:nth-child(3) .w {
  animation-delay: .40s
}

.hline:nth-child(4) .w {
  animation-delay: .54s
}

@keyframes wordUp {
  to {
    transform: none
  }
}

.hl-yellow {
  color: var(--yellow);
  transform-origin: left bottom
}

.hl-outline {
  color: transparent;
  -webkit-text-stroke: 3px #fff
}

.hl-mint {
  color: var(--mint)
}

.hl-shimmer {
  background: linear-gradient(110deg, var(--yellow) 20%, #fff 38%, var(--yellow) 55%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: wordUp 1s var(--ease) forwards, shimmer 4.2s ease-in-out 1.4s infinite;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 120% 0
  }

  45%,
  60% {
    background-position: -40% 0
  }
}

.hero .sub {
  max-width: 800px;
  margin: 0 auto 38px;
  font-size: 1.12rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 26px
}

.hero-mini {
  font-weight: 800;
  font-size: .84rem;
  color: rgba(255, 255, 255, .78);
  letter-spacing: .06em;
  text-transform: uppercase
}

.hero-mini span {
  margin: 0 10px
}

/* entrance helper */
.pop {
  opacity: 0;
  transform: translateY(34px) scale(.96);
  animation: popIn .9s var(--ease) forwards
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: none
  }
}

.p1 {
  animation-delay: .05s
}

.p2 {
  animation-delay: .16s
}

.p3 {
  animation-delay: .5s
}

.p4 {
  animation-delay: .64s
}

.p5 {
  animation-delay: .78s
}

.p6 {
  animation-delay: .92s
}

/* ribbons + doodles */
.ribbon {
  position: absolute;
  z-index: 1;
  pointer-events: none
}

.ribbon path {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: ribbonDraw 2.6s var(--easeout) .4s forwards
}

@keyframes ribbonDraw {
  to {
    stroke-dashoffset: 0
  }
}

.rb-left {
  left: -60px;
  top: 16%;
  width: 380px;
  transform: rotate(8deg)
}

.rb-right {
  right: -80px;
  top: 42%;
  width: 420px;
  transform: rotate(-6deg) scaleX(-1)
}

.doodle {
  position: absolute;
  z-index: 2;
  pointer-events: none
}

.spin-slow {
  animation: spinSlow 16s linear infinite
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg)
  }
}

.bob {
  animation: bob 4.5s ease-in-out infinite
}

.bob2 {
  animation: bob 5.5s ease-in-out .8s infinite
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg))
  }

  50% {
    transform: translateY(-16px) rotate(var(--rot, 0deg))
  }
}

.wiggle {
  animation: wiggle 3.4s ease-in-out infinite
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(-6deg)
  }

  50% {
    transform: rotate(6deg)
  }
}

.twinkle {
  animation: twinkle 3s ease-in-out infinite
}

.twinkle.t2 {
  animation-delay: 1s
}

.twinkle.t3 {
  animation-delay: 2s
}

@keyframes twinkle {

  0%,
  100% {
    opacity: .25;
    transform: scale(.7)
  }

  50% {
    opacity: 1;
    transform: scale(1.15)
  }
}

/* hero stage */
.hero-stage {
  position: relative;
  z-index: 4;
  max-width: 980px;
  margin: 70px auto 0;
  min-height: 400px
}

.fcard {
  position: absolute;
  border-radius: 24px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--disp);
  box-shadow: 0 18px 0 rgba(0, 0, 0, .16);
  border: 3px solid var(--ink);
  transition: box-shadow .5s var(--ease);
  will-change: transform;
}

.fcard h4 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 10px
}

.fcard small {
  font-family: var(--body-f);
  font-weight: 700;
  font-size: .78rem;
  color: rgba(27, 27, 77, .65)
}

.fcard .big {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink)
}

.fc-ssl {
  left: 2%;
  top: 6%;
  background: var(--mint);
  transform: rotate(-7deg);
  animation: bobA 6s ease-in-out infinite
}

.fc-speed {
  right: 3%;
  top: 0;
  background: var(--pink);
  transform: rotate(6deg);
  animation: bobB 7s ease-in-out .5s infinite
}

.fc-price {
  left: 8%;
  bottom: 8%;
  background: var(--yellow);
  transform: rotate(4deg);
  animation: bobB 6.5s ease-in-out 1s infinite
}

.fc-support {
  right: 7%;
  bottom: 12%;
  background: var(--orange);
  transform: rotate(-5deg);
  animation: bobA 7.5s ease-in-out 1.4s infinite
}

@keyframes bobA {

  0%,
  100% {
    margin-top: 0
  }

  50% {
    margin-top: -14px
  }
}

@keyframes bobB {

  0%,
  100% {
    margin-top: 0
  }

  50% {
    margin-top: 12px
  }
}

/* orbit ring behind phone */
.orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  border: 2.5px dashed rgba(255, 255, 255, .28);
  animation: orbitSpin 40s linear infinite;
}

@keyframes orbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--ink);
}

.orbit::before {
  background: var(--yellow);
  top: 6%;
  left: 78%
}

.orbit::after {
  background: var(--mint);
  bottom: 10%;
  left: 8%
}

/* phone */
.phone-wrap {
  position: relative;
  width: min(330px, 72vw);
  margin: 0 auto;
  z-index: 3
}

.phone {
  background: var(--navy);
  border: 5px solid var(--ink);
  border-radius: 44px;
  padding: 18px 16px 26px;
  box-shadow: 0 24px 0 rgba(0, 0, 0, .2);
  transform: rotate(-2deg);
  animation: phoneFloat 7s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: rotate(-2deg) translateY(0)
  }

  50% {
    transform: rotate(-1deg) translateY(-12px)
  }
}

.phone .notch {
  width: 90px;
  height: 9px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .18);
  margin: 0 auto 16px
}

.screen-card {
  background: var(--purple-hot);
  border-radius: 22px;
  padding: 18px;
  font-family: var(--disp);
  color: #fff;
  margin-bottom: 12px;
  border: 3px solid rgba(255, 255, 255, .25);
  position: relative;
  overflow: hidden;
}

.screen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .22) 50%, transparent 60%);
  animation: screenShine 4s var(--easeout) infinite;
}

@keyframes screenShine {
  0% {
    transform: translateX(-110%)
  }

  55%,
  100% {
    transform: translateX(110%)
  }
}

.screen-card .lab {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8
}

.screen-card .val {
  font-size: 1.8rem;
  font-weight: 800
}

.screen-row {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 11px 13px;
  margin-bottom: 9px;
  font-weight: 800;
  font-size: .8rem;
  color: #fff;
  font-family: var(--body-f);
}

.screen-row .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(79, 227, 193, .6);
  animation: pingDot 2.2s infinite
}

.screen-row:nth-child(3) .dot {
  animation-delay: .6s
}

.screen-row:nth-child(4) .dot {
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 212, 59, .6);
  animation-delay: 1.2s
}

@keyframes pingDot {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 227, 193, .5)
  }

  70% {
    box-shadow: 0 0 0 9px rgba(79, 227, 193, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 227, 193, 0)
  }
}

.screen-row .pct {
  margin-left: auto;
  color: var(--mint)
}

.hand {
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  z-index: -1
}

/* marquee */
.marquee {
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(-1.6deg) scale(1.02);
  border: 4px solid var(--ink);
  margin-top: -34px;
  position: relative;
  z-index: 20;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  box-shadow: 0 10px 0 rgba(0, 0, 0, .22);
}

.marquee-track {
  display: inline-flex;
  animation: slide 26s linear infinite
}

.marquee span {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.marquee .star {
  font-size: 1.3rem
}

@keyframes slide {
  to {
    transform: translateX(-50%)
  }
}

/* ============ Page hero (subpages) ============ */
.page-hero {
  background:
    radial-gradient(800px 420px at 50% -20%, var(--purple-hot), transparent 70%),
    var(--purple);
  border-radius: 0 0 48px 48px;
  padding: 176px 0 96px;
  text-align: center;
  overflow: hidden;
}

.page-hero .crumb {
  display: inline-block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 26px;
  transform: rotate(-1.5deg);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--yellow)
}

.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .88)
}

/* ============ Section heads ============ */
.sec-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px
}

.sec-head h2 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 18px;
}

.sec-head h2 em {
  font-style: normal;
  color: var(--pink)
}

.sec-head h2 .u-mint {
  color: var(--mint)
}

.sec-head h2 .u-yel {
  color: var(--yellow)
}

.sec-head p {
  font-size: 1.08rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .72)
}

/* ============ Tilt cards ============ */
.benefits {
  padding: 130px 0 110px;
  background: var(--navy)
}

.tilt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: start
}

.tcard {
  border-radius: var(--r-card);
  border: 3px solid var(--ink);
  padding: 32px 26px 30px;
  color: var(--ink);
  box-shadow: 0 14px 0 rgba(0, 0, 0, .2);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  position: relative;
}

.tcard:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.02) !important;
  box-shadow: 0 24px 0 rgba(0, 0, 0, .2)
}

.tc-1 {
  background: var(--pink);
  transform: rotate(-3deg)
}

.tc-2 {
  background: var(--mint);
  transform: rotate(2deg);
  margin-top: 26px
}

.tc-3 {
  background: var(--yellow);
  transform: rotate(-2deg)
}

.tc-4 {
  background: var(--orange);
  transform: rotate(3deg);
  margin-top: 26px
}

.tcard .badge {
  position: absolute;
  top: -16px;
  right: 18px;
  background: var(--ink);
  color: #fff;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  transform: rotate(3deg);
}

.tcard .pic {
  height: 88px;
  display: flex;
  align-items: center;
  margin-bottom: 18px
}

.tcard h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px
}

.tcard p {
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(27, 27, 77, .8);
  margin-bottom: 18px
}

.tcard .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .95rem;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 2px;
}

.tcard .go svg {
  transition: transform .4s var(--ease)
}

.tcard:hover .go svg {
  transform: translateX(6px)
}

/* wordpress banner */
.wp-banner {
  margin-top: 60px;
  background: radial-gradient(500px 260px at 85% -30%, #4A78FF, transparent 70%), var(--cobalt);
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 38px 44px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: 0 14px 0 rgba(0, 0, 0, .22);
  transform: rotate(-1deg);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}

.wp-banner:hover {
  transform: rotate(0) translateY(-8px);
  box-shadow: 0 22px 0 rgba(0, 0, 0, .22)
}

.wp-banner .wp-art {
  flex-shrink: 0;
  width: 110px
}

.wp-banner h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px
}

.wp-banner h3 em {
  font-style: normal;
  color: var(--yellow)
}

.wp-banner p {
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255, 255, 255, .85);
  max-width: 520px
}

.wp-banner .btn {
  margin-left: auto;
  flex-shrink: 0
}

@media(max-width:880px) {
  .wp-banner {
    flex-direction: column;
    text-align: center;
    padding: 38px 8%
  }

  .wp-banner .btn {
    margin-left: 0
  }

  .wp-banner p {
    max-width: none
  }
}

/* full-details link under split CTAs */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 2px;
  transition: color .3s, transform .35s var(--ease);
}

.more-link:hover {
  color: var(--yellow);
  transform: translateX(4px)
}

/* ============ Cream sections ============ */
.cream {
  background: var(--cream);
  color: var(--ink);
  border-radius: 56px;
  padding: 120px 0 110px
}

.cream .sec-head h2 {
  color: var(--ink)
}

.cream .sec-head h2 em {
  color: var(--purple)
}

.cream .sec-head p {
  color: rgba(27, 27, 77, .65)
}

/* pricing */
.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 22px
}

.pcard {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 36px 30px;
  box-shadow: 0 14px 0 rgba(27, 27, 77, .16);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pcard:hover {
  transform: translateY(-12px) rotate(0) !important;
  box-shadow: 0 24px 0 rgba(27, 27, 77, .16)
}

.pc-1 {
  transform: rotate(-2deg)
}

.pc-2 {
  background: var(--purple);
  color: #fff;
  transform: rotate(1deg) scale(1.04);
  z-index: 2
}

.pc-3 {
  transform: rotate(2deg)
}

.pcard .ptag {
  align-self: flex-start;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--cream-deep);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.pc-2 .ptag {
  background: var(--yellow)
}

.pcard h3 {
  font-size: 1.55rem;
  font-weight: 800;
  text-transform: uppercase
}

.pcard .amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 8px
}

.pcard .amount b {
  font-family: var(--disp);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1
}

.pcard .amount span {
  font-weight: 800;
  opacity: .6
}

.pcard>p {
  font-weight: 600;
  font-size: .95rem;
  opacity: .8;
  margin-bottom: 22px
}

.pcard ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 28px
}

.pcard li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
  font-size: .9rem
}

.pcard li .chk {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border: 2.5px solid currentColor;
}

.pcard .btn {
  margin-top: auto;
  width: 100%
}

.guarantee {
  text-align: center;
  font-weight: 800;
  font-size: .95rem;
  color: rgba(27, 27, 77, .6)
}

.guarantee b {
  color: var(--purple)
}

/* carousel */
.carousel-zone {
  margin-top: 110px
}

.car-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
  flex-wrap: wrap
}

.car-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.04;
  max-width: 560px
}

.car-head h2 em {
  font-style: normal;
  color: var(--purple)
}

.car-btns {
  display: flex;
  gap: 12px
}

.car-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 7px 0 rgba(27, 27, 77, .18);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
}

.car-btn:hover {
  transform: translateY(-4px) rotate(-4deg);
  background: var(--yellow);
  box-shadow: 0 11px 0 rgba(27, 27, 77, .18)
}

.car-btn:active {
  transform: translateY(0)
}

.carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 14px 4px 30px;
  scrollbar-width: none
}

.carousel::-webkit-scrollbar {
  display: none
}

.ccard {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: var(--r-card);
  border: 3px solid var(--ink);
  padding: 30px 26px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 0 rgba(27, 27, 77, .16);
  transition: transform .5s var(--ease);
  color: var(--ink);
}

.ccard:hover {
  transform: translateY(-10px) rotate(-1.5deg)
}

.ccard .emoji-art {
  height: 96px;
  display: flex;
  align-items: center;
  margin-bottom: 16px
}

.ccard h3 {
  font-size: 1.28rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px
}

.ccard p {
  font-weight: 600;
  font-size: .9rem;
  opacity: .8
}

.ccard .tagrow {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.ccard .tag {
  font-family: var(--disp);
  font-weight: 700;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, .55);
}

.cc-a {
  background: #fff
}

.cc-b {
  background: var(--pink)
}

.cc-c {
  background: var(--mint)
}

.cc-d {
  background: var(--yellow)
}

.cc-e {
  background: #fff
}

.cc-f {
  background: var(--orange)
}

/* ============ Audience ============ */
.audience {
  padding: 140px 0;
  background: var(--navy);
  overflow: hidden
}

.aud-center {
  text-align: center;
  position: relative;
  z-index: 3
}

.aud-center .kicker {
  display: inline-block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mint);
  border: 2.5px solid var(--mint);
  border-radius: 999px;
  padding: 8px 22px;
  margin-bottom: 30px;
  transform: rotate(-1.5deg);
}

.aud-center h2 {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.02
}

.word-spin {
  display: inline-grid;
  text-align: center;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.06em;
  color: var(--yellow)
}

.word-spin span {
  grid-area: 1/1;
  opacity: 0;
  transform: translateY(110%) rotate(4deg);
  transition: transform .6s var(--ease), opacity .4s;
  white-space: nowrap;
}

.word-spin span.on {
  opacity: 1;
  transform: none
}

.word-spin span.off {
  opacity: 0;
  transform: translateY(-110%) rotate(-4deg)
}

.aud-sub {
  max-width: 540px;
  margin: 26px auto 44px;
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .7)
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto
}

.kpill {
  font-family: var(--disp);
  font-weight: 700;
  font-size: .92rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 11px 24px;
  color: var(--ink);
  box-shadow: 0 6px 0 rgba(0, 0, 0, .25);
  transition: transform .45s var(--ease);
  cursor: default;
}

.kpill:hover {
  transform: translateY(-5px) rotate(-3deg) scale(1.05)
}

.kpill:nth-child(6n+1) {
  background: var(--pink);
  transform: rotate(-2deg)
}

.kpill:nth-child(6n+2) {
  background: var(--mint);
  transform: rotate(1.5deg)
}

.kpill:nth-child(6n+3) {
  background: var(--yellow);
  transform: rotate(-1deg)
}

.kpill:nth-child(6n+4) {
  background: var(--orange);
  transform: rotate(2deg)
}

.kpill:nth-child(6n+5) {
  background: #9DB8FF;
  transform: rotate(-2.5deg)
}

.kpill:nth-child(6n+6) {
  background: #fff;
  transform: rotate(1deg)
}

.feat-rows {
  margin-top: 90px;
  display: grid;
  gap: 18px
}

.frow {
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px dashed rgba(255, 255, 255, .16);
  border-bottom: 2px dashed rgba(255, 255, 255, .16);
  padding: 14px 0
}

.frow-track {
  display: inline-flex;
  animation: slide 38s linear infinite
}

.frow:nth-child(2) .frow-track {
  animation-direction: reverse;
  animation-duration: 44s
}

.frow span {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: .04em;
}

.frow .sep {
  color: var(--pink);
  font-size: 1.2rem
}

.frow:nth-child(2) .sep {
  color: var(--mint)
}

/* ============ Support / CTA cards ============ */
.support {
  background: var(--navy);
  padding: 30px 0 130px
}

.support-card {
  background: var(--cobalt);
  border: 3px solid var(--ink);
  border-radius: var(--r-big);
  padding: 70px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 0 rgba(0, 0, 0, .25);
}

.support-card h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  position: relative
}

.support-card h2 em {
  font-style: normal;
  color: var(--yellow)
}

.support-card p {
  max-width: 540px;
  margin: 0 auto 34px;
  font-weight: 600;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .88);
  position: relative
}

.support-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative
}

.support-meta {
  margin-top: 28px;
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  position: relative
}

.support-meta span {
  margin: 0 12px
}

.bigcta {
  padding: 130px 0;
  background: var(--navy)
}

.cta-card {
  background: radial-gradient(700px 380px at 50% -20%, var(--purple-hot), transparent 70%), var(--purple);
  border: 3px solid var(--ink);
  border-radius: 56px;
  padding: 90px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 0 rgba(0, 0, 0, .28);
}

.cta-card h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  position: relative
}

.cta-card h2 em {
  font-style: normal;
  color: var(--yellow);
  display: inline-block;
  transform: rotate(-2deg)
}

.cta-card p {
  max-width: 540px;
  margin: 0 auto 38px;
  font-weight: 600;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .88);
  position: relative
}

.cta-card .hero-ctas {
  position: relative
}

/* ============ FAQ ============ */
.faq-sec {
  background: var(--cream);
  color: var(--ink);
  border-radius: 56px;
  padding: 120px 0
}

.faq-sec .sec-head h2 {
  color: var(--ink)
}

.faq-sec .sec-head h2 em {
  color: var(--purple)
}

.faq-sec .sec-head p {
  color: rgba(27, 27, 77, .65)
}

.faq-list {
  max-width: 780px;
  margin: 0 auto
}

.faq-item {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 26px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 8px 0 rgba(27, 27, 77, .14);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 0 rgba(27, 27, 77, .14)
}

.faq-item.active {
  background: var(--yellow)
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 24px 28px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.faq-q .chev {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform .5s var(--ease), background .3s;
}

.faq-item.active .chev {
  transform: rotate(135deg)
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--easeout)
}

.faq-item.active .faq-a {
  grid-template-rows: 1fr
}

.faq-a-inner {
  overflow: hidden
}

.faq-a-inner p {
  padding: 0 28px 26px;
  font-weight: 600;
  font-size: .96rem;
  color: rgba(27, 27, 77, .82)
}

/* ============ Services page ============ */
.svc-detail {
  padding: 120px 0;
  background: var(--navy)
}

.svc-detail.alt {
  background: var(--navy-deep);
  border-radius: 56px
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center
}

.split.rev .split-art {
  order: -1
}

.split .kick {
  display: inline-block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 7px 17px;
  margin-bottom: 22px;
  transform: rotate(-1.5deg);
}

.split h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.04;
  margin-bottom: 18px
}

.split h2 em {
  font-style: normal
}

.split>div>p {
  font-weight: 600;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 28px
}

.feat-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px
}

.feat-list.single {
  grid-template-columns: 1fr
}

.feat-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-weight: 700;
  font-size: .93rem;
  color: #fff
}

.feat-list .fchk {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.split-art {
  position: relative
}

.art-frame {
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 34px;
  box-shadow: 0 16px 0 rgba(0, 0, 0, .22);
  display: grid;
  place-items: center;
  min-height: 300px;
  transform: rotate(-1.5deg);
  transition: transform .5s var(--ease);
}

.art-frame:hover {
  transform: rotate(0)
}

.split.rev .art-frame {
  transform: rotate(1.5deg)
}

.split.rev .art-frame:hover {
  transform: rotate(0)
}

/* feature columns grid */
.featgrid-sec {
  padding: 120px 0;
  background: var(--navy)
}

.fg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.fg-col {
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 30px 26px;
  color: var(--ink);
  box-shadow: 0 10px 0 rgba(0, 0, 0, .22);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.fg-col:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 18px 0 rgba(0, 0, 0, .22)
}

.fg-col h3 {
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px
}

.fg-col ul {
  list-style: none;
  display: grid;
  gap: 9px
}

.fg-col li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-weight: 700;
  font-size: .85rem;
  color: rgba(27, 27, 77, .85)
}

.fg-col li::before {
  content: "✦";
  flex-shrink: 0;
  font-size: .8rem
}

.fg-1 {
  background: var(--pink)
}

.fg-2 {
  background: var(--mint)
}

.fg-3 {
  background: var(--yellow)
}

.fg-4 {
  background: #9DB8FF
}

/* ============ About page ============ */
.about-body {
  padding: 110px 0;
  background: var(--navy)
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start
}

.about-grid h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.05
}

.about-grid h2 em {
  font-style: normal;
  color: var(--mint)
}

.about-grid p {
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 18px
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.stat-card {
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 28px 24px;
  color: var(--ink);
  box-shadow: 0 10px 0 rgba(0, 0, 0, .22);
  transition: transform .45s var(--ease);
}

.stat-card:hover {
  transform: translateY(-6px) rotate(-2deg)
}

.stat-card b {
  font-family: var(--disp);
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  line-height: 1.1
}

.stat-card span {
  font-weight: 700;
  font-size: .85rem
}

.stat-card:nth-child(1) {
  background: var(--yellow);
  transform: rotate(-2deg)
}

.stat-card:nth-child(2) {
  background: var(--pink);
  transform: rotate(1.5deg)
}

.stat-card:nth-child(3) {
  background: var(--mint);
  transform: rotate(2deg)
}

.stat-card:nth-child(4) {
  background: var(--orange);
  transform: rotate(-1.5deg)
}

.values {
  padding: 0 0 130px;
  background: var(--navy)
}

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

.val-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 34px 28px;
  color: var(--ink);
  box-shadow: 0 12px 0 rgba(0, 0, 0, .22);
  transition: transform .5s var(--ease);
}

.val-card:hover {
  transform: translateY(-10px) rotate(-1deg)
}

.val-card .vic {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  border: 3px solid var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transform: rotate(-5deg);
}

.val-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px
}

.val-card p {
  font-weight: 600;
  font-size: .92rem;
  color: rgba(27, 27, 77, .8)
}

/* ============ Contact page ============ */
.contact-body {
  padding: 110px 0 130px;
  background: var(--navy)
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 80px
}

.con-card {
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 38px 30px;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 14px 0 rgba(0, 0, 0, .22);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.con-card:hover {
  transform: translateY(-10px) rotate(0) !important;
  box-shadow: 0 22px 0 rgba(0, 0, 0, .22)
}

.con-card.c1 {
  background: var(--mint);
  transform: rotate(-2deg)
}

.con-card.c2 {
  background: var(--yellow);
  transform: rotate(1.5deg)
}

.con-card.c3 {
  background: var(--pink);
  transform: rotate(-1.5deg)
}

.con-card .cic {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  border: 3px solid var(--ink);
  background: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  transform: rotate(-6deg);
}

.con-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px
}

.con-card p {
  font-weight: 600;
  font-size: .9rem;
  color: rgba(27, 27, 77, .75);
  margin-bottom: 20px
}

.con-card .btn {
  width: 100%
}

.form-card {
  max-width: 720px !important;
  width: 100% !important;
  margin: 0 auto !important;
  background: var(--cream) !important;
  color: var(--ink) !important;
  border: 3px solid var(--ink) !important;
  border-radius: var(--r-big) !important;
  padding: 56px 7% !important;
  box-shadow: 0 16px 0 rgba(0, 0, 0, .25) !important;
  box-sizing: border-box !important;
}

.form-card h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  margin: 0 0 10px !important;
  color: var(--ink) !important;
}

.form-card h2 em {
  font-style: normal !important;
  color: var(--purple) !important;
}

.form-card>p {
  font-weight: 600 !important;
  color: rgba(27, 27, 77, .7) !important;
  margin: 0 0 32px !important;
}

.wpforms-container-full .wpforms-required-label {
   display: none !important;
 }


/* ============ Footer ============ */
footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
  border-top: 3px solid rgba(255, 255, 255, .08)
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px
}

.foot-grid>div>p {
  font-weight: 600;
  font-size: .92rem;
  color: rgba(255, 255, 255, .6);
  max-width: 300px;
  margin-top: 16px
}

.foot-col h4 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--yellow);
  margin-bottom: 18px
}

.foot-col ul {
  list-style: none;
  display: grid;
  gap: 12px
}

.foot-col a {
  font-weight: 700;
  font-size: .92rem;
  color: rgba(255, 255, 255, .7);
  transition: color .3s, padding-left .3s
}

.foot-col a:hover {
  color: var(--mint);
  padding-left: 5px
}

.foot-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: .92rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 14px;
  transition: color .3s
}

.foot-contact a:hover {
  color: var(--pink)
}

.foot-contact a.whatsapp:hover {
  color: var(--mint);
}

.foot-contact .cic {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 2.5px solid rgba(255, 255, 255, .25);
  transform: rotate(-4deg);
}

.foot-bottom {
  border-top: 2px dashed rgba(255, 255, 255, .14);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

/* ============ Reveal & misc ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(.98);
  transition: opacity .8s var(--easeout), transform .8s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.reveal[data-delay="1"] {
  transition-delay: .08s
}

.reveal[data-delay="2"] {
  transition-delay: .16s
}

.reveal[data-delay="3"] {
  transition-delay: .24s
}

.reveal[data-delay="4"] {
  transition-delay: .32s
}

#toTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  cursor: pointer;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 7px 0 rgba(0, 0, 0, .3);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .4s, transform .45s var(--ease);
}

#toTop.show {
  opacity: 1;
  transform: rotate(-4deg);
  pointer-events: auto
}

#toTop:hover {
  transform: rotate(4deg) translateY(-4px)
}

/* ============ Responsive ============ */
@media(max-width:1060px) {
  .tilt-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tc-2,
  .tc-4 {
    margin-top: 0
  }

  .price-row {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto 22px
  }

  .pc-2 {
    transform: rotate(1deg)
  }

  .fc-ssl {
    left: -2%
  }

  .fc-speed {
    right: -2%
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .split.rev .split-art {
    order: 0
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px
  }

  .val-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto 70px
  }
}

@media(max-width:880px) {
  .nav-links {
    display: none
  }

  .nav-right .btn {
    display: none
  }

  .burger {
    display: grid
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .rb-left,
  .rb-right {
    opacity: .5;
    width: 260px
  }

  .orbit {
    width: 420px;
    height: 420px
  }
}

@media(max-width:620px) {
  .hero {
    padding-top: 130px;
    border-radius: 0 0 36px 36px
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.1rem)
  }

  .page-hero {
    padding: 150px 0 76px;
    border-radius: 0 0 32px 32px
  }

  .tilt-grid,
  .fg-grid {
    grid-template-columns: 1fr
  }

  .tc-1,
  .tc-2,
  .tc-3,
  .tc-4 {
    transform: rotate(0)
  }

  .fcard {
    display: none
  }

  .orbit {
    display: none
  }

  .hero-stage {
    min-height: 0;
    margin-top: 46px
  }

  .cream,
  .faq-sec,
  .svc-detail.alt {
    border-radius: 36px;
    padding-top: 84px;
    padding-bottom: 84px
  }

  .audience {
    padding: 100px 0
  }

  .bigcta {
    padding: 90px 0
  }

  .cta-card,
  .support-card {
    padding: 64px 7%;
    border-radius: 36px
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .hero-ctas .btn {
    width: 100%
  }

  .car-head {
    flex-direction: column;
    align-items: flex-start
  }

  .feat-list {
    grid-template-columns: 1fr
  }

  .form-card {
    padding: 38px 22px !important;
    border-radius: 30px !important
  }


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

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  .reveal,
  .pop {
    opacity: 1;
    transform: none
  }

  .hline .w {
    transform: none
  }

  .word-spin span.on {
    opacity: 1;
    transform: none
  }
}

/* ============ Services dropdown submenu ============ */
.has-sub {
  position: relative
}

.has-sub>a {
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.has-sub .caret {
  transition: transform .4s var(--ease)
}

.has-sub:hover>a .caret,
.has-sub:focus-within>a .caret {
  transform: rotate(180deg)
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 18px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .3s var(--easeout), visibility .3s;
}

.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible
}

.submenu-card {
  width: 560px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 26px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  box-shadow: 0 14px 0 rgba(0, 0, 0, .3);
  position: relative;
  transform-origin: top center;
  transform: translateY(16px) rotate(-1.5deg) scale(.96);
  transition: transform .5s var(--ease);
}

.has-sub:hover .submenu-card,
.has-sub:focus-within .submenu-card {
  transform: translateY(0) rotate(0) scale(1)
}

.submenu-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -9px;
  width: 18px;
  height: 18px;
  background: var(--cream);
  border-left: 3px solid var(--ink);
  border-top: 3px solid var(--ink);
  transform: rotate(45deg);
  border-radius: 5px 0 0 0;
}

.nav-links .submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 18px;
  border: 2.5px solid transparent;
  color: var(--ink);
  font-weight: 800;
  font-size: .88rem;
  transition: background .25s, border-color .25s, transform .35s var(--ease);
  transform: none;
}

.nav-links .submenu a:hover {
  background: #fff;
  border-color: var(--ink);
  color: var(--ink);
  transform: translateX(4px) rotate(-1deg)
}

.submenu .si {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 13px;
  border: 2.5px solid var(--ink);
  display: grid;
  place-items: center;
  color: var(--ink);
  transform: rotate(-5deg);
  transition: transform .4s var(--ease);
}

.nav-links .submenu a:hover .si {
  transform: rotate(5deg) scale(1.08)
}

.submenu .st b {
  display: block;
  font-family: var(--disp);
  font-weight: 700;
  line-height: 1.2
}

.submenu .st small {
  display: block;
  font-family: var(--body-f);
  font-weight: 700;
  font-size: .7rem;
  color: rgba(27, 27, 77, .6);
  line-height: 1.3
}

.nav-links .submenu a.sub-all {
  grid-column: 1/-1;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  padding: 12px;
  border-top: 2.5px dashed rgba(27, 27, 77, .25);
  border-radius: 0 0 14px 14px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav-links .submenu a.sub-all:hover {
  background: var(--yellow);
  border-color: transparent;
  border-top-color: rgba(27, 27, 77, .25);
  transform: none
}

@media(max-width:880px) {
  .submenu {
    display: none
  }
}

/* mobile submenu group */
.mm-sub {
  padding: 2px 0 8px;
  border-bottom: 2px dashed rgba(255, 255, 255, .12)
}

.mm-sub a {
  font-family: var(--body-f);
  font-weight: 800;
  font-size: .92rem;
  color: rgba(255, 255, 255, .72);
  padding: 9px 10px 9px 26px;
  border-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mm-sub a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--ink)
}

.mm-sub a:nth-child(1)::before {
  background: var(--pink)
}

.mm-sub a:nth-child(2)::before {
  background: #9DB8FF
}

.mm-sub a:nth-child(3)::before {
  background: var(--mint)
}

.mm-sub a:nth-child(4)::before {
  background: var(--yellow)
}

.mm-sub a:nth-child(5)::before {
  background: var(--orange)
}

/* ============ Footer socials ============ */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px
}

.soc {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 2.5px solid var(--ink);
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 0 5px 0 rgba(0, 0, 0, .32);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.soc:nth-child(odd) {
  transform: rotate(-4deg)
}

.soc:nth-child(even) {
  transform: rotate(3deg)
}

.soc:hover {
  transform: rotate(0) translateY(-5px) scale(1.08);
  box-shadow: 0 9px 0 rgba(0, 0, 0, .32)
}


/* WordPress compatibility helpers */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  z-index: 99999;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}

.thalhost-elementor-content {
  padding: 60px 0;
  background: var(--white);
}

.thalhost-post-wrap {
  padding: 150px 0 80px;
}

.thalhost-post-card {
  background: var(--navy) !important;
  padding: 30px;
}

.thalhost-post-card+.thalhost-post-card {
  margin-top: 24px;
}

.thalhost-post-card img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.thalhost-pagination {
  margin-top: 34px;
  font-weight: 800;
}

.thalhost-pagination .nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.thalhost-pagination a,
.thalhost-pagination span {
  padding: 8px 13px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--cream);
  text-decoration: none;
}

.wp-caption,
.aligncenter {
  max-width: 100%;
}

.alignwide {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100%;
  max-width: 100%;
}

/* ============ Selectable WordPress editor templates ============ */
.thalhost-editor-template {
  background: var(--navy);
}

.thalhost-editor-hero {
  position: relative;
}

.thalhost-editor-section {
  background:
    radial-gradient(700px 360px at 12% 0%, rgba(255, 138, 194, .20), transparent 62%),
    radial-gradient(680px 340px at 88% 18%, rgba(79, 227, 193, .18), transparent 62%),
    var(--navy);
  padding: 90px 0 110px;
}

.thalhost-editor-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--r-big);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .32);
  padding: clamp(28px, 5vw, 58px);
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.thalhost-editor-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  opacity: .92;
}

.thalhost-editor-content {
  position: relative;
  z-index: 2;
  font-size: 1.06rem;
  line-height: 1.8;
  font-weight: 600;
}

.thalhost-editor-content>*:first-child {
  margin-top: 0;
}

.thalhost-editor-content>*:last-child {
  margin-bottom: 0;
}

.thalhost-editor-content h1,
.thalhost-editor-content h2,
.thalhost-editor-content h3,
.thalhost-editor-content h4,
.thalhost-editor-content h5,
.thalhost-editor-content h6 {
  font-family: var(--disp);
  color: var(--ink);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 1.15em 0 .45em;
}

.thalhost-editor-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
}

.thalhost-editor-content h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.thalhost-editor-content h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.thalhost-editor-content p {
  margin: 0 0 1.1em;
}

.thalhost-editor-content a {
  color: var(--purple);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.thalhost-editor-content ul,
.thalhost-editor-content ol {
  margin: 0 0 1.3em 1.35em;
  padding: 0;
}

.thalhost-editor-content li {
  margin: .45em 0;
}

.thalhost-editor-content blockquote {
  margin: 1.5em 0;
  padding: 22px 26px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .22);
  font-weight: 800;
}

.thalhost-editor-featured {
  margin: 0 0 34px;
  position: relative;
  z-index: 2;
}

.thalhost-editor-featured img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .24);
}

.thalhost-editor-meta,
.thalhost-editor-meta a {
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
}

.thalhost-editor-meta span {
  margin: 0 8px;
}

.thalhost-page-links {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 800;
}

.thalhost-page-links a,
.thalhost-page-links span {
  padding: 8px 13px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.thalhost-editor-pagination {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 620px) {
  .thalhost-editor-section {
    padding: 60px 0 80px;
  }

  .thalhost-editor-card {
    border-radius: 30px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .28);
  }
}