@font-face {
  font-family: "Maven Pro";
  src: url("fonts/MavenPro-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --petrol: #003f49;
  --petrol-deep: #002f36;
  --riwis: #00697c;
  --cyan: #b8edf2;
  --blue: #9fc4e3;
  --lime: #cfde40;
  --yellow: #ffc400;
  --ink: #052531;
  --muted: #597078;
  --surface: #f5f9fa;
  --white: #ffffff;
  --line: rgba(0, 105, 124, 0.16);
  --shadow: 0 24px 70px rgba(0, 47, 54, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Maven Pro", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
  font-weight: 430;
}

button,
input,
select,
textarea {
  font-family: "Maven Pro", Arial, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 105, 124, 0.1);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: grid;
  gap: 3px;
  text-decoration: none;
}

.brand span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 520;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  font-weight: 560;
  color: var(--petrol);
}

.nav-links a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  padding: 10px 17px;
  border-radius: 3px;
  color: var(--white);
  background: var(--riwis);
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--petrol-deep);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 47, 54, 0.96) 0%, rgba(0, 63, 73, 0.82) 34%, rgba(0, 47, 54, 0.22) 76%),
    linear-gradient(0deg, rgba(0, 47, 54, 0.48), rgba(0, 47, 54, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 76px;
}

.product-kicker {
  display: inline-grid;
  gap: 3px;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(207, 222, 64, 0.88);
}

.product-name {
  color: var(--white);
  font-size: clamp(1.35rem, 2.3vw, 2.05rem);
  font-weight: 720;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--riwis);
}

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

h1,
h2,
h3 {
  overflow-wrap: normal;
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: 1.02;
  font-weight: 680;
  letter-spacing: 0;
  max-width: 620px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 660;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.2;
  font-weight: 650;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.56;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 19px;
  border: 0;
  border-radius: 3px;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--petrol-deep);
  background: var(--lime);
  box-shadow: 0 18px 38px rgba(207, 222, 64, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-inline {
  color: var(--white);
  background: var(--riwis);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 630px;
  margin: 0;
}

.hero-stats div {
  padding: 15px 22px 14px 0;
  border-top: 2px solid rgba(207, 222, 64, 0.82);
  background: transparent;
}

.hero-stats dt {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 650;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section,
.section-band,
.lead-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-band {
  color: var(--white);
  background: var(--petrol);
}

.intro {
  padding: clamp(62px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: var(--surface);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 860px;
}

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

.benefit-card,
.audience-grid article,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 63, 73, 0.06);
}

.benefit-card {
  min-height: 250px;
  padding: 24px;
}

.benefit-card p,
.audience-grid p,
.feature-copy p,
.lead-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.benefit-card .icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--riwis);
  background: rgba(184, 237, 242, 0.6);
  border-radius: 6px;
}

.benefit-card .icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.feature-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 54px rgba(0, 47, 54, 0.16);
}

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

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

.steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--petrol-deep);
  background: var(--lime);
  border-radius: 50%;
  font-weight: 650;
}

.steps h3,
.steps p {
  margin-bottom: 4px;
}

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

.audience-grid article {
  min-height: 150px;
  padding: 22px;
  border-top: 4px solid var(--riwis);
}

.audience-grid article:nth-child(2) {
  border-top-color: var(--lime);
}

.audience-grid article:nth-child(3) {
  border-top-color: var(--blue);
}

.audience-grid article:nth-child(4) {
  border-top-color: var(--yellow);
}

.team-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: var(--surface);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.team-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.62;
}

.team-copy .button {
  margin-top: 16px;
}

.team-image {
  margin: 0;
}

.team-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0, 47, 54, 0.14);
}

.lead-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 47, 54, 0.96), rgba(0, 105, 124, 0.9)),
    var(--petrol);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.lead-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  line-height: 1.62;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.54em;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--petrol-deep);
  border-bottom: 2px solid var(--petrol-deep);
  transform: rotate(-45deg);
}

.lead-form {
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
}

.lead-form h3 {
  font-size: 1.45rem;
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.lead-form label {
  color: var(--petrol);
  font-weight: 620;
}

.lead-form input:not([type="checkbox"]):not([type="hidden"]),
.lead-form select,
.lead-form .input_display {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 105, 124, 0.28);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form .input_display:focus {
  outline: 3px solid rgba(184, 237, 242, 0.7);
  border-color: var(--riwis);
}

.brevo-form {
  overflow: visible;
}

.brevo-form #sib-container {
  width: 100%;
  max-width: none;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
}

.brevo-form #sib-form {
  display: grid;
  gap: 14px;
}

.brevo-form .sib-form-block,
.brevo-form .sib-input,
.brevo-form .sib-optin {
  padding: 0;
}

.brevo-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.brevo-form .form__entry,
.brevo-form .form__label-row {
  display: grid;
  gap: 7px;
}

.brevo-form .entry__field {
  border: 0;
  background: transparent;
}

.brevo-form .entry__label {
  display: block;
  margin: 0;
  color: var(--petrol);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 620;
  line-height: 1.25;
  text-align: left;
}

.brevo-form .required-label::after {
  content: " *";
  color: #c73333;
  font-weight: 760;
}

.brevo-form .input,
.brevo-form .input_display {
  color: var(--ink);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 1rem;
  text-align: left;
  background: var(--white);
}

.brevo-form .input::placeholder {
  color: #8da1a8;
}

.brevo-form .entry__error {
  margin: 0;
  padding: 0;
  color: #8b1e1e;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.35;
}

.brevo-form .sib-multiselect {
  position: relative;
}

.brevo-form .input_display {
  display: flex;
  align-items: center;
  color: var(--muted);
  cursor: pointer;
}

.brevo-form .sib-menu {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 105, 124, 0.2);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(0, 47, 54, 0.15);
  font-family: "Maven Pro", Arial, sans-serif;
  z-index: 5;
}

.brevo-form .sib-menu__select {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.brevo-form .clickable_link {
  padding: 0;
  color: var(--riwis);
  background: transparent;
  border: 0;
  font-family: "Maven Pro", Arial, sans-serif;
  font-weight: 620;
  text-decoration: none;
  cursor: pointer;
}

.brevo-form .sib-menu__item-list {
  display: grid;
  gap: 8px;
  max-height: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

.brevo-form .sib-menu__item {
  padding: 0;
}

.brevo-form .sib-multiselect__label,
.brevo-form .brevo-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
  cursor: pointer;
}

.brevo-form .input_replaced {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--riwis);
}

.brevo-form .brevo-consent .checkbox {
  display: none;
}

.brevo-form .checkbox {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-color: rgba(0, 105, 124, 0.32);
  border-radius: 3px;
}

.brevo-form .input_replaced:checked + .checkbox {
  background-color: var(--riwis);
  border-color: var(--riwis);
}

.brevo-form .sib-menu__apply {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
}

.brevo-form .sib-menu__apply-button {
  padding: 9px 14px;
  color: var(--white);
  background: var(--riwis);
  border: 0;
  border-radius: 3px;
  font-family: "Maven Pro", Arial, sans-serif;
  font-weight: 650;
}

.brevo-form .sib-form-block__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 12px 19px;
  color: var(--petrol-deep);
  background: var(--lime);
  border: 0;
  border-radius: 3px;
  box-shadow: 0 18px 38px rgba(207, 222, 64, 0.16);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 650;
  text-align: center;
  cursor: pointer;
}

.brevo-form .sib-form-message-panel {
  display: none;
  max-width: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 5px;
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.42;
  text-align: left;
}

.brevo-form #success-message {
  color: var(--petrol);
  background: rgba(207, 222, 64, 0.24);
  border: 1px solid rgba(0, 105, 124, 0.18);
}

.brevo-form #error-message {
  color: #8b1e1e;
  background: #fff1f1;
  border: 1px solid #f1b3b3;
}

.brevo-form .sib-form-message-panel__text {
  justify-content: flex-start;
  text-align: left;
}

.input--hidden {
  display: none !important;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.consent input {
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--riwis);
}

.form-button {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.form-note a {
  color: var(--riwis);
  font-weight: 740;
}

.form-success {
  display: none;
  margin: 18px 0 0;
  padding: 13px 14px;
  color: var(--petrol);
  background: rgba(207, 222, 64, 0.28);
  border: 1px solid rgba(0, 105, 124, 0.18);
  border-radius: 5px;
  line-height: 1.42;
}

.form-success.is-visible {
  display: block;
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--petrol-deep);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(220px, 0.8fr) auto;
  align-items: start;
  gap: 28px;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-address {
  margin: 0;
  font-style: normal;
  line-height: 1.5;
}

.footer-address {
  display: grid;
  gap: 4px;
}

.footer-address a,
.legal-links a {
  color: inherit;
  text-decoration: none;
}

.footer-address a:hover,
.legal-links a:hover,
.footer-address a:focus-visible,
.legal-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: 360px;
  font-weight: 560;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(680px, calc(100% - 40px));
  }

  .hero-stats,
  .two-column,
  .feature-layout,
  .team-layout,
  .lead-layout,
  .benefit-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
    gap: 14px;
  }

  .brand img {
    width: 118px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 47, 54, 0.96) 0%, rgba(0, 63, 73, 0.88) 60%, rgba(0, 47, 54, 0.46) 100%),
      rgba(0, 47, 54, 0.35);
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 86px;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 0;
  }

  .section,
  .section-band,
  .intro,
  .team-section,
  .lead-section {
    padding: 56px 18px;
  }

  .brevo-form .form-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .audience-grid article,
  .lead-form {
    border-radius: 6px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .legal-links {
    justify-content: flex-start;
  }
}
