:root {
  color-scheme: light;
  --ink: hsl(224, 47%, 12%);
  --muted: hsl(215, 16%, 37%);
  --line: hsl(214, 32%, 91%);
  --panel: #ffffff;
  --soft: hsl(210, 40%, 98%);
  --blue: hsl(245, 58%, 51%);
  --blue-dark: hsl(245, 54%, 41%);
  --blue-light: hsl(245, 100%, 94%);
  --green: hsl(160, 84%, 39%);
  --green-light: hsl(150, 60%, 93%);
  --amber: hsl(38, 92%, 50%);
  --amber-light: hsl(48, 100%, 96%);
  --coral: hsl(354, 70%, 54%);
  --coral-light: hsl(354, 80%, 95%);
  --purple: hsl(262, 89%, 66%);
  --purple-light: hsl(262, 80%, 95%);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  --shadow-deep: 0 30px 60px rgba(15, 23, 42, 0.08), 0 12px 24px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.container--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.9rem clamp(1.5rem, 4vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
}

.brand,
.nav,
.hero__actions,
.metric-band,
.signal-item {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 850;
  font-size: 1.15rem;
  color: var(--ink);
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.9;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--blue), #10b981);
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.2);
}

.nav {
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem clamp(0.55rem, 1.2vw, 1.25rem);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a:hover {
  color: var(--blue-dark);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--blue-dark);
  transition: color 0.2s ease;
}

.header-cta:hover {
  color: var(--blue);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(720px, 90svh);
  padding: clamp(6rem, 12vh, 9rem) 0 clamp(4rem, 7vh, 6rem);
  background: radial-gradient(circle at 10% 20%, rgba(243, 244, 246, 0.8) 0%, #ffffff 100%);
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.hero__visual-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Browser Mockup Showcase */
.browser-mock-hero {
  width: 100%;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.browser-mock-hero:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.16), 0 0 50px rgba(79, 70, 229, 0.1);
}

.browser-mock-hero__bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--line);
}

.browser-mock-hero__dots {
  display: inline-flex;
  gap: 0.35rem;
}

.browser-mock-hero__dots i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  display: inline-block;
}

.browser-mock-hero__dots i:nth-child(1) { background: #f87171; }
.browser-mock-hero__dots i:nth-child(2) { background: #fbbf24; }
.browser-mock-hero__dots i:nth-child(3) { background: #34d399; }

.browser-mock-hero__url {
  padding: 0.25rem 1.5rem;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: monospace;
  flex: 1;
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
}

.browser-mock-hero__body {
  position: relative;
  background: #f8fafc;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.browser-mock-hero__body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* Faint editorial paper-grid that fades toward the bottom — texture, not an "AI glow". */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(130% 105% at 50% 0%, #000 30%, transparent 72%);
  mask-image: radial-gradient(130% 105% at 50% 0%, #000 30%, transparent 72%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at right center, rgba(79, 70, 229, 0.06), transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  min-width: 0;
}

.hero__content > * {
  animation: heroUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero__content > *:nth-child(1) { animation-delay: 0.02s; }
.hero__content > *:nth-child(2) { animation-delay: 0.1s; }
.hero__content > *:nth-child(3) { animation-delay: 0.18s; }
.hero__content > *:nth-child(4) { animation-delay: 0.26s; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* "Live" pill — editorial, lowercase, with a pulsing dot. */
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0.42rem 0.85rem 0.42rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 8px 24px rgba(25, 35, 58, 0.06);
}

.hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  animation: livePulse 2.2s infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 159, 115, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(15, 159, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 159, 115, 0); }
}

/* The key phrase: italic serif with a hand-drawn marker underline (not a gradient). */
.hero__accent {
  font-style: italic;
  white-space: nowrap;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 18' preserveAspectRatio='none'%3E%3Cpath d='M4 12 C 70 4 150 4 296 9' fill='none' stroke='%23d54f4f' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 96%;
  background-size: 100% 0.34em;
  padding-bottom: 0.06em;
}

@media (prefers-reduced-motion: reduce) {
  .hero__content > *,
  .hero .eyebrow::before {
    animation: none;
  }
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.9rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

h2 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
}

h3 {
  font-size: 1.18rem;
}

.hero__summary {
  max-width: 640px;
  margin: 1.25rem 0 0;
  color: #28344a;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 700;
}

.hero__detail {
  max-width: 660px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.6rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: none;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.32), 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.button--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.button--secondary:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.metric-band {
  position: relative;
  z-index: 20;
  width: min(1200px, calc(100% - 3rem));
  margin: -3.5rem auto 0;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-deep);
}

.metric {
  flex: 1 1 0;
  min-width: 180px;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.metric__num {
  font-variant-numeric: tabular-nums;
}

.metric__suffix {
  margin-left: 0.22rem;
  color: var(--green);
  font-size: 0.42em;
}

.metric p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.channel-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  width: min(1200px, calc(100% - 3rem));
  margin: 3.5rem auto 0;
  padding: 0 1rem;
}

.channel-band__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.channel-band__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.channel-band__list li {
  padding: 0.4rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
  transition: all 0.2s ease;
}

.channel-band__list li:hover {
  border-color: rgba(79, 70, 229, 0.3);
  color: var(--blue-dark);
  background: var(--soft);
  transform: translateY(-1px);
}

/* ─── Growth outcomes (Sales / SEO / Social) ─────────────────────────────── */
.section--outcomes {
  background: #ffffff;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.6rem;
}

.outcome-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.7rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02), 0 12px 35px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.outcome-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent, var(--blue));
}

.outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(25, 35, 58, 0.1);
  border-color: var(--accent, rgba(36, 87, 214, 0.32));
}

.outcome-card--sales { --accent: var(--green); --accent-soft: var(--green-light); --accent-ring: rgba(15, 159, 115, 0.14); }
.outcome-card--seo { --accent: var(--blue); --accent-soft: var(--blue-light); --accent-ring: rgba(79, 70, 229, 0.14); }
.outcome-card--social { --accent: var(--purple); --accent-soft: var(--purple-light); --accent-ring: rgba(139, 92, 246, 0.16); }

.outcome-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.outcome-card__kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: var(--accent-soft, var(--blue-light));
  color: var(--accent, var(--blue-dark));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.outcome-card__stat {
  text-align: right;
  line-height: 1.05;
}

.outcome-card__stat strong {
  display: block;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.outcome-card__stat span {
  display: block;
  margin-top: 0.25rem;
  max-width: 9rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.outcome-card h3 {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}

.outcome-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.outcome-card__points {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.outcome-card__points li {
  position: relative;
  padding-left: 1.5rem;
  color: #28344a;
  font-size: 0.9rem;
  font-weight: 700;
}

.outcome-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent, var(--green));
  box-shadow: 0 0 0 5px var(--accent-ring, rgba(15, 159, 115, 0.14));
}

@media (prefers-reduced-motion: reduce) {
  .outcome-card:hover {
    transform: none;
  }
}

.section {
  padding: clamp(5rem, 8vw, 8rem) clamp(1rem, 4vw, 4rem);
}

.section--light {
  background: var(--soft);
}

.section--split {
  background: #ffffff;
}

.section--calendar {
  background: #eef5fb;
}

.section--bookings {
  background: #eef7f2;
}

.section__intro {
  width: min(760px, 100%);
}

.section__intro p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.agent-grid,
.channel-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.4rem;
}

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

.channel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

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

.agent-card,
.workflow-step,
.channel-card,
.calendar-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

/* Glassmorphism base for landing cards */
.agent-card,
.workflow-step,
.channel-card,
.cmo-phase,
.start-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 1px 3px rgba(15, 23, 42, 0.02), 
    0 10px 30px rgba(15, 23, 42, 0.03);
}

.agent-card {
  position: relative;
  min-height: 260px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.agent-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.agent-card__header p {
  margin: 0;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.agent-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #10b981;
  background: #ecfdf5;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #d1fae5;
}

.agent-card__pulse {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #10b981;
  position: relative;
  display: inline-block;
}

.agent-card__pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid #10b981;
  animation: agentPulse 2s infinite;
}

@keyframes agentPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.agent-card h3 {
  font-family: Inter, ui-sans-serif, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.agent-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex-grow: 1;
}

.feature-image {
  margin: 2.4rem 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: auto;
}

.feature-image--calendar {
  margin-top: 2.2rem;
}

.signal-list {
  display: grid;
  gap: 0.9rem;
}

.signal-item {
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfe;
}

.signal-item span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(15, 159, 115, 0.12);
  flex: 0 0 auto;
}

.signal-item:nth-child(2) span {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(36, 87, 214, 0.12);
}

.signal-item:nth-child(3) span {
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.12);
}

.signal-item:nth-child(4) span {
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(213, 79, 79, 0.12);
}

.signal-item p {
  margin: 0;
  color: #28344a;
  font-weight: 800;
}

.calendar-layout {
  display: grid;
  gap: 1rem;
  margin-top: 2.4rem;
}

.channel-card {
  min-height: 190px;
  padding: 1.15rem;
}

.channel-card strong {
  display: block;
  margin-top: 0.85rem;
  color: var(--blue);
  font-size: 0.92rem;
}

.channel-card p {
  color: var(--muted);
}

.calendar-board {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

/* Custom Status Badges in Ledgers */
.status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 750;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1.2;
}

.status-badge--confirmed,
.status-badge--ready {
  color: #065f46;
  background-color: #ecfdf5;
  border-color: #a7f3d0;
}

.status-badge--reminder-sent,
.status-badge--queued {
  color: #3730a3;
  background-color: #e0e7ff;
  border-color: #c7d2fe;
}

.status-badge--review {
  color: #92400e;
  background-color: #fffbeb;
  border-color: #fde68a;
}

.status-badge--testing {
  color: #1e40af;
  background-color: #eff6ff;
  border-color: #bfdbfe;
}

.status-badge--drafted {
  color: #374151;
  background-color: #f3f4f6;
  border-color: #e5e7eb;
}

.calendar-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(220px, 1.6fr) minmax(140px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.1rem 1.4rem;
  box-shadow: none;
  transition: all 0.2s ease;
}

.calendar-row:hover {
  transform: translateX(4px);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.calendar-row strong,
.calendar-row span,
.calendar-row small {
  display: block;
}

.calendar-row strong {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--blue-dark);
}

.calendar-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

.calendar-row p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.workflow-step {
  min-height: 230px;
  padding: 1.2rem;
}

.workflow-step strong {
  color: var(--blue);
  font-size: 0.86rem;
}

.workflow-step h3 {
  margin-top: 1rem;
}

.workflow-step p {
  color: var(--muted);
}

.section--cmo {
  background: #fff;
}

.cmo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: 2.6rem;
}

.cmo-phases {
  display: grid;
  gap: 1rem;
}

.cmo-phase,
.cmo-intake {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(25, 35, 58, 0.08);
}

.cmo-phase {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.cmo-phase strong {
  display: inline-block;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.cmo-phase h3 {
  margin-top: 0;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}

.cmo-phase p,
.cmo-intake__header p {
  color: var(--muted);
}

.cmo-phase ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.cmo-phase li {
  position: relative;
  padding-left: 1.45rem;
  color: #28344a;
  font-size: 0.94rem;
  font-weight: 750;
}

.cmo-phase li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15, 159, 115, 0.12);
}

.cmo-intake {
  display: grid;
  gap: 1.25rem;
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 
    0 1px 3px rgba(15, 23, 42, 0.02),
    0 30px 60px rgba(15, 23, 42, 0.08);
}

.cmo-intake__header h3 {
  margin-bottom: 0.45rem;
}

.cmo-intake__header p {
  margin: 0;
  font-size: 0.95rem;
}

.cmo-intake label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cmo-intake input,
.cmo-intake select,
.cmo-intake textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.8);
  color: var(--ink);
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

.cmo-intake input:hover,
.cmo-intake select:hover,
.cmo-intake textarea:hover {
  background: #ffffff;
  border-color: #cbd5e1;
}

.cmo-intake input:focus,
.cmo-intake select:focus,
.cmo-intake textarea:focus {
  background: #ffffff;
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15), inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

.cmo-intake textarea {
  resize: vertical;
}

.cmo-intake button[type="submit"] {
  margin-top: 0.5rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
  transition: all 0.2s ease;
}

.cmo-intake button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

/* Browser extension showcase */
.section--extension {
  color: #fff;
  background: linear-gradient(135deg, #0d1424 0%, #15295f 56%, #0c7d5c 100%);
}

.section--extension .eyebrow {
  color: #8fb4ff;
}

.section--extension .section__intro h2 {
  color: #fff;
}

.section--extension .section__intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.extension-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 2.8rem;
}

.extension-features {
  display: grid;
  gap: 1rem;
}

.extension-card {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.extension-card p {
  margin: 0 0 0.6rem;
  color: #7fe3c0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.extension-card h3 {
  color: #fff;
}

.extension-card span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

/* Side-panel mock */
.assist-mock {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-deep);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.assist-mock:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.16);
}

.assist-mock__bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--line);
}

.assist-mock__dots {
  display: inline-flex;
  gap: 0.35rem;
}

.assist-mock__dots i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #cbd5e1;
  display: inline-block;
}

.assist-mock__dots i:nth-child(1) { background: #f87171; }
.assist-mock__dots i:nth-child(2) { background: #fbbf24; }
.assist-mock__dots i:nth-child(3) { background: #34d399; }

.assist-mock__url {
  padding: 0.2rem 1rem;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: monospace;
}

.assist-mock__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 240px);
  background: #f8fafc;
}

.assist-mock__page {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.5rem;
  background: #ffffff;
}

.assist-mock__page span {
  height: 10px;
  border-radius: 999px;
  background: #f1f5f9;
}

.assist-mock__page span:nth-child(1) { width: 70%; height: 16px; background: #e2e8f0; }
.assist-mock__page span:nth-child(2) { width: 45%; }
.assist-mock__page span:nth-child(3) { width: 90%; }
.assist-mock__page span:nth-child(4) { width: 80%; }
.assist-mock__page span:nth-child(5) { width: 55%; }

.assist-mock__panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-left: 1px solid var(--line);
}

.assist-mock__chip {
  align-self: flex-start;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #e0e7ff;
  color: #4338ca;
  font-size: 0.7rem;
  font-weight: 850;
  border: 1px solid #c7d2fe;
}

.assist-mock__label {
  margin: 0;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.assist-mock__draft {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}

.assist-mock__coach {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.assist-mock__coach li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
}

.assist-mock__coach li::before {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  color: #fff;
}

.assist-mock__coach li.is-good {
  color: #065f46;
}

.assist-mock__coach li.is-good::before {
  content: "✓";
  background: #10b981;
}

.assist-mock__coach li.is-warn {
  color: #92400e;
}

.assist-mock__coach li.is-warn::before {
  content: "!";
  background: #f59e0b;
}

.assist-mock__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.assist-mock-btn {
  flex: 1 1 0;
  border: none;
  font-family: inherit;
  text-align: center;
  padding: 0.45rem 0;
  border-radius: 6px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.assist-mock-btn:hover {
  background: var(--blue-dark);
}

.assist-mock-btn:nth-child(n + 2) {
  background: #ffffff;
  color: var(--blue-dark);
  border: 1px solid var(--line);
}

.assist-mock-btn:nth-child(n + 2):hover {
  background: var(--soft);
}

/* Private local agent showcase */
.section--private-ai {
  background:
    radial-gradient(circle at 14% 18%, rgba(16, 185, 129, 0.12), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(79, 70, 229, 0.1), transparent 28%),
    #ffffff;
}

.section--private-ai .eyebrow {
  color: var(--green);
}

.section--private-ai .section__intro {
  max-width: 820px;
}

.section--private-ai .hero__actions {
  margin-top: 1.6rem;
}

.private-ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  margin-top: 2.8rem;
}

.private-ai-mock {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: #0f172a;
  box-shadow: var(--shadow-deep);
}

.private-ai-mock__bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.96);
  color: #e2e8f0;
}

.private-ai-mock__dots {
  display: inline-flex;
  gap: 0.35rem;
}

.private-ai-mock__dots i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #64748b;
}

.private-ai-mock__dots i:nth-child(1) { background: #f87171; }
.private-ai-mock__dots i:nth-child(2) { background: #fbbf24; }
.private-ai-mock__dots i:nth-child(3) { background: #34d399; }

.private-ai-mock__title {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.private-ai-mock__status {
  flex: 0 0 auto;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(125, 227, 192, 0.42);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: #7fe3c0;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.local-worker {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98)),
    #0f172a;
  color: #e2e8f0;
}

.local-worker__header {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.local-worker__header div,
.local-worker__prompt,
.local-worker__output {
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.local-worker span,
.local-worker__header span {
  display: block;
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.local-worker__header strong {
  display: block;
  margin-top: 0.35rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.local-worker__permissions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.local-worker__permissions span {
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(125, 227, 192, 0.32);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: #7fe3c0;
  font-size: 0.7rem;
}

.local-worker__prompt p,
.local-worker__output p {
  margin: 0.45rem 0 0;
  color: #f8fafc;
  font-size: 0.92rem;
}

.local-worker__checks {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-worker__checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-size: 0.84rem;
  font-weight: 750;
}

.local-worker__checks li::before {
  content: "✓";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #10b981;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.local-worker__output {
  border-color: rgba(79, 70, 229, 0.3);
  background: rgba(79, 70, 229, 0.14);
}

.private-ai-panel {
  display: grid;
  gap: 1rem;
}

.privacy-workflow,
.private-ai-features {
  display: grid;
  gap: 1rem;
}

.privacy-step,
.private-ai-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.privacy-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.2rem 0.85rem;
  padding: 1rem;
}

.privacy-step span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 950;
}

.privacy-step h3 {
  margin: 0;
  font-size: 1rem;
}

.privacy-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.private-ai-card {
  padding: 1rem;
}

.private-ai-card p {
  margin: 0 0 0.55rem;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.private-ai-card h3 {
  font-size: 1rem;
}

.private-ai-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

#bookings .feature-image {
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.08), 0 12px 24px rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

#calendar .feature-image {
  box-shadow: 0 30px 60px rgba(79, 70, 229, 0.08), 0 12px 24px rgba(79, 70, 229, 0.05);
  border-color: rgba(79, 70, 229, 0.2);
}

.section--faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.4rem;
  max-width: 880px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(25, 35, 58, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(36, 87, 214, 0.1);
  color: var(--blue-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "\2013";
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.start {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  color: #fff;
  background: linear-gradient(135deg, #121826 0%, #173a91 58%, #0f9f73 100%);
}

.start .eyebrow {
  color: #9bd9c4;
}

.start .section__intro h2 {
  color: #fff;
}

.start .section__intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.start-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.start-card h3 {
  color: #fff;
}

.start-card p {
  margin: 0;
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.76);
}

.start-card .button {
  margin-top: 0.4rem;
}

.site-footer {
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
}

.site-footer__container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem clamp(2rem, 6vw, 5rem);
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 420px;
}

.site-footer__brand strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.site-footer__brand p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.site-footer__links {
  display: flex;
  gap: clamp(2rem, 6vw, 4rem);
}

.site-footer__links h4 {
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.site-footer__links a {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}

.site-footer__links a:hover {
  color: var(--blue);
}

.site-footer__legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   Creative marketing polish: a recurring hand-drawn motif, scroll reveal,
   and cards that come alive on hover — so the whole page feels designed.
   ───────────────────────────────────────────────────────────────────────── */

/* Marker underline on a key word in section headings (echoes the hero accent). */
.mark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 18' preserveAspectRatio='none'%3E%3Cpath d='M4 13 C 80 5 170 5 296 10' fill='none' stroke='%23d54f4f' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% 0.26em;
  padding-bottom: 0.04em;
}

/* Scroll reveal — only active once home.js adds `.reveal-ready` (so no-JS shows all). */
.reveal-ready .section__intro,
.reveal-ready .agent-card,
.reveal-ready .outcome-card,
.reveal-ready .extension-card,
.reveal-ready .private-ai-card,
.reveal-ready .privacy-step,
.reveal-ready .topic-link-card,
.reveal-ready .topic-card,
.reveal-ready .channel-map-card,
.reveal-ready .topic-context-card,
.reveal-ready .article-sidebar__card,
.reveal-ready .channel-card,
.reveal-ready .signal-item,
.reveal-ready .workflow-step,
.reveal-ready .cmo-phase,
.reveal-ready .cmo-intake,
.reveal-ready .faq-item,
.reveal-ready .start-card,
.reveal-ready .feature-image,
.reveal-ready .assist-mock,
.reveal-ready .private-ai-mock,
.reveal-ready .article-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.reveal-ready .is-visible {
  opacity: 1;
  transform: none;
}

/* Alive cards — lift + accent on hover. (Hover rules come after reveal so they win.) */
.agent-card,
.channel-card,
.workflow-step,
.cmo-phase,
.privacy-step,
.private-ai-card,
.topic-link-card,
.topic-card,
.channel-map-card,
.topic-context-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.agent-card:hover,
.channel-card:hover,
.workflow-step:hover,
.cmo-phase:hover,
.privacy-step:hover,
.private-ai-card:hover,
.topic-card:hover,
.channel-map-card:hover,
.topic-context-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 60px rgba(25, 35, 58, 0.1), 0 0 20px rgba(79, 70, 229, 0.05);
  border-color: rgba(36, 87, 214, 0.32);
}

.extension-card,
.start-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
}

.extension-card:hover,
.start-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Staggered entrance transition delays for scrolling reveal */
.reveal-ready .agent-card:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .agent-card:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .agent-card:nth-child(3) { transition-delay: 0.1s; }
.reveal-ready .agent-card:nth-child(4) { transition-delay: 0.14s; }
.reveal-ready .agent-card:nth-child(5) { transition-delay: 0.18s; }

.reveal-ready .workflow-step:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .workflow-step:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .workflow-step:nth-child(3) { transition-delay: 0.1s; }
.reveal-ready .workflow-step:nth-child(4) { transition-delay: 0.14s; }

.reveal-ready .extension-card:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .extension-card:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .extension-card:nth-child(3) { transition-delay: 0.1s; }
.reveal-ready .extension-card:nth-child(4) { transition-delay: 0.14s; }

.reveal-ready .privacy-step:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .privacy-step:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .privacy-step:nth-child(3) { transition-delay: 0.1s; }

.reveal-ready .private-ai-card:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .private-ai-card:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .private-ai-card:nth-child(3) { transition-delay: 0.1s; }

.reveal-ready .topic-link-card:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .topic-link-card:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .topic-link-card:nth-child(3) { transition-delay: 0.1s; }
.reveal-ready .topic-link-card:nth-child(4) { transition-delay: 0.14s; }
.reveal-ready .topic-link-card:nth-child(5) { transition-delay: 0.18s; }
.reveal-ready .topic-link-card:nth-child(6) { transition-delay: 0.22s; }

.reveal-ready .topic-card:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .topic-card:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .topic-card:nth-child(3) { transition-delay: 0.1s; }
.reveal-ready .topic-card:nth-child(4) { transition-delay: 0.14s; }

.reveal-ready .channel-map-card:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .channel-map-card:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .channel-map-card:nth-child(3) { transition-delay: 0.1s; }

.reveal-ready .topic-context-card:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .topic-context-card:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .topic-context-card:nth-child(3) { transition-delay: 0.1s; }
.reveal-ready .topic-context-card:nth-child(4) { transition-delay: 0.14s; }

.reveal-ready .cmo-phase:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .cmo-phase:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .cmo-phase:nth-child(3) { transition-delay: 0.1s; }

.reveal-ready .start-card:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .start-card:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .start-card:nth-child(3) { transition-delay: 0.1s; }

.reveal-ready .outcome-card:nth-child(1) { transition-delay: 0.02s; }
.reveal-ready .outcome-card:nth-child(2) { transition-delay: 0.08s; }
.reveal-ready .outcome-card:nth-child(3) { transition-delay: 0.14s; }

@media (prefers-reduced-motion: reduce) {
  .agent-card:hover,
  .channel-card:hover,
  .workflow-step:hover,
  .cmo-phase:hover,
  .privacy-step:hover,
  .private-ai-card:hover,
  .topic-link-card:hover,
  .topic-card:hover,
  .channel-map-card:hover,
  .topic-context-card:hover,
  .extension-card:hover,
  .start-card:hover {
    transform: none;
  }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__content {
    margin: 0 auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual-wrapper {
    margin-top: 3rem;
  }

  .browser-mock-hero {
    max-width: 600px;
    margin: 0 auto;
  }

  .container--split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .agent-grid,
  .channel-grid,
  .workflow,
  .start-grid,
  .topic-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section--split,
  .cmo-layout,
  .extension-layout,
  .private-ai-layout {
    grid-template-columns: 1fr;
  }

  .private-ai-features {
    grid-template-columns: 1fr;
  }

  .topic-hub__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    min-height: auto;
    position: relative;
  }

  .nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    width: 100%;
    font-size: 0.85rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero__inner {
    padding-inline: 1rem;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.75rem;
    line-height: 1;
  }

  .hero__summary {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .metric-band {
    flex-direction: column;
    align-items: stretch;
    margin-top: 2rem;
    width: calc(100% - 2rem);
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.5rem;
  }

  .metric:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .agent-grid,
  .channel-grid,
  .workflow,
  .cmo-layout,
  .start-grid,
  .outcome-grid,
  .local-worker__header,
  .topic-section-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    flex-wrap: wrap;
  }

  .assist-mock__body {
    grid-template-columns: 1fr;
  }

  .assist-mock__page {
    display: none;
  }

  .calendar-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Articles / Insights (blog list + cards)
   ───────────────────────────────────────────────────────────────────────── */
.section--topics,
.section--insights {
  background: #fff;
}

.topic-hub {
  display: grid;
  gap: 2.8rem;
  margin-top: 2.4rem;
}

.topic-hub__group {
  display: grid;
  gap: 1rem;
}

.topic-hub__group--reads {
  margin-top: 2.8rem;
}

.topic-hub__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.topic-hub__head h3 {
  margin: 0;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.topic-hub__head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.topic-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.topic-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.topic-link-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent, var(--blue));
}

.topic-link-card--sales { --accent: var(--green); }
.topic-link-card--seo { --accent: var(--blue); }
.topic-link-card--social { --accent: var(--purple); }
.topic-link-card--outreach { --accent: var(--coral); }
.topic-link-card--tools { --accent: var(--amber); }
.topic-link-card--private-ai { --accent: var(--blue-dark); }

.topic-link-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent, var(--blue)) 46%, var(--line));
  box-shadow: var(--shadow-deep);
}

.topic-link-card p {
  margin: 0 0 0.8rem;
  color: var(--accent, var(--blue-dark));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topic-link-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.topic-link-card span {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.topic-link-card a {
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.topic-link-card a:hover {
  color: var(--blue);
}

.topic-grid--home {
  margin-top: 0;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.4rem;
}

.article-grid--index {
  margin-top: 2.8rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(79, 70, 229, 0.4);
}

.article-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
  border-bottom: 1px solid var(--line);
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card__media img {
  transform: scale(1.05);
}

.article-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  border: 1px solid transparent;
  line-height: 1.1;
}

.article-badge--product {
  color: #0369a1;
  background-color: #e0f2fe;
  border-color: #bae6fd;
}

.article-badge--philosophy {
  color: #6b21a8;
  background-color: #f3e8ff;
  border-color: #e9d5ff;
}

.article-badge--content {
  color: #15803d;
  background-color: #dcfce7;
  border-color: #bbf7d0;
}

.article-badge--leadership {
  color: #b45309;
  background-color: #fef3c7;
  border-color: #fde68a;
}

.article-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.5rem;
}

.article-card__body h2,
.article-card__body h3 {
  margin: 0 0 0.6rem;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.35;
}

.article-card__body h2 a,
.article-card__body h3 a {
  color: var(--ink);
  transition: color 0.2s;
}

.article-card__body h2 a:hover,
.article-card__body h3 a:hover {
  color: var(--blue);
}

.article-card__body > p:not(.article-badge, .article-card__meta) {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.article-card__meta {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.insights-all {
  display: inline-block;
  margin-top: 1.6rem;
  color: var(--blue-dark);
  font-weight: 800;
}

.insights-all:hover {
  color: var(--blue);
}

.section-link {
  display: inline-block;
  margin-top: 1.4rem;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.95rem;
}

.section-link:hover {
  color: var(--blue);
}

.section--extension .section-link {
  color: #8fb4ff;
}

.section--extension .section-link:hover {
  color: #fff;
}

/* ─── Single article page ────────────────────────────────────────────────── */
.article-main {
  background: #fff;
}

.article {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) 4rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.article__head {
  margin-bottom: 2.2rem;
}

.article__head h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  line-height: 1.04;
}

.article__lede {
  margin: 1.1rem 0 0;
  color: #28344a;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.article__author {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article__author:hover {
  color: var(--blue);
}

/* Prose — rendered markdown body */
.prose {
  color: #28344a;
  font-size: 1.06rem;
  line-height: 1.75;
}

.prose > * + * {
  margin-top: 1.15rem;
}

.prose h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin-top: 2.4rem;
  letter-spacing: -0.01em;
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 1.8rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin: 0.45rem 0;
}

.prose li::marker {
  color: var(--blue);
}

.prose strong {
  font-weight: 800;
  color: var(--ink);
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose blockquote {
  margin: 1.8rem 0;
  padding: 0.4rem 0 0.4rem 1.3rem;
  border-left: 3px solid var(--coral);
  color: var(--ink);
  font-size: 1.18rem;
  font-style: italic;
}

.prose blockquote p {
  margin: 0;
}

.article__foot {
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.article__tags span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.article__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.article__cta p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.article__back {
  display: inline-block;
  margin-top: 1.8rem;
  color: var(--blue-dark);
  font-weight: 800;
}

.article__back:hover {
  color: var(--blue);
}

/* ─── Author bio box (article foot) ──────────────────────────────────────── */
.author-bio {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.author-bio__avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--blue), #10b981);
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.2);
}

.author-bio__body {
  min-width: 0;
}

.author-bio__eyebrow {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-bio__name {
  margin: 0;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}

.author-bio__name a:hover {
  color: var(--blue);
}

.author-bio__role {
  margin: 0.2rem 0 0;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.author-bio__tagline {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.author-bio__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.author-bio__focus li {
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.author-bio__previously {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.author-bio__previously span {
  margin-right: 0.3rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.author-bio__link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.author-bio__link:hover {
  color: var(--blue);
}

/* ─── Author profile page ───────────────────────────────────────────────── */
.author-page {
  background: #fff;
}

.author-hero {
  background: #fbfcfe;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 7vw, 6rem);
}

.author-hero__inner {
  display: grid;
  gap: 1.4rem;
}

.author-hero__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: start;
  max-width: 900px;
}

.author-hero__avatar {
  display: grid;
  place-items: center;
  width: clamp(72px, 10vw, 104px);
  height: clamp(72px, 10vw, 104px);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #10b981);
  box-shadow: 0 16px 34px rgba(79, 70, 229, 0.18);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
}

.author-hero__copy {
  min-width: 0;
}

.author-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.author-hero__role {
  margin: 0.55rem 0 0;
  color: var(--blue-dark);
  font-weight: 850;
}

.author-hero__tagline {
  max-width: 760px;
  margin: 0.8rem 0 0;
  color: #28344a;
  font-size: 1.1rem;
  font-weight: 600;
}

.author-quote {
  max-width: 850px;
  margin: 1rem 0 0;
  border-left: 4px solid var(--green);
  padding-left: 1rem;
  color: #28344a;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
}

.author-quote p {
  margin: 0;
}

.author-page__content {
  display: grid;
  gap: 1rem;
}

@media (max-width: 560px) {
  .author-bio {
    flex-direction: column;
  }

  .author-hero__card {
    grid-template-columns: 1fr;
  }
}

/* ─── Rich insights landing, topics, and article media ───────────────────── */
.insights-hero,
.topic-hero {
  background: #fbfcfe;
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(1rem, 4vw, 4rem);
}

.insights-hero__inner,
.topic-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(1.6rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.insights-hero__copy,
.topic-hero__copy {
  min-width: 0;
}

.insights-hero h1,
.topic-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.insights-hero__copy > p:not(.eyebrow),
.topic-hero__copy > p:not(.eyebrow) {
  max-width: 640px;
  color: #28344a;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 650;
}

.topic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.insights-hero__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.7rem;
}

.insights-hero__topics a {
  display: inline-block;
  padding: 0.42rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #28344a;
  font-size: 0.82rem;
  font-weight: 850;
}

.insights-hero__topics a:hover,
.insights-hero__topics a[aria-current="page"] {
  border-color: rgba(36, 87, 214, 0.36);
  color: var(--blue-dark);
  background: rgba(36, 87, 214, 0.08);
}

.insights-hero__media,
.topic-hero__media,
.featured-article__media,
.topic-card__media,
.article-card__media,
.article__cover {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.insights-hero__media img,
.topic-hero__media img,
.featured-article__media img,
.topic-card__media img,
.article-card__media img,
.article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-hero__media,
.topic-hero__media {
  position: relative;
  aspect-ratio: 3 / 2;
}

.channel-hero__panel {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.1rem;
  min-width: 150px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.channel-hero__panel strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.channel-hero__panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.insights-featured {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: #fff;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: clamp(1.2rem, 4vw, 2.6rem);
  align-items: stretch;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.featured-article__media {
  display: block;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.featured-article__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.featured-article__body h3 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.02;
}

.featured-article__body h3 a:hover {
  color: var(--blue);
}

.featured-article__body > p:not(.article-card__cat, .article-card__meta) {
  color: var(--muted);
  font-size: 1.04rem;
}

.topic-library {
  background: #eef5fb;
}

/* ─── Insight pillar sections (Sales / SEO / Social / Outreach) ───────────── */
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-link--compact {
  flex: 0 0 auto;
  margin-top: 0;
}

.section--channel-map,
.section--topic-context {
  background: #ffffff;
}

.channel-map-grid,
.topic-context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.channel-map-card,
.topic-context-card {
  min-height: 190px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  box-shadow: var(--shadow);
}

.channel-map-card p,
.topic-context-card span {
  display: inline-flex;
  margin: 0 0 0.8rem;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.channel-map-card h3,
.topic-context-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.24;
}

.channel-map-card span {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.topic-context-card {
  min-height: 160px;
}

.topic-context-card--action {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: transparent;
}

.topic-context-card--action span,
.topic-context-card--action h3,
.topic-context-card--action a {
  color: #fff;
}

.topic-context-card--action a {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 900;
}

.topic-context-card--action:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: transparent;
}

.pillar-section {
  scroll-margin-top: 88px; /* clear the sticky header on anchor jumps */
}

.pillar-section--sales .eyebrow { color: var(--green); }
.pillar-section--seo .eyebrow { color: var(--blue-dark); }
.pillar-section--social .eyebrow { color: var(--purple); }
.pillar-section--outreach .eyebrow { color: var(--coral); }

.channel-next .section__intro {
  max-width: 760px;
}

.channel-next .button {
  margin-top: 0.5rem;
}

.channel-next-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.channel-next-card .button {
  flex: 0 0 auto;
  margin-top: 0;
}

/* Pack cards left and cap their width so a pillar with 1–2 reads still looks
   intentional instead of one lonely card stranded in a 3-up grid. */
.pillar-section .article-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  justify-content: start;
}

.pillar-section .article-card {
  max-width: 460px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.topic-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(25, 35, 58, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 87, 214, 0.32);
  box-shadow: 0 22px 48px rgba(25, 35, 58, 0.13);
}

.topic-card__media {
  display: block;
  aspect-ratio: 3 / 2;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.topic-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.2rem;
}

.topic-card__body p {
  margin: 0;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.topic-card__body h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.topic-card__body h3 a:hover {
  color: var(--blue);
}

.topic-card__body span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

/* article-card duplicate styles removed */

.article-main {
  background: #fff;
}

.article {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.article__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.article__head {
  margin-bottom: 0;
}

.article__head h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
}

.article__cover {
  aspect-ratio: 3 / 2;
}

.article__tags--head {
  margin: 1.2rem 0 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 720px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  justify-content: center;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.85rem;
}

.article-sidebar__card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  box-shadow: var(--shadow);
}

.article-sidebar__card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.article-sidebar__card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.article-sidebar__label {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-sidebar__links,
.article-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.article-sidebar__links a,
.article-sidebar__tags span {
  display: inline-flex;
  padding: 0.32rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #28344a;
  font-size: 0.75rem;
  font-weight: 800;
}

.article-sidebar__links a:hover {
  border-color: rgba(36, 87, 214, 0.34);
  color: var(--blue-dark);
}

.article-sidebar__card--cta {
  background: var(--ink);
  color: #ffffff;
}

.article-sidebar__card--cta .article-sidebar__label,
.article-sidebar__card--cta strong,
.article-sidebar__card--cta span,
.article-sidebar__card--cta a {
  color: #ffffff;
}

.article-sidebar__card--cta a {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  font-weight: 900;
}

.article-content {
  min-width: 0;
}

.prose,
.article__foot {
  width: 100%;
}

.article__foot {
  margin-top: 3rem;
}

.related-reads {
  margin-top: clamp(4rem, 8vw, 6rem);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
}

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

@media (max-width: 1020px) {
  .insights-hero__inner,
  .topic-hero__inner,
  .featured-article,
  .article__hero {
    grid-template-columns: 1fr;
  }

  .featured-article__media {
    aspect-ratio: 16 / 10;
  }

  .topic-grid,
  .topic-context-grid,
  .channel-map-grid,
  .article-grid,
  .related-reads .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 2;
  }

  .article-content {
    order: 1;
  }

  .section-heading-row,
  .channel-next-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .insights-hero__inner,
  .topic-hero__inner {
    padding-block: 3.5rem;
  }

  .insights-hero h1,
  .topic-hero h1 {
    font-size: 2rem;
  }

  .topic-grid,
  .topic-context-grid,
  .channel-map-grid,
  .article-grid,
  .related-reads .article-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .channel-hero__panel {
    position: static;
    margin-top: 0;
    border-radius: 0;
    border-inline: 0;
    border-bottom: 0;
  }

  .article {
    padding-top: 2.5rem;
  }

  .article__hero {
    gap: 1.4rem;
  }

  .article__head h1 {
    font-size: 2rem;
  }
}

/* ─── Free tools hub ─────────────────────────────────────────────────────── */
.free-tools-main {
  background: #fff;
}

.tools-hero {
  background: #fbfcfe;
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(1rem, 4vw, 4rem);
}

.tools-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(1.6rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.tools-hero__copy {
  min-width: 0;
}

.tools-hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
}

.tools-hero__copy > p:not(.eyebrow) {
  max-width: 660px;
  color: #28344a;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  font-weight: 650;
}

.tools-hero__media {
  aspect-ratio: 3 / 2;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.tools-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.tool-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  box-shadow: 0 12px 35px rgba(25, 35, 58, 0.08);
}

.tool-panel--wide {
  grid-column: 1 / -1;
}

.tool-panel__head p {
  margin: 0 0 0.35rem;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tool-panel__head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.1;
}

.tool-panel__head span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.tool-form,
.tool-checklist {
  display: grid;
  gap: 0.85rem;
}

.tool-form--inline {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
}

.tool-form label,
.tool-checklist label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.tool-checklist label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.tool-form input,
.tool-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  padding: 0.75rem 0.85rem;
}

.tool-form input:focus,
.tool-form select:focus {
  border-color: rgba(36, 87, 214, 0.5);
  outline: 3px solid rgba(36, 87, 214, 0.12);
}

.tool-output {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: #28344a;
  padding: 1rem;
}

.tool-output h4 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.tool-output p {
  margin: 0 0 0.75rem;
}

.tool-output p:last-child,
.tool-output ul:last-child,
.tool-output ol:last-child {
  margin-bottom: 0;
}

.tool-output ul,
.tool-output ol {
  margin: 0.7rem 0 0;
  padding-left: 1.25rem;
}

.tool-output li + li {
  margin-top: 0.35rem;
}

.tool-output__placeholder {
  color: var(--muted);
}

.tool-output--plan {
  min-height: 210px;
}

.tool-copy {
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  padding: 0.65rem 0.9rem;
}

.tool-copy:hover {
  border-color: rgba(36, 87, 214, 0.34);
  background: rgba(36, 87, 214, 0.08);
}

.score-meter {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.score-meter__bar {
  flex: 1;
  height: 0.75rem;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.score-meter__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--green));
  transition: width 0.25s ease;
}

.score-meter strong {
  min-width: 3.5rem;
  text-align: right;
}

.free-tools-links {
  background: #fff;
}

@media (max-width: 1020px) {
  .tools-hero__inner,
  .tools-grid,
  .tool-form--inline {
    grid-template-columns: 1fr;
  }

  .tools-hero__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .tools-hero__inner {
    padding-block: 3.5rem;
  }

  .tools-hero h1 {
    font-size: 2rem;
  }

  .tool-panel {
    padding: 1rem;
  }
}
