:root {
  --bg: #f5f4ee;
  --bg-soft: #ece8dd;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #17222c;
  --muted: #5a6772;
  --line: rgba(23, 34, 44, 0.11);
  --accent: #d85d32;
  --accent-dark: #9e3d1f;
  --accent-soft: rgba(216, 93, 50, 0.12);
  --ink-dark: #12202f;
  --navy: #16324f;
  --navy-soft: #23496e;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(18, 32, 47, 0.09);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 93, 50, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(22, 50, 79, 0.10), transparent 22%),
    linear-gradient(180deg, #f7f2ea 0%, #f0ede4 100%);
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(245, 244, 238, 0.8);
  border-bottom: 1px solid rgba(23, 34, 44, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #f18b54, var(--navy));
  box-shadow: 0 12px 24px rgba(216, 93, 50, 0.22);
}

.nav-links {
  display: inline-flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 180ms ease;
  font-weight: 600;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #e77c45);
  box-shadow: 0 16px 28px rgba(216, 93, 50, 0.24);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(216, 93, 50, 0.28);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero {
  padding: 54px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.capability-card,
.industry-card,
.workflow-panel,
.cta-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 38px;
  border-radius: 34px;
}

.hero-panel {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.66)),
    linear-gradient(135deg, rgba(216, 93, 50, 0.12), rgba(22, 50, 79, 0.08));
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  max-width: 10.5em;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

p,
li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.hero-text {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 19px;
  line-height: 1.8;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.metric-label {
  font-size: 13px;
  color: var(--muted);
}

.metric-value {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.panel-label,
.demo-kicker,
.impact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reason-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.reason-item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  line-height: 1.7;
}

.section {
  padding: 42px 0;
}

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

.section-heading p {
  margin: 16px 0 0;
}

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

.capability-card,
.industry-card {
  padding: 26px;
  border-radius: 26px;
}

.capability-card p,
.industry-card p {
  margin: 14px 0 0;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(216, 93, 50, 0.26), transparent 26%),
    linear-gradient(180deg, #102131 0%, #0f1a28 100%);
  color: var(--white);
}

.section-dark p,
.section-dark h2,
.section-dark h3 {
  color: inherit;
}

.demo-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: stretch;
}

.demo-sidebar {
  padding: 6px 0;
}

.scenario-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.scenario-button {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  text-align: left;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.scenario-button:hover,
.scenario-button.active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.demo-panel {
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(216, 93, 50, 0.18), rgba(22, 50, 79, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.18);
}

.demo-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.demo-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.chat-stack {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.bubble {
  max-width: 86%;
  padding: 18px 20px;
  border-radius: 22px;
  line-height: 1.8;
}

.bubble-user {
  justify-self: end;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-dark);
  border-bottom-right-radius: 8px;
}

.bubble-ai {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 8px;
}

.demo-footer {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 16px;
  margin-top: 22px;
}

.demo-actions {
  display: grid;
  gap: 10px;
}

.mini-card,
.impact-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-text {
  margin-top: 12px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.workflow-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.workflow-panel {
  padding: 30px;
  border-radius: 28px;
}

.workflow-list,
.roi-list {
  margin: 22px 0 0;
  padding-left: 20px;
}

.workflow-list li,
.roi-list li {
  margin-bottom: 12px;
}

.workflow-accent {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(22, 50, 79, 0.96), rgba(14, 33, 52, 0.98)),
    linear-gradient(135deg, rgba(216, 93, 50, 0.18), rgba(255, 255, 255, 0.02));
}

.workflow-accent p,
.workflow-accent li,
.workflow-accent h2 {
  color: rgba(255, 255, 255, 0.9);
}

.roi-note {
  margin: 18px 0 0;
}

.section-cta {
  padding-bottom: 64px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  border-radius: 32px;
}

.cta-panel p {
  margin: 14px 0 0;
  max-width: 700px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.desk-body {
  background:
    radial-gradient(circle at top left, rgba(216, 93, 50, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(22, 50, 79, 0.12), transparent 28%),
    linear-gradient(180deg, #f2eee5 0%, #ebe6dc 100%);
}

.desk-main {
  padding: 30px 0 54px;
}

.desk-hero-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
}

.desk-title {
  max-width: 12em;
  font-size: clamp(34px, 5vw, 58px);
}

.desk-subtitle {
  max-width: 760px;
  margin-top: 18px;
}

.desk-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 400px;
}

.desk-stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.desk-stat-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.desk-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  color: var(--text);
}

.desk-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 320px;
  gap: 18px;
  margin-top: 28px;
  align-items: start;
}

.desk-column,
.desk-sidecard,
.desk-subpanel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.desk-list,
.desk-conversation,
.desk-sidebar {
  border-radius: 30px;
  padding: 22px;
}

.desk-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.panel-chip {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(216, 93, 50, 0.14);
  color: var(--accent-dark);
}

.panel-chip-soft {
  background: rgba(22, 50, 79, 0.12);
  color: var(--navy);
}

.ticket-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ticket-card {
  width: 100%;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  text-align: left;
  cursor: pointer;
  transition: 180ms ease;
}

.ticket-card:hover,
.ticket-card.active {
  border-color: rgba(216, 93, 50, 0.4);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.ticket-card p {
  margin: 10px 0 0;
  font-size: 14px;
}

.ticket-meta {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.ticket-priority {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.ticket-priority.high {
  color: #9f3418;
  background: rgba(216, 93, 50, 0.14);
}

.ticket-priority.medium {
  color: #795000;
  background: rgba(232, 177, 52, 0.16);
}

.ticket-priority.urgent {
  color: #7f1222;
  background: rgba(229, 62, 62, 0.16);
}

.desk-thread {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.thread-message {
  padding: 18px 20px;
  border-radius: 22px;
  line-height: 1.75;
}

.thread-customer {
  background: rgba(22, 50, 79, 0.08);
  color: var(--text);
}

.thread-ai {
  background: rgba(216, 93, 50, 0.12);
  color: var(--text);
}

.thread-draft {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--text);
}

.desk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.desk-subgrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin-top: 18px;
}

.desk-subpanel,
.desk-sidecard {
  border-radius: 22px;
  padding: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.action-tag {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(22, 50, 79, 0.08);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.desk-note {
  margin: 12px 0 0;
}

.desk-sidebar {
  display: grid;
  gap: 14px;
}

.side-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.side-list li {
  margin-bottom: 8px;
}

.desk-sidecard-accent {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(22, 50, 79, 0.96), rgba(17, 33, 50, 0.98)),
    linear-gradient(135deg, rgba(216, 93, 50, 0.18), rgba(255, 255, 255, 0.03));
}

.desk-sidecard-accent h3,
.desk-sidecard-accent p {
  color: rgba(255, 255, 255, 0.92);
}

.panel-label-light {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1024px) {
  .hero-grid,
  .demo-grid,
  .workflow-layout,
  .capability-grid,
  .industry-grid,
  .desk-layout,
  .desk-subgrid {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .demo-footer,
  .desk-stats {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .desk-hero-row {
    flex-direction: column;
  }

  .desk-stats {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-copy,
  .hero-panel,
  .capability-card,
  .industry-card,
  .workflow-panel,
  .cta-panel,
  .demo-panel {
    padding: 22px;
  }

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

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