:root {
  color-scheme: light;
  --ink: #101214;
  --muted: #5f686c;
  --paper: #f7f5ee;
  --white: #fffdf8;
  --line: rgba(16, 18, 20, 0.12);
  --teal: #087275;
  --green: #b8d436;
  --coral: #ef6f4e;
  --blue: #2364aa;
  --shadow: 0 24px 70px rgba(16, 18, 20, 0.18);
  --soft-shadow: 0 16px 44px rgba(16, 18, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
}

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

body.motion-ready .hero-content > *,
body.motion-ready .hero-panel {
  animation: fadeLift 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.motion-ready .hero-content .eyebrow {
  animation-delay: 80ms;
}

body.motion-ready .hero-content h1 {
  animation-delay: 170ms;
}

body.motion-ready .hero-copy {
  animation-delay: 260ms;
}

body.motion-ready .hero-actions {
  animation-delay: 350ms;
}

body.motion-ready .hero-note {
  animation-delay: 430ms;
}

body.motion-ready .hero-panel {
  animation-delay: 360ms;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
  will-change: opacity, transform;
}

body.motion-ready .reveal.from-left {
  transform: translateX(-18px);
}

body.motion-ready .reveal.from-right {
  transform: translateX(18px);
}

body.motion-ready .reveal.from-scale {
  transform: scale(0.97);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(184, 212, 54, 0.72);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(247, 245, 238, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  min-height: 74px;
  padding: 0 clamp(20px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--green);
  display: inline-flex;
  font-size: 0.86rem;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  justify-content: center;
}

.nav-links a,
.nav-action {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 0;
}

.nav-links a:hover,
.nav-action:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-action {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  padding: 11px 16px;
}

.hero {
  align-items: center;
  background: #111612;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 6vw, 72px);
  min-height: calc(78svh - 74px);
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
  position: relative;
}

#signalCanvas,
.hero-scrim {
  inset: 0;
  position: absolute;
}

#signalCanvas {
  height: 100%;
  width: 100%;
  z-index: 0;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(17, 22, 18, 0.96), rgba(17, 22, 18, 0.72) 44%, rgba(17, 22, 18, 0.34)),
    radial-gradient(circle at 84% 24%, rgba(184, 212, 54, 0.2), transparent 28%),
    radial-gradient(circle at 74% 78%, rgba(239, 111, 78, 0.16), transparent 30%);
  z-index: 1;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

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

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 28px;
  max-width: 980px;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.6rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-copy,
.section-heading p,
.split-section p,
.cta-section p {
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.65;
  max-width: 650px;
}

.section-heading p,
.split-section p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button::after {
  content: "";
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  display: inline-block;
  height: 7px;
  margin-left: 10px;
  transform: rotate(45deg) translateX(0);
  transition: transform 180ms ease;
  width: 7px;
}

.button:hover,
.nav-action:hover {
  transform: translateY(-1px);
}

.button:hover::after {
  transform: rotate(45deg) translate(3px, -3px);
}

.button.primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
}

.button.secondary {
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 253, 248, 0.12);
}

.button.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.hero-note {
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.94rem;
  font-weight: 700;
  margin: 16px 0 0;
}

.hero-panel {
  align-self: end;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hero-panel:hover {
  border-color: rgba(255, 253, 248, 0.34);
  box-shadow: 0 28px 82px rgba(16, 18, 20, 0.26);
  transform: translateY(-2px);
}

.panel-row,
.site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.panel-kicker {
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.panel-row span,
.panel-grid span {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.86rem;
  font-weight: 700;
}

.panel-row strong {
  color: var(--green);
  font-size: 1.7rem;
}

.pulse-track {
  background: rgba(255, 253, 248, 0.18);
  height: 8px;
  margin: 24px 0 18px;
  overflow: hidden;
}

.pulse-track span {
  background: linear-gradient(90deg, var(--green), var(--coral));
  display: block;
  height: 100%;
  width: 68%;
}

body.hero-in-view .pulse-track span {
  animation: pulseMove 2.8s ease-in-out infinite;
}

.panel-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel-badge {
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 10px;
  overflow-wrap: anywhere;
}

.worker-feed {
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
}

.worker-feed div {
  align-items: start;
  border-radius: 6px;
  display: grid;
  gap: 10px;
  grid-template-columns: 10px 1fr;
  margin: 0 -8px;
  padding: 8px;
}

body.hero-in-view .worker-feed div {
  animation: feedGlow 8s ease-in-out infinite;
}

.worker-feed div:nth-child(2) {
  animation-delay: 1.8s;
}

.worker-feed div:nth-child(3) {
  animation-delay: 3.6s;
}

.worker-feed p {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.worker-feed strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.worker-feed em {
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.72);
  display: inline-flex;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  margin-left: 6px;
  padding: 3px 7px;
}

.status-dot {
  --pulse-color: rgba(184, 212, 54, 0.12);
  --pulse-color-soft: rgba(184, 212, 54, 0.04);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(184, 212, 54, 0.12);
  display: block;
  height: 8px;
  margin-top: 6px;
  width: 8px;
}

body.hero-in-view .status-dot {
  animation: statusPulse 2.8s ease-in-out infinite;
}

.status-dot.muted {
  --pulse-color: rgba(239, 111, 78, 0.12);
  --pulse-color-soft: rgba(239, 111, 78, 0.04);
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(239, 111, 78, 0.12);
}

.panel-grid div {
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 6px;
  padding: 16px;
}

.panel-grid b {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.intro-band {
  background: var(--green);
  padding: 32px clamp(20px, 5vw, 72px);
}

.intro-band p {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0 auto;
  max-width: 1120px;
}

.section,
.split-section,
.jobs-section,
.mid-cta,
.workspace-section,
.channels-section,
.proof-section,
.cta-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 96px;
}

.section-heading {
  margin-bottom: 42px;
  max-width: 880px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  min-height: 268px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.feature-card,
.job-card,
.channel-card,
.metric,
.workspace-preview,
.hero-panel {
  min-width: 0;
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-card::before,
.job-card::before {
  background: linear-gradient(135deg, rgba(184, 212, 54, 0.22), transparent 42%);
  content: "";
  height: 120px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: -28px;
  top: -28px;
  transform: rotate(8deg);
  transition: opacity 220ms ease;
  width: 160px;
}

.feature-card:hover::before,
.job-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(16, 18, 20, 0.22);
  box-shadow: 0 22px 54px rgba(16, 18, 20, 0.12);
  transform: translateY(-3px) scale(1.01);
}

.job-card:hover {
  border-color: rgba(16, 18, 20, 0.22);
  box-shadow: 0 22px 54px rgba(16, 18, 20, 0.12);
  transform: translateY(-4px);
}

.feature-icon {
  align-items: center;
  background: var(--ink);
  color: var(--green);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  margin-bottom: 44px;
  width: 38px;
}

.feature-card h3 {
  margin-top: 0;
}

.mini-worker-stack,
.mini-file-list,
.mini-schedule {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.mini-worker-stack span,
.mini-file-list span,
.mini-schedule span {
  background: rgba(16, 18, 20, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: space-between;
  padding: 8px 10px;
  width: fit-content;
}

.mini-worker-stack span:nth-child(2) {
  margin-left: 22px;
}

.mini-worker-stack span:nth-child(3) {
  margin-left: 44px;
}

.mini-file-list {
  display: flex;
  flex-wrap: wrap;
}

.mini-schedule {
  align-items: center;
  background: rgba(16, 18, 20, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-template-columns: auto 1fr auto;
  padding: 10px;
}

.mini-schedule span {
  background: transparent;
  border: 0;
  padding: 0;
}

.mini-schedule span:last-child {
  background: var(--green);
  color: var(--ink);
  padding: 7px 9px;
}

.feature-card p,
.timeline-item p,
.metric span {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.split-section {
  align-items: start;
  background: var(--white);
  display: grid;
  gap: clamp(36px, 7vw, 86px);
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
}

.start-section {
  padding-top: clamp(64px, 8vw, 108px);
}

.split-section > div:first-child {
  position: sticky;
  top: 110px;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 44px 1fr;
  padding: 26px 0;
}

.timeline-item span {
  transition: transform 220ms ease;
}

.timeline-item:hover span {
  transform: scale(1.08);
}

.timeline-item span {
  align-items: center;
  background: var(--coral);
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.jobs-section {
  background: #fffdf8;
}

.job-grid {
  display: grid;
  gap: 14px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.job-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.job-card-featured {
  background: linear-gradient(145deg, var(--white), #eef4df);
  grid-column: span 2;
}

.job-card:nth-child(2) {
  background: #fff9f4;
}

.job-card:nth-child(3) {
  background: #f4fbfb;
}

.job-card:nth-child(4) {
  background: #fbf7ff;
}

.job-card span {
  color: var(--teal);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 34px;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.job-card:hover span {
  color: var(--coral);
  transform: translateY(-2px);
}

.job-card h3 {
  margin-bottom: 38px;
}

.job-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.mid-cta {
  background: var(--green);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.mid-cta::before {
  animation: ctaSheen 7s ease-in-out infinite;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 253, 248, 0.32) 48%, transparent 70%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-100%);
}

.mid-cta > * {
  position: relative;
  z-index: 1;
}

.mid-cta p {
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.mid-cta h2 {
  max-width: 940px;
}

.workspace-section {
  align-items: center;
  background: #e8efe6;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.7fr);
}

.workspace-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  line-height: 1.62;
  max-width: 650px;
}

.workspace-preview {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 0 18px;
  grid-template-columns: 82px 1fr;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.workspace-preview::before {
  animation: workspaceScan 6.4s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(184, 212, 54, 0.18), transparent);
  content: "";
  height: 100%;
  left: -50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: skewX(-16deg);
  width: 40%;
}

.workspace-rail {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-row: span 5;
  padding-right: 18px;
}

.workspace-rail span {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 8px 0;
}

.workspace-rail span:first-child {
  color: var(--ink);
}

.workspace-preview:hover {
  box-shadow: 0 22px 54px rgba(16, 18, 20, 0.12);
  transform: translateY(-3px);
}

.workspace-bar,
.file-row,
.workspace-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.workspace-bar {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.workspace-bar span,
.file-row span {
  font-weight: 800;
  min-width: 0;
  overflow-wrap: anywhere;
}

.workspace-bar strong {
  animation: liveBadge 3.6s ease-in-out infinite;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 7px 10px;
}

.file-row {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  transition: transform 180ms ease;
}

.workspace-preview .file-row:hover {
  transform: translateX(4px);
}

.file-row b {
  color: var(--muted);
  font-size: 0.8rem;
  min-width: 0;
  overflow-wrap: anywhere;
}

.workspace-actions {
  justify-content: flex-start;
  padding-top: 18px;
}

.workspace-actions span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 10px;
}

.proof-section {
  background: var(--paper);
}

.channels-section {
  background:
    linear-gradient(135deg, rgba(184, 212, 54, 0.08), transparent 36%),
    var(--ink);
  color: var(--white);
}

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

.channels-section .section-heading h2 {
  max-width: 820px;
}

.channel-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.channel-card {
  --channel-accent: var(--green);
  --channel-glow: rgba(184, 212, 54, 0.14);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 12%, var(--channel-glow), transparent 34%),
    rgba(255, 253, 248, 0.03);
  min-height: 210px;
  padding: 24px;
  position: relative;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.channel-card::after {
  background: var(--channel-accent);
  bottom: 0;
  content: "";
  height: 3px;
  left: 24px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
  width: calc(100% - 48px);
}

.channel-card:hover {
  border-color: rgba(255, 253, 248, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.channel-card:hover::after {
  transform: scaleX(1);
}

.channel-card span {
  color: var(--white);
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.channel-card p {
  color: rgba(255, 253, 248, 0.7);
  line-height: 1.58;
  margin-bottom: 24px;
}

.channel-card b {
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  color: var(--channel-accent);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 10px;
}

.connector-visual {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.16), rgba(255, 253, 248, 0.04)),
    color-mix(in srgb, var(--channel-accent) 18%, transparent);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  color: var(--channel-accent);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 42px;
  position: relative;
  width: 54px;
}

.connector-visual::after {
  background: var(--channel-accent);
  border-radius: 999px;
  bottom: 4px;
  content: "";
  height: 9px;
  position: absolute;
  right: 4px;
  width: 9px;
}

.connector-visual svg {
  height: 30px;
  width: 30px;
}

.connector-visual path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.channel-whatsapp {
  --channel-accent: #63d471;
  --channel-glow: rgba(99, 212, 113, 0.15);
}

.channel-telegram {
  --channel-accent: #6bb8ff;
  --channel-glow: rgba(107, 184, 255, 0.16);
}

.channel-discord {
  --channel-accent: #a8a5ff;
  --channel-glow: rgba(168, 165, 255, 0.16);
}

.channel-email {
  --channel-accent: #ffb36b;
  --channel-glow: rgba(255, 179, 107, 0.16);
}

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

.metric {
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 8px;
  min-height: 190px;
  padding: 30px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.metric:hover {
  border-color: rgba(16, 18, 20, 0.18);
  box-shadow: 0 16px 40px rgba(16, 18, 20, 0.09);
  transform: translateY(-2px);
}

.metric strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 420px;
}

.metric b {
  background: var(--ink);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.78rem;
  margin-bottom: 42px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.cta-section {
  background: var(--coral);
  color: var(--ink);
  min-height: 440px;
}

.cta-section h2 {
  max-width: 900px;
}

.cta-section .eyebrow,
.cta-section p {
  color: var(--ink);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  min-height: 86px;
  padding: 0 clamp(20px, 5vw, 72px);
}

.site-footer span {
  font-weight: 800;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.72);
}

@keyframes pulseMove {
  0%,
  100% {
    transform: translateX(-12%);
  }
  50% {
    transform: translateX(58%);
  }
}

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

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px var(--pulse-color);
  }
  50% {
    box-shadow: 0 0 0 8px var(--pulse-color-soft);
  }
}

@keyframes feedGlow {
  0%,
  22%,
  100% {
    background: transparent;
  }
  10% {
    background: rgba(255, 253, 248, 0.08);
  }
}

@keyframes ctaSheen {
  0%,
  48% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(160%);
  }
}

@keyframes workspaceScan {
  0%,
  52% {
    transform: translateX(-130%) skewX(-16deg);
  }
  86%,
  100% {
    transform: translateX(420%) skewX(-16deg);
  }
}

@keyframes liveBadge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 212, 54, 0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(184, 212, 54, 0.14);
  }
}

@media (max-width: 1180px) {
  .feature-grid,
  .job-grid,
  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  html {
    scroll-padding-top: 140px;
  }

  .section,
  .split-section,
  .jobs-section,
  .mid-cta,
  .workspace-section,
  .channels-section,
  .proof-section,
  .cta-section {
    scroll-margin-top: 140px;
  }

  .nav-links {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    overflow-x: visible;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: normal;
  }

  .nav-links a {
    border: 1px solid var(--line);
    border-radius: 999px;
    min-height: 44px;
    padding: 10px 12px;
  }

  .nav-action {
    grid-column: 2;
    grid-row: 1;
  }

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

  .hero,
  .split-section,
  .workspace-section {
    grid-template-columns: 1fr;
  }

  .split-section > div:first-child {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    align-self: stretch;
    max-width: 520px;
  }

  .feature-card {
    min-height: 250px;
  }

  .feature-icon {
    margin-bottom: 42px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 164px;
  }

  .site-header {
    gap: 14px;
    padding: 0 16px;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    height: 30px;
    width: 30px;
  }

  .nav-action {
    font-size: 0.78rem;
    min-height: 44px;
    padding: 10px 12px;
  }

  .nav-links a {
    font-size: 0.78rem;
    min-height: 44px;
    padding: 9px 10px;
  }

  .hero {
    min-height: auto;
    padding: 46px 18px 34px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.9rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .feature-grid,
  .job-grid,
  .channel-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-wide,
  .job-card-featured {
    grid-column: auto;
  }

  .worker-feed em {
    margin-left: 0;
    margin-top: 6px;
  }

  .mini-worker-stack span:nth-child(2),
  .mini-worker-stack span:nth-child(3) {
    margin-left: 0;
  }

  .mini-schedule {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .feature-card,
  .job-card,
  .channel-card,
  .metric,
  .workspace-preview {
    padding: 18px;
  }

  .feature-icon {
    margin-bottom: 30px;
  }

  .job-card span,
  .channel-card span {
    margin-bottom: 24px;
  }

  .job-card h3 {
    margin-bottom: 24px;
  }

  .metric strong {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .metric b {
    margin-bottom: 22px;
  }

  .workspace-preview {
    grid-template-columns: 1fr;
  }

  .workspace-rail {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    display: flex;
    flex-wrap: wrap;
    grid-row: auto;
    padding-bottom: 14px;
    padding-right: 0;
  }

  .workspace-rail span {
    padding: 7px 10px;
  }

  .workspace-actions {
    gap: 8px;
  }

  .section,
  .split-section,
  .jobs-section,
  .mid-cta,
  .workspace-section,
  .channels-section,
  .proof-section,
  .cta-section {
    padding-left: 18px;
    padding-right: 18px;
    scroll-margin-top: 164px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  html {
    scroll-padding-top: 180px;
  }

  .section,
  .split-section,
  .jobs-section,
  .mid-cta,
  .workspace-section,
  .channels-section,
  .proof-section,
  .cta-section {
    scroll-margin-top: 180px;
  }
}

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

  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .button:hover,
  .nav-action:hover,
  .hero-panel:hover,
  .feature-card:hover,
  .job-card:hover,
  .channel-card:hover,
  .metric:hover,
  .workspace-preview:hover,
  .workspace-preview .file-row:hover,
  .timeline-item:hover span,
  .job-card:hover span {
    transform: none !important;
  }

  .button::after,
  .channel-card::after,
  .workspace-preview::before,
  .mid-cta::before {
    display: none;
  }
}
