:root {
  --bg: #030707;
  --bg-2: #061012;
  --panel: rgba(8, 22, 24, 0.84);
  --panel-solid: #081719;
  --line: rgba(92, 238, 226, 0.16);
  --cyan: #3ee8e0;
  --cyan-soft: rgba(62, 232, 224, 0.16);
  --gold: #d7a83b;
  --gold-2: #ffd66b;
  --text: #ffffff;
  --muted: #a9bbc0;
  --radius: 10px;
  --max: 1920px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 232, 224, 0.13), transparent 30rem),
    radial-gradient(circle at 85% 25%, rgba(215, 168, 59, 0.09), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(62, 232, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 232, 224, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 74%);
}

body h1,
.entry-header,
.wp-block-post-title,
.wp-block-query-title,
.wp-block-site-title,
.wp-block-site-title a,
.page-title,
.post-title,
.wp-site-blocks > header,
header.wp-block-template-part,
.wp-block-template-part:has(.wp-block-site-title),
.wp-block-template-part:has(h1) {
  display: none !important;
}

.site-shell h1,
.site-shell header {
  display: block !important;
}

.site-shell .topbar {
  display: grid !important;
}

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

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

.automation-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.site-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  max-width: 100%;
}

.kg-full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.kg-full-bleed .site-shell {
  width: min(var(--max), calc(100vw - 40px));
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 58px;
  margin-top: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 8px;
  background: rgba(4, 10, 12, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42), 0 0 34px rgba(62, 232, 224, 0.06);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 168, 59, 0.42);
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.logo b {
  color: var(--gold-2);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease;
}

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

.nav-meeting {
  display: none;
}

.top-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.top-cta,
.btn-gold {
  border: 1px solid rgba(255, 214, 107, 0.72);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #110d05;
  box-shadow: 0 10px 28px rgba(215, 168, 59, 0.2);
}

.btn-outline {
  border: 1px solid rgba(215, 168, 59, 0.48);
  background: rgba(215, 168, 59, 0.03);
  color: var(--gold-2);
}

.top-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-btn span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 24px;
  align-items: center;
  min-height: min(680px, calc(100vh - 128px));
  margin-top: 14px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(62, 232, 224, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(3, 7, 7, 0.94), rgba(3, 7, 7, 0.5)),
    url("kg-city-hero.jpeg") center / cover no-repeat;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52), inset 0 0 80px rgba(62, 232, 224, 0.045);
  max-width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 36%, rgba(62, 232, 224, 0.18), transparent 21rem),
    linear-gradient(120deg, transparent 0 55%, rgba(215, 168, 59, 0.05) 56%, transparent 58%);
  pointer-events: none;
  animation: heroEnergy 8s ease-in-out infinite;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  max-width: 760px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold-2);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.7vw, 86px);
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 4.8vw, 74px);
}

h1 span,
h2 span,
.final-cta span {
  color: var(--gold-2);
}

.hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(232, 244, 246, 0.82);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 28px;
  height: 28px;
  margin-left: -6px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.avatars span:first-child {
  margin-left: 0;
}

.hero-social b,
.hero-social small {
  display: block;
  font-size: 12px;
}

.hero-social small {
  color: var(--gold-2);
  margin-top: 2px;
}

.hero-art {
  display: block;
  align-self: end;
  min-height: 500px;
  overflow: hidden;
  pointer-events: none;
}

.hero-art img {
  position: absolute;
  right: 0;
  bottom: -12px;
  width: min(760px, 100%);
  max-width: none;
  --gorilla-x: 0px;
  opacity: 0.96;
  filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.68));
  mask-image:
    radial-gradient(ellipse at 76% 48%, #000 0 34%, rgba(0, 0, 0, 0.88) 45%, rgba(0, 0, 0, 0.36) 58%, transparent 74%),
    linear-gradient(to right, transparent 0%, #000 43%, #000 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    radial-gradient(ellipse at 76% 48%, #000 0 34%, rgba(0, 0, 0, 0.88) 45%, rgba(0, 0, 0, 0.36) 58%, transparent 74%),
    linear-gradient(to right, transparent 0%, #000 43%, #000 100%);
  -webkit-mask-composite: source-in;
  animation: heroFloat 5.8s ease-in-out infinite;
}

.tool-strip,
.section,
.results-panel,
.resource-row,
.final-cta,
.footer,
.copyright {
  position: relative;
  z-index: 1;
}

.tool-strip {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(62, 232, 224, 0.15);
  border-radius: 10px;
  background: rgba(5, 15, 17, 0.82);
  overflow: hidden;
}

.tool-strip p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.tools-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tools-marquee div {
  display: flex;
  width: max-content;
  gap: 50px;
  animation: marquee 25s linear infinite;
}

.tools-marquee b {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  white-space: nowrap;
}

.section {
  padding: clamp(36px, 6vw, 64px) 0;
}

.section-title {
  margin-bottom: 24px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.section-title p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 14px;
}

.services-grid > *,
.footer > * {
  min-width: 0;
}

.services-flip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-flip-card {
  min-height: 230px;
  perspective: 1200px;
  text-align: center;
}

.service-flip-inner {
  position: relative;
  width: 100%;
  min-height: 230px;
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.service-flip-card:hover .service-flip-inner,
.service-flip-card:focus-within .service-flip-inner,
.service-flip-card.is-flipped .service-flip-inner {
  transform: rotateY(180deg);
}

.service-flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, .3);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0, rgba(62, 232, 224, .13), transparent 45%),
    rgba(6, 18, 20, .94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025), 0 18px 40px rgba(0, 0, 0, .2);
  backface-visibility: hidden;
}

.service-flip-face i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
  border: 1px solid rgba(212, 175, 55, .45);
  border-radius: 10px;
  color: var(--gold);
  background: rgba(212, 175, 55, .08);
  font-style: normal;
}

.service-flip-face h3,
.service-flip-face p {
  margin: 0;
}

.service-flip-face h3 {
  font-size: 17px;
}

.service-flip-face p {
  max-width: 22ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.service-flip-back {
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, .14), transparent 55%),
    rgba(5, 15, 17, .98);
}

.service-flip-back a,
.service-flip-toggle {
  color: var(--gold);
  font: inherit;
  font-weight: 700;
}

.service-flip-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .services-flip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-flip-grid {
    grid-template-columns: 1fr;
  }

  .service-flip-card:hover .service-flip-inner {
    transform: none;
  }

  .service-flip-card.is-flipped .service-flip-inner {
    transform: rotateY(180deg);
  }

  .service-flip-toggle {
    display: inline-block;
  }
}

/* Process backbone: staggered command stages with a live teal-to-gold signal. */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 92px 0 56px;
}

.process-track::before {
  top: 50%;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 232, 224, .5) 8%, rgba(62, 232, 224, .38) 68%, rgba(212, 175, 55, .48) 92%, transparent);
  box-shadow: 0 0 24px rgba(62, 232, 224, .16);
}

.process-track::after {
  top: calc(50% - 1px);
  left: 5%;
  width: 20%;
  height: 3px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold-2), transparent);
  box-shadow: 0 0 22px rgba(212, 175, 55, .6);
  animation: processSignal 4.8s linear infinite;
}

.process-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 220px;
  aspect-ratio: auto;
  padding: 30px 28px;
  border: 1px solid rgba(62, 232, 224, .2);
  border-radius: 0;
  clip-path: polygon(0 16px, 16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px));
  background: linear-gradient(145deg, rgba(11, 35, 37, .95), rgba(5, 12, 13, .98) 68%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 20px 50px rgba(0, 0, 0, .25);
  text-align: left;
  overflow: hidden;
}

.process-step::before {
  inset: auto -25% 0 auto;
  width: 72%;
  height: 3px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(62, 232, 224, .72), rgba(212, 175, 55, .58));
  opacity: .9;
}

.process-step i {
  width: 44px;
  height: 44px;
  margin: 0 0 20px;
  border: 1px solid rgba(212, 175, 55, .48);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, .2), rgba(62, 232, 224, .08));
  box-shadow: none;
  animation: none;
}

.process-step b {
  margin: 0 0 10px;
  font-size: 17px;
}

.process-step p {
  font-size: 13px;
  line-height: 1.6;
}

.process-step:nth-child(odd) {
  transform: translateY(-34px);
}

.process-step:nth-child(even) {
  transform: translateY(34px);
}

.process-step.reveal {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.16, 1, .3, 1), border-color 250ms ease, box-shadow 250ms ease;
}

.process-step:nth-child(odd).reveal {
  transform: translate(-54px, -34px);
}

.process-step:nth-child(even).reveal {
  transform: translate(54px, 34px);
}

.process-step:nth-child(odd).reveal.is-visible {
  transform: translateY(-34px);
}

.process-step:nth-child(even).reveal.is-visible {
  transform: translateY(34px);
}

.process-step:hover {
  border-color: rgba(212, 175, 55, .56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 0 30px rgba(62, 232, 224, .11), 0 24px 58px rgba(0, 0, 0, .3);
}

@keyframes processSignal {
  from { transform: translateX(-8%) translateY(-50%); }
  to { transform: translateX(450%) translateY(-50%); }
}

@media (max-width: 1080px) {
  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 34px 0;
  }

  .process-track::before,
  .process-track::after {
    display: none;
  }

  .process-step,
  .process-step:nth-child(odd),
  .process-step:nth-child(even),
  .process-step:nth-child(odd).reveal.is-visible,
  .process-step:nth-child(even).reveal.is-visible {
    transform: none;
  }

  .process-step:nth-child(odd).reveal {
    transform: translateX(-42px);
  }

  .process-step:nth-child(even).reveal {
    transform: translateX(42px);
  }
}

@media (max-width: 640px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step {
    min-height: 184px;
    padding: 26px 24px;
  }

  .process-step:nth-child(odd).reveal,
  .process-step:nth-child(even).reveal {
    transform: translateY(28px);
  }

  .process-step.reveal.is-visible {
    transform: none;
  }
}

.mini-card {
  position: relative;
  min-height: 166px;
  padding: 20px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 0 0, rgba(62, 232, 224, 0.14), transparent 9rem),
    rgba(6, 18, 20, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 16px 45px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 42%, rgba(62, 232, 224, 0.16), transparent 58% 100%);
  transform: translateX(-100%);
  animation: cardSweep 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.mini-card:hover {
  border-color: rgba(62, 232, 224, 0.42);
  box-shadow: 0 0 35px rgba(62, 232, 224, 0.11), 0 18px 55px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.mini-card:nth-child(2n) { --delay: 0.5s; }
.mini-card:nth-child(3n) { --delay: 1s; }
.mini-card:nth-child(4n) { --delay: 1.5s; }

.mini-card i {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border: 1px solid rgba(62, 232, 224, 0.32);
  border-radius: 8px;
  background: rgba(62, 232, 224, 0.12);
  color: var(--cyan);
  font-style: normal;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(62, 232, 224, 0.1);
}

.mini-card h3 {
  position: relative;
  margin-bottom: 8px;
  font-size: 15px;
}

.mini-card p {
  position: relative;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.mini-card a {
  position: relative;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(62, 232, 224, 0.18);
  border-radius: 8px;
  background: rgba(5, 15, 17, 0.84);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--gold-2);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  isolation: isolate;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(62, 232, 224, 0.52), rgba(255, 214, 107, 0.32), rgba(62, 232, 224, 0.52), transparent);
  box-shadow:
    0 0 24px rgba(62, 232, 224, 0.24),
    0 0 36px rgba(255, 214, 107, 0.12);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.process-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  width: 18%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-2), var(--cyan), transparent);
  filter: drop-shadow(0 0 18px rgba(255, 214, 107, 0.72));
  animation: processWave 5.6s ease-in-out infinite;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  justify-self: center;
  width: min(100%, 245px);
  aspect-ratio: 1;
  min-height: 0;
  padding: 30px 20px 26px;
  border: 1px solid rgba(62, 232, 224, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 214, 107, 0.14), transparent 4.2rem),
    radial-gradient(circle at 50% 50%, rgba(62, 232, 224, 0.12), transparent 8.8rem),
    linear-gradient(180deg, rgba(8, 28, 30, 0.84), rgba(3, 10, 11, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 26px 70px rgba(62, 232, 224, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(62, 232, 224, 0.08);
  overflow: visible;
  text-align: center;
  z-index: 2;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 214, 107, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 214, 107, 0.08), transparent 38%),
    linear-gradient(90deg, transparent, rgba(62, 232, 224, 0.08), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.process-step i {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border: 1px solid rgba(62, 232, 224, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 214, 107, 0.16), transparent 2rem),
    radial-gradient(circle, rgba(62, 232, 224, 0.2), rgba(5, 15, 17, 0.98));
  color: var(--gold-2);
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(62, 232, 224, 0.17), inset 0 0 22px rgba(62, 232, 224, 0.08);
  animation: nodeGlow 3s ease-in-out infinite;
  z-index: 5;
}

.process-step b {
  display: block;
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.25;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.results-panel {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 12px;
  background: rgba(5, 15, 17, 0.78);
}

.results-image {
  min-height: 270px;
  overflow: hidden;
  border-radius: 10px;
}

.results-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.testimonial {
  padding: 18px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 10px;
  background: rgba(7, 21, 23, 0.9);
}

.testimonial b,
.testimonial small {
  display: block;
}

.testimonial small {
  color: var(--muted);
  font-size: 11px;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.testimonial div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  color: var(--gold-2);
}

.testimonial strong {
  font-size: 22px;
}

.testimonial span {
  color: var(--muted);
  font-size: 11px;
}

.resource-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.resource-card {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 12px;
  background: rgba(5, 15, 17, 0.86);
}

.resource-card h3 {
  font-size: 22px;
}

.resource-card p,
.resource-card li {
  color: var(--muted);
  font-size: 12px;
}

.resource-card ul {
  margin: 14px 0;
  padding-left: 18px;
}

.resource-card a {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.resource-card img {
  width: 160px;
  height: 140px;
  border: 1px solid rgba(215, 168, 59, 0.24);
  border-radius: 10px;
  object-fit: cover;
}

.prompt-preview {
  display: grid;
  align-content: center;
  gap: 9px;
  min-height: 140px;
  padding: 18px;
  border: 1px solid rgba(62, 232, 224, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(62, 232, 224, 0.1), rgba(215, 168, 59, 0.07)),
    rgba(2, 8, 9, 0.88);
}

.prompt-preview b {
  color: var(--gold-2);
}

.prompt-preview span {
  color: var(--muted);
  font-size: 12px;
}

.prompt-preview button {
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(215, 168, 59, 0.42);
  border-radius: 5px;
  background: transparent;
  color: var(--gold-2);
}

.prompt-filter-panel {
  display: grid;
  gap: 16px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 12px;
  background: rgba(5, 15, 17, 0.78);
}

.prompt-search {
  display: grid;
  gap: 8px;
}

.prompt-search span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prompt-search input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(62, 232, 224, 0.18);
  border-radius: 8px;
  background: rgba(2, 8, 9, 0.92);
  color: var(--text);
  outline: none;
}

.prompt-search input:focus {
  border-color: rgba(255, 214, 107, 0.52);
  box-shadow: 0 0 0 3px rgba(255, 214, 107, 0.08);
}

.prompt-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prompt-filter-buttons button {
  padding: 10px 14px;
  border: 1px solid rgba(62, 232, 224, 0.22);
  border-radius: 999px;
  background: rgba(6, 21, 23, 0.86);
  color: var(--muted);
  font-weight: 900;
}

.prompt-filter-buttons button.is-active,
.prompt-filter-buttons button:hover {
  border-color: rgba(255, 214, 107, 0.55);
  background: rgba(255, 214, 107, 0.12);
  color: var(--gold-2);
}

.prompt-section {
  margin-top: 30px;
}

.kg-prompt-card[hidden] {
  display: none !important;
}

.prompt-new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 214, 107, 0.45);
  border-radius: 999px;
  background: rgba(5, 15, 17, 0.84);
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.prompt-body h3 a {
  color: inherit;
}

.prompt-empty-state {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(5, 15, 17, 0.72);
}

.prompt-single-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.prompt-single-layout .prompt-image-card {
  min-height: 360px;
}

.prompt-single-content {
  padding: 24px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(62, 232, 224, 0.08), transparent 32%),
    rgba(5, 15, 17, 0.84);
}

.prompt-full-text {
  max-height: 520px;
  margin: 16px 0;
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(62, 232, 224, 0.14);
  border-radius: 10px;
  background: rgba(2, 8, 9, 0.94);
  color: rgba(232, 244, 246, 0.88);
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.prompt-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
  margin-top: 22px;
}

.prompt-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 10px;
  background: rgba(2, 8, 9, 0.94);
}

.prompt-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 10px;
  background: rgba(5, 15, 17, 0.86);
}

.blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.blog-card h3 {
  padding: 14px 14px 6px;
  font-size: 14px;
  line-height: 1.25;
}

.blog-card small {
  display: block;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 11px;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
  padding: 28px 34px;
  border: 1px solid rgba(62, 232, 224, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(5, 15, 17, 0.96), rgba(5, 15, 17, 0.64)),
    url("kg-double-hero.jpeg") right center / auto 150% no-repeat;
}

.final-cta h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.final-cta p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(62, 232, 224, 0.14);
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 13px;
}

.footer input {
  width: 100%;
  margin-bottom: 8px;
  padding: 11px 12px;
  border: 1px solid rgba(215, 168, 59, 0.34);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
}

.footer button {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #110d05;
  font-weight: 900;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.copyright {
  padding: 16px 0 34px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  text-align: center;
}

.chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 12px 16px;
  border: 1px solid rgba(215, 168, 59, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #120e05;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(215, 168, 59, 0.25);
}

.page-hero {
  position: relative;
  margin-top: 14px;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(62, 232, 224, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(3, 7, 7, 0.95), rgba(3, 7, 7, 0.72)),
    url("kg-double-hero.jpeg") right center / auto 150% no-repeat;
  overflow: hidden;
}

.page-hero::after,
.hero::after,
.final-cta::after,
.calendly-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 214, 107, 0.11) 48%, transparent 60% 100%);
  opacity: 0;
  transform: translateX(-120%);
  animation: premiumSweep 7s ease-in-out infinite;
}

.service-hero,
.results-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 7, 0.95), rgba(3, 7, 7, 0.64)),
    url("kg-city-hero.jpeg") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 7, 0.95), rgba(3, 7, 7, 0.7)),
    url("kg-double-hero.jpeg") right center / auto 160% no-repeat;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 64px);
}

.page-hero p:not(.kicker) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: center;
  margin: 22px 0;
  padding: 22px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 12px;
  background: rgba(5, 15, 17, 0.84);
}

.split-feature img {
  width: 100%;
  min-height: 320px;
  border-radius: 10px;
  object-fit: cover;
}

.split-feature h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.5vw, 48px);
}

.split-feature p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-2);
  transform: rotate(45deg);
}

.page-process {
  margin-bottom: 20px;
}

.case-grid,
.course-grid,
.prompt-grid,
.contact-grid {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

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

.case-study,
.course-card,
.prompt-card,
.contact-card,
.contact-form,
.featured-post,
.trust-row {
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 0 0, rgba(62, 232, 224, 0.1), transparent 10rem),
    rgba(5, 15, 17, 0.86);
}

.case-study {
  padding: 24px;
}

.case-study span,
.prompt-card span,
.course-card span,
.featured-post span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study h3,
.prompt-card h3,
.course-card h3,
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.case-study p,
.prompt-card p,
.course-card p,
.contact-card p {
  color: var(--muted);
}

.case-study b {
  color: var(--cyan);
}

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

.course-card {
  padding: 16px;
}

.course-card img {
  width: 100%;
  height: 210px;
  margin-bottom: 16px;
  border-radius: 10px;
  object-fit: cover;
}

.course-card b {
  display: block;
  margin: 14px 0;
  color: var(--gold-2);
  font-size: 26px;
}

.investment-label {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-announcement,
.masterclass-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.course-announcement {
  max-width: 760px;
  padding: 14px;
  border: 1px solid rgba(215, 168, 59, 0.42);
  border-radius: 10px;
  background: rgba(215, 168, 59, 0.08);
}

.course-announcement strong,
.masterclass-meta b {
  color: var(--gold-2);
}

.course-announcement span {
  color: var(--muted);
}

.masterclass-banner,
.payment-panel,
.enroll-panel,
.download-course,
.invoice-panel,
.calendly-panel,
.terms-page {
  position: relative;
  z-index: 1;
  margin: 22px 0;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 20%, rgba(215, 168, 59, 0.14), transparent 17rem),
    rgba(5, 15, 17, 0.88);
  overflow: hidden;
}

.terms-page {
  max-width: 920px;
  padding: clamp(24px, 4vw, 54px);
  margin: 22px auto;
}

.terms-page h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 24px;
}

.terms-page a {
  color: var(--gold-2);
}

.masterclass-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  align-items: stretch;
}

.masterclass-banner img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.masterclass-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 46px);
}

.masterclass-copy h2 {
  font-size: clamp(36px, 5vw, 70px);
  text-transform: uppercase;
}

.masterclass-copy h3 {
  color: var(--gold-2);
  font-size: clamp(24px, 3vw, 44px);
  text-transform: uppercase;
}

.masterclass-copy p {
  color: var(--muted);
}

.masterclass-features,
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.masterclass-features span,
.payment-methods article,
.download-card {
  border: 1px solid rgba(215, 168, 59, 0.22);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.masterclass-features span {
  padding: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.masterclass-meta b {
  padding: 12px 14px;
  border: 1px solid rgba(62, 232, 224, 0.18);
  border-radius: 8px;
  background: rgba(62, 232, 224, 0.06);
}

.payment-panel,
.enroll-panel,
.download-course,
.invoice-panel,
.calendly-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
  overflow: hidden;
}

.payment-panel h2,
.enroll-panel h2,
.download-course h2,
.invoice-panel h2,
.calendly-panel h2,
.terms-page h1 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.2vw, 48px);
}

.payment-panel p,
.enroll-panel p,
.download-course p,
.invoice-panel p,
.calendly-panel p,
.terms-page p,
.terms-page li {
  color: var(--muted);
}

.payment-methods article {
  padding: 18px;
}

.payment-methods h3 {
  margin-bottom: 10px;
  color: var(--gold-2);
}

.payment-methods p {
  margin: 7px 0;
  word-break: break-word;
}

.enrollment-form input[type="file"],
.invoice-panel input[type="file"] {
  padding: 11px;
}

.file-field {
  display: grid;
  gap: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(62, 232, 224, 0.18);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.22);
}

.file-field span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.file-field input {
  padding: 0;
  border: 0;
  background: transparent;
}

.download-card {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 24px;
}

.download-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.download-card strong {
  color: var(--gold-2);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 58px;
}

.invoice-panel[hidden] {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(62, 232, 224, 0.18);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  accent-color: var(--gold-2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 13px 14px;
}

.contact-form select {
  color-scheme: dark;
  background:
    linear-gradient(135deg, rgba(62, 232, 224, 0.07), rgba(215, 168, 59, 0.04)),
    #030b0c;
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(255, 214, 107, 0.62);
  border-color: rgba(255, 214, 107, 0.62);
  box-shadow: 0 0 0 3px rgba(215, 168, 59, 0.12);
}

.contact-form option {
  background: #061012;
  color: #f8fbfb;
}

.contact-form option:checked {
  background: #103b39;
  color: var(--gold-2);
}

.prompt-card button {
  padding: 13px 18px;
  border: 1px solid rgba(215, 168, 59, 0.52);
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #130d04;
  font-weight: 900;
}

.prompt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.prompt-tabs span {
  padding: 10px 13px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 999px;
  background: rgba(5, 15, 17, 0.78);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.prompt-category-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 26px;
}

.prompt-category-card {
  overflow: hidden;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 13px;
  background:
    radial-gradient(circle at 18% 0, rgba(62, 232, 224, 0.16), transparent 12rem),
    radial-gradient(circle at 90% 18%, rgba(215, 168, 59, 0.12), transparent 10rem),
    rgba(5, 15, 17, 0.9);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.3);
}

.prompt-category-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid rgba(62, 232, 224, 0.13);
  filter: saturate(0.95) contrast(1.04);
}

.prompt-category-card > div {
  padding: 18px;
}

.prompt-category-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prompt-category-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.prompt-category-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.prompt-category-card code {
  display: block;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(62, 232, 224, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.45;
}

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

.prompt-card {
  padding: 22px;
}

.prompt-card button {
  margin-top: 8px;
}

.prompts-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 7, 0.96), rgba(3, 7, 7, 0.68)),
    radial-gradient(circle at 78% 30%, rgba(192, 24, 38, 0.26), transparent 18rem),
    url("kg-city-hero.jpeg") center / cover no-repeat;
}

.chatgpt-prompt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.prompt-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.prompt-more-button {
  min-width: 190px;
}

.prompt-section[data-prompt-section] .section-title {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.prompt-section[data-prompt-section] .section-title > p:not(.kicker) {
  margin-right: auto;
  margin-left: auto;
}

.chatgpt-prompt-card {
  overflow: hidden;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 13px;
  background:
    radial-gradient(circle at 0 0, rgba(62, 232, 224, 0.12), transparent 11rem),
    rgba(5, 15, 17, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.prompt-visual {
  position: relative;
  display: block;
  margin: 0;
  min-height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.22), transparent 4rem),
    linear-gradient(135deg, #0d2331, #050709 58%, #28060b);
}

.spider-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(35deg, transparent 0 47%, rgba(255, 255, 255, 0.2) 48%, transparent 50% 100%),
    linear-gradient(145deg, transparent 0 46%, rgba(255, 255, 255, 0.14) 47%, transparent 49% 100%),
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(255, 255, 255, 0.12) 18.5% 19%, transparent 19.5% 100%);
  background-size: 160px 160px, 160px 160px, 110px 110px;
  opacity: 0.5;
  animation: webDrift 10s linear infinite;
}

.spider-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 94px;
  height: 138px;
  border-radius: 48% 48% 44% 44%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 16%, transparent 17% 83%, rgba(255, 255, 255, 0.9) 84% 100%) 50% 28% / 58px 18px no-repeat,
    linear-gradient(135deg, #d5192c 0 48%, #071f50 49% 100%);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.48), 0 0 34px rgba(197, 22, 38, 0.34);
  transform: translateX(-50%);
}

.spider-visual span {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 18%, rgba(62, 232, 224, 0.18), transparent 9rem),
    radial-gradient(circle at 80% 70%, rgba(255, 214, 107, 0.16), transparent 8rem);
  animation: visualPulse 3.8s ease-in-out infinite;
}

.visual-swing {
  background: linear-gradient(160deg, #071927, #050609 62%, #3a070d);
}

.visual-mask {
  background: radial-gradient(circle at 50% 38%, #19324b, #050609 64%);
}

.visual-rooftop {
  background: linear-gradient(180deg, #08212a, #030506 60%, #150409);
}

.visual-comic {
  background: linear-gradient(135deg, #1a0b22, #050609 48%, #081e28);
}

.visual-ad {
  background: linear-gradient(135deg, #021b1b, #050609 54%, #251905);
}

.visual-anime {
  background: linear-gradient(145deg, #102545, #050609 52%, #3a0710);
}

.prompt-image-card {
  min-height: 220px;
  background: #030707;
}

.prompt-image-card img {
  width: 100%;
  height: 220px;
  padding: 8px;
  object-fit: contain;
  background: rgba(2, 8, 9, 0.96);
  transition: transform 420ms ease, filter 420ms ease;
}

.ag-prompt-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(62, 232, 224, 0.14);
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 214, 107, 0.18), transparent 7rem),
    linear-gradient(135deg, rgba(62, 232, 224, 0.12), transparent 42%),
    linear-gradient(145deg, #061415, #020606 62%, #171205);
}

.ag-prompt-placeholder::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(62, 232, 224, 0.15) 49% 50%, transparent 51% 100%),
    linear-gradient(0deg, transparent 0 48%, rgba(255, 214, 107, 0.12) 49% 50%, transparent 51% 100%);
  background-size: 44px 44px;
  opacity: 0.24;
  transform: rotate(-12deg);
}

.ag-prompt-placeholder span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 214, 107, 0.42);
  border-radius: 999px;
  background: rgba(2, 8, 9, 0.74);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 36px rgba(62, 232, 224, 0.12);
}

.chatgpt-prompt-card:hover .prompt-image-card img {
  filter: contrast(1.04) saturate(1.04);
  transform: scale(1.035);
}

.prompt-grid-featured .chatgpt-prompt-card:nth-child(3) .prompt-image-card,
.prompt-grid-featured .chatgpt-prompt-card:nth-child(4) .prompt-image-card {
  min-height: 220px;
}

.prompt-grid-featured .chatgpt-prompt-card:nth-child(3) .prompt-image-card img,
.prompt-grid-featured .chatgpt-prompt-card:nth-child(4) .prompt-image-card img {
  height: 220px;
}

.prompt-body {
  padding: 18px;
}

.prompt-body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prompt-body h3 {
  margin-bottom: 9px;
  font-size: 22px;
}

.prompt-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.prompt-body code {
  display: block;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(62, 232, 224, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.45;
}

.prompt-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 12px;
}

.prompt-actions button {
  min-height: 40px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.prompt-actions button:first-child {
  border: 1px solid rgba(62, 232, 224, 0.25);
  background: rgba(62, 232, 224, 0.08);
  color: var(--cyan);
}

.prompt-actions button:last-child {
  border: 1px solid rgba(215, 168, 59, 0.52);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #130d04;
}

.prompt-actions button.is-copied {
  border-color: rgba(255, 214, 107, 0.8);
  color: var(--gold-2);
}

.prompt-pack-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0;
  padding: 28px;
  border: 1px solid rgba(62, 232, 224, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 85% 50%, rgba(197, 22, 38, 0.18), transparent 16rem),
    rgba(5, 15, 17, 0.9);
}

.prompt-pack-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 42px);
}

.prompt-pack-cta p:not(.kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.prompt-grid-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.prompt-visual-disco {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), transparent 4rem),
    radial-gradient(circle at 50% 50%, rgba(200, 230, 255, 0.35), transparent 8rem),
    linear-gradient(135deg, #020202, #0d1114 58%, #050505);
}

.prompt-visual-disco::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    radial-gradient(circle at 34% 28%, #ffffff, #b9c2c6 22%, #62686b 48%, #e8eef0 72%, #2a2f31);
  background-size: 15px 15px, 15px 15px, auto;
  box-shadow: 0 0 55px rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%);
  animation: discoSpin 8s linear infinite;
}

.prompt-visual-disco::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 25%, #fff 0 1px, transparent 3px),
    radial-gradient(circle at 70% 34%, #fff 0 1px, transparent 4px),
    radial-gradient(circle at 54% 70%, #fff 0 1px, transparent 3px);
  filter: drop-shadow(0 0 8px rgba(255,255,255,.9));
  animation: visualPulse 2.4s ease-in-out infinite;
}

.prompt-visual-travel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 34%, transparent 35%),
    radial-gradient(circle at 24% 76%, rgba(215, 168, 59, 0.34), transparent 8rem),
    linear-gradient(135deg, #12323a, #071216 62%, #2e210f);
}

.prompt-visual-travel::before {
  content: "";
  position: absolute;
  left: 11%;
  top: 16%;
  width: 48%;
  height: 58%;
  border: 9px solid #f5eee1;
  background: linear-gradient(135deg, #61a9b8, #f0d6a5);
  box-shadow: 18px 18px 0 rgba(0,0,0,.22);
  transform: rotate(-7deg);
}

.prompt-visual-travel::after {
  content: "Wish you were here";
  position: absolute;
  right: 10%;
  bottom: 18%;
  width: 34%;
  padding: 12px;
  border-radius: 4px;
  background: #f6eddc;
  color: #174f9b;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  transform: rotate(5deg);
}

.prompt-visual-infographic {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 214, 107, 0.3), transparent 7rem),
    linear-gradient(135deg, #102515, #07110d 55%, #14251e);
}

.prompt-visual-infographic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 53%;
  width: 132px;
  height: 88px;
  border-radius: 48% 48% 42% 42%;
  background:
    radial-gradient(circle at 28% 38%, #fff 0 4px, transparent 5px),
    linear-gradient(135deg, #dd8f2b, #6d3f16);
  box-shadow: 0 0 0 9px rgba(255, 214, 107, 0.08), 0 20px 40px rgba(0,0,0,.35);
  transform: translate(-50%, -50%);
}

.prompt-visual-infographic::after {
  content: "";
  position: absolute;
  inset: 22px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(62,232,224,.7) 18% 19%, transparent 19% 100%),
    linear-gradient(90deg, transparent 0 78%, rgba(255,214,107,.75) 78% 79%, transparent 79% 100%),
    radial-gradient(circle at 18% 28%, rgba(62,232,224,.9) 0 5px, transparent 6px),
    radial-gradient(circle at 79% 64%, rgba(255,214,107,.9) 0 5px, transparent 6px);
}

.prompt-visual-manga {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 2px, transparent 2px 7px),
    linear-gradient(135deg, #f5f0e6, #bdb7ad);
}

.prompt-visual-manga::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 3px solid #090909;
  background:
    linear-gradient(90deg, transparent 0 33%, #090909 33% 34%, transparent 34% 66%, #090909 66% 67%, transparent 67%),
    radial-gradient(circle at 17% 42%, #111 0 24px, transparent 25px),
    radial-gradient(circle at 50% 40%, #111 0 24px, transparent 25px),
    radial-gradient(circle at 83% 42%, #111 0 24px, transparent 25px);
}

.prompt-visual-manga::after {
  content: "Keep going!";
  position: absolute;
  right: 30px;
  top: 28px;
  padding: 9px 12px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

@keyframes discoSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
  margin: 22px 0;
  padding: 18px;
}

.featured-post img {
  width: 100%;
  min-height: 320px;
  border-radius: 10px;
  object-fit: cover;
}

.featured-post h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 48px);
}

.featured-post p {
  color: var(--muted);
}

.page-blog {
  margin: 22px 0;
}

.contact-grid {
  grid-template-columns: 0.75fr 0.75fr 1.2fr;
}

.contact-card,
.contact-form {
  padding: 24px;
}

.contact-card i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(62, 232, 224, 0.24);
  border-radius: 50%;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 22px;
  overflow: hidden;
  background: rgba(62, 232, 224, 0.12);
}

.trust-row span {
  padding: 16px;
  background: rgba(5, 15, 17, 0.9);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.site-popup-card {
  position: relative;
  width: min(420px, 100%);
  padding: 28px;
  border: 1px solid rgba(215, 168, 59, 0.44);
  border-radius: 12px;
  background:
    radial-gradient(circle at 80% 10%, rgba(215, 168, 59, 0.16), transparent 12rem),
    #061012;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.site-popup-card button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.site-popup-card h3 {
  margin-bottom: 10px;
  color: var(--gold-2);
}

.site-popup-card p {
  margin: 0;
  color: var(--muted);
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-card.reveal,
.stat.reveal,
.process-step.reveal,
.testimonial.reveal,
.blog-card.reveal,
.contact-card.reveal,
.chatgpt-prompt-card.reveal,
.course-card.reveal {
  transform: translateY(22px) scale(0.985);
}

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

.mini-card.reveal.is-visible,
.stat.reveal.is-visible,
.process-step.reveal.is-visible,
.testimonial.reveal.is-visible,
.blog-card.reveal.is-visible,
.contact-card.reveal.is-visible,
.chatgpt-prompt-card.reveal.is-visible,
.course-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateX(var(--gorilla-x, 0px)) translateY(0) scale(1);
  }
  50% {
    transform: translateX(var(--gorilla-x, 0px)) translateY(-14px) scale(1.015);
  }
}

@keyframes heroEnergy {
  0%,
  100% {
    opacity: 0.74;
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.25);
  }
}

@keyframes premiumSweep {
  0%,
  46%,
  100% {
    opacity: 0;
    transform: translateX(-120%);
  }
  58% {
    opacity: 1;
  }
  72% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes cardSweep {
  0%,
  48%,
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
  60% {
    opacity: 1;
  }
  78% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes processWave {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-18%) translateY(-50%);
  }
  12% {
    opacity: 1;
  }
  50% {
    transform: translateX(185%) translateY(-50%);
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(420%) translateY(-50%);
  }
}

@keyframes nodeGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(62, 232, 224, 0);
  }
  50% {
    box-shadow: 0 0 35px rgba(62, 232, 224, 0.2);
  }
}

@keyframes webDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(50px, 30px, 0) rotate(2deg);
  }
}

@keyframes visualPulse {
  0%,
  100% {
    opacity: 0.62;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 1500px) {
  .hero h1 {
    font-size: clamp(42px, 5vw, 74px);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    padding: clamp(30px, 4vw, 56px);
    background:
      linear-gradient(90deg, rgba(3, 7, 7, 0.94), rgba(3, 7, 7, 0.5)),
      url("kg-city-hero.jpeg") center / cover no-repeat;
  }

  .hero-art {
    min-height: 450px;
  }

  .hero-art img {
    width: min(680px, 100%);
  }

  .process-step {
    min-height: 180px;
  }
}

@media (max-width: 1080px) {
  .site-shell {
    width: min(100% - 22px, var(--max));
  }

  .topbar {
    grid-template-columns: auto auto;
  }

  .top-cta {
    display: none;
  }

  .menu-btn {
    display: block;
    justify-self: end;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(62, 232, 224, 0.18);
    border-radius: 10px;
    background: rgba(3, 8, 9, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 15px;
  }

  .nav .nav-meeting {
    display: block;
    border: 1px solid rgba(215, 168, 59, 0.42);
    border-radius: 6px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #110d05;
    text-align: center;
  }

  .hero,
  .masterclass-banner,
  .payment-panel,
  .enroll-panel,
  .download-course,
  .invoice-panel,
  .calendly-panel,
  .results-panel,
  .resource-row,
  .split-feature,
  .featured-post,
  .prompt-single-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-art img {
    left: 50%;
    right: auto;
    bottom: -18px;
    width: min(560px, 100%);
    --gorilla-x: -50%;
    mask-image:
      radial-gradient(ellipse at 58% 48%, #000 0 36%, rgba(0, 0, 0, 0.82) 48%, transparent 76%);
    -webkit-mask-image:
      radial-gradient(ellipse at 58% 48%, #000 0 36%, rgba(0, 0, 0, 0.82) 48%, transparent 76%);
  }

  .services-grid,
  .blog-grid,
  .case-grid,
  .course-grid,
  .prompt-grid,
  .chatgpt-prompt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .process-track,
  .testimonial-grid,
  .footer,
  .payment-methods,
  .masterclass-features,
  .trust-row,
  .mini-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track::before,
  .process-track::after {
    display: none;
  }

  .process-step {
    width: min(100%, 245px);
    min-height: 0;
    padding: 30px 20px 26px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 214, 107, 0.14), transparent 4.2rem),
      radial-gradient(circle at 50% 50%, rgba(62, 232, 224, 0.12), transparent 8rem),
      linear-gradient(180deg, rgba(8, 28, 30, 0.82), rgba(3, 10, 11, 0.9));
  }
}

/* Prompt cards keep a consistent visual rhythm across every published prompt. */
.chatgpt-prompt-grid {
  align-items: stretch;
}

.chatgpt-prompt-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prompt-image-card,
.prompt-image-card img {
  height: 220px;
}

.prompt-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.prompt-body code {
  min-height: 74px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.prompt-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.prompt-actions button {
  width: 100%;
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden !important;
  }

  .site-shell {
    width: 100%;
    padding-inline: 10px;
  }

  .topbar {
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    padding: 8px 10px;
  }

  .logo {
    max-width: calc(100vw - 88px);
  }

  .logo img {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .logo b {
    font-size: 12px;
  }

  .logo small {
    font-size: 9px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    gap: 10px;
    margin-top: 10px;
    padding: 22px 14px 0;
    background:
      linear-gradient(180deg, rgba(3, 7, 7, 0.72), rgba(3, 7, 7, 0.96)),
      url("masterclass-banner.jpeg") 68% center / cover no-repeat;
  }

  .hero-copy {
    z-index: 2;
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(31px, 9.6vw, 39px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .kicker {
    font-size: 10px;
  }

  .hero p {
    max-width: 100%;
    font-size: 14px;
  }

  .actions,
  .final-cta,
  .prompt-pack-cta {
    display: grid;
  }

  .page-hero {
    background:
      linear-gradient(180deg, rgba(3, 7, 7, 0.82), rgba(3, 7, 7, 0.96)),
      url("kg-double-hero.jpeg") center / cover no-repeat;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .stats-grid,
  .process-track,
  .testimonial-grid,
  .resource-card,
  .blog-grid,
  .footer,
  .case-grid,
  .course-grid,
  .prompt-grid,
  .chatgpt-prompt-grid,
  .payment-methods,
  .masterclass-features,
  .trust-row,
  .mini-footer {
    grid-template-columns: 1fr;
  }

  .process-track {
    gap: 18px;
    padding-top: 12px;
  }

  .process-track::before,
  .process-track::after {
    display: none;
  }

  .process-step {
    width: min(100%, 245px);
    min-height: 0;
    padding: 30px 20px 26px;
    border-radius: 50%;
  }

  .masterclass-banner img {
    min-height: 270px;
  }

  .payment-panel,
  .enroll-panel,
  .download-course,
  .invoice-panel,
  .calendly-panel {
    padding: 20px;
  }

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

  .prompt-image-card,
  .prompt-image-card img,
  .prompt-grid-featured .chatgpt-prompt-card:nth-child(3) .prompt-image-card,
  .prompt-grid-featured .chatgpt-prompt-card:nth-child(4) .prompt-image-card,
  .prompt-grid-featured .chatgpt-prompt-card:nth-child(3) .prompt-image-card img,
  .prompt-grid-featured .chatgpt-prompt-card:nth-child(4) .prompt-image-card img {
    height: auto;
    min-height: 0;
  }

  .prompt-image-card img {
    aspect-ratio: 4 / 3;
  }

  .ag-prompt-placeholder {
    min-height: 190px;
  }

  .hero-art {
    display: block;
    min-height: 220px;
    margin-top: -4px;
    overflow: hidden;
  }

  .hero-art img {
    left: 50%;
    right: auto;
    bottom: -18px;
    width: min(420px, 100%);
    max-width: none;
    --gorilla-x: -50%;
    mask-image:
      radial-gradient(ellipse at 54% 46%, #000 0 42%, rgba(0, 0, 0, 0.82) 54%, transparent 80%);
    -webkit-mask-image:
      radial-gradient(ellipse at 54% 46%, #000 0 42%, rgba(0, 0, 0, 0.82) 54%, transparent 80%);
  }

  .tool-strip {
    padding-inline: 12px;
  }

  .tools-marquee b {
    font-size: 15px;
  }

  .resource-card img {
    width: 100%;
    height: 180px;
  }

  .final-cta {
    background:
      linear-gradient(180deg, rgba(5, 15, 17, 0.86), rgba(5, 15, 17, 0.96)),
      url("kg-double-hero.jpeg") center / cover no-repeat;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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

/* ==========================================================================
   Premium UI refresh — presentation only, preserving all theme functionality
   ========================================================================== */

:root {
  --bg: #050605;
  --bg-2: #090b0a;
  --panel: rgba(15, 18, 16, 0.94);
  --panel-solid: #101310;
  --panel-raised: #151916;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(224, 181, 82, 0.28);
  --cyan: #5cd8cc;
  --cyan-soft: rgba(92, 216, 204, 0.1);
  --gold: #c99a3d;
  --gold-2: #e4bc63;
  --text: #f7f5ef;
  --muted: #a5aaa4;
  --muted-strong: #c9ccc6;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --max: 1440px;
  --section-space: clamp(76px, 9vw, 136px);
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.44);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  background:
    radial-gradient(ellipse 80% 42% at 50% -10%, rgba(201, 154, 61, 0.1), transparent 68%),
    linear-gradient(180deg, #050605 0%, #080a09 48%, #050605 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  opacity: 0.35;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 55%);
}

::selection {
  background: var(--gold-2);
  color: #111;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

.site-shell {
  width: min(var(--max), calc(100% - clamp(28px, 5vw, 80px)));
}

.automation-bg {
  opacity: 0.22;
}

.topbar {
  top: 14px;
  min-height: 68px;
  margin-top: 14px;
  padding: 10px 12px 10px 16px;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(8, 10, 9, 0.88);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px) saturate(135%);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.topbar.is-scrolled {
  border-color: rgba(224, 188, 99, 0.2);
  background: rgba(7, 9, 8, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.logo {
  gap: 12px;
}

.logo img {
  width: 44px;
  height: 44px;
  border-color: rgba(224, 188, 99, 0.42);
  box-shadow: 0 0 0 4px rgba(224, 188, 99, 0.06);
}

.logo b {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.07em;
}

.logo small {
  color: var(--gold-2);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.nav {
  gap: clamp(16px, 2vw, 28px);
}

.nav a {
  position: relative;
  padding-block: 12px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 1px;
  background: var(--gold-2);
  transition: right 220ms var(--ease), left 220ms var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  right: 0;
  left: 0;
}

.top-cta,
.btn,
.prompt-actions button,
.footer-newsletter button {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.top-cta,
.btn-gold {
  border-color: rgba(241, 208, 126, 0.7);
  background: linear-gradient(135deg, #edcb78, #c99638);
  box-shadow: 0 10px 26px rgba(201, 150, 56, 0.16);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.top-cta:hover,
.btn:hover,
.prompt-actions button:hover,
.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 150, 56, 0.24);
}

.btn-outline:hover {
  border-color: rgba(224, 188, 99, 0.5);
  background: rgba(224, 188, 99, 0.07);
}

.hero {
  min-height: min(760px, calc(100vh - 112px));
  margin-top: 18px;
  padding: clamp(42px, 6vw, 92px);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.98) 0%, rgba(5, 6, 5, 0.87) 45%, rgba(5, 6, 5, 0.34) 100%),
    url("kg-city-hero.jpeg") center / cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.hero::before {
  opacity: 0.7;
  background: linear-gradient(120deg, rgba(224, 188, 99, 0.08), transparent 36%, rgba(92, 216, 204, 0.05));
}

.hero-copy {
  max-width: 720px;
}

.kicker {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.kicker::before {
  width: 24px;
  background: currentColor;
}

h1,
.hero h1,
.page-hero h1 {
  max-width: 16ch;
  margin-bottom: 24px;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2,
.section-title h2,
.final-cta h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h3 {
  letter-spacing: -0.02em;
}

.hero p,
.page-hero > p,
.section-title p {
  max-width: 650px;
  color: var(--muted-strong);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}

.actions {
  gap: 12px;
  margin-top: 34px;
}

.hero-art {
  min-height: 560px;
}

.hero-art img {
  filter: saturate(0.82) contrast(1.06);
}

.tool-strip {
  margin-top: 18px;
  padding: 20px clamp(20px, 3vw, 42px);
  border-color: var(--line);
  border-radius: var(--radius);
  background: rgba(13, 16, 14, 0.82);
}

.tools-marquee {
  gap: clamp(30px, 5vw, 72px);
}

.tools-marquee b {
  color: var(--muted-strong);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.section {
  padding-block: var(--section-space);
}

.section-title {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.services-grid,
.course-grid,
.case-grid,
.chatgpt-prompt-grid,
.prompt-grid {
  gap: 18px;
}

.mini-card,
.testimonial,
.course-card,
.case-study,
.contact-card,
.chatgpt-prompt-card,
.ag-prompt-card,
.prompt-category-card,
.terms-page {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(19, 23, 20, 0.96), rgba(10, 12, 11, 0.96));
  box-shadow: var(--shadow-sm);
  transition: transform 260ms var(--ease), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.mini-card,
.testimonial,
.course-card,
.case-study,
.contact-card,
.prompt-category-card {
  padding: clamp(24px, 3vw, 36px);
}

.mini-card:hover,
.testimonial:hover,
.course-card:hover,
.case-study:hover,
.contact-card:hover,
.chatgpt-prompt-card:hover,
.ag-prompt-card:hover,
.prompt-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(23, 27, 23, 0.98), rgba(11, 13, 12, 0.98));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.mini-card i {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(224, 188, 99, 0.24);
  border-radius: 10px;
  background: rgba(224, 188, 99, 0.07);
  color: var(--gold-2);
  font-style: normal;
}

.mini-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.mini-card p,
.testimonial p,
.course-card p,
.case-study p {
  color: var(--muted);
}

.mini-card a {
  color: var(--gold-2);
}

.impact,
.results-panel,
.masterclass-banner,
.split-feature,
.payment-panel,
.enroll-panel,
.calendly-panel,
.final-cta,
.prompt-pack-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background-color: var(--panel);
  box-shadow: var(--shadow-lg);
}

.impact {
  padding-inline: clamp(24px, 5vw, 72px);
}

.stats-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  min-height: 160px;
  padding: 32px 20px;
  border: 0;
  border-radius: 0;
  background: var(--panel-solid);
}

.stat strong {
  color: var(--gold-2);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.05em;
}

.process-track {
  gap: clamp(12px, 2vw, 28px);
}

.process-step {
  min-height: 220px;
  padding: 34px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 22, 19, 0.98), rgba(9, 11, 10, 0.98));
}

.process-step i {
  color: var(--gold-2);
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.process-step b {
  font-size: 17px;
}

.testimonial {
  position: relative;
}

.testimonial::before {
  content: "“";
  display: block;
  height: 38px;
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.resource-row,
.results-panel,
.split-feature,
.contact-grid {
  gap: clamp(18px, 3vw, 36px);
}

.resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-solid);
}

.resource-card img,
.results-image img,
.masterclass-banner img,
.split-feature img {
  filter: saturate(0.78) contrast(1.05);
}

.page-hero {
  min-height: 440px;
  margin-top: 18px;
  padding: clamp(52px, 7vw, 96px);
  border-color: var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(46px, 6vw, 80px);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.footer-newsletter input,
.prompt-search input {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.footer-newsletter input:hover,
.prompt-search input:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.footer-newsletter input:focus,
.prompt-search input:focus {
  border-color: rgba(224, 188, 99, 0.72);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 4px rgba(224, 188, 99, 0.08);
  outline: 0;
}

.prompt-filter-panel {
  border-color: var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
}

.prompt-filter-buttons button {
  border-radius: 999px;
}

.prompt-filter-buttons button.is-active {
  border-color: rgba(224, 188, 99, 0.58);
  background: rgba(224, 188, 99, 0.12);
  color: var(--gold-2);
}

.footer {
  margin-top: var(--section-space);
  padding: clamp(38px, 5vw, 64px);
  border-color: var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #0d100e;
}

.footer h4 {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  color: var(--muted);
}

.footer a:hover {
  color: var(--gold-2);
}

.copyright {
  color: #777d77;
  font-size: 12px;
}

.chat {
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(224, 188, 99, 0.42);
  border-radius: 999px;
  background: #151813;
  color: var(--gold-2);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.reveal {
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    top: 94px;
    left: clamp(14px, 4vw, 40px);
    right: clamp(14px, 4vw, 40px);
    gap: 2px;
    padding: 12px;
    border-color: var(--line);
    border-radius: var(--radius);
    background: rgba(9, 11, 10, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .nav a {
    padding: 14px 16px;
    border-bottom-color: var(--line);
    border-radius: 7px;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.045);
  }

  .process-step {
    width: 100%;
    border-radius: var(--radius);
    background: var(--panel-solid);
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 64px;
  }

  .site-shell {
    width: 100%;
    padding-inline: 12px;
  }

  .topbar {
    top: 8px;
    min-height: 60px;
    margin-top: 8px;
    border-radius: 12px;
  }

  .hero {
    gap: 20px;
    padding: 38px 22px 0;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(5, 6, 5, 0.86), rgba(5, 6, 5, 0.98)),
      url("masterclass-banner.jpeg") 68% center / cover no-repeat;
  }

  h1,
  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -0.05em;
    line-height: 1;
  }

  h2,
  .section-title h2,
  .final-cta h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .hero-art {
    min-height: 270px;
  }

  .page-hero {
    min-height: 390px;
    padding: 48px 24px;
    border-radius: 16px;
  }

  .mini-card,
  .testimonial,
  .course-card,
  .case-study,
  .contact-card,
  .prompt-category-card {
    padding: 24px;
  }

  .process-step {
    width: 100%;
    padding: 26px 22px;
    border-radius: var(--radius);
  }

  .footer {
    padding: 34px 24px;
    border-radius: 16px 16px 0 0;
  }

  .chat {
    right: 14px;
    bottom: 14px;
  }
}

/* Final process experience override. Kept last so legacy process styles cannot win. */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 92px 0 56px;
}

.process-track::before {
  top: 50%;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 232, 224, .5) 8%, rgba(62, 232, 224, .38) 68%, rgba(212, 175, 55, .48) 92%, transparent);
  box-shadow: 0 0 24px rgba(62, 232, 224, .16);
}

.process-track::after {
  top: calc(50% - 1px);
  left: 5%;
  width: 20%;
  height: 3px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold-2), transparent);
  box-shadow: 0 0 22px rgba(212, 175, 55, .6);
  animation: processSignal 4.8s linear infinite;
}

.process-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 220px;
  aspect-ratio: auto;
  padding: 30px 28px;
  border: 1px solid rgba(62, 232, 224, .2);
  border-radius: 0;
  clip-path: polygon(0 16px, 16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px));
  background: linear-gradient(145deg, rgba(11, 35, 37, .95), rgba(5, 12, 13, .98) 68%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 20px 50px rgba(0, 0, 0, .25);
  text-align: left;
  overflow: hidden;
}

.process-step::before {
  inset: auto -25% 0 auto;
  width: 72%;
  height: 3px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(62, 232, 224, .72), rgba(212, 175, 55, .58));
  opacity: .9;
}

.process-step i {
  width: 44px;
  height: 44px;
  margin: 0 0 20px;
  border: 1px solid rgba(212, 175, 55, .48);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, .2), rgba(62, 232, 224, .08));
  box-shadow: none;
  animation: none;
}

.process-step b { margin: 0 0 10px; font-size: 17px; }
.process-step p { font-size: 13px; line-height: 1.6; }

.process-step.reveal { opacity: 0; transition: opacity 700ms ease, transform 700ms cubic-bezier(.16, 1, .3, 1), border-color 250ms ease, box-shadow 250ms ease; }
.process-step:nth-child(odd).reveal { transform: translate(-54px, -34px); }
.process-step:nth-child(even).reveal { transform: translate(54px, 34px); }
.process-step:nth-child(odd).reveal.is-visible { transform: translateY(-34px); }
.process-step:nth-child(even).reveal.is-visible { transform: translateY(34px); }
.process-step:hover { border-color: rgba(212, 175, 55, .56); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 0 30px rgba(62,232,224,.11), 0 24px 58px rgba(0,0,0,.3); }

@media (max-width: 1080px) {
  .process-track { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 34px 0; }
  .process-track::before, .process-track::after { display: none; }
  .process-step, .process-step:nth-child(odd), .process-step:nth-child(even), .process-step:nth-child(odd).reveal.is-visible, .process-step:nth-child(even).reveal.is-visible { transform: none; }
  .process-step:nth-child(odd).reveal { transform: translateX(-42px); }
  .process-step:nth-child(even).reveal { transform: translateX(42px); }
}

@media (max-width: 640px) {
  .process-track { grid-template-columns: 1fr; gap: 14px; }
  .process-step { min-height: 184px; padding: 26px 24px; }
  .process-step:nth-child(odd).reveal, .process-step:nth-child(even).reveal { transform: translateY(28px); }
  .process-step.reveal.is-visible { transform: none; }
}

/* Process cards must remain readable even when a browser delays JavaScript. */
.process-track .process-step.reveal {
  opacity: 1;
}

/* Reframe the supplied banner so the floating gorilla reads at desktop size. */
@media (min-width: 1081px) {
  .hero-art img {
    right: -4%;
    width: min(980px, 145%);
    transform-origin: 78% 72%;
  }
}

