:root {
  --ink: #151618;
  --charcoal: #111315;
  --graphite: #242629;
  --graphite-2: #303337;
  --muted: #5f646b;
  --line: #cfd2d4;
  --paper: #d9dddf;
  --paper-2: #cfd4d7;
  --surface: #f7f8f8;
  --surface-strong: #d0d5d8;
  --surface-muted: #c4cacf;
  --white: #ffffff;
  --orange: #f26a1b;
  --orange-dark: #c94f10;
  --orange-soft: #fde8d8;
  --steel: #8d949c;
  --shadow: 0 26px 80px rgba(17, 19, 21, 0.18);
  --soft-shadow: 0 14px 38px rgba(17, 19, 21, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(242, 106, 27, 0.11), transparent 30%),
    linear-gradient(180deg, #e3e7e9 0, var(--paper) 42%, #cfd4d7 100%);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(17, 19, 21, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 21, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
  z-index: -1;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background: rgba(225, 229, 231, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.proof-strip,
.hero-actions,
.dashboard-topline,
.chat-header,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--graphite);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: auto;
  height: 80px;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

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

.header-cta {
  padding: 10px 14px;
  border: 1px solid rgba(242, 106, 27, 0.28);
  border-radius: 8px;
  color: var(--orange-dark);
  background: rgba(253, 232, 216, 0.72);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 56px;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 132px);
  margin: 0 auto;
  padding: 42px 0 76px;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: clamp(2.9rem, 4.7vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 26px;
  font-size: 1.12rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(242, 106, 27, 0.26);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  border-color: rgba(21, 21, 21, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.button.large {
  min-width: 260px;
}

.hero-problem-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
  margin-bottom: 22px;
}

.hero-problem-strip span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  color: var(--graphite);
  background: rgba(238, 240, 241, 0.82);
  font-size: 0.85rem;
  font-weight: 800;
}

.proof-strip {
  flex-wrap: wrap;
  gap: 8px;
}

.proof-strip span {
  padding: 8px 10px;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 8px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 19, 21, 0.14);
}

.hero-numbers div {
  min-height: 82px;
  padding: 15px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 248, 248, 0.72), rgba(207, 212, 215, 0.82)),
    var(--surface-strong);
}

.hero-numbers strong,
.hero-numbers span {
  display: block;
}

.hero-numbers strong {
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 1.25rem;
  line-height: 1;
}

.hero-numbers span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(17, 19, 21, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--graphite-2), var(--charcoal));
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  pointer-events: none;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.4), transparent 42%),
    linear-gradient(180deg, transparent 58%, rgba(17, 19, 21, 0.18));
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(0.42) saturate(0.74) contrast(1.06);
}

.dashboard-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: min(390px, calc(100% - 48px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 19, 21, 0.9);
  backdrop-filter: blur(18px);
}

.dashboard-topline {
  justify-content: space-between;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.metric-grid div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
}

.metric-grid small,
.case-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 1.5rem;
}

.ai-message {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
}

.ai-message span {
  display: grid;
  place-items: center;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  font-size: 0.78rem;
}

.ai-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

section:not(.hero) {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.pain-section,
.process-section,
.ai-section {
  position: relative;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 640px;
}

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

.pain-grid article,
.process-grid article,
.questions,
.chat-window {
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background: rgba(231, 234, 235, 0.86);
  box-shadow: var(--soft-shadow);
}

.pain-grid article,
.process-grid article {
  min-height: 232px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(245, 246, 246, 0.78), rgba(205, 210, 213, 0.68)),
    var(--surface);
}

.icon-box,
.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--graphite);
  border-bottom: 3px solid var(--orange);
  font-weight: 900;
}

.split-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
  padding: 48px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, #2b2d30, var(--graphite) 52%, #3a3d41);
  box-shadow: var(--shadow);
}

.split-content h2,
.split-content p {
  color: var(--white);
}

.split-content p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.feature-list span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.feature-list p {
  margin: 0;
}

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

.process-grid article {
  min-height: 260px;
}

.case-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(242, 106, 27, 0.18), transparent 42%),
    linear-gradient(135deg, var(--graphite), var(--charcoal));
  box-shadow: var(--shadow);
}

.case-panel h2,
.case-panel p {
  color: var(--white);
}

.case-panel .eyebrow {
  color: #ffb17d;
}

.case-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.case-stats {
  display: grid;
  gap: 12px;
}

.case-stats div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.case-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
}

.chat-showcase {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 18px;
  align-items: stretch;
}

.ai-command-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: -8px 0 18px;
}

.ai-command-strip span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 8px;
  color: var(--graphite);
  background:
    linear-gradient(180deg, rgba(246, 247, 247, 0.78), rgba(204, 209, 212, 0.82)),
    var(--surface-strong);
  font-size: 0.87rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(17, 19, 21, 0.08);
}

.chat-window,
.questions {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(246, 247, 247, 0.82), rgba(204, 209, 212, 0.72)),
    var(--surface);
}

.chat-window {
  position: relative;
  overflow: hidden;
}

.chat-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 106, 27, 0.08), transparent 28%),
    linear-gradient(rgba(17, 19, 21, 0.035) 1px, transparent 1px);
  background-size: auto, 100% 54px;
}

.chat-window > * {
  position: relative;
}

.chat-header {
  gap: 10px;
  margin-bottom: 10px;
}

.chat-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 18px 0 0 #b8bbc0, 36px 0 0 #d7d7d5;
}

.chat-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 19, 21, 0.1);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
}

.chat-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23a36b;
  box-shadow: 0 0 0 5px rgba(35, 163, 107, 0.14);
}

.bubble {
  width: fit-content;
  max-width: 82%;
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.55;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

.is-updating .bubble {
  animation: chatPulse 260ms ease;
}

@keyframes chatPulse {
  0% {
    opacity: 0.38;
    transform: translateY(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.bubble.user {
  margin-left: auto;
  color: var(--white);
  background: var(--charcoal);
}

.bubble.ai {
  color: var(--ink);
  background: #d5dade;
  border-left: 4px solid var(--orange);
}

.bubble.compact {
  max-width: 72%;
}

.questions {
  display: grid;
  align-content: start;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.questions::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(242, 106, 27, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.questions h3 {
  margin-bottom: 8px;
}

.questions button {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  color: var(--graphite);
  background: rgba(238, 240, 241, 0.82);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.questions button span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface-muted);
  font-size: 0.78rem;
  font-weight: 900;
  transition: inherit;
}

.questions button:hover {
  border-color: rgba(242, 106, 27, 0.38);
  color: var(--orange-dark);
  background: var(--orange-soft);
  transform: translateY(-1px);
}

.questions button.active {
  border-color: rgba(242, 106, 27, 0.58);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(17, 19, 21, 0.1);
}

.questions button.active span {
  color: var(--white);
  background: var(--orange);
}

.insight-card {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--charcoal), var(--graphite));
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.16);
}

.insight-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #ffb17d;
  background: rgba(242, 106, 27, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.35;
}

.insight-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  line-height: 1.6;
}

.insight-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.insight-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffb17d);
  transition: width 240ms ease;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: center;
  padding: 40px 44px;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 27, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(246, 247, 247, 0.84), rgba(204, 209, 212, 0.7)),
    var(--surface-strong);
  box-shadow: var(--soft-shadow);
}

.cta-section h2 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  line-height: 1.1;
}

.cta-section p {
  max-width: 720px;
  margin-bottom: 18px;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-points span {
  padding: 8px 10px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 800;
}

.cta-section .button {
  justify-self: stretch;
  min-width: 0;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(17, 19, 21, 0.14);
}

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

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-content,
  .case-panel,
  .chat-showcase,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    max-width: 820px;
    font-size: clamp(2.65rem, 8vw, 4.2rem);
  }

  .cta-section h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

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

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  section:not(.hero),
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero {
    gap: 32px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

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

  .dashboard-card {
    position: static;
    width: 100%;
    border-radius: 0 0 8px 8px;
  }

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

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

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

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

  .chat-window,
  .questions {
    padding: 18px;
  }

  .bubble,
  .bubble.compact {
    max-width: 100%;
  }

  .questions button {
    grid-template-columns: 30px 1fr;
    padding: 13px;
  }

  .questions button span {
    width: 30px;
    height: 30px;
  }

  .split-content,
  .case-panel,
  .cta-section {
    padding: 28px;
  }

  .cta-section {
    gap: 24px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

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

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