:root {
  --slate: #1e293b;
  --ocean: #0f172a;
  --amber: #d97706;
  --amber-soft: #f59e0b;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --card: #111827;
  --line: #334155;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, #1f2937 0%, var(--ocean) 38%, #020617 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  position: relative;
  overflow: clip;
}

.section-title {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 1.8rem;
  letter-spacing: -0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(7px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand span {
  color: var(--text);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #f8fafc;
  text-shadow: 0 1px 10px rgba(217, 119, 6, 0.24);
}

.brand-text small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #cbd5e1;
  opacity: 0.88;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.nav-cta {
  color: #fff !important;
  background: var(--amber);
  padding: 0.45rem 0.8rem;
  border-radius: 0.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: center;
}

.eyebrow {
  color: var(--amber-soft);
  margin: 0 0 1rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.018em;
  max-width: 13.5em;
  color: #f1f5f9;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-title-accent {
  font-weight: 700;
  background: linear-gradient(120deg, #fde68a 0%, #fbbf24 45%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  max-width: 18ch;
}

.hero-copy .subtitle {
  margin: 1.35rem 0 2rem;
  color: #94a3b8;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  padding: 0.82rem 1.2rem;
  border-radius: 0.65rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  background: #b45309;
  transform: translateY(-1px);
}

.btn-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.hero-visual {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.38) 0%, rgba(2, 6, 23, 0.82) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.38);
  border-radius: 1.1rem;
  padding: 1.45rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.signal-strip span {
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
  animation: flash 1.8s infinite ease-in-out;
}

.signal-strip span:nth-child(2) {
  animation-delay: 0.2s;
}
.signal-strip span:nth-child(3) {
  animation-delay: 0.4s;
}
.signal-strip span:nth-child(4) {
  animation-delay: 0.6s;
}
.signal-strip span:nth-child(5) {
  animation-delay: 0.8s;
}

.journey-title {
  margin: 0 0 0.85rem;
  color: #cbd5e1;
  font-weight: 600;
}

.journey-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.45rem;
  align-items: stretch;
}

.journey-step {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.58);
  padding: 0.72rem 0.68rem 0.72rem;
  display: grid;
  gap: 0.3rem;
  align-content: start;
  text-align: left;
}

.journey-step svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.journey-step strong {
  font-size: 0.79rem;
  line-height: 1.2;
  min-height: 2.1em;
  padding-right: 1.95rem;
}

.journey-step span {
  font-size: 0.74rem;
  color: #94a3b8;
  line-height: 1.25;
  min-height: 2.5em;
}

.journey-step.highlight {
  border-color: rgba(217, 119, 6, 0.45);
  background: rgba(217, 119, 6, 0.12);
}

.journey-no {
  position: absolute;
  top: 0.46rem;
  right: 0.46rem;
  min-width: 1.75rem;
  height: 1.22rem;
  padding: 0 0.28rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(217, 119, 6, 0.8);
  background: rgba(217, 119, 6, 0.22);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.journey-arrow {
  display: grid;
  place-items: center;
  color: rgba(217, 119, 6, 0.9);
}

.journey-arrow svg {
  width: 15px;
  height: 15px;
}

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

.hero-badges div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0.32rem 0.38rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 0.6rem;
  background: rgba(15, 23, 42, 0.36);
  color: #cbd5e1;
  font-size: 0.82rem;
  text-align: center;
  white-space: nowrap;
}

.hero-badges svg {
  color: var(--amber);
}

.logo-section {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.32);
}

.ticker {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 999px;
  padding: 0.9rem 0;
  background: rgba(15, 23, 42, 0.48);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 2.8rem;
  animation: scroll 28s linear infinite;
}

.ticker-track img {
  width: 140px;
  height: 52px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.25s ease;
}

.ticker-track img:hover {
  transform: translateY(-1px) scale(1.03);
}

.logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 52px;
  padding: 0 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.76);
  color: #cbd5e1;
  font-size: 0.8rem;
  white-space: nowrap;
}

.fade-mask {
  -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
  mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
}

.pain-grid,
.cap-grid,
.process-grid,
.directory-grid,
.industry-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.work-directory {
  display: grid;
  gap: 1.2rem;
}

.directory-block {
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.2) 0%, rgba(2, 6, 23, 0.52) 100%);
  border-radius: 1rem;
  padding: 1.2rem;
}

.directory-block h3 {
  margin: 0 0 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.directory-block h3 svg {
  color: var(--amber);
}

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

.directory-item {
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.48);
  border-radius: 0.8rem;
  padding: 0.95rem;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.directory-item h4 {
  margin: 0 0 0.42rem;
  font-size: 1rem;
  line-height: 1.3;
}

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

.directory-item::before,
.industry-card::before,
.pain-card::before,
.cap-card::before,
.process-step::before,
.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.9rem;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), transparent);
  opacity: 0.8;
}

.directory-item:hover,
.industry-card:hover,
.pain-card:hover,
.cap-card:hover,
.process-step:hover,
.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.35);
  background: rgba(15, 23, 42, 0.7);
}

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

.industry-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1rem;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.22) 0%, rgba(2, 6, 23, 0.58) 100%);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.industry-card h3 {
  margin: 0 0 0.65rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.3;
}

.industry-card h3 svg {
  color: var(--amber);
  margin-top: 0.08rem;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pain-card,
.cap-card,
.process-card,
.contact-wrap,
.risk-box {
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.22) 0%, rgba(2, 6, 23, 0.55) 100%);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.22);
  border-radius: 1rem;
}

.pain-card,
.cap-card,
.process-card {
  padding: 1.35rem;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.pain-card h3,
.cap-card h3 {
  margin: 0 0 0.75rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.3;
}

.pain-card svg,
.cap-card svg {
  color: var(--amber);
  margin-top: 0.08rem;
}

.pain-card p,
.cap-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pain-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.chip {
  font-size: 0.78rem;
  padding: 0.24rem 0.56rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.chip-bad {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.13);
  border-color: rgba(239, 68, 68, 0.35);
}

.solution {
  margin-top: 0.78rem !important;
  color: #cbd5e1 !important;
  font-weight: 500;
}

.section-alt {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.36);
}

.section-spotlight::before,
.section-spotlight-soft::before,
.section-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-spotlight::before {
  background: radial-gradient(75% 55% at 18% 20%, rgba(217, 119, 6, 0.14) 0%, transparent 70%);
}

.section-spotlight-soft::before {
  background: radial-gradient(65% 45% at 82% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

.section-wave::before {
  background:
    radial-gradient(45% 28% at 10% 10%, rgba(217, 119, 6, 0.09) 0%, transparent 80%),
    radial-gradient(50% 34% at 90% 85%, rgba(14, 165, 233, 0.1) 0%, transparent 80%);
}

.step-no {
  display: inline-flex;
  color: #fff;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid var(--amber);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 0.7rem;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-step {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.24) 0%, rgba(2, 6, 23, 0.5) 100%);
  border-radius: 1rem;
  padding: 0.95rem 1rem 1.05rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.45rem;
  right: -0.85rem;
  width: 1.1rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.9), rgba(217, 119, 6, 0.2));
}

.process-step > svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  margin-bottom: 0.58rem;
}

.step-corner {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(217, 119, 6, 0.8);
  background: rgba(217, 119, 6, 0.25);
}

.process-step h3 {
  margin: 0 0 0.45rem;
  padding-right: 2.35rem;
  font-size: 1rem;
  line-height: 1.3;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.risk-box {
  padding: 1.7rem;
  border-color: rgba(217, 119, 6, 0.45);
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.08) 0%, rgba(15, 23, 42, 0.54) 75%);
}

.risk-box h2 {
  margin: 0 0 0.65rem;
  font-size: 1.7rem;
}

.risk-box p {
  margin: 0;
  color: #cbd5e1;
  font-size: 1.02rem;
}

.contact-wrap {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
}

.contact-copy p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 0.75rem;
}

.lead-form label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.lead-form input,
.lead-form select {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid #475569;
  color: var(--text);
  border-radius: 0.55rem;
  padding: 0.7rem 0.8rem;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.18);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note a {
  color: #fff;
}

.form-status {
  min-height: 1.1rem;
  margin: 0;
  font-size: 0.86rem;
}

.form-status.success {
  color: #86efac;
}

.form-status.error {
  color: #fca5a5;
}

.lead-form button[disabled] {
  opacity: 0.8;
  cursor: not-allowed;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-direct {
  margin: 1rem 0 0;
}

.contact-direct a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.contact-direct a:hover {
  color: var(--amber-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.55rem;
  background: rgba(15, 23, 42, 0.85);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #e2e8f0;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 4% 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(15, 23, 42, 0.98);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.55rem 0.2rem;
}

.mobile-nav a:hover {
  color: var(--text);
}

.mobile-nav .nav-cta {
  margin-top: 0.35rem;
  text-align: center;
  color: #fff !important;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 2.5rem 0 0;
  background: rgba(2, 6, 23, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 34ch;
  line-height: 1.55;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.footer-brand-link img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
}

.footer-brand-link span {
  display: grid;
  line-height: 1.05;
}

.footer-brand-link strong {
  color: #f8fafc;
  font-size: 0.98rem;
}

.footer-brand-link small {
  color: #cbd5e1;
  font-size: 0.72rem;
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a,
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--text);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom p,
.footer-bottom small {
  margin: 0;
}

.pulse-btn {
  animation: pulse 1.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.visual-story {
  padding-top: 3.4rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.story-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.25) 0%, rgba(2, 6, 23, 0.6) 100%);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.story-card h3 {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.3;
}

.story-card h3 svg {
  color: #f59e0b;
  margin-top: 0.08rem;
}

.story-card.good h3 svg {
  color: #22c55e;
}

.story-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #cbd5e1;
}

.story-card li + li {
  margin-top: 0.4rem;
}

.story-arrow {
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 1.4rem;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(217, 119, 6, 0);
  }
}

@keyframes travel {
  from {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}

@keyframes flash {
  0%,
  100% {
    background: rgba(148, 163, 184, 0.2);
  }
  50% {
    background: rgba(217, 119, 6, 0.85);
  }
}

@keyframes move-line {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(280%);
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

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

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

  .process-step:nth-child(2)::after {
    display: none;
  }

  .journey-flow {
    grid-template-columns: 1fr auto 1fr;
  }

  .journey-arrow:nth-child(6),
  .journey-arrow:nth-child(4) {
    transform: rotate(90deg);
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
  }

  .brand-text small {
    display: none;
  }

  .pain-grid,
  .cap-grid,
  .process-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  .journey-flow {
    grid-template-columns: 1fr;
  }

  .journey-arrow {
    transform: rotate(90deg);
    min-height: 18px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.24;
    max-width: 100%;
  }

  .hero-copy .subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .section {
    padding: 3rem 0;
  }

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

  .story-arrow {
    transform: rotate(90deg);
    min-height: 26px;
  }

  .ticker {
    border-radius: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
