@font-face {
  font-family: "Trigger Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Trigger Inter Tight";
  src: url("assets/fonts/inter-tight-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #000;
  --bg-2: #030403;
  --panel: rgba(14, 15, 14, 0.86);
  --panel-2: rgba(22, 23, 22, 0.76);
  --text: #f7f7f5;
  --muted: #b6b9b5;
  --dim: #7d837c;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);
  --green: #00ff48;
  --green-soft: rgba(0, 255, 72, 0.18);
  --green-deep: #072f18;
  --gold: #ffd43b;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 7px;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.5);
  --font: "Trigger Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display-font: "Trigger Inter Tight", "Trigger Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sprite symbol,
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-frame {
  width: min(100%, 1186px);
  margin: 0 auto;
  padding: 28px clamp(18px, 2.8vw, 32px) 34px;
  position: relative;
}

.site-header {
  height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 128px;
}

.brand-icon {
  width: 40px;
  height: 34px;
  color: var(--text);
  stroke-width: 4.2;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.brand-text {
  font-family: var(--display-font);
  font-size: 22px;
  line-height: 0.82;
  font-weight: 800;
  color: #fff;
}

.brand-text span,
.dash-logo span span,
h1 span,
.section-heading h2 span,
.waitlist-band h2 span,
.quote-card p span {
  color: var(--green);
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 56px);
  margin-right: 10px;
}

.nav-links a {
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color 220ms ease, transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
  transform: translateY(-1px);
}

.nav-cta,
.primary-button,
.secondary-button {
  min-height: 47px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  font-family: var(--display-font);
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.nav-cta,
.primary-button {
  color: #020402;
  background: linear-gradient(180deg, #00ff5b, #00ef3f);
  box-shadow: 0 0 28px rgba(0, 255, 72, 0.22);
}

.nav-cta {
  min-width: 170px;
  padding: 0 22px;
}

.nav-cta svg,
.primary-button svg,
.secondary-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.6;
}

.nav-cta:hover,
.primary-button:hover,
.nav-cta:focus-visible,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(0, 255, 72, 0.34);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 15, 14, 0.8);
  cursor: pointer;
}

.menu-button svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.hero {
  min-height: 596px;
  padding-top: 60px;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 2.8vw, 30px);
  align-items: start;
  position: relative;
}

.hero-grid {
  position: absolute;
  inset: 55px auto auto -62px;
  width: min(64vw, 660px);
  height: 420px;
  pointer-events: none;
  opacity: 0.76;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 70%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 70%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid::before {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.09) 0 1px, transparent 1.4px);
  background-size: 28px 28px;
  opacity: 0.26;
}

.hero-grid::after {
  background:
    radial-gradient(ellipse at 42% 50%, transparent 0%, transparent 48%, rgba(0, 0, 0, 0.72) 82%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 18%, transparent 68%, rgba(0, 0, 0, 0.88));
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.status-pill {
  width: fit-content;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 14, 13, 0.72);
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 760;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.025);
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px var(--green);
}

.hero h1 {
  margin: 28px 0 19px;
  max-width: 455px;
  color: #f5f5f2;
  font-family: var(--display-font);
  font-size: clamp(45px, 4.75vw, 55px);
  line-height: 0.99;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  max-width: 456px;
  color: #c8cbc6;
  font-family: var(--display-font);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.46;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.hero-actions .primary-button,
.hero-actions .secondary-button {
  height: 55px;
  gap: 12px;
  padding: 0 17px;
  flex: 0 0 auto;
}

.hero-actions .primary-button {
  min-width: 181px;
}

.hero-actions .secondary-button {
  min-width: 208px;
}

.secondary-button {
  min-width: 224px;
  background: rgba(9, 10, 9, 0.72);
  border-color: var(--line-strong);
  color: #fff;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 72, 0.46);
  background: rgba(20, 24, 20, 0.86);
}

.member-proof {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 40px;
  color: #c6c9c4;
  font-size: 13px;
  white-space: nowrap;
}

.avatar-stack {
  display: flex;
  align-items: center;
  padding-left: 4px;
}

.avatar-stack img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: #141614;
  border: 2px solid rgba(255, 255, 255, 0.18);
  margin-left: -7px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.count-badge,
.quote-proof em {
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--green);
  border: 1px solid var(--green);
  background: rgba(0, 255, 72, 0.08);
  font-weight: 800;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  margin-top: -15px;
  perspective: 1400px;
}

.dashboard-shell {
  width: 100%;
  aspect-ratio: 1.17;
  display: grid;
  grid-template-columns: 21.6% 78.4%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(7, 8, 7, 0.96);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  font-size: clamp(7px, 0.88vw, 11px);
  transform-style: preserve-3d;
}

.dashboard-shell::after,
.feature-card::after,
.waitlist-band::after,
.quote-card::after,
.trust-card::after,
.benefit-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.07) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 260ms ease, transform 640ms ease;
}

.dashboard-shell:hover::after,
.feature-card:hover::after,
.waitlist-band:hover::after,
.quote-card:hover::after,
.trust-card:hover::after,
.benefit-strip:hover::after {
  opacity: 1;
  transform: translateX(35%);
}

.dash-sidebar {
  min-width: 0;
  padding: 3.1em 1.05em 1.7em 1.25em;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 2.1em;
}

.dash-logo {
  display: flex;
  align-items: center;
  gap: 0.52em;
  padding-left: 0.7em;
}

.dash-logo svg {
  width: 3.4em;
  height: 2.7em;
  stroke-width: 4.2;
}

.dash-logo span {
  font-size: 1.5em;
  line-height: 0.86;
  font-weight: 850;
}

.dash-menu {
  list-style: none;
  display: grid;
  gap: 0.72em;
  margin: 0;
  padding: 0;
}

.dash-menu li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.9em;
  min-height: 3.65em;
  padding: 0 0.88em;
  border-radius: 0.55em;
  color: rgba(255, 255, 255, 0.76);
  position: relative;
}

.dash-menu li.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.065));
}

.dash-menu li.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 70%;
  border-radius: 10px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.dash-menu svg {
  flex: 0 0 auto;
  width: 1.35em;
  height: 1.35em;
}

.dash-menu span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-user {
  margin-top: auto;
  min-height: 4.85em;
  padding-top: 1.1em;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: 3.5em minmax(0, 1fr) 1em;
  align-items: center;
  gap: 0.82em;
}

.dash-user img {
  width: 3.3em;
  height: 3.3em;
  border-radius: 50%;
  background: #151615;
}

.dash-user strong {
  display: block;
  color: #fff;
  font-size: 0.98em;
}

.dash-user span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82em;
}

.dash-user svg {
  width: 1.2em;
  height: 1.2em;
  transform: rotate(90deg);
}

.dash-main {
  min-width: 0;
  padding: 2.8em 1.55em 1.8em;
  position: relative;
}

.date-control {
  position: absolute;
  top: 1.75em;
  right: 1.55em;
  min-width: 19em;
  height: 4em;
  display: flex;
  align-items: center;
  gap: 0.9em;
  padding: 0 1.25em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.6em;
  color: rgba(255, 255, 255, 0.86);
}

.date-control svg {
  width: 1.35em;
  height: 1.35em;
}

.date-control svg:last-child {
  margin-left: auto;
  transform: rotate(90deg);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05em;
}

.hero-metrics {
  margin-top: 5.1em;
}

.metric-card {
  min-width: 0;
  min-height: 9.4em;
  padding: 1.45em 1.05em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.6em;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.055), transparent 46%),
    rgba(19, 20, 19, 0.55);
}

.metric-card span,
.mini-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.96em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.metric-card strong {
  display: block;
  margin-top: 0.72em;
  color: #fff;
  font-size: 2.85em;
  line-height: 1;
  font-weight: 650;
}

.metric-card em,
.mini-metrics em {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  margin-top: 0.8em;
  color: var(--green);
  font-size: 1.15em;
  font-style: normal;
  font-weight: 800;
}

.metric-card em svg,
.mini-metrics em svg {
  width: 1em;
  height: 1em;
  stroke-width: 3;
}

.dash-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.43fr) minmax(0, 0.94fr);
  gap: 1.05em;
  margin-top: 1.55em;
}

.chart-panel,
.activity-panel {
  min-height: 24.7em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.62em;
  background: rgba(12, 13, 12, 0.78);
  overflow: hidden;
}

.chart-panel {
  padding: 1.75em 1.9em 1.55em;
}

.chart-panel h2,
.activity-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 1.35em;
  font-weight: 750;
}

.chart-wrap {
  position: relative;
  margin-top: 1.65em;
  height: 20em;
}

.chart-wrap svg {
  width: 100%;
  height: 16.4em;
  color: var(--green);
}

.gridline {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-dasharray: 2 5;
  stroke-width: 1;
}

.chart-line {
  stroke: var(--green);
  stroke-width: 4;
  filter: drop-shadow(0 0 7px rgba(0, 255, 72, 0.42));
  stroke-dasharray: 820;
  stroke-dashoffset: 820;
  animation: chartDraw 1600ms 650ms cubic-bezier(0.65, 0, 0.2, 1) forwards;
}

.chart-area {
  fill: url(#chartFill);
  stroke: none;
  opacity: 0;
  animation: fadeUp 900ms 1200ms ease forwards;
}

.chart-dot {
  fill: var(--green);
  stroke: none;
  filter: drop-shadow(0 0 10px rgba(0, 255, 72, 0.7));
  opacity: 0;
  animation: pop 420ms 1800ms ease forwards;
}

.axis {
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96em;
}

.y1 { top: 0.4em; }
.y2 { top: 5.8em; }
.y3 { top: 11.5em; }
.y4 { bottom: 2.25em; }

.x-axis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.2em;
  margin-left: 4em;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86em;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: 1.4em;
}

.panel-title a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88em;
}

.activity-panel {
  padding: 1.75em 1.55em;
}

.activity-panel ul {
  list-style: none;
  display: grid;
  gap: 1.55em;
  margin: 0;
  padding: 0;
}

.activity-panel li {
  display: grid;
  grid-template-columns: 2em minmax(0, 1fr) auto;
  align-items: start;
  gap: 1em;
  color: rgba(255, 255, 255, 0.82);
}

.activity-panel li svg {
  width: 1.45em;
  height: 1.45em;
}

.activity-panel li span {
  line-height: 1.45;
}

.activity-panel li em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

.features-section {
  padding-top: 48px;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.section-heading p {
  margin: 12px 0 0;
  color: #c4c7c1;
  font-size: 18px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-width: 0;
  min-height: 438px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.035), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.008)),
    rgba(10, 11, 10, 0.94);
  padding: 22px 14px 12px;
  overflow: hidden;
  position: relative;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 72, 0.32);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.feature-copy {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 0 8px 18px;
}

.feature-index {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--green);
  background: rgba(0, 0, 0, 0.26);
  font-family: var(--display-font);
  font-weight: 760;
}

.feature-copy h3 {
  margin: 4px 0 8px;
  font-family: var(--display-font);
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 730;
}

.feature-copy p {
  margin: 0;
  color: #c0c4bd;
  font-size: 12px;
  line-height: 1.48;
}

.flow-canvas,
.conversation-preview,
.crm-preview {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.04), transparent 36%),
    rgba(3, 4, 3, 0.94);
  height: 298px;
  position: relative;
  overflow: hidden;
}

.flow-canvas {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 50% 12%, rgba(0, 255, 72, 0.035), transparent 36%);
  background-size: 17px 17px, auto;
}

.flow-node {
  position: absolute;
  min-width: 118px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(16, 17, 16, 0.94);
  color: #fff;
  font-size: 11px;
  line-height: 1.05;
  z-index: 3;
}

.flow-node svg {
  width: 22px;
  height: 22px;
}

.flow-node small {
  display: block;
  color: #d3d6d1;
  font-size: 10px;
  margin-top: 4px;
}

.flow-node.trigger {
  left: 16px;
  top: 112px;
  border-color: rgba(0, 255, 72, 0.72);
  color: var(--green);
}

.flow-node.condition {
  left: min(164px, calc(100% - 140px));
  top: 111px;
  width: 120px;
  min-width: 120px;
  font-size: 10px;
}

.flow-node.condition small {
  font-size: 9px;
}

.flow-node.message.top {
  right: 18px;
  top: 48px;
}

.flow-node.message.bottom {
  right: 18px;
  bottom: 52px;
}

.flow-chip {
  position: absolute;
  z-index: 4;
  min-width: 31px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050605;
  color: #fff;
  font-size: 11px;
}

.flow-chip.yes {
  top: 58px;
  left: calc(100% - 205px);
  color: var(--green);
  border-color: rgba(0, 255, 72, 0.74);
  background: rgba(0, 255, 72, 0.12);
}

.flow-chip.no {
  bottom: 92px;
  left: calc(100% - 205px);
}

.flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.62);
  z-index: 1;
}

.flow-lines path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-dasharray: 7 5;
  fill: none;
}

.conversation-preview {
  display: grid;
  grid-template-columns: 48% 52%;
}

.thread-list {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding: 16px 0 0;
}

.thread-list h4,
.crm-preview h4 {
  margin: 0 0 16px;
  padding: 0 14px;
  font-size: 14px;
  color: #fff;
}

.thread {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 68px;
  padding: 10px 8px 10px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  position: relative;
}

.thread.active {
  background: linear-gradient(90deg, rgba(0, 255, 72, 0.08), rgba(255, 255, 255, 0.025));
}

.thread.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
}

.thread img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #141614;
}

.thread strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 10px;
}

.thread span {
  min-width: 0;
}

.thread em {
  align-self: start;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}

.chat-detail {
  padding: 13px 11px 10px;
}

.chat-head {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  margin-bottom: 14px;
}

.chat-head img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #141614;
}

.chat-head strong {
  display: block;
  color: #fff;
  font-size: 11px;
}

.chat-head span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.bubble {
  width: fit-content;
  max-width: 93%;
  margin-bottom: 12px;
  padding: 10px 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  font-size: 11px;
  line-height: 1.42;
  position: relative;
}

.bubble.out {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(0, 255, 72, 0.24), rgba(0, 255, 72, 0.08));
  border-color: rgba(0, 255, 72, 0.24);
}

.bubble.last {
  margin-left: auto;
}

.bubble em {
  position: absolute;
  right: 10px;
  bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-style: normal;
}

.crm-preview {
  padding: 16px 12px 12px;
}

.crm-preview h4 {
  padding: 0;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mini-metrics div {
  min-height: 86px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(22, 23, 22, 0.72);
}

.mini-metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.mini-metrics span {
  font-size: 10px;
}

.mini-metrics em {
  font-size: 10px;
  margin-top: 8px;
}

.lead-card {
  margin-top: 14px;
  min-height: 100px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(22, 23, 22, 0.82);
}

.lead-card img {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #151615;
}

.lead-card > span strong {
  display: block;
  color: #fff;
  font-size: 11px;
}

.lead-card > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

.score {
  text-align: right;
}

.score small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
}

.score strong {
  display: inline-block;
  margin-right: 8px;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.score em {
  display: inline-flex;
  padding: 3px 8px;
  color: #06240f;
  background: #b9ffb9;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.lead-tags {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lead-tags span,
.lead-tags button {
  height: 25px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 5px;
  padding: 0 9px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.lead-tags button {
  width: 25px;
  justify-content: center;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-strip {
  margin-top: 17px;
  height: 126px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 50%, rgba(0, 255, 72, 0.04), transparent 34%),
    rgba(9, 10, 9, 0.95);
  position: relative;
  overflow: hidden;
}

.benefit-strip > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.benefit-strip > div:last-child {
  border-right: 0;
}

.benefit-strip svg {
  width: 42px;
  height: 42px;
  color: var(--green);
  stroke-width: 1.9;
}

.benefit-strip strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
}

.benefit-strip span {
  color: #c1c5bf;
  font-size: 12.5px;
  line-height: 1.34;
}

.waitlist-section {
  padding-top: clamp(14px, 2vw, 28px);
}

.waitlist-band {
  min-height: 104px;
  display: grid;
  grid-template-columns: 78px minmax(230px, 1fr) minmax(340px, 430px);
  grid-template-areas:
    "icon copy form"
    "icon copy checks";
  gap: 7px 20px;
  align-items: center;
  padding: 17px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background:
    radial-gradient(circle at 0% 50%, rgba(0, 255, 72, 0.34), transparent 13%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(9, 10, 9, 0.96);
  position: relative;
  overflow: hidden;
}

.calendar-glow {
  grid-area: icon;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 255, 72, 0.36);
  border-radius: 8px;
  background: rgba(1, 17, 7, 0.85);
  color: var(--green);
  box-shadow: 0 0 34px rgba(0, 255, 72, 0.3);
}

.calendar-glow svg {
  width: 26px;
  height: 26px;
}

.waitlist-band h2 {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.08;
}

.waitlist-band p {
  margin: 6px 0 0;
  color: #c2c6bf;
  font-size: 12px;
}

.waitlist-form {
  grid-area: form;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  gap: 10px;
  align-items: center;
}

.waitlist-form input,
.footer-waitlist input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 17px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: rgba(16, 17, 16, 0.88);
  outline: none;
  font-size: 12px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.waitlist-form input:focus,
.footer-waitlist input:focus {
  border-color: rgba(0, 255, 72, 0.58);
  box-shadow: 0 0 0 3px rgba(0, 255, 72, 0.11);
}

.waitlist-form .primary-button {
  min-width: 0;
  min-height: 42px;
  gap: 11px;
  font-size: 12px;
  white-space: nowrap;
}

.check-row {
  grid-area: checks;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: #d5d8d3;
  font-size: 11px;
}

.check-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check-row svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
  padding: 2px;
  stroke-width: 3;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1em;
  margin: 0;
  color: var(--green);
  font-size: 12px;
}

.form-status:empty {
  display: none;
}

.proof-cards {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(112px, 0.48fr));
  gap: 8px;
  margin-top: 10px;
}

.quote-card,
.trust-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05), transparent 45%),
    rgba(9, 10, 9, 0.96);
  position: relative;
  overflow: hidden;
}

.quote-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 21px;
}

.quote-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 255, 72, 0.42);
  border-radius: 8px;
  color: var(--green);
  background: rgba(0, 255, 72, 0.05);
}

.quote-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--green);
  stroke: none;
}

.quote-card p {
  margin: 0;
  max-width: 340px;
  color: #fff;
  font-size: 16px;
  line-height: 1.38;
}

.quote-proof {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #858a84;
  font-size: 11px;
}

.avatar-stack.tiny img {
  width: 22px;
  height: 22px;
  border-width: 1px;
  margin-left: -6px;
}

.quote-proof em {
  height: 22px;
  padding: 0 8px;
  font-size: 10px;
  font-style: normal;
}

.trust-card {
  min-height: 128px;
  padding: 26px 18px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-card svg {
  width: 32px;
  height: 32px;
  color: var(--green);
  margin-bottom: 13px;
}

.trust-card .gold {
  color: var(--gold);
}

.trust-card h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.12;
  max-width: 150px;
}

.trust-card p {
  margin: 14px 0 0;
  color: #aeb3ac;
  font-size: 11px;
  line-height: 1.34;
  max-width: 134px;
}

.site-footer {
  margin-top: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
}

.footer-brand .brand-icon {
  width: 36px;
  height: 30px;
}

.footer-brand .brand-text {
  font-size: 19px;
}

.footer-brand p {
  margin: 20px 0 28px;
  color: #a9aea8;
  font-size: 12px;
  line-height: 1.45;
}

.footer-brand small {
  color: #8d928c;
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 28px;
}

.footer-links h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 12px;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 10px;
  color: #969b95;
  font-size: 11px;
  line-height: 1.4;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-waitlist form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  margin-top: 12px;
}

.footer-waitlist input {
  height: 38px;
  border-radius: 4px 0 0 4px;
}

.footer-waitlist button {
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 0;
  border-radius: 0 4px 4px 0;
  background: rgba(16, 17, 16, 0.88);
  color: #9df8b8;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.footer-waitlist button:hover,
.footer-waitlist button:focus-visible {
  color: #020402;
  background: var(--green);
}

.footer-waitlist button svg {
  width: 17px;
  height: 17px;
  margin: auto;
}

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

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

.magnetic {
  will-change: transform;
}

@keyframes chartDraw {
  to {
    stroke-dashoffset: 0;
  }
}

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

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1280px) {
  .site-frame {
    width: min(100%, 1320px);
    padding-inline: clamp(32px, 2.3vw, 38px);
  }

  .hero {
    grid-template-columns: minmax(470px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(30px, 2.5vw, 36px);
    min-height: 640px;
  }

  .hero h1 {
    max-width: 455px;
    font-size: 55px;
  }

  .hero p {
    max-width: 456px;
    font-size: 21px;
  }

  .hero-actions {
    margin-top: 40px;
    gap: 12px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    height: 55px;
  }

  .hero-actions .primary-button {
    min-width: 181px;
  }

  .hero-actions .secondary-button {
    min-width: 208px;
  }

  .member-proof {
    margin-top: 40px;
    font-size: 14px;
  }

  .dashboard-shell {
    font-size: clamp(9px, 0.62vw, 11.4px);
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .feature-card {
    min-height: 470px;
    padding: 24px 16px 14px;
  }
}

@media (min-width: 1680px) {
  .site-frame {
    width: min(100%, 1640px);
    padding-inline: clamp(38px, 2.7vw, 52px);
  }

  .hero {
    grid-template-columns: minmax(560px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(40px, 3.2vw, 58px);
    min-height: 736px;
  }

  .hero-grid {
    width: 720px;
    height: 450px;
  }

  .hero h1 {
    max-width: 575px;
    font-size: clamp(64px, 3.55vw, 70px);
  }

  .hero p {
    max-width: 552px;
    font-size: 23px;
  }

  .hero-actions {
    margin-top: 44px;
    gap: 16px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    height: 61px;
  }

  .hero-actions .primary-button {
    min-width: 205px;
  }

  .hero-actions .secondary-button {
    min-width: 244px;
  }

  .member-proof {
    margin-top: 42px;
  }

  .dashboard-shell {
    font-size: clamp(10.8px, 0.7vw, 13.3px);
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .feature-card {
    min-height: 520px;
    padding: 27px 18px 17px;
  }
}

@media (max-width: 980px) {
  .site-frame {
    width: min(100%, 980px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero h1,
  .hero p {
    max-width: 620px;
  }

  .hero-visual {
    max-width: 780px;
    margin-top: 0;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .flow-canvas,
  .conversation-preview,
  .crm-preview {
    min-height: 320px;
  }

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .benefit-strip > div:nth-child(2) {
    border-right: 0;
  }

  .benefit-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .waitlist-section {
    padding-top: 18px;
  }

}

@media (max-width: 820px) {
  .site-frame {
    padding-top: 20px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
    gap: 14px;
  }

  .menu-button {
    display: grid;
    grid-column: 3;
    grid-row: 1;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-cta {
    min-width: 146px;
    height: 44px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
  }

  .nav-links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 84px;
    z-index: 50;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: rgba(8, 9, 8, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 7px;
  }

  .nav-links a:hover {
    background: rgba(0, 255, 72, 0.08);
  }

  body.menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    inset: 54px 0 auto -48px;
    width: auto;
    height: 390px;
    opacity: 0.68;
  }

  .hero h1 {
    font-size: clamp(43px, 10.6vw, 58px);
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    flex: 1 1 220px;
  }

  .dashboard-shell {
    font-size: clamp(6.5px, 1.35vw, 9px);
  }

}

@media (min-width: 641px) and (max-width: 820px) {
  .site-frame {
    padding-inline: 39px;
  }

  .waitlist-band {
    grid-template-columns: 68px minmax(195px, 1fr) minmax(286px, 315px);
    gap: 5px 15px;
    min-height: 100px;
    padding: 12px 20px;
  }

  .waitlist-section {
    padding-top: 16px;
  }

  .calendar-glow {
    width: 46px;
    height: 46px;
  }

  .calendar-glow svg {
    width: 24px;
    height: 24px;
  }

  .waitlist-band p {
    font-size: 10px;
  }

  .waitlist-form {
    grid-template-columns: minmax(0, 1fr) 124px;
  }

  .waitlist-form input,
  .waitlist-form .primary-button {
    height: 34px;
    min-height: 34px;
  }

  .waitlist-form .primary-button {
    gap: 7px;
    font-size: 10px;
  }

  .waitlist-form .primary-button svg {
    width: 14px;
    height: 14px;
  }

  .check-row {
    gap: 10px 16px;
    font-size: 9px;
  }

  .proof-cards {
    grid-template-columns: minmax(285px, 1.4fr) repeat(3, minmax(102px, 0.46fr));
    gap: 6px;
  }

  .proof-cards > * {
    height: 128px;
    min-height: 0;
  }

  .quote-card {
    padding: 16px 12px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .quote-card p {
    font-size: 13px;
    max-width: 270px;
  }

  .quote-proof {
    margin-top: 8px;
    font-size: 9px;
  }

  .trust-card {
    padding: 17px 9px 12px;
  }

  .trust-card h3 {
    font-size: 13px;
  }

  .trust-card p {
    font-size: 9px;
    line-height: 1.25;
    margin-top: 8px;
  }

  .trust-card svg {
    width: 28px;
    height: 28px;
    margin-bottom: 9px;
  }

  .site-footer {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .footer-waitlist {
    grid-column: 1 / -1;
    max-width: 360px;
  }

  .footer-brand p {
    margin-bottom: 24px;
  }

}

@media (max-width: 640px) {
  .site-frame {
    padding-inline: 14px;
  }

  .brand {
    min-width: auto;
  }

  .brand-icon {
    width: 34px;
    height: 30px;
  }

  .brand-text {
    font-size: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .status-pill {
    height: 34px;
    font-size: 12px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(40px, 12.6vw, 52px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .member-proof {
    margin-top: 28px;
    flex-wrap: wrap;
    white-space: normal;
    font-size: 15px;
  }

  .dashboard-shell {
    grid-template-columns: 24% 76%;
    font-size: clamp(5px, 1.55vw, 7px);
    border-radius: 11px;
  }

  .dash-sidebar {
    padding-left: 0.8em;
    padding-right: 0.7em;
  }

  .dash-menu {
    gap: 0.3em;
  }

  .dash-menu li {
    min-height: 3.35em;
    gap: 0.55em;
    padding-inline: 0.55em;
  }

  .date-control {
    min-width: 16em;
  }

  .metric-grid {
    gap: 0.65em;
  }

  .dash-panels {
    gap: 0.65em;
  }

  .features-section {
    padding-top: 58px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .feature-card {
    padding: 20px 10px 10px;
  }

  .feature-copy {
    grid-template-columns: 40px 1fr;
    padding-bottom: 18px;
  }

  .feature-copy h3 {
    font-size: 18px;
  }

  .flow-canvas,
  .conversation-preview,
  .crm-preview {
    height: 300px;
  }

  .flow-canvas {
    transform-origin: top left;
  }

  .flow-node {
    transform: scale(0.88);
    transform-origin: left top;
  }

  .flow-node.condition {
    left: 150px;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    padding: 22px 18px;
  }

  .benefit-strip > div:last-child {
    border-bottom: 0;
  }

  .waitlist-section {
    padding-top: 8px;
  }

  .waitlist-band {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "icon copy"
      "form form"
      "checks checks";
    gap: 14px 12px;
    min-height: 0;
    padding: 18px 16px 17px;
    align-items: center;
    background:
      radial-gradient(circle at -4% 24%, rgba(0, 255, 72, 0.24), transparent 28%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
      rgba(9, 10, 9, 0.96);
  }

  .calendar-glow {
    width: 52px;
    height: 52px;
  }

  .waitlist-band h2 {
    font-size: clamp(20px, 5.8vw, 27px);
  }

  .waitlist-band p {
    font-size: 13px;
    line-height: 1.35;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 2px;
  }

  .waitlist-form input,
  .waitlist-form .primary-button {
    height: 50px;
    min-height: 50px;
  }

  .waitlist-form .primary-button {
    font-size: 13px;
  }

  .check-row {
    gap: 10px 18px;
    font-size: 13px;
    line-height: 1.25;
  }

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

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .quote-proof {
    grid-column: 1;
    flex-wrap: wrap;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 16px;
    padding-top: 24px;
  }

  .footer-brand p {
    margin: 18px 0 16px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .footer-waitlist {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
    flex-basis: 100%;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 48px);
  }

  .member-proof {
    align-items: flex-start;
  }

  .member-proof > span:last-child {
    flex-basis: 100%;
  }

  .conversation-preview {
    grid-template-columns: 44% 56%;
  }

  .thread {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .thread img {
    width: 28px;
    height: 28px;
  }

  .thread em {
    display: none;
  }

  .mini-metrics {
    gap: 5px;
  }

  .mini-metrics div {
    padding: 9px 7px;
  }

  .lead-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .score {
    grid-column: 1 / -1;
    text-align: left;
  }
}
