:root {
  --ink: #1d2634;
  --ink-2: #07112a;
  --muted: #657386;
  --line: rgba(18, 34, 53, 0.1);
  --panel: #ffffff;
  --page: #f4f8fa;
  --green: #21c186;
  --green-2: #13a6a7;
  --orange: #ff7442;
  --blue: #2468ff;
  --footer: #02062d;
  --shadow: 0 22px 55px rgba(18, 34, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page);
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 22px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 24px;
  width: min(1280px, calc(100% - 48px));
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(18, 34, 53, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  font-size: 16px;
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 18px;
}

.brand-text span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--green-2);
}

.header-action {
  justify-self: end;
  padding: 13px 18px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #eaf8fb;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(610px, calc(100% - 40px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: clamp(34px, 5vw, 70px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0% 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-panel p {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 16px 34px rgba(19, 166, 167, 0.24);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid rgba(18, 34, 53, 0.16);
  background: #ffffff;
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-title {
  margin-bottom: 42px;
}

.section-title.center {
  text-align: center;
}

.section-title h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(32px, 4.3vw, 56px);
  line-height: 1.05;
}

.section-title .eyebrow {
  color: var(--ink);
}

.section-title .eyebrow::after {
  content: " ";
}

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

.support-card {
  min-height: 255px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 34, 53, 0.08);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.support-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.stack-icon {
  border-radius: 12px;
  transform: rotate(45deg);
}

.cycle-icon {
  border-style: dashed;
}

.chart-icon {
  border-radius: 8px;
}

.support-icon::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    -16px 16px 0 var(--blue),
    6px 28px 0 var(--blue);
}

.support-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.support-card p,
.product-card p,
.component-copy p,
.component-copy li,
.insight-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.products {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(233, 242, 248, 0.96)),
    var(--page);
}

.section-watermark {
  position: absolute;
  top: 30px;
  left: 50%;
  color: rgba(29, 38, 52, 0.035);
  font-size: clamp(86px, 15vw, 190px);
  font-weight: 1000;
  letter-spacing: 0.03em;
  transform: translateX(-50%);
  pointer-events: none;
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
  background: #101728;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(2, 6, 45, 0.92));
}

.product-card div {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
}

.product-card h3 {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 22px;
}

.product-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
}

.metrics div {
  min-height: 118px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(18, 34, 53, 0.08);
  text-align: center;
}

.metrics span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: -8px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.metrics strong {
  font-size: 22px;
}

.component-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.component-copy,
.lead-form {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(18, 34, 53, 0.1);
}

.component-copy {
  padding: clamp(28px, 4vw, 46px);
}

.component-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.component-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.component-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.component-strip img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.component-strip img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 2.4 / 1;
}

.insights {
  padding-top: 42px;
}

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

.insight-grid article {
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(18, 34, 53, 0.08);
}

.insight-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.lead-capture {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 78px;
  padding: clamp(34px, 5.5vw, 66px);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(2, 6, 45, 0.96), rgba(9, 45, 61, 0.94)),
    var(--footer);
  box-shadow: var(--shadow);
}

.lead-capture h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1;
}

.lead-capture p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.68;
}

.lead-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lead-promises span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

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

.lead-field {
  display: grid;
  gap: 8px;
}

.lead-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lead-field input,
.lead-field textarea {
  appearance: none;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(18, 34, 53, 0.12);
  border-radius: 7px;
  padding: 13px 15px;
  color: var(--ink);
  background: #f8fafc;
  font: inherit;
  font-size: 15px;
}

.lead-field textarea {
  min-height: 126px;
  resize: vertical;
}

.lead-field input:focus,
.lead-field textarea:focus {
  outline: 0;
  border-color: var(--green-2);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(19, 166, 167, 0.16);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.lead-form .button {
  min-width: 150px;
}

.lead-form .button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.form-status {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 28px;
  align-items: start;
  padding: 56px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--footer);
}

.footer h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 24px;
}

.footer p {
  margin: 0;
  line-height: 1.6;
}

.footer nav {
  display: grid;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    top: 14px;
    grid-template-columns: 1fr auto;
  }

  .nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-panel {
    clip-path: none;
  }

  .support-grid,
  .metrics,
  .product-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .component-layout,
  .lead-capture,
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .site-header.is-open .nav {
    top: 66px;
  }

  .hero {
    min-height: 720px;
  }

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

  .hero-panel {
    width: calc(100% - 28px);
    margin: 92px auto 0;
    padding: 28px 22px;
  }

  h1 {
    font-size: 40px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 68px 0;
  }

  .products {
    overflow: hidden;
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-watermark {
    max-width: 100%;
    overflow: hidden;
    font-size: 72px;
  }

  .support-grid,
  .product-grid,
  .metrics,
  .insight-grid,
  .component-strip,
  .field-row {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: auto;
  }

  .support-icon {
    margin-bottom: 28px;
  }

  .product-card,
  .product-card img {
    min-height: 240px;
  }

  .component-strip img:first-child,
  .component-strip img {
    grid-column: auto;
    aspect-ratio: 1.35 / 1;
  }

  .lead-capture {
    width: calc(100% - 28px);
    padding: 28px 18px;
  }

  .lead-capture .button {
    width: 100%;
  }

  .footer {
    padding: 34px 20px;
  }
}
