@keyframes palmer-radar-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes palmer-radar-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes palmer-hub-pulse {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 50px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(139, 207, 42, 0.28), 0 0 48px rgba(139, 207, 42, 0.1);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 56px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(139, 207, 42, 0.5), 0 0 72px rgba(139, 207, 42, 0.16);
  }
}
@keyframes palmer-node-highlight {
  0%, 16%, 100% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 32px rgba(0, 0, 0, 0.22);
  }
  5%, 11% {
    border-color: rgba(139, 207, 42, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 32px rgba(139, 207, 42, 0.12);
  }
}
@keyframes palmer-connector-draw {
  from {
    stroke-dashoffset: 120;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 0.45;
  }
}
@keyframes palmer-rise {
  from {
    opacity: 0;
    transform: translateY(1.4rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.palmer-brand-graphic {
  --palmer-graphic-cycle: 28s;
  position: relative;
  margin: 3.2rem 0;
  padding: clamp(2.8rem, 5vw, 4rem) clamp(2rem, 4vw, 3.2rem);
  border-radius: calc(var(--geogram-radius, 0.8rem) + 1rem);
  border: 1px solid rgba(139, 207, 42, 0.18);
  background: radial-gradient(ellipse 70% 50% at 50% 18%, rgba(139, 207, 42, 0.11), transparent 68%), linear-gradient(172deg, #0f1c32 0%, #0a1628 54%, #050c16 100%);
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
}

.palmer-brand-graphic__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.palmer-brand-graphic__radar {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(88%, 52rem);
  aspect-ratio: 1;
  transform: translateX(-50%);
  opacity: 0.9;
}

.palmer-brand-graphic__radar-ring {
  fill: none;
  stroke: rgba(139, 207, 42, 0.16);
  stroke-width: 1;
  transform-origin: 50% 58%;
  animation: palmer-radar-spin 72s linear infinite;
}
.palmer-brand-graphic__radar-ring--dashed {
  stroke-dasharray: 4 10;
  animation-duration: 56s;
}
.palmer-brand-graphic__radar-ring--inner {
  stroke: rgba(139, 207, 42, 0.09);
  animation: palmer-radar-spin-reverse 48s linear infinite;
}

.palmer-brand-graphic__connectors {
  position: absolute;
  inset: 12% 8% 28%;
  width: auto;
  height: auto;
  pointer-events: none;
}

.palmer-brand-graphic__connector {
  fill: none;
  stroke: rgba(139, 207, 42, 0.35);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: palmer-connector-draw 1.4s ease forwards;
}
.palmer-brand-graphic__connector--audience {
  animation-delay: 0.2s;
}
.palmer-brand-graphic__connector--differentiator {
  animation-delay: 0.35s;
}
.palmer-brand-graphic__connector--voice {
  animation-delay: 0.5s;
}
.palmer-brand-graphic__connector--promise {
  animation-delay: 0.65s;
}

.palmer-brand-graphic__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: ". audience ." "differentiator hub voice" "promise promise promise" "principle-a principle-b .";
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
  align-items: stretch;
}

.palmer-brand-graphic__card {
  position: relative;
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  border-radius: calc(var(--geogram-radius, 0.8rem) + 0.4rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%), rgba(17, 29, 51, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  animation: palmer-rise 0.8s ease both;
  animation-delay: calc(0.08s + var(--enter-index, 0) * 0.07s);
}
.palmer-brand-graphic__card--node {
  animation: palmer-node-highlight var(--palmer-graphic-cycle) ease-in-out infinite, palmer-rise 0.8s ease both;
  animation-delay: calc(var(--node-index) * 7s), calc(0.12s + var(--enter-index, 0) * 0.07s);
}

.palmer-brand-graphic__node--audience {
  grid-area: audience;
  --node-index: 0;
  --enter-index: 0;
  max-width: 36rem;
  justify-self: center;
  width: 100%;
}

.palmer-brand-graphic__node--differentiator {
  grid-area: differentiator;
  --node-index: 1;
  --enter-index: 1;
}

.palmer-brand-graphic__hub {
  grid-area: hub;
  --enter-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 15rem;
  padding: clamp(2.2rem, 3.5vw, 3rem);
  border-color: rgba(139, 207, 42, 0.55);
  animation: palmer-hub-pulse 6s ease-in-out infinite, palmer-rise 0.85s ease both 0.16s;
}
.palmer-brand-graphic__hub::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(180deg, #a4e032 0%, #8bcf2a 100%);
}
.palmer-brand-graphic__hub::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.6rem;
  height: 5px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(90deg, #a4e032 0%, #8bcf2a 100%);
}

.palmer-brand-graphic__node--voice {
  grid-area: voice;
  --node-index: 2;
  --enter-index: 3;
}

.palmer-brand-graphic__node--promise {
  grid-area: promise;
  --node-index: 3;
  --enter-index: 4;
  padding: clamp(1.8rem, 3vw, 2.4rem) clamp(2rem, 3.5vw, 2.8rem);
  border-color: rgba(139, 207, 42, 0.42);
  background: linear-gradient(90deg, rgba(139, 207, 42, 0.1) 0%, transparent 24%), linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%), rgba(139, 207, 42, 0.05);
}

.palmer-brand-graphic__principle--a {
  grid-area: principle-a;
  --enter-index: 5;
}

.palmer-brand-graphic__principle--b {
  grid-area: principle-b;
  --enter-index: 6;
}

.palmer-brand-graphic__label {
  display: block;
  margin: 0 0 0.8rem;
  font-family: Jost, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8bcf2a;
}

.palmer-brand-graphic__text {
  margin: 0;
  font-family: Jost, system-ui, sans-serif;
  font-size: clamp(1.34rem, 1.75vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.palmer-brand-graphic__hub .palmer-brand-graphic__text {
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.48;
  color: #ffffff;
  text-wrap: balance;
}

.palmer-brand-graphic__principle-title {
  margin: 0 0 0.8rem;
  font-family: Jost, system-ui, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.58rem);
  font-weight: 600;
  line-height: 1.32;
  color: #ffffff;
}

.palmer-brand-graphic__principle-text {
  margin: 0;
  font-family: Jost, system-ui, sans-serif;
  font-size: 1.36rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
  .palmer-brand-graphic__radar,
  .palmer-brand-graphic__connectors {
    display: none;
  }
  .palmer-brand-graphic__stage {
    grid-template-columns: 1fr;
    grid-template-areas: "hub" "audience" "differentiator" "voice" "promise" "principle-a" "principle-b";
  }
  .palmer-brand-graphic__node--audience {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .palmer-brand-graphic__radar-ring,
  .palmer-brand-graphic__connector,
  .palmer-brand-graphic__hub,
  .palmer-brand-graphic__card {
    animation: none !important;
  }
  .palmer-brand-graphic__connector {
    stroke-dashoffset: 0;
    opacity: 0.35;
  }
}
