:root {
  --orange: #E8440A;
  --orange-soft: #fff0e8;
  --orange-pale: #fff7f2;
  --navy: #242833;
  --dark: #242833;
  --dark-soft: #3a3f4b;
  --ink: #161923;
  --muted: #5e6677;
  --line: #dfe4ec;
  --green: #10B981;
  --surface: #f6f8fb;
  --warm: #fffaf6;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: rgba(255,250,246,.9);
  border-bottom: 1px solid rgba(232,68,10,.14);
  box-shadow: 0 10px 30px rgba(22,25,35,.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 164px;
  height: auto;
}

nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.header-cta {
  padding: 10px 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
  padding: 142px clamp(20px, 6vw, 88px) 64px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(232,68,10,.13), transparent 28%),
    linear-gradient(135deg, #fffaf6 0%, #fff2e9 46%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255,250,246,0), var(--white));
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(232,68,10,.16);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(111,54,24,.18);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  order: -1;
}

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

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

h1 {
  margin-bottom: 22px;
  max-width: 640px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.secondary {
  color: var(--orange);
  border: 1px solid rgba(232,68,10,.28);
  background: var(--orange-soft);
}

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

.hero-metrics div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(232,68,10,.15);
  background: rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(111,54,24,.06);
}

.hero-metrics div::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--orange);
}

.hero-metrics div:nth-child(3)::before {
  background: var(--green);
}

.hero-metrics dt {
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 900;
  line-height: 1.05;
}

.hero-metrics dd {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 88px);
}

.intro,
.reports,
.team,
.product-view {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.intro {
  background: var(--white);
}

.intro p,
.reports p,
.team p,
.product-copy p,
.feature-card p,
.method-list p {
  color: var(--muted);
  font-size: 17px;
}

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

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

.feature-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(22,25,35,.05);
}

.feature-card.accent {
  color: var(--ink);
  background: var(--orange-pale);
  border-color: rgba(232,68,10,.2);
}

.feature-card.accent p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange);
  font-weight: 900;
}

.integrations {
  background: var(--white);
  border-top: 1px solid var(--line);
}

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

.tech-grid .feature-card {
  min-height: auto;
}

abbr[title] {
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  cursor: help;
}

.product-view {
  background:
    linear-gradient(180deg, var(--orange-pale), #fff);
  color: var(--ink);
}

.dashboard-shell {
  overflow: hidden;
  border: 1px solid rgba(232,68,10,.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(111,54,24,.13);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(232,68,10,.12);
  color: var(--muted);
  font-size: 13px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background: #f95b5b;
  border-radius: 999px;
}

.dot.yellow {
  background: #f1b64b;
}

.dot.green {
  background: var(--green);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 390px;
}

.dashboard-body aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 18px;
  border-right: 1px solid rgba(232,68,10,.12);
  background: var(--orange-pale);
}

.nav-pill {
  width: 100%;
  height: 34px;
  border-radius: 8px;
  background: rgba(232,68,10,.12);
}

.nav-pill.active {
  background: var(--orange);
}

.nav-pill.short {
  height: 20px;
}

.dashboard-main {
  padding: 24px;
}

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

.kpi-row div {
  padding: 18px;
  border: 1px solid rgba(232,68,10,.12);
  border-radius: 8px;
  background: #fffaf6;
}

.kpi-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.kpi-row strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.chart-panel {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 178px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(232,68,10,.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff8f3, #ffffff);
}

.chart-panel span {
  flex: 1;
  min-width: 14px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #10B981, #E8440A);
}

.loss-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.loss-row span {
  padding: 12px 10px;
  color: var(--ink);
  background: var(--orange-soft);
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
}

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

.method {
  background: var(--white);
}

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

.method-list div {
  padding-top: 22px;
  border-top: 3px solid var(--orange);
}

.method-list strong {
  color: var(--orange);
}

.steps .method-list {
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  color: var(--orange);
}

.step-arrow svg {
  display: block;
  width: 26px;
  height: 26px;
}

.reports {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 18px 18px 18px 48px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.team-card {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--orange-pale);
  border: 1px solid rgba(232,68,10,.2);
  border-radius: 8px;
}

.team-card p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  gap: 16px;
}

.proof-grid div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-grid span {
  color: var(--muted);
  text-align: right;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 88px);
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 20%, rgba(232,68,10,.12), transparent 28%),
    linear-gradient(135deg, #fff7f2, #ffffff);
}

.contact p {
  color: var(--muted);
  font-size: 18px;
}

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

.contact-form .button {
  width: 100%;
}

.contact-submit {
  min-height: 44px;
}

.contact-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-status {
  margin: 0;
  min-height: 20px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--orange);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(232,68,10,.2);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 88px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid rgba(232,68,10,.14);
  font-size: 14px;
}

footer img {
  width: 148px;
  height: auto;
}

.footer-legal {
  text-align: right;
}

.footer-legal a:hover {
  color: var(--orange);
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 22px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(22,25,35,.28);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  flex: 1 1 320px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner .button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.cookie-banner .button.secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .platform-grid,
  .method-list,
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .step-arrow {
    display: none;
  }

  .intro,
  .reports,
  .team,
  .product-view,
  .contact,
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 20px 36px;
  }

  .brand img {
    width: 138px;
  }

  .hero-metrics,
  .platform-grid,
  .method-list,
  .tech-grid,
  .kpi-row,
  .loss-row {
    grid-template-columns: 1fr;
  }

  .steps .method-list {
    grid-template-columns: 1fr;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-body aside {
    display: none;
  }

  .proof-grid div,
  footer {
    display: grid;
  }

  .proof-grid span,
  .footer-legal {
    text-align: left;
  }
}
