:root {
  --bg: #080c14;
  --panel: rgba(21, 27, 40, 0.78);
  --panel-solid: #111827;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f2ea;
  --muted: #aab0bf;
  --gold: #f6ad16;
  --gold-dark: #c87903;
  --navy: #0b1220;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", Arial, sans-serif;
  --mouse-x: 72%;
  --mouse-y: 22%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 12%, rgba(246, 173, 22, 0.14), transparent 24rem),
    radial-gradient(circle at 15% 35%, rgba(55, 98, 160, 0.18), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(246, 173, 22, 0.14), transparent 19rem),
    radial-gradient(circle at calc(var(--mouse-x) - 18%) calc(var(--mouse-y) + 20%), rgba(48, 118, 255, 0.1), transparent 24rem);
  content: "";
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.cursor-trail {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: var(--trail-size, 16px);
  height: var(--trail-size, 16px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 16%, rgba(246, 173, 22, 0.74) 28%, rgba(246, 173, 22, 0.16) 56%, transparent 72%);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.8),
    0 0 34px rgba(246, 173, 22, 0.5);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  animation: cursorTrail 620ms ease-out forwards;
  mix-blend-mode: screen;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  line-height: 0.98;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 6px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 70px;
  padding: 12px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 12, 20, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.brand-word,
.footer-brand .brand-word {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1;
}

.sun-o {
  position: relative;
  display: inline-grid;
  width: 0.68em;
  height: 0.68em;
  margin: 0 0.02em;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 35%, #fff7bd 0 12%, #ffd75a 23%, #f6ad16 52%, #b96f00 100%);
  box-shadow:
    0 0 0 0.08em rgba(246, 173, 22, 0.2),
    0 0 18px rgba(246, 173, 22, 0.72);
  transform: translateY(0.05em);
  animation: sunGlow 2.6s ease-in-out infinite;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  color: #d8dce7;
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid rgba(246, 173, 22, 0.75);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffc02b, var(--gold));
  color: #16100a;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(246, 173, 22, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  animation: buttonPulse 4.8s ease-in-out infinite;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(246, 173, 22, 0.26);
}

.button-small {
  min-height: 44px;
  padding-inline: 24px;
  font-size: 0.92rem;
}

.button-ghost,
.button.muted {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 20, 0.99) 0%, rgba(8, 12, 20, 0.74) 42%, rgba(8, 12, 20, 0.08) 100%),
    linear-gradient(180deg, transparent 0%, rgba(8, 12, 20, 0.22) 65%, var(--bg) 100%),
    url("assets/hero-communications.png") center right / cover no-repeat;
  filter: saturate(1) contrast(1.1);
  transform: scale(1.05);
  transform-origin: 76% 45%;
  animation: heroSurge 9s ease-in-out infinite alternate;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: auto;
  z-index: 1;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 8%;
  right: -16%;
  width: min(62vw, 820px);
  height: min(62vw, 820px);
  background:
    radial-gradient(circle at 58% 34%, rgba(255, 203, 94, 0.28), transparent 18%),
    radial-gradient(circle, rgba(246, 173, 22, 0.18), transparent 62%);
  filter: blur(16px);
  animation: amberBreath 4.8s ease-in-out infinite;
}

.hero::after {
  bottom: 8%;
  left: -14%;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(47, 117, 255, 0.16), transparent 64%);
  filter: blur(22px);
  animation: blueBreath 9s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 4;
  padding-top: 118px;
  animation: headlineRise 900ms ease both;
}

.hero-inner.container {
  max-width: 1200px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid rgba(246, 173, 22, 0.48);
  border-radius: 999px;
  background: rgba(246, 173, 22, 0.08);
  color: #ffc95d;
  font-size: 0.9rem;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  min-height: 3.9em;
  font-size: clamp(4rem, 7vw, 6.7rem);
  letter-spacing: 0;
  text-shadow:
    0 0 26px rgba(255, 255, 255, 0.08),
    0 18px 60px rgba(0, 0, 0, 0.55);
}

.type-hero {
  position: relative;
}

.type-hero::after {
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.04em;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(246, 173, 22, 0.58);
  content: "";
  transform: translateY(0.08em);
  animation: typeCaret 620ms steps(1) infinite;
}

.type-hero.typed-complete::after {
  display: none;
}

.hero-copy {
  max-width: 680px;
  margin-top: 30px;
  color: #bcc3d2;
  font-size: 1.32rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.hero .actions {
  transform: translateY(-14px);
}

section {
  position: relative;
}

.about,
.services,
.packages,
.legacy-addon,
.contact {
  padding: 108px 0;
  overflow: hidden;
}

.about {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 15, 25, 0.7);
}

.about::before,
.services::before,
.packages::before,
.legacy-addon::before,
.contact::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 8%, rgba(246, 173, 22, 0.055), transparent 30%),
    radial-gradient(circle at 76% 20%, rgba(58, 127, 255, 0.1), transparent 28rem);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18%);
  transition:
    opacity 900ms ease,
    transform 1400ms ease;
}

.about:has(.in-view)::before,
.services:has(.in-view)::before,
.packages:has(.in-view)::before,
.legacy-addon:has(.in-view)::before,
.contact:has(.in-view)::before {
  opacity: 1;
  transform: translateX(0);
}

.center {
  text-align: center;
}

.narrow {
  max-width: 840px;
  margin-inline: auto;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.about p,
.center p,
.section-intro p,
.contact p,
footer p {
  color: var(--muted);
  font-size: 1.16rem;
}

.about p {
  margin-top: 28px;
}

.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, #f7a500, #ffd46a, #f7a500);
  background-size: 220% 100%;
  color: #10141d;
  white-space: nowrap;
  animation: moltenBand 4.8s ease-in-out infinite;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.35vw, 2.35rem);
  font-weight: 800;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.42);
  animation: slide 12s linear infinite;
}

.marquee b {
  opacity: 0.45;
}

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

.section-intro {
  max-width: 700px;
  margin-bottom: 78px;
}

.section-intro p {
  margin-top: 24px;
}

.newsletter-form {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 34px auto 0;
  padding: 24px;
  border: 1px solid rgba(246, 173, 22, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(246, 173, 22, 0.08), transparent 42%),
    rgba(8, 14, 27, 0.72);
  text-align: left;
}

.newsletter-form label {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.newsletter-form label span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

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

.fit-section,
.trust-section,
.final-cta {
  position: relative;
  border-top: 1px solid var(--line);
  background: #080d17;
  overflow: hidden;
}

.fit-section {
  padding: 32px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 173, 22, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(9, 14, 24, 0.96), #080d17);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.52fr) minmax(0, 1.48fr);
  gap: 42px;
  align-items: center;
}

.fit-grid h2,
.trust-grid h2,
.final-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.fit-list {
  position: relative;
  display: block;
  min-height: 250px;
  padding: 12px 18px 12px 44px;
}

.fit-list span {
  position: absolute;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  width: max-content;
  max-width: 230px;
  border: 1px solid rgba(246, 173, 22, 0.26);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(16, 30, 51, 0.9);
  color: #edf2ff;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(246, 173, 22, 0.06);
  animation: orgChipFloat 3.6s ease-in-out infinite;
}

.fit-list span:nth-child(1) { left: 8%; top: 12%; }
.fit-list span:nth-child(2) { left: 25%; top: 5%; }
.fit-list span:nth-child(3) { left: 43%; top: 15%; }
.fit-list span:nth-child(4) { left: 61%; top: 7%; }
.fit-list span:nth-child(5) { left: 78%; top: 18%; }
.fit-list span:nth-child(6) { left: 13%; top: 39%; }
.fit-list span:nth-child(7) { left: 35%; top: 34%; }
.fit-list span:nth-child(8) { left: 54%; top: 46%; }
.fit-list span:nth-child(9) { left: 74%; top: 42%; }
.fit-list span:nth-child(10) { left: 10%; top: 67%; }
.fit-list span:nth-child(11) { left: 30%; top: 72%; }
.fit-list span:nth-child(12) { left: 58%; top: 69%; }
.fit-list span:nth-child(13) { left: 81%; top: 66%; }

@supports not (position: absolute) {
  .fit-list {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
    gap: 7px;
    align-content: center;
    justify-content: flex-start;
  }

  .fit-list span {
    position: static;
  }
}

.fit-list span:nth-child(2n) {
  animation-delay: 0.25s;
}

.fit-list span:nth-child(3n) {
  animation-delay: 0.5s;
}

.fit-list span:nth-child(4n) {
  animation-delay: 0.75s;
}

.service-card,
.package-card,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(23, 31, 47, 0.86), rgba(14, 19, 30, 0.78));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-card::before,
.package-card::before,
.contact-form::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.16) 26%, transparent 42%);
  content: "";
  opacity: 0;
  transform: translateX(-115%);
  transition:
    opacity 220ms ease,
    transform 760ms cubic-bezier(0.18, 0.84, 0.32, 1);
}

.service-card:hover,
.package-card:hover,
.contact-form:hover {
  border-color: rgba(246, 173, 22, 0.4);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(246, 173, 22, 0.1);
  transform: translateY(-10px) rotateX(2deg);
}

.service-card:hover::before,
.package-card:hover::before,
.contact-form:hover::before {
  opacity: 1;
  transform: translateX(115%);
}

.service-card {
  min-height: 200px;
  padding: 26px 22px;
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(246, 173, 22, 0.42);
  border-radius: 50%;
  background: rgba(246, 173, 22, 0.11);
  color: var(--gold);
  font-size: 1.08rem;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(246, 173, 22, 0.13);
  animation: iconPulse 3.4s ease-in-out infinite;
}

.service-card h3,
.package-card h3 {
  font-size: 1.55rem;
}

.service-card h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-card p,
.package-card p,
.package-card li {
  color: var(--muted);
  font-size: 1rem;
}

.service-card p {
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 82px min(6vw, 80px);
  background: rgba(19, 24, 35, 0.94);
  overflow: hidden;
}

.stats::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(246, 173, 22, 0.12), transparent);
  content: "";
  transform: translateX(-100%);
  animation: statSweep 5.5s ease-in-out infinite;
}

.stat {
  position: relative;
  z-index: 1;
}

.stat { text-align: center; }

.stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: 0.9;
  text-shadow: 0 0 30px rgba(246, 173, 22, 0.28);
  animation: numberGlow 3.6s ease-in-out infinite;
}

.stat span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
  max-width: 260px;
  margin-inline: auto;
  line-height: 1.45;
}

.trust-section {
  padding: 52px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(76, 144, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 18% 88%, rgba(246, 173, 22, 0.08), transparent 24rem),
    #070b13;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.trust-intro {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 2px;
}

.trust-intro .eyebrow {
  align-self: start;
}

.trust-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(246, 173, 22, 0.08), transparent 36%),
    rgba(14, 20, 32, 0.82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.trust-card h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.18;
}

.trust-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.52;
}

.trust-points {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  position: relative;
  min-height: 30px;
  padding: 7px 9px 7px 32px;
  border: 1px solid rgba(246, 173, 22, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #dde7f9;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
  animation: pointPulse 3.2s ease-in-out infinite;
}

.trust-points li:nth-child(2) {
  animation-delay: 0.35s;
}

.trust-points li:nth-child(3) {
  animation-delay: 0.7s;
}

.trust-points li:nth-child(4) {
  animation-delay: 1.05s;
}

.trust-points li:nth-child(5) {
  animation-delay: 1.4s;
}

.trust-points li::before {
  position: absolute;
  left: 11px;
  top: 9px;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.packages .center p {
  margin-top: 26px;
}

.sale-badge {
  display: inline-grid;
  width: 132px;
  height: 132px;
  margin-top: 24px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff0a6 0 10%, transparent 18%),
    linear-gradient(135deg, #ffc52f, #f6ad16 58%, #c87400);
  color: #120d05;
  box-shadow:
    0 22px 50px rgba(246, 173, 22, 0.24),
    0 0 42px rgba(246, 173, 22, 0.22);
  text-align: center;
  text-transform: uppercase;
  animation: saleBadgePop 1.8s ease-in-out infinite;
}

.sale-badge strong {
  display: block;
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 2.35rem;
  line-height: 0.8;
}

.sale-badge span {
  display: block;
  max-width: 82px;
  margin-top: -8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 28px 24px;
}

.package-card > p {
  min-height: 56px;
  margin-top: 12px;
}

.price {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  color: var(--text);
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 22px rgba(246, 173, 22, 0.1);
}

.price del {
  width: fit-content;
  color: #c5cfdf;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 4px;
  text-shadow: none;
}

.price strong {
  color: #fff;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 900;
}

.price span {
  margin-left: 2px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
}

.setup {
  min-height: auto !important;
  margin-top: 8px !important;
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 14px;
  margin: 36px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.package-card li::before,
.promise-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
}

.package-card .button {
  width: 100%;
  margin-top: auto;
  min-height: 50px;
  padding-inline: 16px;
}

.legacy-addon {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 22%, rgba(246, 173, 22, 0.09), transparent 24rem),
    radial-gradient(circle at 72% 62%, rgba(76, 144, 255, 0.08), transparent 28rem),
    #090f1d;
}

.legacy-addon::after {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(246, 173, 22, 0.12) 0 1px, transparent 1px);
  background-position:
    0 0,
    32px 46px;
  background-size:
    88px 88px,
    132px 132px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.legacy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: center;
}

.legacy-copy h2 {
  max-width: 640px;
  font-family: var(--font-sans);
  font-size: clamp(3.4rem, 5.7vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.legacy-copy h2 span {
  display: block;
  color: var(--gold);
}

.legacy-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 30px;
  color: #b9c8e3;
  font-size: 1.18rem;
  line-height: 1.7;
}

.legacy-card {
  max-width: 560px;
  margin-top: 58px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(8, 14, 27, 0.78);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.availability-card {
  max-width: 560px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(246, 173, 22, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(246, 173, 22, 0.08), transparent 36%),
    rgba(8, 14, 27, 0.72);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.availability-card:hover {
  border-color: rgba(246, 173, 22, 0.42);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(246, 173, 22, 0.1);
}

.availability-head {
  display: grid;
  gap: 10px;
}

.availability-head .eyebrow {
  margin-bottom: 0;
}

.availability-head h3 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 900;
}

.availability-head span {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.day-slot {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 9px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(4, 8, 15, 0.54);
  text-align: center;
}

.day-slot strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day-slot span {
  color: #b9c8e3;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.day-slot.active {
  border-color: rgba(246, 173, 22, 0.34);
  background:
    linear-gradient(180deg, rgba(246, 173, 22, 0.12), rgba(4, 8, 15, 0.58));
}

.day-slot.active strong {
  color: var(--gold);
}

.day-slot.unavailable {
  opacity: 0.48;
}

.legacy-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legacy-card h3 {
  max-width: 240px;
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.25;
}

.legacy-card-head p {
  margin-top: 8px;
  color: #b9c8e3;
  font-size: 0.92rem;
  font-style: italic;
}

.legacy-price {
  padding: 18px;
  border: 1px solid rgba(139, 169, 219, 0.32);
  border-radius: 16px;
  background: rgba(20, 29, 48, 0.9);
  text-align: center;
}

.legacy-price strong {
  display: block;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.12;
}

.legacy-price span {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legacy-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.legacy-features li {
  position: relative;
  padding-left: 32px;
  color: #eef4ff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.legacy-features li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(139, 169, 219, 0.18);
  color: var(--gold);
  content: "✓";
  font-size: 0.8rem;
}

.legacy-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  overflow: visible;
}

.legacy-author {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-width: 620px;
  border: 1px solid rgba(246, 173, 22, 0.18);
  border-radius: 24px;
  filter:
    drop-shadow(0 38px 80px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 34px rgba(246, 173, 22, 0.1));
  opacity: 0;
  transform: translateY(42px) scale(0.94);
  transform-origin: center bottom;
}

.legacy-grid.in-view .legacy-author,
.legacy-visual.in-view .legacy-author {
  animation: authorReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) 180ms forwards;
}

.contact {
  padding-top: 24px;
  padding-bottom: 108px;
  border-top: 1px solid var(--line);
  background: rgba(9, 14, 24, 0.76);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.contact-copy {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(500px, 1.34fr);
  gap: 18px;
  align-items: start;
  max-width: 100%;
  overflow: visible;
}

.contact-intro-text {
  position: relative;
  z-index: 6;
  padding-top: 18px;
  padding-bottom: 0;
}

.contact-options {
  position: relative;
  z-index: 4;
  margin-top: -470px;
}

.contact h2 {
  max-width: 620px;
}

.contact p {
  margin-top: 18px;
}

.promise-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: #d9dfec;
  font-weight: 800;
  list-style: none;
}

.booking-card {
  display: flex;
  flex-direction: column;
  max-width: none;
  margin-top: 0;
}

.booking-fields {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(246, 173, 22, 0.22);
  border-radius: 16px;
  background: rgba(4, 8, 15, 0.56);
  animation: detailsOpen 260ms ease both;
}

.booking-fields[hidden] {
  display: none;
}

.booking-selected {
  padding: 12px 14px;
  border: 1px solid rgba(246, 173, 22, 0.32);
  border-radius: 999px;
  background: rgba(246, 173, 22, 0.1);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.booking-fields textarea {
  min-height: 86px;
}

.booking-card .button {
  width: 100%;
  margin-top: auto;
}

.year-booking {
  margin-top: 18px;
}

.calendar-title {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.calendar-title strong {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 900;
  text-align: center;
}

.calendar-nav {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(246, 173, 22, 0.28);
  border-radius: 50%;
  background: rgba(246, 173, 22, 0.08);
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 1.6rem;
  font-weight: 900;
}

.calendar-nav:hover:not(:disabled) {
  background: var(--gold);
  color: #10141d;
}

.calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

.calendar-subtitle {
  margin: -2px 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.contact-options {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.option-head {
  display: grid;
  gap: 10px;
}

.option-head .eyebrow {
  margin-bottom: 0;
}

.option-head h3 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 900;
}

.month-view {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.mini-weekdays,
.month-view {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.mini-weekdays {
  margin-bottom: 6px;
}

.mini-weekdays span {
  color: #8f9bb0;
  font-size: 0.56rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.mini-day {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce7fb;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.mini-day.empty {
  background: transparent;
  pointer-events: none;
}

.mini-day.open {
  border-color: rgba(246, 173, 22, 0.16);
}

.mini-day.open:hover,
.mini-day.selected {
  border-color: rgba(246, 173, 22, 0.68);
  background: rgba(246, 173, 22, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.mini-day.closed {
  color: #596274;
  cursor: not-allowed;
  opacity: 0.45;
}

.slot-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(246, 173, 22, 0.2);
  border-radius: 16px;
  background: rgba(4, 8, 15, 0.54);
}

.slot-panel h4 {
  margin: 0;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.1rem;
}

.slot-panel p {
  margin: 8px 0 0;
  color: #b9c8e3;
  font-size: 0.95rem;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.slot-grid button {
  min-height: 42px;
  border: 1px solid rgba(246, 173, 22, 0.28);
  border-radius: 999px;
  background: rgba(246, 173, 22, 0.08);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.slot-grid button:hover,
.slot-grid button.selected {
  border-color: rgba(246, 173, 22, 0.8);
  background: var(--gold);
  color: #10141d;
}

.slot-grid button.booked,
.slot-grid button:disabled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: #657086;
  cursor: not-allowed;
}

.promise-list li {
  position: relative;
  padding-left: 28px;
}

.customer-success-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(720px, 60vw, 860px);
  margin-top: -62px;
  display: grid;
  place-items: end center;
  overflow: visible;
  isolation: isolate;
}

.customer-success-visual::before {
  position: absolute;
  inset: auto;
  bottom: 4%;
  left: 50%;
  width: min(92%, 780px);
  height: 130px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(246, 173, 22, 0.16), rgba(76, 144, 255, 0.07) 46%, transparent 74%);
  content: "";
  opacity: 0.62;
  filter: blur(18px);
  transform: translateX(-50%);
}

.customer-success-visual::after {
  content: none;
}

.customer-success-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: clamp(1040px, 86vw, 1240px);
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 42px 58px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 18px rgba(246, 173, 22, 0.08));
  transform-origin: center bottom;
  opacity: 0;
  transform: translateY(68px) scale(0.88);
}

.customer-success-visual.in-view img,
.contact-grid.in-view .customer-success-visual img {
  animation: portraitPop 920ms cubic-bezier(0.16, 1, 0.3, 1) 140ms forwards;
}

.final-cta {
  padding: 46px 0;
  background:
    linear-gradient(115deg, rgba(246, 173, 22, 0.13), transparent 42%),
    #080d17;
}

.final-cta-inner {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}

.final-cta .actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, max-content) 1fr max-content;
  gap: 18px;
  padding: 30px;
}

.contact-form .button {
  grid-row: 7;
}

label {
  display: grid;
  gap: 9px;
  color: #dfe4ee;
  font-size: 0.92rem;
  font-weight: 800;
}

.span-2 {
  grid-column: span 2;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(4, 8, 15, 0.64);
  color: var(--text);
  font: inherit;
  outline: none;
  text-overflow: ellipsis;
}

input {
  min-height: 52px;
  padding: 0 16px;
}

textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.form-status {
  min-height: 1.35em;
  margin-top: 0;
  color: #b9c8e3;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status.success {
  color: var(--gold);
}

.form-status.error {
  color: #ffb4a8;
}

input:focus,
textarea:focus {
  border-color: rgba(246, 173, 22, 0.68);
  box-shadow: 0 0 0 3px rgba(246, 173, 22, 0.12);
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(60px) scale(0.97);
  transition:
    opacity 900ms ease,
    filter 900ms ease,
    transform 900ms cubic-bezier(0.18, 0.84, 0.32, 1);
}

.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

footer {
  padding: 68px 0 28px;
  border-top: 1px solid var(--line);
  background: #070a10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.62fr 1.28fr;
  gap: 58px;
}

footer h3 {
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer p {
  margin-top: 16px;
  font-size: 1rem;
}

.connect-line {
  display: flex;
  gap: 6px;
  align-items: baseline;
  white-space: nowrap;
}

.connect-line strong {
  color: #fff;
  font-weight: 900;
}

footer a:not(.footer-brand) {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal p,
.legal a {
  color: #878f9f;
  font-size: 0.92rem;
}

.legal div {
  display: flex;
  gap: 24px;
}

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

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

}

@media (max-width: 880px) {
  .site-header {
    padding-inline: 22px;
  }

  nav {
    display: none;
  }

  .brand {
    display: grid;
    gap: 2px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(8, 12, 20, 0.82), rgba(8, 12, 20, 0.98) 65%),
      url("assets/hero-communications.png") center top / cover no-repeat;
  }

  .hero-inner {
    padding-top: 104px;
    transform: none;
  }

  h1 {
    min-height: 3.2em;
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .hero-copy {
    max-width: 620px;
    margin-top: 22px;
  }

  .hero .actions {
    transform: none;
  }

  .service-grid,
  .fit-grid,
  .stats,
  .trust-grid,
  .trust-intro,
  .legacy-grid,
  .contact-copy,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .customer-success-visual {
    min-height: 560px;
    margin-top: -18px;
  }

  .customer-success-visual img {
    height: 880px;
  }

  .contact-options {
    margin-top: -80px;
  }

  .legacy-visual {
    min-height: auto;
  }

  .legacy-author {
    width: min(100%, 560px);
    max-width: 560px;
  }

  .legacy-card {
    max-width: none;
  }

  .availability-card {
    max-width: none;
  }

  .availability-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

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

  .stats {
    gap: 34px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .contact-form .button {
    grid-row: auto;
  }

  .span-2 {
    grid-column: auto;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .fit-list {
    min-height: 310px;
  }

  .fit-list span:nth-child(1) { left: 3%; top: 6%; }
  .fit-list span:nth-child(2) { left: 36%; top: 2%; }
  .fit-list span:nth-child(3) { left: 64%; top: 10%; }
  .fit-list span:nth-child(4) { left: 8%; top: 27%; }
  .fit-list span:nth-child(5) { left: 45%; top: 23%; }
  .fit-list span:nth-child(6) { left: 69%; top: 34%; }
  .fit-list span:nth-child(7) { left: 2%; top: 51%; }
  .fit-list span:nth-child(8) { left: 36%; top: 48%; }
  .fit-list span:nth-child(9) { left: 66%; top: 58%; }
  .fit-list span:nth-child(10) { left: 8%; top: 74%; }
  .fit-list span:nth-child(11) { left: 35%; top: 78%; }
  .fit-list span:nth-child(12) { left: 55%; top: 72%; }
  .fit-list span:nth-child(13) { left: 75%; top: 83%; }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .legal {
    flex-direction: column;
  }

  .package-grid {
    margin-top: 48px;
  }

  .sale-badge {
    width: 112px;
    height: 112px;
  }

  .sale-badge strong {
    font-size: 2rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .site-header .button {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-inner {
    padding-top: 96px;
  }

  h1 {
    min-height: 3em;
    font-size: clamp(2.72rem, 13vw, 4rem);
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .hero-copy {
    margin-top: 18px;
  }

  .hero-copy,
  .about p,
  .center p,
  .section-intro p,
  .contact p,
  .final-cta p:not(.eyebrow) {
    font-size: 1rem;
  }

  .fit-section,
  .trust-section,
  .final-cta {
    padding-block: 38px;
  }

  .fit-list span {
    position: static;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.84rem;
  }

  .fit-list {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
    padding-inline: 0;
  }

  .customer-success-visual {
    min-height: 360px;
    margin-top: 0;
  }

  .customer-success-visual img {
    height: 560px;
  }

  .contact-options {
    margin-top: 18px;
  }

  .actions,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .actions .button {
    width: 100%;
  }

  .package-grid {
    display: grid;
    margin-top: 38px;
  }

  .package-card {
    min-height: auto;
  }

  .package-card > p {
    min-height: auto;
  }

  .price {
    margin-top: 16px;
  }

  .price strong {
    font-size: clamp(2.3rem, 12vw, 3.3rem);
  }

  .sale-badge {
    width: 98px;
    height: 98px;
    margin-top: 18px;
  }

  .sale-badge strong {
    margin-top: 14px;
    font-size: 1.75rem;
  }

  .sale-badge span {
    max-width: 70px;
    font-size: 0.62rem;
  }

  .about,
  .services,
  .packages,
  .legacy-addon,
  .contact {
    padding: 76px 0;
  }

  .legacy-visual {
    min-height: auto;
  }

  .legacy-author {
    width: min(100%, 520px);
  }

  .legacy-card-head,
  .legacy-features {
    grid-template-columns: 1fr;
  }

  .legacy-card {
    padding: 24px;
  }

  .availability-card {
    padding: 22px;
  }

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

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

  .calendar-title {
    grid-template-columns: 38px 1fr 38px;
  }

  .legacy-price {
    text-align: left;
  }

  .legacy-visual {
    min-height: 420px;
  }
}

@keyframes heroSurge {
  from {
    filter: saturate(0.95) contrast(1.06) brightness(0.84);
    transform: scale(1.05) translateX(0) rotate(0deg);
    background-position: center right;
  }

  to {
    filter: saturate(1.38) contrast(1.2) brightness(1.08);
    transform: scale(1.13) translateX(24px) rotate(0.45deg);
    background-position: 58% center;
  }
}

@keyframes amberBreath {
  50% {
    opacity: 0.46;
    transform: scale(1.08);
  }
}

@keyframes blueBreath {
  50% {
    opacity: 0.62;
    transform: translate(5%, -5%) scale(1.12);
  }
}

@keyframes cursorTrail {
  0% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(0.72);
  }

  45% {
    opacity: 0.66;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--trail-x, 0px)), calc(-50% + var(--trail-y, 0px))) scale(2.3);
  }
}

@keyframes moltenBand {
  50% {
    background-position: 100% 0;
    filter: saturate(1.2) brightness(1.08);
  }
}

@keyframes headlineRise {
  from {
    opacity: 0;
    transform: translateY(42px);
  }

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

@keyframes typeCaret {
  50% {
    opacity: 0;
  }
}

@keyframes sunGlow {
  50% {
    box-shadow:
      0 0 0 0.1em rgba(246, 173, 22, 0.32),
      0 0 24px rgba(246, 173, 22, 0.9),
      0 0 42px rgba(246, 173, 22, 0.18);
    scale: 1.08;
  }
}

@keyframes buttonPulse {
  50% {
    box-shadow:
      0 12px 35px rgba(246, 173, 22, 0.18),
      0 0 32px rgba(246, 173, 22, 0.18);
  }
}

@keyframes saleBadgePop {
  50% {
    box-shadow:
      0 28px 62px rgba(246, 173, 22, 0.32),
      0 0 60px rgba(246, 173, 22, 0.32);
    transform: scale(1.07) rotate(-3deg);
  }
}

@keyframes iconPulse {
  50% {
    transform: scale(1.08);
  }
}

@keyframes statSweep {
  45%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes numberGlow {
  50% {
    text-shadow:
      0 0 28px rgba(246, 173, 22, 0.42),
      0 0 60px rgba(246, 173, 22, 0.18);
    transform: scale(1.03);
  }
}

@keyframes pointPulse {
  50% {
    border-color: rgba(246, 173, 22, 0.32);
    background: rgba(246, 173, 22, 0.07);
    transform: translateX(4px);
  }
}

@keyframes orgChipFloat {
  50% {
    border-color: rgba(246, 173, 22, 0.52);
    background: rgba(246, 173, 22, 0.1);
    box-shadow:
      0 0 20px rgba(246, 173, 22, 0.16),
      0 0 46px rgba(246, 173, 22, 0.06);
    transform: translateY(-5px);
  }
}

@keyframes detailsOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@keyframes portraitPop {
  0% {
    opacity: 0;
    transform: translateY(68px) scale(0.88);
  }

  64% {
    opacity: 1;
    transform: translateY(-14px) scale(1.045);
  }

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

@keyframes authorReveal {
  0% {
    opacity: 0;
    transform: translateY(42px) scale(0.94);
  }

  68% {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
  }

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

@keyframes authorRevealMobile {
  0% {
    opacity: 0;
    transform: translate(50%, 42px) scale(0.94);
  }

  68% {
    opacity: 1;
    transform: translate(50%, -8px) scale(1.02);
  }

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