/* Home page only — animations & polish. Keeps palette: #fafafa, #1a1a1a, grays. */

body.home .site-header {
  animation: homeNavSlide 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

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

/* Hero: flat layout — pattern stays in the back; type reads via soft halos, not a card */
body.home .hero {
  position: relative;
  overflow: hidden;
  /* One viewport below the sticky nav — not 100vh (which would stack under the header). */
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100dvh - var(--site-header-height));
  box-sizing: border-box;
  padding: clamp(2.75rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 2.75rem) clamp(3.25rem, 7vw, 6rem);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 55%, #f7f7f7 100%);
  border-bottom: 1px solid var(--border);
}

body.home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
}

body.home .hero-bg-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

/* Moving “freight / data” along routes (stroke dash) */
body.home .hero-route {
  stroke-dasharray: 14 20;
  stroke-dashoffset: 0;
  animation: homeRouteFlow 24s linear infinite;
}

body.home .hero-route--slow {
  stroke-dasharray: 18 24;
  animation-duration: 36s;
}

body.home .hero-route--reverse {
  animation-name: homeRouteFlowRev;
  animation-duration: 30s;
}

body.home .hero-route--ai {
  stroke-dasharray: 6 14;
  animation-duration: 12s;
  animation-timing-function: linear;
}

body.home .hero-route--ai.hero-route--slow {
  animation-duration: 18s;
}

@keyframes homeRouteFlow {
  to {
    stroke-dashoffset: -320;
  }
}

@keyframes homeRouteFlowRev {
  to {
    stroke-dashoffset: 320;
  }
}

/* Hub rings (network nodes) */
body.home .hero-hub .hero-hub-ring {
  animation: homeHubRing 4s ease-in-out infinite;
}

body.home .hero-hub--ai .hero-hub-ring {
  animation-duration: 2.8s;
}

@keyframes homeHubRing {
  0%,
  100% {
    stroke-opacity: 0.1;
  }
  50% {
    stroke-opacity: 0.28;
  }
}

/* AI cluster: subtle breathe */
body.home .hero-ai-cluster {
  animation: homeAIPulse 6s ease-in-out infinite;
}

@keyframes homeAIPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.65;
  }
}

body.home .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero: more air between lines + slightly larger lead (narrow column felt dense on wide screens) */
body.home .hero-label {
  margin-bottom: 1.35rem;
}

body.home .hero-headline {
  margin-bottom: 1.5rem;
  line-height: 1.12;
}

body.home .hero-subheadline {
  font-size: clamp(1.08rem, 0.55vw + 0.98rem, 1.3rem);
  line-height: 1.75;
  margin: 0 0 2rem;
}

/* Light halos keep copy crisp over the SVG without a box */
body.home .hero-headline,
body.home .hero-subheadline,
body.home .hero-author-name,
body.home .hero-author-meta {
  text-shadow:
    0 0 32px rgba(255, 255, 255, 1),
    0 0 12px rgba(255, 255, 255, 0.95),
    0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Editorial author row — flex + vertical center so photo matches the text block (grid + align-items:start looked off vs line metrics) */
body.home .hero-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.35rem;
  margin: 0 0 2rem;
}

body.home .hero-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.08);
  display: block;
}

body.home .hero-author-text {
  flex: 1;
  min-width: 0;
}

body.home .hero-author-name {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.28;
}

body.home .hero-author-name-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  transition: border-color 0.2s ease, color 0.2s ease;
}

body.home .hero-author-name-link:hover {
  border-bottom-color: rgba(26, 26, 26, 0.45);
}

body.home #bio,
body.home #contact,
body.home #start-here,
body.home #ideas-heading {
  scroll-margin-top: calc(var(--site-header-height) + 0.75rem);
}

body.home .hero-author-meta {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

body.home .hero-label {
  text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Staggered entrance */
body.home .hero-inner > * {
  animation: homeFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

body.home .hero-inner .hero-label {
  animation-delay: 0.08s;
}

body.home .hero-inner .hero-headline {
  animation-delay: 0.18s;
}

body.home .hero-inner .hero-subheadline {
  animation-delay: 0.24s;
}

body.home .hero-inner .hero-author {
  animation-delay: 0.44s;
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accent line under label */
body.home .hero-label {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

body.home .hero-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--text), rgba(26, 26, 26, 0.25));
  border-radius: 1px;
  animation: homeLineGrow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes homeLineGrow {
  to {
    width: 2.5rem;
  }
}

body.home .hero-headline {
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  background: none;
  animation: homeFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s backwards;
}

/* Below hero: natural height + soft color handoff (no hard rules or full-screen bands) */
body.home .home-section {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-top: none;
  border-bottom: none;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-top: max(clamp(3.25rem, 10vw, 6rem), env(safe-area-inset-top, 0px));
  padding-bottom: max(clamp(3.25rem, 10vw, 6rem), env(safe-area-inset-bottom, 0px));
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

body.home .section.intro.home-section {
  border-top: none;
}

body.home .home-section-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

/* Section already has horizontal padding; drop .container’s extra 1.5rem so the column matches hero + all bands. */
body.home .home-section > .container.home-section-inner {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  min-width: 0;
}

body.home .home-intro-audience.intro-text {
  margin-bottom: 0;
}

body.home .home-why-lead {
  margin: 0 0 1.35rem;
  color: inherit;
}

body.home .home-why-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

body.home .home-why-group {
  margin: 0;
}

body.home .home-why-group-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

body.home .home-why-group p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Shared: stagger content when section scrolls into view */
body.home .home-section--ideas .home-section-inner--ideas > *,
body.home .home-section--connect .home-section-inner--connect > *,
body.home .home-section--contact .home-section-inner--contact > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home .home-section--ideas.home-visible .home-section-inner--ideas > *,
body.home .home-section--connect.home-visible .home-section-inner--connect > *,
body.home .home-section--contact.home-visible .home-section-inner--contact > * {
  opacity: 1;
  transform: translateY(0);
}

body.home .home-section--ideas.home-visible .home-section-inner--ideas > *:nth-child(1) {
  transition-delay: 0.04s;
}
body.home .home-section--ideas.home-visible .home-section-inner--ideas > *:nth-child(2) {
  transition-delay: 0.14s;
}
body.home .home-section--ideas.home-visible .home-section-inner--ideas > *:nth-child(3) {
  transition-delay: 0.22s;
}

body.home .home-section--connect.home-visible .home-section-inner--connect > *:nth-child(1) {
  transition-delay: 0.04s;
}
body.home .home-section--connect.home-visible .home-section-inner--connect > *:nth-child(2) {
  transition-delay: 0.1s;
}
body.home .home-section--connect.home-visible .home-section-inner--connect > *:nth-child(3) {
  transition-delay: 0.16s;
}

body.home .home-section--contact.home-visible .home-section-inner--contact > *:nth-child(1) {
  transition-delay: 0.05s;
}
body.home .home-section--contact.home-visible .home-section-inner--contact > *:nth-child(2) {
  transition-delay: 0.14s;
}

/* Merged intro: topics + why read (two stagger blocks) */
body.home .home-intro-block--why {
  margin-top: clamp(1.75rem, 4.5vw, 2.75rem);
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  border-top: 1px solid rgba(26, 26, 26, 0.09);
}

body.home .home-section-title--plain {
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
  color: var(--text);
}

body.home .home-section-lead {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 42em;
}

body.home .home-topics-grid {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  body.home .home-topics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  body.home .home-topics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

body.home .home-topic-item {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(26, 26, 26, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.home .home-topic-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

body.home .home-topic-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

body.home .home-topics-foot {
  margin: 0;
  font-size: 0.98rem;
}

body.home .home-text-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.25);
  transition: border-color 0.2s ease, color 0.2s ease;
}

body.home .home-text-link:hover {
  border-bottom-color: var(--text);
}

body.home .home-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ——— Ideas: editorial curves + soft orbs ——— */
body.home .home-section--ideas {
  /* Top matches hero bottom (#f7f7f7); bottom eases toward connect */
  background: linear-gradient(180deg, #f7f7f7 0%, #fafafa 38%, #f3f4f6 100%);
}

body.home .home-ideas-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
  animation: homeIdeasOrb 14s ease-in-out infinite;
}

body.home .home-ideas-orb--a {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  background: radial-gradient(circle, rgba(26, 26, 26, 0.09) 0%, transparent 70%);
  top: -12%;
  right: -8%;
  animation-delay: 0s;
}

body.home .home-ideas-orb--b {
  width: min(42vw, 360px);
  height: min(42vw, 360px);
  background: radial-gradient(circle, rgba(26, 26, 26, 0.06) 0%, transparent 72%);
  bottom: -10%;
  left: -6%;
  animation-delay: -4s;
  animation-duration: 18s;
}

@keyframes homeIdeasOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12px, 18px) scale(1.06);
  }
}

body.home .home-ideas-mesh {
  position: absolute;
  inset: -5% -10%;
  width: 120%;
  height: 120%;
  opacity: 0.85;
}

body.home .home-ideas-path {
  stroke-dasharray: 8 14;
  animation: homeIdeasPathFlow 22s linear infinite;
}

body.home .home-ideas-path--b {
  stroke-dasharray: 10 16;
  animation-duration: 28s;
  animation-direction: reverse;
  opacity: 0.85;
}

@keyframes homeIdeasPathFlow {
  to {
    stroke-dashoffset: -220;
  }
}

body.home .home-section-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}

body.home .home-section-title--ideas {
  position: relative;
  display: inline-block;
}

body.home .home-section-title--ideas::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.45), rgba(26, 26, 26, 0.08), transparent);
  transform: scaleX(0.28);
  transform-origin: left center;
}

@keyframes homeIdeasUnderline {
  from {
    transform: scaleX(0.28);
  }
  to {
    transform: scaleX(1);
  }
}

body.home .home-section--ideas.home-visible .home-section-title--ideas::after {
  animation: homeIdeasUnderline 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

/* ——— Connect: grid + LinkedIn-tint spotlight ——— */
body.home .home-section--connect {
  /* Continue from ideas without a visible seam */
  background: linear-gradient(180deg, #f3f4f6 0%, #fafafa 32%, var(--bg) 100%);
}

body.home .home-connect-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 25%, transparent 100%);
  opacity: 0.65;
  animation: homeConnectGrid 30s linear infinite;
}

@keyframes homeConnectGrid {
  to {
    background-position: 56px 56px, 56px 56px;
  }
}

body.home .home-connect-spotlight {
  position: absolute;
  width: min(100vmin, 720px);
  height: min(100vmin, 720px);
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 45% 42%, rgba(10, 102, 194, 0.11) 0%, rgba(10, 102, 194, 0.02) 42%, transparent 68%);
  animation: homeConnectSpotlight 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes homeConnectSpotlight {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  40% {
    transform: translate(-46%, -54%) scale(1.05);
  }
  70% {
    transform: translate(-54%, -46%) scale(0.96);
  }
}

body.home .home-section-kicker--connect {
  color: rgba(26, 26, 26, 0.55);
}

body.home .home-section-kicker--contact {
  color: rgba(26, 26, 26, 0.55);
}

/* Contact — same column width as other sections; surface band reads as a new block */
body.home .home-section--contact {
  background: var(--surface);
}

body.home .home-contact-header {
  margin-bottom: 1.75rem;
  max-width: none;
}

body.home .home-contact-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
}

body.home .home-contact-lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

body.home .home-contact-thanks {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(13, 71, 161, 0.08);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}

body.home .home-contact-form-message {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
}

body.home .home-contact-form.loading .home-contact-submit {
  opacity: 0.7;
  pointer-events: none;
}

body.home .home-contact-panel {
  max-width: none;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

body.home .home-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  max-width: none;
}

body.home .home-contact-field-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

body.home .home-contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  width: 100%;
  min-width: 0;
}

body.home .home-contact-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.home .home-contact-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.45;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 0;
  transition: border-color 0.2s ease;
}

body.home .home-contact-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  min-height: 6.5rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 10px;
  resize: vertical;
  transition: border-color 0.2s ease;
}

body.home .home-contact-input::placeholder,
body.home .home-contact-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.75;
}

body.home .home-contact-input:hover {
  border-bottom-color: rgba(26, 26, 26, 0.28);
}

body.home .home-contact-input:focus {
  outline: none;
  border-bottom-color: var(--text);
}

body.home .home-contact-textarea:hover {
  border-color: rgba(26, 26, 26, 0.18);
}

body.home .home-contact-textarea:focus {
  outline: none;
  border-color: rgba(26, 26, 26, 0.38);
}

body.home .home-contact-actions {
  display: block;
  width: 100%;
  padding-top: 0.2rem;
  margin-bottom: 0;
}

body.home .home-contact-submit {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

@media (min-width: 560px) {
  body.home .home-contact-field-row {
    grid-template-columns: 1fr 1fr;
  }
}

body.home .home-about-headline {
  margin: 0 0 1.15rem;
}

body.home .home-author-connect-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

body.home .home-author-connect-copy {
  min-width: 0;
}

body.home .home-author-connect-name {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

body.home .home-author-connect-role {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: -0.01em;
}

body.home .home-author-connect-bio {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
}

body.home .home-author-connect-bio p {
  margin: 0 0 1rem;
}

body.home .home-author-connect-bio p:last-child {
  margin-bottom: 0;
}

body.home .home-author-connect-bio a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

body.home .home-author-connect-bio a:hover {
  color: var(--text-muted);
}

body.home .home-author-connect-follow-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

body.home .home-author-connect-follow .cta-text {
  margin-bottom: 1.1rem;
}

body.home .home-cta-headline {
  font-size: clamp(1.65rem, 4vw, 2rem);
  color: var(--text);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.home .home-cta-headline {
    background: linear-gradient(115deg, var(--text) 0%, rgba(26, 26, 26, 0.72) 55%, rgba(10, 80, 150, 0.35) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

body.home .section.cta {
  background: transparent;
  border-top: none;
}

body.home .cta .cta-headline,
body.home .cta .cta-text {
  text-align: left;
}

/* Subsections: wider column + larger type on tablet/desktop; mobile stays compact */
@media (min-width: 768px) {
  body.home .home-section-inner,
  body.home .hero-inner {
    max-width: 800px;
  }

  body.home .hero-subheadline {
    font-size: clamp(1.12rem, 0.35vw + 1rem, 1.35rem);
    margin-bottom: 2.25rem;
  }

  body.home .home-section-kicker {
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
    letter-spacing: 0.14em;
  }

  body.home .home-section-inner--ideas > .section-title.home-section-title--ideas {
    font-size: clamp(2rem, 1.2vw + 1.35rem, 2.45rem);
    line-height: 1.12;
  }

  body.home .home-section-title--ideas::after {
    height: 4px;
    bottom: -0.22em;
  }

  body.home .intro-text {
    font-size: clamp(1.12rem, 0.35vw + 1rem, 1.28rem);
    line-height: 1.75;
    max-width: 42em;
    margin-bottom: 0;
  }

  body.home .home-why-group-title {
    font-size: 1.12rem;
    margin-bottom: 0.65rem;
  }

  body.home .home-why-groups {
    gap: 1.65rem;
  }

  body.home .home-why-group p {
    line-height: 1.75;
  }

  body.home .home-cta-headline {
    font-size: clamp(2rem, 1.2vw + 1.35rem, 2.45rem);
    line-height: 1.12;
    margin-bottom: 1.1rem;
  }

  body.home .home-author-connect-panel {
    gap: 1.85rem;
  }

  body.home .home-author-connect-follow-title {
    font-size: 1.12rem;
    margin-bottom: 0.65rem;
  }

  body.home .home-author-connect-bio {
    font-size: clamp(1.06rem, 0.35vw + 0.98rem, 1.2rem);
    line-height: 1.75;
  }

  body.home .home-section--connect .cta-text {
    font-size: clamp(1.06rem, 0.35vw + 0.98rem, 1.22rem);
    line-height: 1.75;
    max-width: 42em;
    margin-bottom: 1.75rem;
  }

  body.home .home-contact-header {
    margin-bottom: 2rem;
  }

  body.home .home-contact-title {
    font-size: clamp(1.55rem, 1.2vw + 1.1rem, 1.95rem);
  }

  body.home .home-contact-lead {
    font-size: clamp(1.06rem, 0.35vw + 0.98rem, 1.2rem);
    line-height: 1.75;
  }
}

@media (min-width: 1100px) {
  body.home .home-section-inner,
  body.home .hero-inner {
    max-width: 920px;
  }

  body.home .intro-text,
  body.home .home-section--connect .cta-text {
    max-width: 46em;
  }
}

/* Buttons — home only */
body.home .cta-actions .btn {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.2s ease,
    border-color 0.2s ease;
}

/* Connect: Follow on LinkedIn — same palette + type as .btn / primary (Send) */
body.home .home-section--connect .cta-actions .btn-linkedin {
  background: var(--text);
  color: var(--surface);
  border-color: var(--text);
}

body.home .home-section--connect .cta-actions .btn-linkedin:hover {
  background: #333;
  border-color: #333;
  color: var(--surface);
}

body.home .cta-actions .btn-primary:hover,
body.home .cta-actions .btn-linkedin:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.18);
}

/* Footer fade */
body.home .site-footer {
  animation: homeFadeIn 0.8s ease 0.3s backwards;
  border-top: 1px solid rgba(26, 26, 26, 0.07);
}

@keyframes homeFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  body.home .site-header,
  body.home .hero-inner > *,
  body.home .hero-label::after,
  body.home .hero-headline {
    animation: none !important;
  }

  body.home .hero-route,
  body.home .hero-hub-ring,
  body.home .hero-ai-cluster {
    animation: none !important;
  }

  body.home .hero-route {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  body.home .hero-headline,
  body.home .hero-subheadline,
  body.home .hero-author-name,
  body.home .hero-author-meta,
  body.home .hero-label {
    text-shadow: none;
  }

  body.home .hero-headline {
    color: var(--text);
    -webkit-text-fill-color: var(--text);
    background: none;
  }

  body.home .section.intro,
  body.home .cta {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.home .home-section--ideas .home-section-inner--ideas > *,
  body.home .home-section--connect .home-section-inner--connect > *,
  body.home .home-section--contact .home-section-inner--contact > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body.home .home-ideas-orb,
  body.home .home-ideas-path,
  body.home .home-ideas-path--b,
  body.home .home-connect-grid,
  body.home .home-connect-spotlight {
    animation: none !important;
  }

  body.home .home-section-title--ideas::after {
    animation: none !important;
    transform: scaleX(1) !important;
  }

  body.home .home-ideas-path,
  body.home .home-ideas-path--b {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }

  body.home .home-cta-headline {
    background: none !important;
    -webkit-text-fill-color: var(--text) !important;
    color: var(--text) !important;
  }

  body.home .cta-actions .btn:hover {
    transform: none;
  }
}
