:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #5d6d69;
  --line: #dbe7e2;
  --paper: #fffdf5;
  --soft: #fff4c8;
  --teal: #0b8f86;
  --teal-dark: #08615c;
  --blue: #00a8d6;
  --coral: #de6f54;
  --gold: #ffc928;
  --gold-dark: #d99b00;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  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;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 245, 0.9);
  border-bottom: 1px solid rgba(255, 201, 40, 0.46);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 182px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: #32433f;
  font-size: 14px;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--gold-dark);
}

.header-action {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 14px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 116px clamp(18px, 5vw, 72px) 38px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: clamp(10px, 3.8vw, 56px);
  background: var(--gold);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.98) 0%, rgba(255, 253, 245, 0.92) 34%, rgba(255, 253, 245, 0.18) 72%),
    linear-gradient(0deg, rgba(255, 201, 40, 0.26) 0%, rgba(255, 253, 245, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

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

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

.hero-copy {
  max-width: 660px;
  color: #334541;
  font-size: clamp(18px, 2vw, 22px);
}

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

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

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(255, 201, 40, 0.34);
}

.button-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border: 1px solid rgba(255, 201, 40, 0.66);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 0;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(219, 231, 226, 0.8);
  border-radius: 8px;
  background: rgba(219, 231, 226, 0.9);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  min-height: 118px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.hero-metrics dt {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 28px;
  font-weight: 900;
}

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

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

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

.intro-grid article,
.steps article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intro-grid p,
.steps p,
.feature-list p,
.trust-grid p,
.demo-copy p {
  color: var(--muted);
}

.icon-dot {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 26%, transparent 28%),
    var(--soft);
  border: 1px solid var(--line);
}

.feature-band {
  background: #fff7d7;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: #fffdf5;
}

.video-copy p {
  max-width: 620px;
  color: var(--muted);
}

.video-player-card {
  overflow: hidden;
  border: 1px solid rgba(255, 201, 40, 0.35);
  border-radius: 8px;
  background: #14211f;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.video-player-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #14211f;
  object-fit: cover;
}

.video-caption {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: var(--gold);
}

.video-caption p {
  margin-bottom: 0;
  color: rgba(20, 33, 31, 0.76);
}

.video-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.play-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
}

.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-block: 14px solid transparent;
  border-left: 22px solid var(--gold);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(20, 33, 31, 0.13);
}

.feature-list span,
.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-dark);
  font-weight: 900;
}

.capability-section {
  background: #fffdf5;
}

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

.capability-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 201, 40, 0.35);
  border-radius: 8px;
  background: var(--white);
}

.capability-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.integrations {
  background: var(--paper);
}

.integrations-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
}

.integration-hero {
  display: grid;
  align-content: end;
  min-height: 420px;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 201, 40, 0.1), rgba(255, 201, 40, 0.95)),
    linear-gradient(135deg, rgba(0, 168, 214, 0.5), rgba(20, 33, 31, 0.15));
  border: 1px solid rgba(255, 201, 40, 0.55);
  box-shadow: var(--shadow);
}

.integration-hero span {
  display: inline-grid;
  width: 88px;
  height: 88px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.integration-hero p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(20, 33, 31, 0.78);
}

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

.integration-list {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.integration-list h3 {
  margin-bottom: 18px;
}

.integration-list ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integration-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.integration-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.integration-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.dashboard-panel {
  position: sticky;
  top: 98px;
  padding: 28px;
  border: 1px solid rgba(20, 33, 31, 0.1);
  border-radius: 8px;
  background: #14211f;
  color: var(--white);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  gap: 7px;
  margin-bottom: 34px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8fb9ae;
}

.stat-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0;
}

.stat-row strong {
  font-size: 48px;
  line-height: 1;
}

.stat-row span,
.dashboard-panel li {
  color: #c7d9d4;
}

.chart-bars {
  display: grid;
  height: 156px;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  margin: 26px 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.chart-bars i {
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--blue));
}

.dashboard-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.steps article {
  position: relative;
}

.steps span {
  margin-bottom: 54px;
  background: var(--soft);
}

.pricing {
  background: var(--paper);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 620px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  justify-content: center;
}

.pricing-table {
  display: grid;
  gap: 14px;
}

.pricing-table article {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pricing-table span {
  color: var(--muted);
  font-weight: 800;
}

.pricing-table strong {
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
  text-align: right;
}

.pricing-table .pricing-minimum {
  border-color: rgba(255, 201, 40, 0.65);
  background: var(--gold);
}

.pricing-table .pricing-minimum span {
  color: rgba(20, 33, 31, 0.72);
}

.calculator {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #14211f;
  color: var(--white);
  box-shadow: var(--shadow);
}

.calculator label {
  color: var(--white);
}

.calculator input[type="number"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
  font-weight: 800;
}

.term-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.term-options label {
  position: relative;
  display: block;
  min-height: 50px;
}

.term-options input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.term-options span {
  display: grid;
  min-height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #d6e2df;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.term-options input:checked + span {
  border-color: var(--gold);
  background: rgba(255, 197, 54, 0.16);
  color: var(--white);
}

.price-result {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.price-result span,
.price-result small {
  color: var(--muted);
}

.price-result strong {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  background: #14211f;
  color: var(--white);
}

.trust .eyebrow {
  color: var(--gold);
}

.trust-grid {
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-grid p {
  min-height: 104px;
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  color: #d6e2df;
}

.demo {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #32433f;
  font-size: 14px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #f9fbfa;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 201, 40, 0.44);
  outline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .header-action {
    margin-left: auto;
  }

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

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(251, 253, 251, 0.98) 0%, rgba(251, 253, 251, 0.86) 56%, rgba(251, 253, 251, 0.98) 100%),
      rgba(251, 253, 251, 0.72);
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-metrics,
  .intro-grid,
  .steps,
  .feature-layout,
  .capability-grid,
  .video-section,
  .integrations-layout,
  .pricing-layout,
  .trust,
  .demo {
    grid-template-columns: 1fr;
  }

  .dashboard-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .nav-links {
    flex-wrap: wrap;
    overflow: visible;
    justify-content: flex-start;
    gap: 8px 16px;
    padding-bottom: 2px;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .hero-metrics div {
    min-height: auto;
  }

  .section {
    padding-inline: 16px;
  }

  .intro-grid article,
  .steps article,
  .lead-form,
  .dashboard-panel {
    padding: 22px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .video-caption {
    grid-template-columns: 1fr;
  }

  .pricing-table article {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-table strong {
    text-align: left;
  }

  .term-options {
    grid-template-columns: 1fr;
  }

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

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

  .integration-hero {
    min-height: 320px;
  }

  .footer {
    flex-direction: column;
  }
}
