:root {
  --ink: #16171b;
  --muted: #5c6570;
  --line: #dde5e8;
  --surface: #ffffff;
  --soft: #f5f7f8;
  --navy: #032e3a;
  --teal: #047f8a;
  --aqua: #69d6d2;
  --berry: #a80062;
  --berry-dark: #7f004a;
  --lime: #95d600;
  --shadow: 0 24px 80px rgba(0, 28, 38, 0.14);
  --radius: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  color: #fff;
}

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

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark.image-mark {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.95);
}

.brand-mark.image-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--aqua);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition: 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-width: max-content;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  content: "";
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.6) 58%),
    linear-gradient(90deg, rgba(2, 31, 39, 0.86), rgba(2, 31, 39, 0.45) 50%, rgba(2, 31, 39, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 240px;
}

.hero-content::before,
.section-intro span {
  display: block;
  width: 82px;
  height: 3px;
  margin-bottom: 36px;
  background: var(--berry);
  content: "";
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: #fff;
  color: var(--ink);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button.light {
  background: #fff;
  color: var(--berry-dark);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 70px;
  width: min(340px, calc(100% - 48px));
  border-left: 4px solid var(--aqua);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 24px;
}

.hero-card span {
  display: block;
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.15;
}

main {
  background: #fff;
}

.section,
.split-feature,
.dark-proof,
.contact-layout,
.impact-band,
.cta-band {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

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

.section-intro h2,
.cta-band h2,
.impact-band h2,
.dark-proof h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.section-intro p,
.cta-band p,
.impact-band p,
.dark-proof p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.stat-band {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 48px));
  margin: -24px auto 0;
  background: var(--berry);
  color: #fff;
  box-shadow: var(--shadow);
}

.stat-band div {
  min-height: 128px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-band div:last-child {
  border-right: 0;
}

.stat-band strong {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.stat-unit {
  font-size: 0.46em;
  line-height: 1;
}

.stat-band div > span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.solution-grid,
.product-grid,
.standard-grid,
.leader-grid,
.buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.solution-card,
.product-grid article,
.standard-grid article,
.leader-grid article,
.buyer-grid article {
  border: 1px solid var(--line);
  background: #fff;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover,
.product-grid article:hover,
.standard-grid article:hover {
  border-color: rgba(168, 0, 98, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.solution-card > span,
.standard-grid span,
.timeline span {
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card h3,
.product-grid h3,
.standard-grid h3,
.leader-grid h3,
.buyer-grid h3,
.timeline h3,
.contact-aside h2 {
  margin: 16px 0 12px;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 800;
}

.solution-card p,
.product-grid p,
.standard-grid p,
.leader-grid p,
.buyer-grid p,
.timeline p {
  color: var(--muted);
}

.solution-card dl {
  margin: 24px 0 0;
}

.solution-card dt {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card dd {
  margin: 6px 0 18px;
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 70px;
  padding: 112px 0;
}

.split-feature.reverse .split-copy {
  order: 2;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--soft);
}

.image-panel::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  content: "";
  pointer-events: none;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--berry);
  border-radius: 50%;
  content: "";
}

.dark-proof {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 60px;
  margin-top: 30px;
  margin-bottom: 30px;
  background:
    linear-gradient(120deg, rgba(3, 46, 58, 0.94), rgba(3, 46, 58, 0.78)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 80px;
}

.dark-proof p {
  color: rgba(255, 255, 255, 0.78);
}

.dark-proof a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--aqua);
  font-weight: 800;
}

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

.commitment-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.commitment-grid h3 {
  margin: 18px 0 8px;
  font-size: 23px;
}

.commitment-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.ring {
  width: 44px;
  height: 44px;
  border: 8px solid var(--aqua);
  border-right-color: var(--lime);
  border-radius: 50%;
}

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

.product-grid article:nth-child(1),
.product-grid article:nth-child(7) {
  grid-column: span 2;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 54px;
  border: 1px solid var(--line);
}

.timeline article {
  padding: 34px;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.quote-section {
  background: var(--berry);
  color: #fff;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
}

.quote-section blockquote {
  max-width: 960px;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1;
}

.quote-section p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.leader-grid {
  grid-template-columns: repeat(4, 1fr);
}

.leader-grid article {
  padding: 0;
  overflow: hidden;
}

.leader-photo {
  display: grid;
  min-height: 260px;
  place-items: end center;
  background:
    linear-gradient(180deg, rgba(3, 46, 58, 0.03), rgba(3, 46, 58, 0.08)),
    var(--soft);
}

.leader-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.leader-grid article h3,
.leader-grid article p,
.leader-grid article span {
  margin-right: 28px;
  margin-left: 28px;
}

.leader-grid article h3 {
  margin-top: 28px;
}

.leader-grid article span {
  display: block;
  margin-top: 18px;
  margin-bottom: 30px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 800;
}

.standard-grid {
  grid-template-columns: repeat(4, 1fr);
}

.impact-band {
  margin-top: 20px;
  margin-bottom: 20px;
  background: var(--soft);
  padding: 90px;
  text-align: center;
}

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

.market-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 122px;
  border: 1px solid var(--line);
  padding: 28px;
}

.market-grid span {
  width: 42px;
  height: 42px;
  border: 10px solid var(--berry);
  border-right-color: var(--aqua);
  border-radius: 50%;
}

.market-grid h3 {
  margin: 0;
  font-size: 25px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  padding: 112px 0;
}

.contact-card,
.contact-aside {
  border: 1px solid var(--line);
  background: #fff;
  padding: 44px;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

label:nth-child(5),
label:nth-child(6),
form button,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  padding: 15px 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--berry);
  outline: 3px solid rgba(168, 0, 98, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--berry);
  font-weight: 800;
}

.contact-aside {
  background: var(--navy);
  color: #fff;
}

.contact-aside a {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-aside h3 {
  margin-top: 42px;
}

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

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 112px;
  background: var(--berry);
  color: #fff;
  padding: 60px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  background: #231f20;
  color: #fff;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 0.9fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 28px;
  font-weight: 800;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 5px;
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.72);
}

.tagline {
  color: var(--aqua) !important;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: inline-grid;
    gap: 5px;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: transparent;
    padding: 12px;
  }

  .menu-button span {
    display: block;
    height: 2px;
    background: #fff;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(3, 46, 58, 0.96);
    padding: 20px;
  }

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

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 800px;
  }

  .hero-content {
    padding-top: 210px;
  }

  .stat-band,
  .solution-grid,
  .product-grid,
  .standard-grid,
  .leader-grid,
  .buyer-grid,
  .timeline,
  .market-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-feature,
  .dark-proof,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-feature.reverse .split-copy {
    order: 0;
  }

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

  .timeline article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .site-header,
  .section,
  .split-feature,
  .dark-proof,
  .contact-layout,
  .impact-band,
  .cta-band,
  .stat-band {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(calc(100% - 32px), var(--max));
    padding-top: 180px;
  }

  .hero h1 {
    font-size: clamp(46px, 17vw, 76px);
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 32px), var(--max));
    margin: 44px auto 0;
  }

  .stat-band,
  .solution-grid,
  .product-grid,
  .standard-grid,
  .leader-grid,
  .buyer-grid,
  .timeline,
  .market-grid,
  .commitment-grid,
  .footer-grid,
  form {
    grid-template-columns: 1fr;
  }

  .product-grid article:nth-child(1),
  .product-grid article:nth-child(7) {
    grid-column: auto;
  }

  .section,
  .split-feature,
  .contact-layout {
    padding: 76px 0;
  }

  .dark-proof,
  .impact-band,
  .cta-band {
    padding: 44px 24px;
  }

  .cta-band,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-panel,
  .image-panel img {
    min-height: 360px;
  }

  .contact-card,
  .contact-aside {
    padding: 28px;
  }
}
