:root {
  color-scheme: light;
  --ink: #16212f;
  --muted: #5c6b7a;
  --line: #d9e2ea;
  --surface: #f5f7f9;
  --panel: #ffffff;
  --brand: #17324d;
  --teal: #007c89;
  --green: #2b8a57;
  --coral: #d65a31;
  --gold: #b7791f;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--surface);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(22, 33, 47, 0.1);
  background: rgba(245, 247, 249, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(160px, 17vw, 230px);
  height: auto;
}

.footer-logo {
  display: block;
  width: min(210px, 58vw);
  height: auto;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 112px));
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(32px, 6vw, 84px);
  padding: clamp(56px, 9vw, 118px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(11, 31, 50, 0.9) 0%, rgba(11, 31, 50, 0.7) 48%, rgba(11, 31, 50, 0.2) 100%),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=82")
      center / cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  content: "";
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #78f0e0;
}

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

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 8.8vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-logo {
  display: block;
  width: min(100%, 560px);
  height: auto;
  max-height: 154px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-message {
  margin: 24px 0 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.04;
}

.hero-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #dcebf1;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button,
.demo-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.button.primary,
.demo-form button {
  background: var(--coral);
  color: #ffffff;
}

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

.hero-panel {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: #dbeafe;
  font-size: 0.85rem;
  font-weight: 800;
}

.panel-topline strong {
  color: #91f7c8;
}

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

.platform-map span {
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 850;
}

.platform-map span:nth-child(3) {
  grid-column: span 2;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.module-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--panel);
}

.module-logo {
  display: block;
  width: min(100%, 250px);
  height: 58px;
  margin: 0 0 18px;
  object-fit: contain;
  object-position: left center;
}

.module-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.module-logo + span {
  margin-bottom: 20px;
}

.module-grid p,
.platform-points p,
.contact-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.industry-band {
  background: #ffffff;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.industry-list span:nth-child(3n + 1) {
  border-left: 4px solid var(--teal);
}

.industry-list span:nth-child(3n + 2) {
  border-left: 4px solid var(--green);
}

.industry-list span:nth-child(3n) {
  border-left: 4px solid var(--gold);
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  background: #edf4f3;
}

.platform-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

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

.platform-points div {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(0, 124, 137, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

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

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.demo-form .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d4de;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 104px;
  padding: 12px;
}

.demo-form button {
  width: fit-content;
  cursor: pointer;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 36px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero,
  .platform-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .hero-panel {
    display: none;
  }

  .module-grid,
  .platform-points,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .platform-map span:nth-child(3) {
    grid-column: span 1;
  }
}

@media (max-width: 440px) {
  .site-header nav,
  .site-footer nav {
    gap: 10px 14px;
    font-size: 0.88rem;
  }

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

  h1 {
    font-size: clamp(3rem, 15vw, 3.7rem);
    white-space: normal;
  }

  .hero-logo {
    max-height: 112px;
  }

  .hero-message {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }
}
