:root {
  --ink: #182329;
  --muted: #65747b;
  --line: #dce6e3;
  --paper: #fbfcfa;
  --mist: #eef6f3;
  --teal: #0f766e;
  --teal-dark: #0c4f4b;
  --lime: #c6df57;
  --coral: #f26d5b;
  --blue: #315f9f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 35, 41, 0.16);
  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: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(220, 230, 227, 0.9);
  backdrop-filter: blur(16px);
}

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

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

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  padding: 10px 0;
}

.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(--ink);
}

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

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 35, 38, 0.88), rgba(11, 35, 38, 0.58) 48%, rgba(11, 35, 38, 0.2)),
    linear-gradient(0deg, rgba(8, 27, 30, 0.35), rgba(8, 27, 30, 0.2));
}

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

.hero-title {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  text-wrap: balance;
}

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

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

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

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

.hero-copy {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

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

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

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: clamp(18px, 5vw, 64px);
  z-index: 2;
  width: min(330px, calc(100% - 36px));
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-panel span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 22px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.signal-grid i {
  height: 48px;
  background: linear-gradient(180deg, var(--lime), rgba(198, 223, 87, 0.25));
  border-radius: 6px;
}

.signal-grid i:nth-child(2),
.signal-grid i:nth-child(5) {
  background: linear-gradient(180deg, var(--coral), rgba(242, 109, 91, 0.25));
}

.signal-grid i:nth-child(3) {
  background: linear-gradient(180deg, #76c7ff, rgba(49, 95, 159, 0.25));
}

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

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

.metrics strong {
  display: block;
  color: var(--teal-dark);
  font-size: 34px;
}

.metrics span {
  color: var(--muted);
  font-weight: 700;
}

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

.section-muted {
  background: var(--mist);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list span {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.platform-card {
  padding: 26px;
  background: #12252b;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.platform-top,
.care-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.platform-top {
  margin-bottom: 20px;
  color: var(--white);
}

.platform-top span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.care-row {
  align-items: center;
  min-height: 68px;
  padding: 14px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.care-row span {
  color: var(--lime);
  font-weight: 800;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 820px;
}

.compact {
  display: block;
}

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

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

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

.solution-card div {
  padding: 22px;
}

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

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

.product-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
  font-weight: 900;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 6vw, 72px);
  background: #132e34;
}

.workflow h2,
.security h2,
.contact h2 {
  color: var(--ink);
}

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

.workflow .workflow-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

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

.timeline div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.timeline span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  color: #132e34;
  background: var(--lime);
  border-radius: 6px;
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 20px;
}

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

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

.resource-grid a {
  color: var(--teal);
  font-weight: 900;
}

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

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

.security-grid span {
  padding: 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

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

.contact-redirect {
  align-self: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-redirect strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.contact-redirect .button {
  margin-top: 8px;
}

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

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

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

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: #10242a;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand img {
  width: 176px;
  height: auto;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--lime);
  font-weight: 800;
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 18px;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.contact-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(12, 79, 75, 0.92), rgba(24, 35, 41, 0.86)),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1500&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: 176px;
}

.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(--teal-dark);
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1;
}

.contact-card > p a {
  color: var(--teal);
  font-weight: 900;
}

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

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

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }
}

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

  .site-nav {
    position: absolute;
    top: 73px;
    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;
  }

  .hero {
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(29px, 8vw, 52px);
    line-height: 1.05;
  }

  .metrics,
  .split,
  .workflow,
  .security,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    display: block;
  }
}

@media (max-width: 620px) {
  .solution-grid,
  .product-grid,
  .resource-grid,
  .timeline,
  .security-grid,
  .contact-form,
  .metrics {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav,
  .footer-actions {
    margin-top: 22px;
    justify-items: start;
  }

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