:root {
  --bg: #edf4f7;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --ink: #10243d;
  --muted: #6c8cab;
  --line: rgba(112, 150, 184, 0.18);
  --brand: #4f9879;
  --brand-strong: #3f8b6d;
  --accent: #bdce7f;
  --accent-soft: #e5edc7;
  --positive: #2b9348;
  --neutral: #93a6ba;
  --negative: #f05f6d;
  --shadow: 0 28px 80px rgba(79, 120, 159, 0.16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(189, 206, 127, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(79, 152, 121, 0.18), transparent 32%),
    linear-gradient(180deg, #f8fbfc 0%, #eef4f7 42%, #e9eff5 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

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

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 1rem max(1rem, calc((100vw - var(--container)) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 252, 0.78);
  border-bottom: 1px solid rgba(112, 150, 184, 0.14);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  background: rgba(248, 251, 252, 0.92);
  border-bottom-color: rgba(112, 150, 184, 0.2);
  box-shadow: 0 16px 40px rgba(79, 120, 159, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: clamp(2rem, 3vw, 2.5rem);
  width: auto;
  display: block;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: 1rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: rgba(79, 152, 121, 0.12);
  color: var(--brand-strong);
  font-size: 0.95rem;
  font-weight: 800;
  border: 1px solid rgba(79, 152, 121, 0.16);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: rgba(79, 152, 121, 0.18);
  box-shadow: 0 12px 30px rgba(79, 152, 121, 0.16);
}

.section {
  padding: 2.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 2.4rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.55rem);
  max-width: 11ch;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  margin-bottom: 0.9rem;
}

h4 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.hero-text,
.panel-copy p,
.story-card p,
.signup-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-size: 0.97rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #5da487 52%, var(--accent) 100%);
  box-shadow: 0 18px 40px rgba(79, 152, 121, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 36, 61, 0.08);
}

.button-wide {
  width: 100%;
}

.hero-proof {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-proof li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  flex: 0 0 auto;
}

.hero-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.hero-audience span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  min-height: 40rem;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  animation: drift 12s ease-in-out infinite;
}

.orb-one {
  width: 16rem;
  height: 16rem;
  top: 2%;
  right: 0;
  background: rgba(189, 206, 127, 0.32);
}

.orb-two {
  width: 18rem;
  height: 18rem;
  bottom: 3%;
  left: 1%;
  background: rgba(79, 152, 121, 0.18);
  animation-duration: 14s;
  animation-delay: -3s;
}

.hero-product {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}

.ui-frame,
.dashboard-card,
.story-card,
.panel-visual,
.signup-card,
.stats-band article {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.ui-frame {
  width: min(100%, 44rem);
  margin-left: 5rem;
  border-radius: 32px;
  padding: 0.9rem;
  transform: perspective(1800px) rotateY(-12deg) rotateX(5deg);
  transform-style: preserve-3d;
}

.ui-preview {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.dashboard-card {
  position: relative;
  width: min(100%, 24rem);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  overflow: hidden;
}

.float-card {
  animation: float 4.8s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  left: -0.8rem;
  bottom: 1.4rem;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: sheen 6s ease-in-out infinite;
  pointer-events: none;
}

.card-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.live-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--positive);
  box-shadow: 0 0 0 7px rgba(43, 147, 72, 0.12);
}

.chat-prompt,
.prompt-card,
.detail-card,
.sentiment-detail {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.chat-prompt {
  margin: 1rem 0 1.1rem;
  padding: 1rem;
  font-weight: 700;
  line-height: 1.45;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.focus-pill {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.85rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(79, 152, 121, 0.12);
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.insight-stack {
  display: grid;
  gap: 0.75rem;
}

.mini-insight {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  position: relative;
  z-index: 1;
}

.mini-insight strong {
  font-size: 1.28rem;
}

.mini-insight.active {
  transform: translateX(8px);
  border-color: rgba(79, 152, 121, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.metric-card {
  border-radius: 18px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  position: relative;
  z-index: 1;
}

.metric-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.35rem;
}

.metric-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.metric-card.negative strong {
  color: var(--negative);
}

.story-grid,
.signup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

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

.proof-card {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 246, 243, 0.88));
  border: 1px solid rgba(112, 150, 184, 0.12);
  box-shadow: 0 18px 48px rgba(79, 120, 159, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(79, 120, 159, 0.12);
  border-color: rgba(79, 152, 121, 0.2);
}

.proof-card strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.4;
}

.proof-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--brand-strong);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.story-card,
.signup-card {
  border-radius: var(--radius-xl);
  padding: 1.6rem;
}

.story-card.accent {
  background:
    linear-gradient(180deg, rgba(79, 152, 121, 0.12), rgba(189, 206, 127, 0.16)),
    rgba(255, 255, 255, 0.88);
}

.problem-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.problem-list div {
  display: grid;
  gap: 0.25rem;
}

.problem-list span {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  margin-bottom: 1.3rem;
}

.tabs {
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  max-width: 100%;
}

.tab-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tab-button.active {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.tab-panel.active {
  display: grid;
}

.feature-list {
  padding-left: 1.1rem;
  margin: 1.2rem 0 0;
  color: var(--ink);
  line-height: 1.75;
  font-size: 0.98rem;
}

.panel-visual {
  border-radius: var(--radius-xl);
  padding: 1.2rem;
}

.demo-composer {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(245, 250, 248, 0.95), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(79, 152, 121, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.composer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.composer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.composer-status::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(79, 152, 121, 0.12);
}

.composer-field {
  display: block;
}

.composer-field input {
  width: 100%;
  border: 1px solid rgba(79, 152, 121, 0.16);
  border-radius: 16px;
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.composer-field input:focus {
  outline: none;
  border-color: rgba(79, 152, 121, 0.36);
  box-shadow: 0 0 0 4px rgba(79, 152, 121, 0.1);
}

.composer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.composer-chip {
  border: 1px solid rgba(112, 150, 184, 0.16);
  border-radius: 999px;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.composer-chip:hover,
.composer-chip.active {
  transform: translateY(-1px);
  border-color: rgba(79, 152, 121, 0.24);
  background: rgba(79, 152, 121, 0.1);
  color: var(--brand-strong);
}

.prompt-card {
  padding: 1rem;
  margin-bottom: 1rem;
}

.prompt-tag,
.detail-label {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 0.6rem;
  font-weight: 800;
}

.insight-columns {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.insight-tile {
  text-align: left;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  padding: 1rem;
  display: grid;
  gap: 0.28rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.insight-tile:hover,
.insight-tile.selected {
  transform: translateX(7px);
  border-color: rgba(79, 152, 121, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.tile-index {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.detail-card,
.sentiment-detail {
  padding: 1rem;
  min-height: 10rem;
}

.prompt-card p,
.detail-card p,
.sentiment-detail p,
.stats-band span,
.form-note {
  font-size: 0.98rem;
  line-height: 1.6;
}

.sentiment-bars {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.sentiment-bar {
  border: 0;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  transition: transform 180ms ease, filter 180ms ease;
}

.sentiment-bar:hover,
.sentiment-bar.active {
  transform: scale(1.02);
  filter: saturate(1.08);
}

.sentiment-bar.positive {
  background: linear-gradient(135deg, #2e8360, #5ca07e);
}

.sentiment-bar.neutral {
  background: linear-gradient(135deg, #8d9db0, #b4c0cd);
}

.sentiment-bar.negative {
  background: linear-gradient(135deg, #df5866, #f47f8d);
}

.funnel-visual {
  display: grid;
  gap: 0.8rem;
}

.funnel-step {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease;
}

.funnel-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(79, 152, 121, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.funnel-step strong,
.stats-band strong {
  display: block;
  font-size: 1.85rem;
  margin: 0.2rem 0;
}

.funnel-step small {
  color: var(--muted);
}

.funnel-step.active,
.funnel-step:hover {
  transform: translateX(8px);
  border-color: rgba(79, 152, 121, 0.24);
}

.funnel-step.active::after,
.funnel-step:hover::after {
  opacity: 1;
}

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

.stats-band article {
  border-radius: var(--radius-lg);
  padding: 1.3rem;
}

.stats-band span,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}

.signup-honeypot {
  position: absolute;
  left: -5000px;
}

.form-response[hidden] {
  display: none;
}

.form-response {
  margin: -0.2rem 0 0;
  font-size: 0.94rem;
  line-height: 1.5;
  font-weight: 700;
}

.form-response.is-error {
  color: var(--negative);
}

.form-response.is-success {
  color: var(--positive);
}

.signup-copy {
  padding-right: 1rem;
}

.signup-form {
  display: grid;
  gap: 1rem;
}

.signup-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.signup-form input,
.signup-form select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(16, 36, 61, 0.11);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.86);
}

.signup-form input:focus,
.signup-form select:focus {
  outline: 2px solid rgba(79, 152, 121, 0.18);
  border-color: rgba(79, 152, 121, 0.3);
}

.success-state[hidden] {
  display: none;
}

.success-state {
  display: grid;
  gap: 1rem;
}

.success-pill {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(43, 147, 72, 0.14);
  color: var(--positive);
  font-weight: 800;
}

.story-card,
.panel-visual,
.signup-card,
.stats-band article,
.dashboard-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.story-card:hover,
.panel-visual:hover,
.signup-card:hover,
.stats-band article:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(79, 120, 159, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -12px, 0) scale(1.04);
  }
}

@keyframes sheen {
  0%,
  70%,
  100% {
    transform: translateX(-120%);
  }
  30% {
    transform: translateX(120%);
  }
}

@media (max-width: 960px) {
  .hero,
  .story-grid,
  .signup,
  .tab-panel,
  .stats-band,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
    gap: 1.6rem;
  }

  .site-header {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.85rem;
  }

  .site-nav {
    flex-wrap: wrap;
    width: 100%;
    order: 3;
    margin-left: 0;
    margin-right: 0;
    gap: 0.9rem 1.1rem;
  }

  .hero-panel {
    min-height: 28rem;
  }

  .ui-frame {
    margin-left: 0;
    transform: none;
    width: min(100%, 40rem);
  }

  .hero-overlay {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 32rem;
    margin-top: -2.2rem;
  }

  .composer-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 1.1rem, 100%);
  }

  .section {
    padding: 1.55rem 0;
  }

  .site-header {
    padding: 0.85rem max(0.9rem, calc((100vw - var(--container)) / 2));
    align-items: flex-start;
  }

  .brand-logo {
    height: 1.8rem;
  }

  .site-nav {
    font-size: 0.88rem;
    justify-content: space-between;
  }

  .site-nav a {
    white-space: nowrap;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  h2 {
    max-width: 10ch;
    font-size: clamp(1.9rem, 8.6vw, 2.55rem);
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero-text,
  .panel-copy p,
  .story-card p,
  .signup-copy p,
  .prompt-card p,
  .detail-card p,
  .sentiment-detail p,
  .stats-band span,
  .form-note {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-proof {
    gap: 0.65rem;
    font-size: 0.94rem;
  }

  .hero-audience {
    gap: 0.5rem;
  }

  .hero-audience span {
    font-size: 0.8rem;
    padding: 0.45rem 0.7rem;
  }

  .hero-panel {
    min-height: auto;
  }

  .ui-frame {
    padding: 0.55rem;
  }

  .dashboard-card {
    width: 100%;
    padding: 1.05rem;
  }

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

  .dashboard-card,
  .story-card,
  .panel-visual,
  .signup-card,
  .stats-band article,
  .proof-card,
  .ui-frame {
    border-radius: 22px;
  }

  .hero-overlay {
    margin-top: -0.8rem;
  }

  .proof-card,
  .story-card,
  .panel-visual,
  .signup-card,
  .stats-band article {
    padding: 1.15rem;
  }

  .composer-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .composer-chip {
    width: 100%;
    text-align: center;
    padding: 0.7rem 0.8rem;
  }

  .sentiment-bar {
    padding: 0.9rem 1rem;
  }

  .sentiment-bar strong,
  .funnel-step strong,
  .stats-band strong {
    font-size: 1.55rem;
  }

  .header-cta {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .site-nav {
    gap: 0.75rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .composer-chips {
    grid-template-columns: 1fr;
  }

  .metric-card strong {
    font-size: 1.25rem;
  }
}

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