:root {
  --navy: #0b1638;
  --navy-2: #121f4a;
  --sky: #45d3c2;
  --aqua: #9ff3e8;
  --gold: #f6c65b;
  --coral: #f06f5f;
  --paper: #f8fafc;
  --white: #ffffff;
  --ink: #162033;
  --muted: #667085;
  --line: #d9e2ec;
  --shadow: 0 26px 70px rgba(11, 22, 56, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 68px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(217, 226, 236, 0.92);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #24324f;
  font-size: 14px;
  font-weight: 800;
}

.nav-cta {
  min-height: 40px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 8vw, 96px) clamp(18px, 5vw, 68px);
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(100deg, rgba(9, 19, 50, 0.95), rgba(9, 19, 50, 0.72) 48%, rgba(9, 19, 50, 0.28)),
    radial-gradient(circle at 80% 20%, rgba(69, 211, 194, 0.28), transparent 28%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(820px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: #0d7d73;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.automation .eyebrow {
  color: var(--aqua);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7.5vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

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

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

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

.button-primary {
  color: var(--navy);
  background: var(--sky);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.status-card {
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  bottom: clamp(20px, 5vw, 68px);
  z-index: 2;
  width: min(330px, calc(100% - 36px));
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.status-card span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.score-ring {
  display: grid;
  width: 112px;
  height: 112px;
  margin: 20px 0;
  place-items: center;
  background: conic-gradient(var(--sky) 94%, rgba(255, 255, 255, 0.18) 0);
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  box-shadow: inset 0 0 0 12px rgba(11, 22, 56, 0.86);
}

.status-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.strip div {
  padding: 26px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.strip strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
}

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

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

.section-light {
  background: #eef7fb;
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.section-copy {
  max-width: 760px;
}

.ops-board {
  padding: 26px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.board-head,
.board-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.board-head {
  margin-bottom: 18px;
}

.board-head span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.board-row {
  align-items: center;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.board-row span {
  color: rgba(255, 255, 255, 0.72);
}

.board-row strong {
  color: var(--gold);
  font-size: 24px;
}

.section-head {
  max-width: 900px;
  margin-bottom: 36px;
}

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

.product-grid article,
.resource-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--navy);
  background: var(--aqua);
  border-radius: 8px;
  font-weight: 900;
}

.automation {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(34px, 7vw, 90px);
  color: var(--white);
  background: var(--navy);
}

.automation h2 {
  color: var(--white);
}

.automation-tabs {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.tab-buttons button {
  min-height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.tab-buttons button.active {
  color: var(--navy);
  background: var(--sky);
}

.tab-panel {
  display: none;
}

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

.tab-panel ol {
  margin: 0;
  padding-left: 22px;
}

.tab-panel li {
  margin: 14px 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

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

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

.solution-grid article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-grid img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.solution-grid h3,
.solution-grid p {
  margin-right: 22px;
  margin-left: 22px;
}

.solution-grid h3 {
  margin-top: 22px;
}

.solution-grid p {
  margin-bottom: 24px;
}

.journey {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  background: #f8f4ea;
}

.journey-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.feature-list span {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #eadfca;
  border-radius: 8px;
  font-weight: 800;
}

.resources {
  background: #eef7fb;
}

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

.resource-grid small {
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-grid a {
  color: #09786f;
  font-weight: 900;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 40px;
  align-items: center;
  background: var(--white);
}

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

.trust-grid span {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 44px;
  background: var(--navy);
}

.contact h2,
.contact p {
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: #24324f;
  font-size: 13px;
  font-weight: 900;
}

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

textarea {
  resize: vertical;
}

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

.site-footer {
  display: grid;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 68px);
  color: var(--white);
  background: #071029;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-logo img {
  width: 180px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-weight: 900;
}

.footer-menu {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-email {
  color: var(--aqua);
  font-weight: 900;
}

.footer-rights {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  font-size: 14px;
}

.contact-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(11, 22, 56, 0.94), rgba(18, 31, 74, 0.92)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.minimal-contact {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(22px, 5vw, 64px);
}

.contact-logo {
  position: absolute;
  top: clamp(18px, 4vw, 34px);
  left: clamp(18px, 4vw, 34px);
}

.contact-logo img {
  width: 180px;
}

.contact-card {
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 42px);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card h1 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1;
}

.contact-card > p a {
  color: #09786f;
  font-weight: 900;
}

.minimal-form {
  margin-top: 26px;
  padding: 0;
  box-shadow: none;
}

@media (max-width: 1180px) {
  .product-grid,
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

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

  .platform,
  .automation,
  .journey,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 160px;
  }

  .strip,
  .product-grid,
  .solution-grid,
  .resource-grid,
  .trust-grid,
  .contact-form,
  .tab-buttons {
    grid-template-columns: 1fr;
  }

  .journey-image img {
    min-height: 300px;
  }

  .site-footer {
    display: block;
  }

  .footer-main {
    display: block;
  }

  .site-footer nav {
    display: flex;
    margin-top: 22px;
  }

  .footer-menu {
    justify-items: start;
    margin-top: 22px;
  }

  .footer-rights {
    margin-top: 28px;
  }

  .contact-logo {
    position: static;
    justify-self: start;
    margin-bottom: 28px;
  }
}
