:root {
  --ink: #f8fafc;
  --muted: #a8b0bd;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #07090d;
  --panel: #10141b;
  --soft: #191f29;
  --green: #f97316;
  --green-2: #fb923c;
  --orange: #f97316;
  --amber: #f59e0b;
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 78% 8%, rgba(249, 115, 22, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(249, 115, 22, 0.10), transparent 42%, rgba(0, 0, 0, 0.35));
}

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

button,
input,
select {
  font: inherit;
}

svg {
  width: 18px;
  height: 18px;
}

.hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(7, 9, 13, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
}

.brand,
.brand-mark,
.header-cta,
.menu-button,
.primary-button,
.secondary-button,
.tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: #0b0d12;
  background: var(--orange);
  border-radius: 8px;
}

.brand strong {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 1.25rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.header-cta,
.menu-button {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #121720;
  color: var(--orange);
  font-weight: 800;
}

.header-cta {
  gap: 8px;
  padding: 0 16px;
}

.menu-button {
  display: none;
  width: 42px;
}

.mobile-menu {
  position: sticky;
  top: 76px;
  z-index: 19;
  display: grid;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(7, 9, 13, 0.96);
  border-bottom: 1px solid var(--line);
}

.mobile-menu a {
  padding: 12px;
  border-radius: 8px;
  background: #121720;
  font-weight: 800;
}

.hero-section,
.section,
footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 8vw, 96px) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 999px;
  background: rgba(16, 20, 27, 0.78);
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(230, 107, 45, 0.16);
}

h1,
h2,
h3 {
  font-family: Sora, Inter, sans-serif;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.02rem;
}

.hero-lede,
.section-heading > p,
.form-card > div > p {
  max-width: 680px;
  color: #c4cbd6;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  color: white;
  color: #111827;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.26);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #fb923c;
}

.secondary-button {
  color: var(--ink);
  background: rgba(16, 20, 27, 0.86);
  border-color: var(--line);
}

.stage-note,
.form-disclaimer {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-panel,
.product-shell,
.form-card,
.modal-card {
  background: rgba(16, 20, 27, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(22px, 4vw, 34px);
}

.panel-topline,
.asset-header,
.ticket-head,
.schedule-item,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-topline span,
.panel-topline strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.health-ring {
  display: grid;
  place-items: center;
  width: min(300px, 72vw);
  aspect-ratio: 1;
  margin: 32px auto;
  border-radius: 999px;
  background: conic-gradient(var(--orange) 0 87%, #242b36 87% 100%);
  position: relative;
}

.health-ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  background: #0b0f16;
}

.health-ring span,
.health-ring small {
  position: relative;
  z-index: 1;
}

.health-ring span {
  font-family: Sora, sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
}

.health-ring small {
  margin-top: 84px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  position: absolute;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-metrics div,
.pain-grid article,
.workflow-grid article,
.benefit-grid article,
.asset-card,
.scanner-card,
.ticket-board,
.schedule-item {
  background: #111722;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-metrics div {
  padding: 16px;
}

.hero-metrics strong {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 1.6rem;
}

.hero-metrics span,
.ticket-strip small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.ticket-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #050609;
  color: white;
}

.ticket-priority,
.status-tag,
.eta-chip,
.schedule-item > span {
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-priority {
  flex: 0 0 auto;
}

.ticket-strip div {
  display: grid;
  gap: 3px;
}

.ticket-priority,
.status-tag.warm {
  color: #5c2b04;
  background: #ffdba3;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 5vw, 70px);
}

.pain-grid,
.workflow-grid,
.benefit-grid {
  display: grid;
  gap: 14px;
}

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

.pain-grid article,
.workflow-grid article,
.benefit-grid article {
  padding: 22px;
}

.pain-grid svg,
.benefit-grid svg {
  color: var(--orange);
  width: 24px;
  height: 24px;
  margin-bottom: 22px;
}

.pain-grid p,
.workflow-grid p,
.benefit-grid p,
.ticket-head p,
.asset-header p,
.schedule-item p {
  color: var(--muted);
  line-height: 1.6;
}

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

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

.workflow-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--orange);
  font-family: Sora, sans-serif;
  font-weight: 800;
}

.product-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: #050609;
  color: white;
}

.product-sidebar strong {
  margin-bottom: 14px;
  font-family: Sora, sans-serif;
}

.tab-btn {
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.tab-btn.active,
.tab-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.product-content {
  min-height: 520px;
  padding: clamp(18px, 3vw, 30px);
  background: #0c1017;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.asset-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 18px;
}

.scanner-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 28px;
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
}

.scanner-card svg {
  width: 96px;
  height: 96px;
  color: var(--orange);
}

.scanner-card strong,
.scanner-card small {
  text-align: center;
}

.scanner-card small {
  color: var(--muted);
}

.scanner-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 22%;
  height: 3px;
  background: var(--orange);
  animation: scan-line 2.4s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(230, 107, 45, 0.55);
}

@keyframes scan-line {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(220px); }
}

.asset-card,
.ticket-board {
  position: relative;
  padding: 24px;
}

.scan-success {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}

.scan-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 10px;
  background: rgba(7, 9, 13, 0.94);
  color: var(--orange);
  font-weight: 900;
}

.scan-loader svg {
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.status-tag.good {
  color: #111827;
  background: #fed7aa;
  display: inline-flex;
  margin-bottom: 12px;
}

.asset-header {
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.asset-header > div {
  min-width: 0;
}

.asset-header h3 {
  max-width: 620px;
}

.asset-header strong {
  font-family: Sora, sans-serif;
  color: var(--orange);
  font-size: 2.8rem;
  line-height: 1;
  margin-top: 8px;
}

.asset-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.asset-facts span,
.evidence-row {
  padding: 12px;
  border-radius: 8px;
  background: var(--soft);
  color: #d7dee8;
  font-size: 0.86rem;
}

.asset-facts b {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.activity-list p,
.evidence-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.activity-list span {
  color: var(--muted);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.compact {
  margin: 18px 0;
}

label {
  display: grid;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0f16;
  color: var(--ink);
}

input:focus,
select:focus {
  outline: 3px solid rgba(249, 115, 22, 0.20);
  border-color: var(--orange);
}

.eta-chip {
  color: #111827;
  background: #fed7aa;
}

.eta-chip.critical {
  color: #fee2e2;
  background: rgba(239, 68, 68, 0.18);
}

.eta-chip.routine {
  color: #cbd5e1;
  background: #202734;
}

.severity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.severity-btn {
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0f16;
  cursor: pointer;
  font-weight: 900;
}

.severity-btn small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.severity-btn.selected,
.severity-btn.ring-2,
.severity-btn:hover {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.14);
}

.evidence-row {
  margin-bottom: 14px;
  text-transform: none;
}

.full-width {
  width: 100%;
}

.toast {
  margin-top: 14px;
  padding: 13px;
  border-radius: 8px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.14);
  font-weight: 800;
  text-align: center;
}

.schedule-list {
  display: grid;
  gap: 14px;
}

.schedule-item {
  padding: 18px;
}

.schedule-item time {
  display: grid;
  place-items: center;
  flex: 0 0 74px;
  min-height: 62px;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
}

.schedule-item time b {
  font-family: Sora, sans-serif;
  font-size: 1.2rem;
}

.schedule-item > div {
  flex: 1;
}

.schedule-item > span {
  color: var(--orange);
  background: var(--soft);
  white-space: nowrap;
}

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

.form-section {
  padding-bottom: clamp(70px, 10vw, 120px);
}

.form-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  padding: clamp(22px, 4vw, 42px);
}

.form-card form {
  display: grid;
  gap: 16px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  text-transform: none;
}

.consent-row input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--orange);
}

footer {
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--ink);
  font-family: Sora, sans-serif;
}

footer a {
  color: var(--orange);
  font-weight: 900;
}

footer div:last-child {
  max-width: 520px;
  text-align: right;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-card {
  width: min(460px, 100%);
  padding: 28px;
  text-align: center;
}

.modal-card > svg {
  width: 54px;
  height: 54px;
  color: var(--orange);
}

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

.modal-card .secondary-button {
  margin: 18px 0 10px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-section,
  .split-section,
  .form-card,
  .product-shell {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .pain-grid,
  .workflow-grid,
  .benefit-grid,
  .asset-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    flex-direction: row;
    overflow-x: auto;
  }

  .product-sidebar strong {
    display: none;
  }

  .tab-btn {
    width: auto;
    white-space: nowrap;
  }

  footer,
  .panel-topline,
  .asset-header,
  .ticket-head,
  .schedule-item {
    align-items: flex-start;
  }

  .asset-header {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .ticket-strip {
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
  }

  footer div:last-child {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-section,
  .section,
  footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .hero-actions,
  .panel-topline,
  .asset-header,
  .ticket-head,
  .schedule-item {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-metrics,
  .asset-facts,
  .form-grid,
  .severity-grid {
    grid-template-columns: 1fr;
  }

  .product-content,
  .form-card,
  .asset-card,
  .ticket-board {
    padding: 16px;
  }
}
