:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #647184;
  --line: #dbe4ec;
  --paper: #ffffff;
  --soft: #f5f8fa;
  --deep: #09212f;
  --teal: #007f7a;
  --teal-dark: #005f5a;
  --blue: #2468d8;
  --amber: #f2b84b;
  --rose: #c95a75;
  --green-soft: #e5f4f1;
  --shadow: 0 18px 45px rgba(12, 35, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  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: 20px;
  min-height: 72px;
  padding: 5px clamp(18px, 4vw, 54px);
  color: #ffffff;
  background: rgba(5, 20, 28, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  color: #06212d;
  background: #ffffff;
  border-radius: 7px;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.2vw, 26px);
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.86);
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 10px 16px;
  color: #09212f;
  background: #ffffff;
  border-radius: 7px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 58px;
  color: #ffffff;
  background: #071924;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 19, 27, 0.96) 0%, rgba(5, 19, 27, 0.78) 36%, rgba(5, 19, 27, 0.28) 70%, rgba(5, 19, 27, 0.52) 100%),
    linear-gradient(0deg, rgba(5, 19, 27, 0.82) 0%, rgba(5, 19, 27, 0) 28%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7de2d2;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

.button.primary {
  color: #041e2a;
  background: #7de2d2;
  box-shadow: 0 14px 28px rgba(125, 226, 210, 0.18);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 44px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

section:not(.hero) {
  padding: clamp(64px, 9vw, 112px) 0;
}

.trust-section {
  background: #f7fafb;
}

.industry-strip,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-strip span,
.tag-cloud span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: #344252;
  font-weight: 720;
}

.split-section,
.features-section,
.platform-section {
  background: #ffffff;
}

.split-grid,
.cost-grid,
.cfo-grid,
.platform-grid,
.pricing-grid,
.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.split-grid p,
.cost-grid p,
.cfo-grid p,
.pricing-grid p,
.demo-grid p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.benefit-grid div {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 760;
  box-shadow: 0 10px 24px rgba(12, 35, 49, 0.05);
}

.cost-section {
  background: linear-gradient(180deg, #eff8f7 0%, #ffffff 100%);
}

.included-panel,
.demo-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.included-panel {
  padding: clamp(24px, 4vw, 36px);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #263646;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.security-section {
  color: #ffffff;
  background: var(--deep);
}

.security-section .section-kicker {
  color: #7de2d2;
}

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

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

.security-grid article {
  min-height: 196px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.security-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(125, 226, 210, 0.12);
}

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

.feature-columns > div,
.device-grid > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.feature-columns ul {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
  color: var(--muted);
}

.feature-columns li + li {
  margin-top: 9px;
}

.cfo-section {
  background: #f8f5f1;
}

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

.platform-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

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

.device-grid p,
.no-download {
  margin: 0;
  color: var(--muted);
}

.no-download {
  margin-top: 16px;
  font-weight: 800;
}

.pricing-section {
  color: #ffffff;
  background: #111827;
}

.pricing-section .section-kicker {
  color: #f2b84b;
}

.pricing-section h2 span {
  color: #7de2d2;
}

.pricing-section p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-list {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.pricing-list li {
  color: #ffffff;
}

.demo-section {
  background: #f4f8fb;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: #334151;
  font-size: 0.9rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfdbe5;
  border-radius: 7px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

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

  .nav {
    display: none;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 19, 27, 0.94), rgba(5, 19, 27, 0.72)),
      linear-gradient(0deg, rgba(5, 19, 27, 0.84), rgba(5, 19, 27, 0.2));
  }

  .split-grid,
  .cost-grid,
  .cfo-grid,
  .platform-grid,
  .pricing-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .security-grid,
  .feature-columns,
  .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero-stats,
  .benefit-grid,
  .security-grid,
  .feature-columns,
  .device-grid,
  .check-list,
  .compact,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .demo-form .button {
    width: 100%;
  }

  .full-span {
    grid-column: auto;
  }

  .hero {
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }
}
