:root {
  --font-heading: "Sora", "Space Grotesk", "Inter", sans-serif;
  --font-sans: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "JetBrains Mono", "Consolas", monospace;
  --bg: #F7F4EE;
  --surface: #FFFDF8;
  --surface-strong: #EEE8DC;
  --ink: #111827;
  --muted: #657084;
  --blue: #243BFF;
  --green: #00B894;
  --orange: #FF6B35;
  --dark: #0B1020;
  --line: rgba(17, 24, 39, 0.12);
  --line-strong: rgba(17, 24, 39, 0.2);
  --shadow: 0 24px 70px rgba(11, 16, 32, 0.1);
  --max-width: 900px;
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 12% 8%, rgba(36, 59, 255, 0.07), transparent 28rem),
    linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.028) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 36px 36px, 36px 36px, auto;
  color: var(--ink);
  line-height: 1.5;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(247, 244, 238, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.7rem;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(36, 59, 255, 0.24);
}

.nav-links {
  display: flex;
  gap: 1.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a {
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.8rem, 5vw, 4.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.hero-shell {
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 1;
  /*max-width: 800px;*/
  margin: 0;
  text-align: left;
}

.eyebrow,
.card-label,
.evidence-kicker,
.bento-kicker {
  margin: 0 0 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.hero-copy h1 {
  /*max-width: 12ch;*/
  margin: 0;
  font-size: 3rem;
  line-height: 1.02;
}

.hero-lead {
  /*max-width: 700px;*/
  margin: 0.8rem 0 0;
  color: #3C4658;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-statement {
  /*max-width: 42rem;*/
  margin: 1.25rem 0 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
}

.hero-brand-line {
  /*max-width: 40rem;*/
  margin: 1.2rem 0 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.18;
}

.hero-advantage {
  margin: 0.75rem 0 0;
  color: var(--blue);
  font-weight: 800;
}

.hero-seo,
.section-seo {
  /*max-width: 44rem;*/
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-seo {
  /*max-width: 46rem;*/
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.72;
}

.section-seo {
  max-width: 48rem;
}

.hero-context {
  margin: 0.95rem 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(36, 59, 255, 0.22);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.7);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  max-width: 820px;
  margin: 2.5rem 0 0;
  text-align: left;
}

.hero-product {
  position: relative;
  z-index: 1;
  margin-top: 2.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 244, 238, 0.74)),
    var(--surface);
  box-shadow: 0 34px 90px rgba(11, 16, 32, 0.12);
}

.product-toolbar,
.object-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-toolbar {
  padding: 0.25rem 0.25rem 1rem;
  border-bottom: 1px solid var(--line);
}

.product-toolbar strong {
  display: block;
  margin-top: 0.18rem;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.toolbar-kicker {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-badge {
  position: relative;
  padding: 0.52rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 244, 238, 0.68)) padding-box,
    linear-gradient(90deg, rgba(36, 59, 255, 0.72), rgba(0, 184, 148, 0.82)) border-box;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(36, 59, 255, 0.045), 0 14px 34px rgba(0, 184, 148, 0.12);
  animation: badgeBreathe 5.4s ease-in-out infinite;
}

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

.product-scorecards article,
.why-card,
.workflow-list article {
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(255, 253, 248, 0.9);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.product-scorecards article {
  padding: 0.95rem;
}

.product-scorecards span,
.product-scorecards small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-scorecards strong {
  display: block;
  margin: 0.25rem 0;
  font-family: var(--font-mono);
  font-size: 1.32rem;
  color: var(--blue);
}

.market-panel {
  position: relative;
  margin-top: 0.9rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: #fff;
}

.market-timeline,
.signal-map-grid {
  position: relative;
  overflow: hidden;
}

.market-timeline::after,
.signal-map-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0.28;
  transform: translateX(-120%);
  animation: signalSweep 10.5s ease-in-out infinite;
  pointer-events: none;
}

.market-panel::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--green));
  opacity: 0.72;
  animation: signalPulse 3.6s ease-in-out infinite;
}

.market-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.market-panel-head strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.market-panel-head small {
  display: block;
  margin-top: 0.24rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.market-panel-head > span {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
}

.pressure-bars {
  display: grid;
  gap: 0.78rem;
  margin-top: 1rem;
}

.pressure-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 54px;
  gap: 0.8rem;
  align-items: center;
}

.pressure-row span,
.pressure-row em {
  color: var(--muted);
  font-size: 0.88rem;
}

.pressure-row strong {
  position: relative;
  display: block;
  height: 0.7rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.08);
}

.pressure-row strong::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--green));
  animation: pressureBreathe 5.8s ease-in-out infinite;
}

.pressure-row em {
  color: var(--green);
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.market-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  align-items: end;
  min-height: 4.6rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.market-timeline span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: rgba(36, 59, 255, 0.18);
}

.market-timeline span:nth-child(1) { height: 28%; }
.market-timeline span:nth-child(2) { height: 44%; }
.market-timeline span:nth-child(3) { height: 36%; }
.market-timeline span:nth-child(4) { height: 72%; background: var(--orange); }
.market-timeline span:nth-child(5) { height: 58%; }
.market-timeline span:nth-child(6) { height: 86%; background: var(--green); }
.market-timeline span:nth-child(7) { height: 64%; }

.market-timeline span,
.dashboard-timeline span {
  transform-origin: bottom;
  animation: signalRise 5.2s ease-in-out infinite alternate;
}

.market-timeline span:nth-child(2),
.dashboard-timeline span:nth-child(2) {
  animation-delay: 120ms;
}

.market-timeline span:nth-child(3),
.dashboard-timeline span:nth-child(3) {
  animation-delay: 240ms;
}

.market-timeline span:nth-child(4),
.dashboard-timeline span:nth-child(4) {
  animation-delay: 360ms;
}

.market-timeline span:nth-child(5),
.dashboard-timeline span:nth-child(5) {
  animation-delay: 480ms;
}

.market-timeline span:nth-child(6),
.dashboard-timeline span:nth-child(6) {
  animation-delay: 600ms;
}

.workflow-strip-section {
  padding: 0 0 2rem;
}

.workflow-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workflow-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.workflow-strip span:not(:last-child)::after {
  content: "→";
  color: var(--blue);
}

.signal-layer-map {
  position: relative;
  margin-top: 0.9rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 184, 148, 0.14), transparent 12rem),
    linear-gradient(180deg, rgba(36, 59, 255, 0.035), rgba(255, 253, 248, 0.96)),
    #fff;
  box-shadow: 0 24px 70px rgba(11, 16, 32, 0.11), 0 0 0 1px rgba(36, 59, 255, 0.04);
}

.signal-layer-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.signal-layer-head strong {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.signal-map-days {
  display: grid;
  grid-template-columns: 6.4rem repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.05rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-map-days span:not(:first-child) {
  text-align: center;
}

.signal-map-body {
  display: grid;
  grid-template-columns: 6.4rem minmax(0, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.signal-map-brands {
  display: grid;
  grid-template-rows: repeat(3, 3.05rem);
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.signal-map-brands span {
  display: flex;
  align-items: center;
}

.signal-map-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.signal-map-grid span {
  position: relative;
  min-height: 3.05rem;
  border: 1px solid rgba(36, 59, 255, 0.08);
  border-radius: 0.68rem;
  background: linear-gradient(180deg, rgba(36, 59, 255, 0.09), rgba(36, 59, 255, 0.045));
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.signal-map-grid span:hover {
  z-index: 1;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 24px rgba(11, 16, 32, 0.12);
  filter: saturate(1.08);
}

.signal-map-grid .mid {
  background: linear-gradient(180deg, rgba(36, 59, 255, 0.28), rgba(36, 59, 255, 0.16));
  border-color: rgba(36, 59, 255, 0.18);
}

.signal-map-grid .hot {
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.78), rgba(255, 107, 53, 0.5));
  border-color: rgba(255, 107, 53, 0.32);
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.12);
}

.signal-map-grid .opportunity {
  background: rgba(0, 184, 148, 0.28);
  box-shadow: inset 0 0 0 2px var(--green), 0 0 0 5px rgba(0, 184, 148, 0.1);
  animation: opportunityPulse 5s ease-in-out infinite;
}

.signal-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.signal-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
}

.signal-map-legend i {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 0.22rem;
  background: rgba(36, 59, 255, 0.1);
}

.signal-map-legend i.mid {
  background: rgba(255, 107, 53, 0.72);
}

.signal-map-legend i.opportunity {
  background: rgba(0, 184, 148, 0.28);
  box-shadow: inset 0 0 0 2px var(--green);
}


.proof-chip,
.product-panel,
.reading-card,
.insight-card,
.signal-box,
.bento-card,
.evidence-card,
.audience-card,
.final-box,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.proof-chip:hover,
.product-scorecards article:hover,
.bento-card:hover,
.evidence-card:hover,
.workflow-list article:hover,
.recommendation-grid article:hover,
.replace-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 59, 255, 0.22);
  box-shadow: 0 30px 80px rgba(11, 16, 32, 0.14), 0 0 0 1px rgba(36, 59, 255, 0.08);
}

.proof-chip {
  padding: 0.9rem;
  box-shadow: 0 12px 28px rgba(11, 16, 32, 0.06);
}

.proof-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
}

.proof-label {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.signal-thread {
  position: absolute;
  pointer-events: none;
}

.signal-thread::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--green), var(--blue));
  background-size: 240% 100%;
  box-shadow: 0 0 28px rgba(36, 59, 255, 0.22);
  animation: signalFlow 4.8s linear infinite;
}

.signal-thread-hero {
  left: 50%;
  bottom: 2.25rem;
  width: min(72vw, 980px);
  height: 3px;
  transform: translateX(-50%);
}

.product-panel {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 238, 0.7)),
    var(--surface);
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 12%, rgba(0, 184, 148, 0.16), transparent 16rem);
  pointer-events: none;
}

.panel-topline,
.product-layout,
.signal-meter {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.78rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
}

.panel-status {
  color: var(--green);
}

.signal-meter {
  height: 0.62rem;
  margin: 0.92rem 0 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.signal-meter-line {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue) 54%, var(--green));
}

.signal-meter-dot {
  position: absolute;
  top: 50%;
  left: 78%;
  width: 1rem;
  height: 1rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(0, 184, 148, 0.16);
}

.product-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.inbox-list {
  padding-right: 0.8rem;
  border-right: 1px solid var(--line);
}

.inbox-title {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.84rem;
}

.inbox-title span,
.mail-subject,
.mail-meta {
  color: var(--muted);
}

.mail-item {
  width: 100%;
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.34rem;
  padding: 0.74rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.mail-item:hover,
.mail-item:focus-visible,
.mail-item.is-active {
  border-color: rgba(36, 59, 255, 0.22);
  background: rgba(36, 59, 255, 0.07);
  outline: none;
}

.mail-brand {
  font-weight: 800;
}

.mail-subject,
.mail-meta {
  font-size: 0.84rem;
}

.reading-area {
  display: grid;
  gap: 0.72rem;
}

.reading-card,
.insight-card {
  padding: 0.95rem;
  box-shadow: 0 14px 36px rgba(11, 16, 32, 0.06);
}

.reading-head,
.signal-row,
.insight-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.reading-head h2 {
  margin: 0;
  font-size: 1.45rem;
}

.signal-tag {
  align-self: start;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(36, 59, 255, 0.09);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.signal-row {
  margin-top: 0.75rem;
}

.signal-box {
  flex: 1;
  padding: 0.85rem;
  box-shadow: none;
  background: #fff;
}

.signal-name {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.signal-box strong {
  display: block;
  line-height: 1.3;
}

.signal-box-featured {
  border-color: rgba(0, 184, 148, 0.38);
  background: linear-gradient(180deg, rgba(0, 184, 148, 0.1), rgba(255, 255, 255, 0.94));
}

.mail-preview {
  max-width: 56%;
  margin-top: 0.72rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  background: #fff;
}

.mail-preview-secondary {
  opacity: 0.78;
}

.mail-preview-top {
  min-height: 2.2rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(36, 59, 255, 0.16) 0 22%, rgba(17, 24, 39, 0.04) 22% 100%);
}

.mail-preview-body {
  padding: 1rem;
}

.preview-caption {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-block {
  margin-bottom: 0.58rem;
  border-radius: 0.72rem;
  background: linear-gradient(90deg, #E8ECFF, #F3F0E8);
}

.preview-title {
  width: 72%;
  height: 2.1rem;
}

.preview-line {
  width: 94%;
  height: 0.66rem;
}

.preview-line.short {
  width: 64%;
}

.preview-cta {
  width: 34%;
  height: 1.65rem;
  background: var(--blue);
}

.insight-title {
  align-items: end;
}

.insight-title strong {
  display: block;
  max-width: 26ch;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  line-height: 1.25;
}

.quality-score {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  color: #fff;
  background: var(--green);
  font-family: var(--font-mono);
  font-weight: 800;
}

.insight-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.72rem;
}

.insight-metrics article {
  padding: 0.78rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

.metric-card-strong {
  border-color: rgba(36, 59, 255, 0.2);
}

.insight-metrics span,
.micro-proof-row span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.insight-metrics strong {
  display: block;
  margin-top: 0.38rem;
  font-size: 0.9rem;
  line-height: 1.28;
}

.signal-mini-chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 0.42rem;
  min-height: 4.5rem;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.bar {
  display: block;
  min-height: 1rem;
  border-radius: 999px 999px 0 0;
  background: rgba(36, 59, 255, 0.18);
}

.bar-1 { height: 24%; }
.bar-2 { height: 35%; }
.bar-3 { height: 82%; }
.bar-4 { height: 28%; }
.bar-5 { height: 56%; }
.bar-6 { height: 22%; }
.bar-7 { height: 74%; }
.bar.is-mid { background: var(--orange); }
.bar.is-high { background: var(--green); }

.section {
  padding: 2rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: start;
}

.why-card {
  padding: 1.5rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.58;
}

.why-card strong {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.2;
}

.replace-grid,
.recommendation-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

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

.replace-grid article,
.recommendation-grid article {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
}

.replace-grid span,
.recommendation-grid span {
  display: block;
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.replace-grid strong {
  display: block;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-heading);
}

.replace-after {
  border-color: rgba(0, 184, 148, 0.28);
  background: linear-gradient(180deg, rgba(0, 184, 148, 0.08), rgba(255, 253, 248, 0.92));
}

.why-section {
  padding-bottom: 4rem;
}

.section-heading {
  max-width: 560px;
}

.section-heading.wide {
  max-width: 800px;
}

.section-heading h2,
.audience-card h2,
.final-box h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.05;
}

.section-heading.wide h2 {
  /*max-width: 16ch;*/
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "rhythm object"
    "audit comparison";
  gap: 1rem;
  margin-top: 1.6rem;
  align-items: stretch;
}

.bento-card {
  min-height: 210px;
  height: 100%;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card-large {
  grid-area: rhythm;
  background:
    linear-gradient(180deg, rgba(36, 59, 255, 0.08), rgba(255, 253, 248, 0.9)),
    var(--surface);
}

.bento-card:nth-child(2) {
  grid-area: object;
}

.bento-card-dark {
  grid-area: audit;
}

.bento-card:nth-child(4) {
  grid-area: comparison;
}

.bento-card strong,
.evidence-card strong,
.audience-card h2 {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.18;
}

.bento-card p,
.evidence-card p,
.audience-card li,
.final-box p {
  color: var(--muted);
}

.bento-card-dark {
  color: #fff;
  background: var(--dark);
}

.bento-card-dark .bento-kicker {
  color: var(--green);
}

.bento-card-dark p,
.bento-card-dark span {
  color: rgba(255, 255, 255, 0.72);
}

.audit-log {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.intelligence-deck {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 1.25rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: calc(var(--radius) + 8px);
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(36, 59, 255, 0.26), transparent 18rem),
    var(--dark);
}

.intelligence-deck .eyebrow {
  color: var(--green);
}

.intelligence-deck .section-heading h2 {
  max-width: 13ch;
}

.uses-section {
  padding-top: 1rem;
}

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

.workflow-list article {
  min-height: 210px;
  padding: 1.2rem;
}

.workflow-list span {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--blue);
  font-family: var(--font-mono);
  font-weight: 800;
}

.workflow-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.22;
}

.workflow-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.beauty-section {
  padding-top: 1rem;
}

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

.beauty-grid span {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.86);
  color: var(--muted);
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(11, 16, 32, 0.06);
}

.recommendations-section {
  padding-top: 1rem;
}

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

.recommendation-grid article {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(36, 59, 255, 0.06), rgba(255, 253, 248, 0.94)),
    var(--surface);
}

.recommendation-grid strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  line-height: 1.2;
}

.recommendation-grid p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.confidence-pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.85rem;
  padding: 0.38rem 0.54rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.confidence-low {
  color: #657084;
  background: rgba(101, 112, 132, 0.12);
}

.confidence-medium {
  color: var(--blue);
  background: rgba(36, 59, 255, 0.1);
}

.confidence-high {
  color: var(--green);
  background: rgba(0, 184, 148, 0.12);
}

.decision-label {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.42rem 0.58rem;
  border-radius: 999px;
  color: var(--green);
  background: rgba(0, 184, 148, 0.1);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sparkline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  align-items: end;
  min-height: 4.5rem;
  margin-top: 1.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.sparkline i {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--green));
  transform-origin: bottom;
  animation: sparklineDraw 3.8s ease-in-out infinite alternate;
}

.sparkline i:nth-child(1) { height: 28%; animation-delay: 0ms; }
.sparkline i:nth-child(2) { height: 48%; animation-delay: 120ms; }
.sparkline i:nth-child(3) { height: 36%; animation-delay: 240ms; }
.sparkline i:nth-child(4) { height: 78%; animation-delay: 360ms; }
.sparkline i:nth-child(5) { height: 64%; animation-delay: 480ms; }

.sparkline-soft i {
  background: linear-gradient(180deg, rgba(36, 59, 255, 0.7), rgba(0, 184, 148, 0.5));
}

.sparkline-alert i {
  background: linear-gradient(180deg, var(--orange), var(--blue));
}

.now-section {
  padding-top: 2rem;
}

.dashboard-card {
  padding: 1.1rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.alert-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.alert-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alert-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.28;
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
}

.dashboard-row span {
  color: rgba(255, 255, 255, 0.64);
}

.dashboard-row strong {
  color: var(--green);
}

.dashboard-row strong.warning {
  color: var(--orange);
}

.dashboard-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
  align-items: end;
  min-height: 7rem;
  margin-top: 1.2rem;
}

.dashboard-timeline span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.dashboard-timeline span:nth-child(1) { height: 32%; }
.dashboard-timeline span:nth-child(2) { height: 56%; }
.dashboard-timeline span:nth-child(3) { height: 42%; }
.dashboard-timeline span:nth-child(4) { height: 88%; background: linear-gradient(180deg, var(--orange), var(--blue)); }
.dashboard-timeline span:nth-child(5) { height: 64%; }
.dashboard-timeline span:nth-child(6) { height: 74%; }

.object-tags {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.object-tags span {
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}

.evidence-grid,
.audience-grid {
  display: grid;
  gap: 1rem;
}

.evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.evidence-card {
  padding: 1.3rem;
  min-height: 220px;
}

.evidence-card-featured {
  border-color: rgba(36, 59, 255, 0.22);
  background: linear-gradient(180deg, rgba(36, 59, 255, 0.08), rgba(255, 253, 248, 0.92));
}

.micro-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-weight: 700;
}

.seo-card-grid,
.market-data-grid,
.faq-list,
.faq-grid,
.seo-link-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

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

.seo-card-grid article,
.faq-list article,
.faq-grid article,
.market-data-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
}

.seo-card-grid h3,
.faq-list h3,
.faq-grid h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1.24;
}

.seo-card-grid p,
.faq-list p,
.faq-grid p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.market-data-grid strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 1.65rem;
  line-height: 1;
}

.market-data-grid span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

.faq-list,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.seo-link-grid a {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 2.2rem 0 1.2rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr) minmax(220px, 0.8fr);
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
}

.footer-brand p,
.footer-brand small,
.footer-contact small {
  display: block;
  margin: 0.45rem 0 0;
  max-width: 24rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-nav a,
.footer-contact a {
  color: var(--ink);
  font-weight: 700;
}

.footer-bottom {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1.4rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1.05;
}

.legal-content h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.legal-content p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.legal-updated {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.audience-section {
  padding-top: 2rem;
}

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

.audience-card {
  padding: 1.55rem;
}

.audience-card-muted {
  background: rgba(255, 255, 255, 0.55);
}

.detail-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 1.25rem;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green);
}

.final-cta {
  padding-top: 1rem;
  padding-bottom: 4.6rem;
}

.final-box {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  text-align: center;
  background:
    radial-gradient(circle at 70% 18%, rgba(36, 59, 255, 0.12), transparent 18rem),
    var(--surface);
}

.final-box h2,
.final-box p,
.final-box .cta-row,
.final-box .eyebrow {
  position: relative;
  z-index: 1;
}

.final-box h2 {
  max-width: 14ch;
  margin: 0 auto;
}

.final-box p {
  max-width: 58ch;
  margin: 1rem auto 0;
}

.final-box .cta-row {
  justify-content: center;
}

.signal-thread-final {
  left: 10%;
  right: 10%;
  bottom: 1.2rem;
  height: 3px;
}

@keyframes signalFlow {
  from { background-position: 0% 50%; }
  to { background-position: 240% 50%; }
}

@keyframes signalPulse {
  0%, 100% { opacity: 0.42; transform: scaleX(0.92); }
  50% { opacity: 0.9; transform: scaleX(1); }
}

@keyframes pressureBreathe {
  0%, 100% { width: calc(var(--value) - 4%); filter: saturate(0.94); }
  50% { width: var(--value); filter: saturate(1.08); }
}

@keyframes signalRise {
  from { transform: scaleY(0.88); opacity: 0.76; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes badgeBreathe {
  0%, 100% { box-shadow: 0 0 0 6px rgba(36, 59, 255, 0.045), 0 14px 34px rgba(0, 184, 148, 0.12); transform: translateY(0); }
  50% { box-shadow: 0 0 0 9px rgba(0, 184, 148, 0.08), 0 18px 42px rgba(36, 59, 255, 0.14); transform: translateY(-1px); }
}

@keyframes opportunityPulse {
  0%, 100% { box-shadow: inset 0 0 0 2px var(--green), 0 0 0 4px rgba(0, 184, 148, 0.08); }
  50% { box-shadow: inset 0 0 0 2px var(--green), 0 0 0 8px rgba(0, 184, 148, 0.14); }
}

@keyframes signalSweep {
  0%, 24% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(120%); }
}

@keyframes sparklineDraw {
  from { transform: scaleY(0.72); opacity: 0.72; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .signal-thread::before {
    animation: none;
  }

  .market-panel::after,
  .pressure-row strong::before,
  .market-timeline span,
  .dashboard-timeline span,
  .product-badge,
  .signal-map-grid .opportunity,
  .market-timeline::after,
  .signal-map-grid::after,
  .sparkline i {
    animation: none;
  }

  .button,
  .nav-links a {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .hero-shell,
  .dark-grid,
  .bento-grid,
  .evidence-grid,
  .audience-grid,
  .why-grid,
  .workflow-list,
  .beauty-grid,
  .replace-grid,
  .recommendation-grid,
  .seo-card-grid,
  .market-data-grid,
  .faq-list,
  .faq-grid,
  .seo-link-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-scorecards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-grid {
    grid-template-rows: none;
    grid-template-areas:
      "rhythm"
      "object"
      "audit"
      "comparison";
  }

  .hero-shell {
    align-items: start;
  }

  .bento-card-large {
    min-height: 280px;
  }
}

@media (max-width: 1320px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    backdrop-filter: none;
  }

  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .audience-card h2,
  .final-box h2 {
    max-width: none;
  }

  .hero-proof-grid,
  .product-scorecards,
  .product-layout,
  .workflow-list,
  .beauty-grid,
  .why-grid,
  .replace-grid,
  .recommendation-grid,
  .seo-card-grid,
  .market-data-grid,
  .faq-list,
  .faq-grid,
  .seo-link-grid,
  .footer-grid,
  .signal-row,
  .insight-metrics,
  .micro-proof-row {
    grid-template-columns: 1fr;
  }

  .hero-product {
    padding: 0.75rem;
  }

  .product-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-panel-head {
    flex-direction: column;
  }

  .pressure-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .pressure-row em {
    text-align: left;
  }

  .product-layout {
    display: grid;
  }

  .inbox-list {
    padding-right: 0;
    padding-bottom: 0.9rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reading-head,
  .signal-row,
  .insight-title {
    flex-direction: column;
  }

  .mail-preview {
    max-width: 100%;
  }

  .button,
  .cta-row {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .section {
    padding: 4rem 0;
  }

  .proof-chip,
  .product-panel,
  .reading-card,
  .insight-card,
  .signal-box,
  .bento-card,
  .evidence-card,
  .audience-card,
  .final-box,
  .dashboard-card {
    border-radius: 1.15rem;
  }
}
