/* Variables */
:root {
  --font-sans: "IBM Plex Sans", Arial, sans-serif;
  --font-serif: "EB Garamond", Georgia, serif;

  --color-bg: #e8f4fb;
  --color-surface: #ffffff;
  --color-dark: #0d2430;
  --color-text: #0d2430;
  --color-muted: #5f737d;
  --color-primary: #0d2430;
  --color-primary-text: #ffffff;
  --color-border: rgba(13, 36, 48, 0.14);
  --color-focus: #3b82f6;

  --container-width: 1200px;
  --container-padding: 24px;

  --size-unit: 16;
  --size-container-ideal: 1440;
  --size-container-min: 1440px;
  --size-container-max: 1920px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));

  --section-spacing: 96px;
  --section-spacing-mobile: 64px;

  --radius-sm: 3px;
  --radius-md: 3px;
  --radius-lg: 3px;

  --shadow-soft: 0 18px 45px rgba(13, 36, 48, 0.08);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--color-bg);
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

/* Base */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--size-font);
  line-height: 1.6;
}

main {
  overflow-x: hidden;
}

section {
  padding: var(--section-spacing) 0;
}

::selection {
  background: var(--color-dark);
  color: var(--color-primary-text);
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

/* Typography */
h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  font-size: clamp(48px, 7vw, 96px);
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}

p {
  color: var(--color-muted);
}

.section-label {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Layout */
.container {
  width: min(100%, calc(var(--container-width) + (var(--container-padding) * 2)));
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Buttons */
.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 12px 22px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button[data-button-animate-chars] .button__text {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  font: inherit;
}

.button[data-button-animate-chars] .button__text span {
  position: relative;
  display: inline-block;
  text-shadow: 0 1.3em currentColor;
  transform: translateY(0) rotate(0.001deg);
  transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}

.button[data-button-animate-chars]:hover .button__text span,
.button[data-button-animate-chars]:focus-visible .button__text span {
  transform: translateY(-1.3em) rotate(0.001deg);
}

@media (prefers-reduced-motion: reduce) {
  .button[data-button-animate-chars] .button__text span {
    text-shadow: none;
    transition: none;
  }

  .button[data-button-animate-chars]:hover .button__text span,
  .button[data-button-animate-chars]:focus-visible .button__text span {
    transform: none;
  }
}

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

.button--primary:hover {
  background: #183746;
}

.button--secondary {
  border-color: var(--color-border);
  background: transparent;
  color: var(--color-text);
}

.button--secondary:hover {
  border-color: var(--color-primary);
}

/* Header */
.site-header {
  padding: 24px 0;
}

.site-header__logo img,
.site-footer__logo img {
  width: auto;
  max-height: 40px;
}

.site-header__nav,
.site-footer__nav,
.site-header__actions,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__nav,
.site-footer__nav {
  font-size: 15px;
  font-weight: 500;
}

.language-switcher {
  gap: 6px;
}

.language-switcher__button {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.language-switcher__button.is-active {
  background: var(--color-primary);
  color: var(--color-primary-text);
}

.site-header__menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.site-header__menu-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--color-text);
}

/* Shared Section Defaults */
.hero__inner,
.critical-window .container,
.product-dashboard .container,
.daily-tracking .container,
.organisations-gallery .container,
.trust .container,
.founders .container,
.tracking-cta .container,
.future .container,
.pricing .container,
.faq .container,
.final-cta .container,
.contact .container {
  display: grid;
  gap: 16px;
}

article,
figure,
.contact__form,
.site-footer__newsletter {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  padding: 24px;
}

/* Forms */
form {
  display: grid;
  gap: 14px;
}

label {
  color: var(--color-text);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

/* Responsive */
@media (max-width: 900px) {
  :root {
    --container-padding: 20px;
    --radius-sm: 6px;
    --radius-md: 6px;
    --radius-lg: 6px;
  }

  section {
    padding: var(--section-spacing-mobile) 0;
  }

  .site-header__menu-button {
    display: block;
  }

  .site-header__inner,
  .site-footer__inner {
    align-items: flex-start;
  }

  .site-header__nav,
  .site-header__actions,
  .site-footer__inner,
  .site-footer__nav {
    flex-direction: column;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__actions {
    align-items: flex-end;
  }
}

@media (max-width: 640px) {
  :root {
    --container-padding: 16px;
  }

  body {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  article,
  figure,
  .contact__form,
  .site-footer__newsletter {
    padding: 20px;
  }
}

/* Section 1: Header and Hero */
body.is-menu-open {
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 47px 0 0;
  color: #ffffff;
}

.site-header .container,
.hero .container {
  width: 100%;
  max-width: none;
  padding-right: 60px;
  padding-left: 60px;
}

.site-header__inner {
  align-items: center;
}

.site-header__logo {
  position: relative;
  z-index: 35;
}

.site-header__logo img {
  width: 122px;
  max-height: none;
}

.site-header__nav {
  display: none;
}

.site-header__actions {
  gap: 0;
}

.site-header__actions > .button {
  display: none;
}

.language-switcher__button {
  display: none;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  padding: 0;
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.language-switcher__button:not(.is-active) {
  display: inline-flex;
  background: transparent;
  color: #ffffff;
}

.language-switcher__button img {
  width: 28px;
  height: 20px;
  object-fit: cover;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  background: #203f45;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 59, 66, 0.58) 0%, rgba(19, 59, 66, 0.26) 46%, rgba(19, 59, 66, 0.05) 100%),
    linear-gradient(180deg, rgba(16, 50, 56, 0.08) 0%, rgba(16, 50, 56, 0.48) 100%);
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  align-content: center;
  padding-top: 96px;
}

.hero__content {
  width: min(100%, 560px);
}

.hero__eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 37px;
  align-items: center;
  margin-bottom: 29px;
  background: url("assets/images/shared/section1-eyebrow-background.png") left top / 54% auto no-repeat;
  color: #ffffff;
  padding: 0.5rem 1.375rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__eyebrow-text--mobile {
  display: none;
}

.hero h1 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 63px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 span {
  display: block;
}

.hero__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

.hero p {
  color: #ffffff;
}

.hero__content > p:not(.section-label) {
  width: min(100%, 540px);
  margin-bottom: 25px;
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
}

  .hero .button {
    width: 241px;
    min-height: 58px;
    border-radius: 3px;
  background: #ffffff;
  color: #102232;
  font-size: 18px;
}

.hero .button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero__trust-list {
  display: flex;
  width: 241px;
  justify-content: center;
  gap: 10px;
  margin-top: -23px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  list-style-position: inside;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    padding-top: 28px;
  }

  .site-header .container,
  .hero .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header__inner {
    align-items: center;
    flex-direction: row;
  }

  .site-header__logo img {
    width: 109px;
  }

  .site-header__menu-button {
    position: relative;
    z-index: 35;
    display: block;
    width: 35px;
    height: 28px;
    padding: 0;
  }

  .site-header__menu-line {
    width: 30px;
    height: 2px;
    margin: 7px 0;
    background: #ffffff;
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .is-menu-open .site-header__menu-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .is-menu-open .site-header__menu-line:nth-child(2) {
    opacity: 0;
  }

  .is-menu-open .site-header__menu-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .site-header__actions {
    position: fixed;
    right: auto;
    bottom: 44px;
    left: 22px;
    z-index: 35;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
    visibility: hidden;
  }

  .is-menu-open .site-header__actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-header__nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    background:
      linear-gradient(180deg, #1f383b 0%, #76a8aa 100%);
    color: #ffffff;
    padding: 139px 22px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
    visibility: hidden;
  }

  .is-menu-open .site-header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-header__nav a {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 260ms ease,
      transform 260ms ease;
  }

  .site-header__nav a[href="#solution"],
  .site-header__nav a[href="#pricing"],
  .site-header__nav a[href="#faq"] {
    display: block;
  }

  .is-menu-open .site-header__nav a[href="#solution"],
  .is-menu-open .site-header__nav a[href="#pricing"],
  .is-menu-open .site-header__nav a[href="#faq"] {
    opacity: 1;
    transform: translateY(0);
  }

  .is-menu-open .site-header__nav a[href="#solution"] {
    transition-delay: 80ms;
  }

  .is-menu-open .site-header__nav a[href="#pricing"] {
    transition-delay: 150ms;
  }

  .is-menu-open .site-header__nav a[href="#faq"] {
    transition-delay: 220ms;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(17, 53, 60, 0.48) 0%, rgba(17, 53, 60, 0.12) 100%),
      linear-gradient(180deg, rgba(15, 44, 50, 0.08) 0%, rgba(15, 44, 50, 0.52) 100%);
  }

  .hero__media img {
    object-position: center top;
  }

  .hero__inner {
    min-height: 100vh;
    min-height: 100svh;
    align-content: start;
    padding-top: 247px;
  }

  .hero__content {
    width: 100%;
  }

  .hero__eyebrow {
    max-width: 100%;
    min-height: 38px;
    margin-bottom: 16px;
    background-size: 84% auto;
    padding: 0.5rem 1.125rem 1.75rem;
    font-size: clamp(9px, 2.6vw, 10px);
  }

  .hero__eyebrow-text--desktop {
    display: none;
  }

  .hero__eyebrow-text--mobile {
    display: inline;
  }

  .hero h1 {
    max-width: 370px;
    margin-bottom: 13px;
    font-size: 42px;
    line-height: 0.98;
  }

  .hero__content > p:not(.section-label) {
    max-width: 365px;
    margin-bottom: 27px;
    font-size: 17px;
    line-height: normal;
  }

  .hero .button {
    width: 100%;
    max-width: 241px;
    min-height: 56px;
  }

  .hero__trust-list {
    width: 241px;
    justify-content: center;
    gap: 10px;
    margin-top: -23px;
    padding-left: 0;
    font-size: 10px;
  }
}

/* Section 2: Critical Funding Window */
.critical-window {
  background: #e8f4fb;
  color: #102232;
  min-height: 100vh;
  padding: 88px 0 115px;
}

.critical-window .container {
  display: block;
  width: 100%;
  max-width: 1440px;
  padding-right: 60px;
  padding-left: 60px;
}

.critical-window .section-label {
  display: flex;
  width: max-content;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  border: 1px solid #102232;
  border-radius: 999px;
  color: #102232;
  padding: 0 11px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.critical-window .critical-window__eyebrow {
  min-width: 92px;
  border: 0;
  background: url("assets/images/shared/section2-eyebrow-background.png") left center / 100% 100% no-repeat;
  padding: 8px 20px 9px;
  font-size: 0.9rem;
}

.critical-window h2 {
  max-width: 820px;
  margin: 0 auto 40px;
  color: #102232;
  font-size: clamp(31px, 3.35vw, 48px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
}

.critical-window h2 span {
  display: inline;
}

.critical-window__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

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

.critical-window__card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.critical-window__card-media {
  overflow: hidden;
  border-radius: 3px;
}

.critical-window__card-media img {
  width: 100%;
  aspect-ratio: 428 / 270;
  object-fit: cover;
}

.critical-window__card-content {
  padding-top: 22px;
}

.critical-window__card h3 {
  max-width: 380px;
  margin-bottom: 12px;
  color: #102232;
  font-family: var(--font-serif);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

.critical-window__card p {
  max-width: 400px;
  color: #58728a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
}

@media (max-width: 900px) {
  .critical-window {
    min-height: auto;
    padding: 48px 0 43px;
  }

  .critical-window .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .critical-window .section-label {
    min-height: 28px;
    margin-bottom: 15px;
    font-size: 11px;
  }

  .critical-window .critical-window__eyebrow {
    min-width: 88px;
    padding: 8px 20px 9px;
    font-size: 15px;
  }

  .critical-window h2 {
    margin-bottom: 22px;
    line-height: 1.08;
  }

  .critical-window__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .critical-window__card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 6px;
  }

  .critical-window__card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(16, 34, 50, 0.04) 0%, rgba(16, 34, 50, 0.4) 100%);
    pointer-events: none;
  }

  .critical-window__card-media {
    position: absolute;
    inset: 0;
    border-radius: 0;
  }

  .critical-window__card-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .critical-window__card-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 240px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 10px 15px;
  }

  .critical-window__card h3 {
    max-width: 320px;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.05;
  }

  .critical-window__card p {
    max-width: 325px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
  }
}

/* Section 3: Product Dashboard */
.product-dashboard {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 54, 61, 0.18) 0%, rgba(17, 54, 61, 0.84) 100%),
    url("assets/images/desktop/section3-background-image-desktop.webp") center / cover no-repeat;
  color: #ffffff;
  padding: 47px 0 34px;
}

.product-dashboard .container {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: 1440px;
  min-height: calc(100vh - 81px);
  grid-template-rows: auto auto 1fr;
  padding-right: 59px;
  padding-left: 59px;
}

.product-dashboard .section-label {
  display: flex;
  width: max-content;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: #ffffff;
  padding: 0 13px;
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.product-dashboard .product-dashboard__eyebrow {
  min-width: 124px;
  border: 0;
  background: url("assets/images/shared/section3-eyebrow-background.png") left center / 100% 100% no-repeat;
  padding: 8px 20px 9px;
  font-size: 0.9rem;
}

.product-dashboard h2 {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #ffffff;
  font-size: clamp(36px, 3.75vw, 54px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
  text-align: center;
}

.product-dashboard h2 > span {
  display: block;
}

.product-dashboard__title-line {
  display: block;
}

.product-dashboard__title-line span {
  display: inline;
}

.product-dashboard__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

.product-dashboard__image {
  width: min(100%, 725px);
  margin: 0 auto;
  border-radius: 3px;
}

.tracker-preview {
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(12, 34, 55, 0.12);
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(5, 24, 44, 0.22);
  color: #0f2a4c;
  font-family: var(--font-sans);
}

.tracker-preview__chrome {
  display: flex;
  height: 39px;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid #dedfe3;
  background: linear-gradient(180deg, #f8f8f8 0%, #eeeff1 100%);
  padding: 0 20px;
}

.tracker-preview__dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.tracker-preview__dot--red {
  background: #f55345;
}

.tracker-preview__dot--yellow {
  margin-left: -10px;
  background: #f2b233;
}

.tracker-preview__dot--green {
  margin-left: -10px;
  background: #34c759;
}

.tracker-preview__tool {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #6b7280;
}

.tracker-preview__tool svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tracker-preview__spacer {
  flex: 1;
}

.tracker-preview__tool::before,
.tracker-preview__tool::after {
  content: none;
  position: absolute;
  box-sizing: border-box;
}

.tracker-preview__tool--chevron::before,
.tracker-preview__tool--reply::before {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.tracker-preview__tool--reply::after {
  top: 8px;
  left: 7px;
  width: 9px;
  height: 2px;
  background: currentColor;
}

.tracker-preview__tool--mail::before {
  inset: 4px 2px;
  border: 1.8px solid currentColor;
  border-radius: 2px;
}

.tracker-preview__tool--mail::after {
  top: 6px;
  left: 4px;
  width: 10px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.tracker-preview__tool--trash::before {
  top: 6px;
  left: 4px;
  width: 10px;
  height: 10px;
  border: 1.8px solid currentColor;
  border-top: 0;
}

.tracker-preview__tool--trash::after {
  top: 3px;
  left: 3px;
  width: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 4px -2px 0 -0.5px currentColor;
}

.tracker-preview__tool--box::before {
  inset: 4px 3px;
  border: 1.8px solid currentColor;
  border-radius: 1px;
}

.tracker-preview__tool--box::after {
  top: 7px;
  left: 6px;
  width: 6px;
  height: 2px;
  background: currentColor;
}

.tracker-preview__tool--print::before {
  top: 6px;
  left: 3px;
  width: 12px;
  height: 8px;
  border: 1.8px solid currentColor;
  border-radius: 2px;
}

.tracker-preview__tool--print::after {
  top: 2px;
  left: 5px;
  width: 8px;
  height: 6px;
  border: 1.8px solid currentColor;
  background: #f4f5f6;
}

.tracker-preview__tool--flag::before {
  top: 3px;
  left: 5px;
  width: 2px;
  height: 13px;
  background: currentColor;
}

.tracker-preview__tool--flag::after {
  top: 4px;
  left: 7px;
  width: 8px;
  height: 7px;
  border: 1.8px solid currentColor;
  border-left: 0;
}

.tracker-preview__tool--chevron-down::before {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.tracker-preview__tool--more::before {
  top: 8px;
  left: 2px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor, 12px 0 0 currentColor;
}

.tracker-preview__hero {
  display: flex;
  min-height: 178px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #112e58 0%, #0f3569 52%, #2f5f98 100%);
  padding: 29px 49px 24px;
}

.tracker-preview__brand img {
  width: 124px;
  height: auto;
  filter: brightness(0) invert(1);
}

.tracker-preview__hero h3 {
  margin: 16px 0 6px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.tracker-preview__subtitle {
  color: #ffffff;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.tracker-preview__date {
  margin-top: 7px;
  color: #9dd4f5;
  font-size: 14px;
  line-height: 1.2;
}

.tracker-preview__count {
  display: grid;
  width: 135px;
  height: 89px;
  place-items: center;
  align-content: center;
  border-radius: 7px;
  background: rgba(132, 171, 215, 0.34);
  color: #ffffff;
  text-transform: uppercase;
}

.tracker-preview__count strong {
  font-size: 33px;
  line-height: 0.95;
}

.tracker-preview__count span {
  margin-top: 10px;
  color: #9dd4f5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tracker-preview__meta {
  display: flex;
  min-height: 59px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e6eb;
  background: #f8fbff;
  padding: 0 49px;
}

.tracker-preview__meta p {
  color: #24415f;
  font-size: 13px;
  line-height: 1.2;
}

.tracker-preview__meta strong {
  color: #092650;
  font-weight: 700;
}

.tracker-preview__body {
  background: #ffffff;
  padding: 20px 44px 35px;
}

.tracker-preview__card {
  max-width: 577px;
  margin: 0 auto;
  border: 1px solid #d9e0e8;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(12, 34, 55, 0.12);
  padding: 15px 21px 18px;
}

.tracker-preview__card + .tracker-preview__card {
  margin-top: 14px;
}

.tracker-preview__card--secondary {
  opacity: 0.9;
}

.tracker-preview__card span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 4px;
  background: #112e58;
  color: #ffffff;
  padding: 0 13px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.tracker-preview__card h4 {
  margin: 13px 0 9px;
  color: #0f2a4c;
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
}

.tracker-preview__card p {
  color: #15314f;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.38;
}

.tracker-preview__card a {
  display: inline-flex;
  margin-top: 18px;
  color: #006fea;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.product-dashboard__features {
  display: grid;
  align-self: end;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  padding-top: 44px;
}

.product-dashboard__feature {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.product-dashboard__feature h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.05vw, 30px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.product-dashboard__feature p {
  color: #ffffff;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  line-height: 1.18;
}

@media (max-width: 900px) {
  .product-dashboard {
    min-height: auto;
    /* TODO: confirm this is the intended mobile Section 3 background asset. */
    background:
      linear-gradient(180deg, rgba(17, 54, 61, 0.15) 0%, rgba(17, 54, 61, 0.72) 100%),
      url("assets/images/mobile/section3-background-image-desktop.webp") center top / cover no-repeat;
    padding: 36px 0 43px;
  }

  .product-dashboard .container {
    min-height: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-dashboard .section-label {
    min-height: 28px;
    margin-bottom: 7px;
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .product-dashboard .product-dashboard__eyebrow {
    min-width: 116px;
    padding: 8px 20px 9px;
    font-size: 15px;
  }

  .product-dashboard h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .product-dashboard__image {
    width: 100%;
    height: 318px;
    margin-bottom: 8px;
    border-radius: 6px;
  }

  .tracker-preview__chrome {
    height: 25px;
    gap: 9px;
    padding: 0 11px;
  }

  .tracker-preview__dot {
    width: 7px;
    height: 7px;
  }

  .tracker-preview__dot--yellow,
  .tracker-preview__dot--green {
    margin-left: -6px;
  }

  .tracker-preview__tool {
    width: 11px;
    height: 11px;
  }

  .tracker-preview__hero {
    min-height: 106px;
    padding: 16px 20px 14px;
  }

  .tracker-preview__brand img {
    width: 78px;
  }

  .tracker-preview__hero h3 {
    margin: 9px 0 4px;
    font-size: 18px;
  }

  .tracker-preview__subtitle {
    font-size: 10px;
  }

  .tracker-preview__date {
    margin-top: 4px;
    font-size: 9px;
  }

  .tracker-preview__count {
    width: 72px;
    height: 54px;
    border-radius: 5px;
  }

  .tracker-preview__count strong {
    font-size: 22px;
  }

  .tracker-preview__count span {
    margin-top: 5px;
    font-size: 7px;
  }

  .tracker-preview__meta {
    min-height: 38px;
    padding: 0 20px;
  }

  .tracker-preview__meta p {
    font-size: 8px;
  }

  .tracker-preview__body {
    padding: 13px 20px 21px;
  }

  .tracker-preview__card {
    max-width: none;
    border-radius: 6px;
    padding: 11px 13px 13px;
  }

  .tracker-preview__card span {
    min-height: 18px;
    border-radius: 3px;
    padding: 0 9px;
    font-size: 8px;
  }

  .tracker-preview__card h4 {
    margin: 10px 0 6px;
    font-size: 13px;
  }

  .tracker-preview__card p {
    font-size: 9px;
    line-height: 1.35;
  }

  .tracker-preview__card a {
    margin-top: 12px;
    font-size: 10px;
  }

  .product-dashboard__features {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 0;
  }

  .product-dashboard__feature h3 {
    margin-bottom: 5px;
    font-size: 28px;
    line-height: 1.05;
    max-width: 90%;
  }

  .product-dashboard__feature p {
    max-width: 360px;
    font-size: clamp(16px, 4.15vw, 17px);
    line-height: 1.3;
  }
}

/* Section 4: Daily Fund Tracking */
.daily-tracking {
  background: #e8f4fb;
  color: #102232;
  padding: 140px 0 105px;
}

.daily-tracking .container {
  display: block;
  width: 100%;
  max-width: 1440px;
  padding-right: 60px;
  padding-left: 60px;
}

.daily-tracking__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 74px;
}

.daily-tracking .section-label {
  display: flex;
  width: max-content;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid #102232;
  border-radius: 999px;
  color: #102232;
  padding: 0 11px;
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.daily-tracking .daily-tracking__eyebrow {
  min-width: 118px;
  border: 0;
  background: url("assets/images/shared/section4-eyebrow-background.png") left center / 80% 100% no-repeat;
  padding: 8px 20px 9px;
  font-size: 0.9rem;
}

.daily-tracking h2 {
  color: #102232;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.daily-tracking__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

.daily-tracking__metric {
  display: grid;
  grid-template-columns: auto minmax(135px, 170px);
  align-items: center;
  gap: 20px;
  color: #102232;
}

.daily-tracking__metric-number {
  color: #102232;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 0.9;
}

.daily-tracking__metric-text {
  color: #102232;
  font-size: clamp(14px, 1.12vw, 16px);
  font-weight: 400;
  line-height: 1.1;
}

.daily-tracking__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  column-gap: 74px;
  row-gap: 72px;
}

.daily-tracking__logos img {
  width: 100%;
  max-width: 250px;
  max-height: 96px;
  object-fit: contain;
}

.daily-tracking__logos img:nth-child(9) {
  grid-column: 1;
}

@media (max-width: 900px) {
  .daily-tracking {
    padding: 61px 0 63px;
  }

  .daily-tracking .container {
    display: flex;
    flex-direction: column;
    padding-right: 21px;
    padding-left: 21px;
  }

  .daily-tracking__header {
    display: contents;
    text-align: center;
  }

  .daily-tracking__heading {
    order: 1;
    margin-bottom: 30px;
  }

  .daily-tracking .section-label {
    min-height: 28px;
    margin: 0 auto 13px;
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .daily-tracking .daily-tracking__eyebrow {
    min-width: 110px;
    padding: 8px 20px 9px;
    font-size: 15px;
  }

  .daily-tracking h2 {
    margin: 0 auto;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .daily-tracking h2 span {
    display: block;
  }

  .daily-tracking__logos {
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 30px;
    margin-bottom: 58px;
  }

  .daily-tracking__logos img {
    max-width: 100%;
    max-height: 72px;
  }

  .daily-tracking__logos img:nth-child(9) {
    grid-column: 1;
  }

  .daily-tracking__metric {
    order: 3;
    display: grid;
    grid-template-columns: auto minmax(130px, 1fr);
    justify-content: start;
    gap: 12px;
    max-width: 350px;
    margin: 0 auto;
    text-align: left;
  }

  .daily-tracking__metric-number {
    font-size: clamp(44px, 13vw, 56px);
  }

  .daily-tracking__metric-text {
    font-size: clamp(14px, 3.8vw, 15px);
    line-height: 1.08;
  }
}

/* Section 5: Organisations Gallery */
.organisations-gallery {
  overflow: hidden;
  background: #e8f4fb;
  color: #102232;
  padding: 81px 0 174px;
}

.organisations-gallery .container {
  display: block;
  width: 100%;
  max-width: 1440px;
  padding-right: 0;
  padding-left: 60px;
}

.organisations-gallery .section-label {
  display: flex;
  width: max-content;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid #102232;
  border-radius: 999px;
  color: #102232;
  padding: 0 14px;
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.organisations-gallery .organisations-gallery__eyebrow {
  min-width: 174px;
  border: 0;
  background: url("assets/images/shared/section5-eyebrow-background.png") left center / 80% 100% no-repeat;
  padding: 8px 20px 9px;
  font-size: 0.9rem;
}

.organisations-gallery h2 {
  max-width: 790px;
  margin: 0 auto 51px;
  color: #102232;
  font-size: clamp(42px, 4.1vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  text-align: center;
}

.organisations-gallery h2 span {
  display: inline;
}

.organisations-gallery__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

.organisations-gallery__track {
  display: flex;
  gap: 29px;
  overflow-x: auto;
  padding: 0 0 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.organisations-gallery__track::-webkit-scrollbar {
  display: none;
}

.organisations-gallery__card {
  position: relative;
  display: flex;
  flex: 0 0 374px;
  height: 438px;
  overflow: hidden;
  align-items: flex-end;
  border: 0;
  border-radius: 3px;
  background: #16313c;
  padding: 0;
  scroll-snap-align: start;
}

.organisations-gallery__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.organisations-gallery__card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 19px 18px;
  color: #ffffff;
}

.organisations-gallery__card h3 {
  max-width: 320px;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(30px, 2.35vw, 34px);
  font-weight: 500;
  line-height: 0.95;
}

.organisations-gallery__card p {
  max-width: 318px;
  color: #ffffff;
  font-size: clamp(15px, 1.12vw, 16px);
  font-weight: 400;
  line-height: 1.16;
}

.organisations-gallery__card h3:empty,
.organisations-gallery__card p:empty {
  display: none;
}

@media (min-width: 901px) {
  .organisations-gallery.is-horizontal-scroll .organisations-gallery__track {
    overflow: visible;
    will-change: transform;
  }

  .organisations-gallery.is-horizontal-scroll .organisations-gallery__track::after {
    content: "";
    flex: 0 0 29px;
  }
}

@media (max-width: 900px) {
  .organisations-gallery {
    padding: 63px 0 96px;
  }

  .organisations-gallery .container {
    padding-right: 13px;
    padding-left: 14px;
  }

  .organisations-gallery .section-label {
    min-height: 27px;
    margin-bottom: 15px;
    padding: 0 13px;
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .organisations-gallery .organisations-gallery__eyebrow {
    min-width: 164px;
    padding: 8px 20px 9px;
    font-size: 15px;
  }

  .organisations-gallery h2 {
    max-width: 340px;
    margin-bottom: 25px;
    font-size: clamp(29px, 8vw, 32px);
    line-height: 1.04;
  }

  .organisations-gallery h2 span {
    display: inline;
  }

  .organisations-gallery__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 14px;
    overflow-x: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .organisations-gallery__card {
    width: 100%;
    height: auto;
    min-height: 205px;
    aspect-ratio: 176 / 205;
    flex: none;
    border-radius: 6px;
  }

  .organisations-gallery__card-content {
    padding: 0 8px 10px;
  }

  .organisations-gallery__card h3 {
    max-width: 160px;
    margin-bottom: 4px;
    font-size: clamp(19px, 5.2vw, 21px);
    line-height: 0.95;
  }

  .organisations-gallery__card p {
    display: none;
  }
}

/* Section 6: Trust / Social Proof */
.trust {
  min-height: 900px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 35, 47, 0.42), rgba(15, 35, 47, 0.06) 48%, rgba(15, 35, 47, 0.16)),
    url("assets/images/desktop/section6-image-background-desktop.png") center / cover no-repeat;
  color: #ffffff;
  padding: 49px 0 62px;
}

.trust .container {
  display: grid;
  width: 100%;
  max-width: 1440px;
  grid-template-columns: minmax(420px, 0.94fr) minmax(560px, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 0 74px;
  padding-right: 59px;
  padding-left: 59px;
}

.trust .section-label {
  display: flex;
  width: max-content;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  margin: 13px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: #ffffff;
  padding: 0 13px;
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.trust .trust__eyebrow {
  min-width: 128px;
  border: 0;
  background: url("assets/images/shared/section3-eyebrow-background.png") left center / 100% 100% no-repeat;
  padding: 8px 20px 9px;
}

.trust h2 {
  max-width: 610px;
  color: #ffffff;
  font-size: clamp(48px, 4.3vw, 62px);
  font-weight: 500;
  line-height: 0.98;
}

.trust h2 span {
  display: inline;
}

.trust__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

.trust__testimonials {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 30px;
}

.trust__card {
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  color: #102232;
  padding: 21px 24px 20px;
}

.trust__quote-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 15px;
}

.trust__card h3 {
  margin-bottom: 12px;
  color: #102232;
  font-family: var(--font-sans);
  font-size: clamp(19px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.12;
}

.trust__card blockquote {
  color: #102232;
  font-size: clamp(18px, 1.45vw, 19px);
  font-weight: 400;
  line-height: 1.3;
}

.trust__card figcaption {
  display: grid;
  gap: 0;
  margin-top: 19px;
  color: #102232;
  font-size: clamp(15px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.15;
}

.trust__brand {
  display: block;
  width: max-content;
  max-width: 160px;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1;
}

.trust__brand--cortex {
  color: #b6d9f7;
  font-size: clamp(29px, 2.25vw, 34px);
  letter-spacing: 0;
}

.trust__brand--codepixel {
  width: 42px;
  height: 41px;
  object-fit: contain;
}

.trust__brand--zuno {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.trust__brand--bild {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.trust__brand--zunogames {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.trust__logos {
  display: flex;
  grid-column: 2;
  gap: 21px;
  margin-top: 29px;
}

.trust__logo-card {
  display: flex;
  width: 124px;
  height: 109px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #ffffff;
  color: #111111;
  padding: 15px;
}

.trust__logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.trust__logo-card--ministry {
  padding: 10px 16px;
}

.trust__logo-card--cortex {
  padding: 24px 16px;
}

@media (max-width: 900px) {
  .trust {
    min-height: 1248px;
    background:
      linear-gradient(180deg, rgba(16, 34, 50, 0.08), rgba(16, 34, 50, 0.38)),
      url("assets/images/desktop/section6-image-background-desktop.png") center / cover no-repeat;
    padding: 36px 0 28px;
  }

  .trust .container {
    display: block;
    padding-right: 16px;
    padding-left: 16px;
  }

  .trust .section-label {
    min-height: 30px;
    margin: 0 auto 18px;
    padding: 0 13px;
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .trust .trust__eyebrow {
    min-width: 120px;
    padding: 8px 20px 9px;
  }

  .trust h2 {
    max-width: 350px;
    margin: 0 auto 36px;
    font-size: clamp(29px, 7.9vw, 32px);
    line-height: 1.02;
    text-align: center;
  }

  .trust__testimonials {
    display: grid;
    gap: 20px;
  }

  .trust__card {
    border-radius: 6px;
    padding: 19px 19px 20px;
  }

  .trust__quote-icon {
    margin-bottom: 16px;
  }

  .trust__card h3 {
    margin-bottom: 10px;
    font-size: clamp(20px, 5.4vw, 22px);
    line-height: 1.12;
  }

  .trust__card blockquote {
    font-size: clamp(16px, 4.15vw, 17px);
    line-height: 1.14;
  }

  .trust__card figcaption {
    margin-top: 21px;
    font-size: clamp(15px, 4vw, 16px);
    line-height: 1.18;
  }

  .trust__brand--cortex {
    font-size: clamp(29px, 8vw, 32px);
  }

  .trust__logos {
    gap: 21px;
    margin-top: 24px;
  }

  .trust__logo-card {
    width: 124px;
    height: 109px;
    border-radius: 6px;
  }
}

/* Section 7: Founders / Story */
.founders {
  min-height: 100vh;
  background: #e8f4fb;
  color: #102232;
  padding: clamp(48px, 6.8vh, 72px) 0;
}

.founders .container {
  display: grid;
  width: 100%;
  max-width: 1440px;
  grid-template-columns: 650px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  align-items: stretch;
  gap: 0 21px;
  padding-right: 60px;
  padding-left: 60px;
}

.founders__media {
  grid-column: 1;
  grid-row: 1 / span 3;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: transparent;
  padding: 0;
}

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

.founders__intro,
.founders__body,
.founders__points {
  grid-column: 2;
}

.founders .section-label {
  display: flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid #102232;
  border-radius: 999px;
  color: #102232;
  padding: 0 13px;
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.founders h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: #102232;
  font-size: clamp(42px, 3.75vw, 54px);
  font-weight: 500;
  line-height: 1.02;
}

.founders h2 span {
  display: inline;
}

.founders__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

.founders__body {
  max-width: 617px;
  margin-bottom: clamp(38px, 6vh, 64px);
}

.founders__body p {
  color: #111111;
  font-size: clamp(16px, 1.28vw, 18px);
  font-weight: 400;
  line-height: 1.3;
}

.founders__body p + p {
  margin-top: 0;
}

.founders__body p:empty {
  display: none;
}

.founders__points {
  display: grid;
  max-width: 485px;
  gap: clamp(22px, 3.2vh, 30px);
}

.founders__points article {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.founders__points h3 {
  margin-bottom: 6px;
  color: #2d2d2d;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.04;
}

.founders__points p {
  color: #111111;
  font-size: clamp(15px, 1.16vw, 17px);
  font-weight: 400;
  line-height: 1.3;
}

@media (min-width: 901px) {
  .founders {
    box-sizing: border-box;
    min-height: calc(100vh + 288px);
    padding: 144px 0;
  }

  .founders .container {
    height: 100vh;
    min-height: 100vh;
  }
}

@media (max-width: 900px) {
  .founders {
    padding: 60px 0 63px;
  }

  .founders .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    padding-right: 16px;
    padding-left: 16px;
  }

  .founders__intro,
  .founders__media,
  .founders__body,
  .founders__points {
    grid-column: 1;
    grid-row: auto;
  }

  .founders .section-label {
    min-height: 28px;
    margin: 0 auto 16px;
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .founders h2 {
    max-width: 285px;
    margin: 0 auto 24px;
    font-size: clamp(31px, 8.7vw, 34px);
    line-height: 1.1;
    text-align: center;
  }

  .founders__media {
    margin-bottom: 24px;
    border-radius: 6px;
  }

  .founders__media img {
    height: auto;
    aspect-ratio: 361 / 405;
    object-fit: cover;
    object-position: center top;
  }

  .founders__body {
    max-width: none;
    margin-bottom: 35px;
  }

  .founders__body p {
    font-size: clamp(17px, 4.65vw, 18px);
    line-height: 1.16;
  }

  .founders__points {
    max-width: none;
    gap: 25px;
  }

  .founders__points h3 {
    margin-bottom: 7px;
    font-size: 26px;
    line-height: 1.04;
  }

  .founders__points p {
    max-width: 355px;
    font-size: clamp(16px, 4.35vw, 17px);
    line-height: 1.12;
  }
}

/* Section 8: Tracking CTA */
.tracking-cta {
  min-height: 586px;
  background:
    linear-gradient(90deg, rgba(232, 244, 251, 0.08), rgba(232, 244, 251, 0.18)),
    url("assets/images/desktop/section8-image-background.png") center / cover no-repeat;
  color: #102232;
  padding: 253px 0 50px;
}

.tracking-cta .container {
  display: block;
  width: 100%;
  max-width: 1440px;
  padding-right: 60px;
  padding-left: 60px;
}

.tracking-cta__card {
  width: min(100%, 650px);
  border-radius: 3px;
  background: #ffffff;
  padding: 32px 24px 23px;
}

.tracking-cta h2 {
  max-width: 600px;
  margin-bottom: 10px;
  color: #102232;
  font-size: clamp(37px, 3.05vw, 44px);
  font-weight: 500;
  line-height: 1.04;
}

.tracking-cta h2 span {
  display: inline;
}

.tracking-cta__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

.tracking-cta p {
  max-width: 555px;
  margin-bottom: 27px;
  color: #102232;
  font-size: clamp(17px, 1.32vw, 19px);
  font-weight: 400;
  line-height: 1.16;
}

.tracking-cta .button {
  width: 241px;
  min-height: 56px;
  border-radius: 3px;
  background: #102232;
  color: #ffffff;
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 500;
}

.tracking-cta__trust-list {
  display: none;
}

@media (max-width: 900px) {
  .tracking-cta {
    min-height: 393px;
    /* TODO: add a mobile-specific Section 8 background asset if one is exported. */
    background:
      linear-gradient(90deg, rgba(232, 244, 251, 0.05), rgba(232, 244, 251, 0.22)),
      url("assets/images/desktop/section8-image-background.png") center / cover no-repeat;
    padding: 36px 0 66px;
  }

  .tracking-cta .container {
    padding-right: 17px;
    padding-left: 17px;
  }

  .tracking-cta__card {
    width: 100%;
    border-radius: 6px;
    padding: 22px 22px 24px;
  }

  .tracking-cta h2 {
    max-width: 305px;
    margin-bottom: 10px;
    font-size: clamp(30px, 8.4vw, 33px);
    line-height: 1.08;
  }

  .tracking-cta p {
    max-width: 100%;
    margin-bottom: 17px;
    font-size: clamp(16px, 4.35vw, 17px);
    line-height: 1.18;
  }

  .tracking-cta .button {
    width: 100%;
    min-height: 60px;
    font-size: clamp(18px, 5vw, 20px);
  }

  .tracking-cta__trust-list {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 13px;
    color: #6c7378;
    font-size: clamp(10px, 2.7vw, 11px);
    font-weight: 400;
    line-height: 1;
    list-style: none;
  }

  .tracking-cta__trust-list li::before {
    content: "· ";
  }
}

/* Section 9: Future / Vision */
.future {
  background: #e8f4fb;
  color: #102232;
  padding: 154px 0 122px;
}

.future .container {
  display: block;
  width: 100%;
  max-width: 1440px;
  padding-right: 59px;
  padding-left: 59px;
}

.future .section-label {
  display: flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 19px;
  border: 1px solid #102232;
  border-radius: 999px;
  color: #102232;
  padding: 0 13px;
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.future h2 {
  max-width: 850px;
  margin: 0 auto 43px;
  color: #102232;
  font-size: clamp(48px, 4.1vw, 59px);
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}

.future h2 > span {
  display: block;
}

.future__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

.future__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 31px 20px;
}

.future__card {
  position: relative;
  display: flex;
  min-height: 280px;
  overflow: hidden;
  align-items: flex-end;
  border: 0;
  border-radius: 3px;
  background: #102232;
  color: #ffffff;
  padding: 0;
}

.future__card--large {
  grid-row: span 2;
  min-height: 604px;
}

.future__card picture,
.future__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.future__card img {
  object-fit: cover;
}

.future__card-content {
  position: relative;
  z-index: 1;
  max-width: 392px;
  padding: 0 26px 25px 29px;
}

.future__card:not(.future__card--large) .future__card-content {
  max-width: 430px;
  padding: 0 26px 20px;
}

.future__card h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.05vw, 30px);
  font-weight: 500;
  line-height: 1.02;
}

.future__card p {
  color: #ffffff;
  font-size: clamp(16px, 1.18vw, 17px);
  font-weight: 400;
  line-height: 1.13;
}

@media (max-width: 900px) {
  .future {
    padding: 61px 0 72px;
  }

  .future .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .future .section-label {
    min-height: 28px;
    margin-bottom: 16px;
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .future h2 {
    max-width: 350px;
    margin-bottom: 31px;
    font-size: clamp(29px, 8vw, 32px);
    line-height: 1.12;
  }

  .future__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .future__card,
  .future__card--large {
    min-height: 202px;
    border-radius: 6px;
  }

  .future__card-content,
  .future__card:not(.future__card--large) .future__card-content {
    max-width: 345px;
    padding: 0 14px 14px;
  }

  .future__card h3 {
    max-width: 315px;
    margin-bottom: 9px;
    font-size: 28px;
    line-height: 1.02;
  }

  .future__card p {
    max-width: 335px;
    font-size: clamp(16px, 4.35vw, 17px);
    line-height: 1.08;
  }
}

/* Section 10: Pricing */
.pricing {
  background: #e8f4fb;
  color: #102232;
  padding: 84px 0 112px;
}

.pricing .container {
  display: grid;
  width: 100%;
  max-width: 1440px;
  grid-template-columns: minmax(0, 1fr) 363px;
  align-items: start;
  gap: 0 60px;
  padding-right: 60px;
  padding-left: 60px;
}

.pricing .section-label {
  display: flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 21px;
  border: 1px solid #102232;
  border-radius: 999px;
  color: #102232;
  padding: 0 12px;
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.pricing h2 {
  max-width: 760px;
  grid-column: 1;
  grid-row: 2;
  color: #102232;
  font-size: clamp(48px, 4.55vw, 65px);
  font-weight: 500;
  line-height: 1.08;
}

.pricing__intro {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 80px;
  color: #6d829d;
  font-size: clamp(17px, 1.32vw, 19px);
  font-weight: 400;
  line-height: 1.1;
}

.pricing__plans {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.pricing__plan {
  display: flex;
  min-height: 633px;
  flex-direction: column;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  color: #102232;
  padding: 37px 31px 25px;
}

.pricing__plan h3 {
  margin-bottom: 14px;
  color: #102232;
  font-family: var(--font-serif);
  font-size: clamp(37px, 3vw, 43px);
  font-weight: 500;
  line-height: 1;
}

.pricing__plan > p:not(.pricing__price) {
  max-width: 340px;
  min-height: 60px;
  color: #102232;
  font-size: clamp(17px, 1.32vw, 19px);
  font-weight: 400;
  line-height: 1.12;
}

.pricing__plan:nth-child(3) > p:not(.pricing__price) {
  margin-bottom: 23px;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 30px 0 23px;
  color: #102232;
  font-family: var(--font-serif);
  line-height: 1;
}

.pricing__price span:first-child,
.pricing__price--custom {
  font-size: clamp(54px, 4.45vw, 64px);
  font-weight: 500;
}

.pricing__price span:last-child {
  font-size: clamp(24px, 2vw, 29px);
  font-weight: 400;
}

.pricing__price--custom {
  margin-bottom: 35px;
}

.pricing__plan ul {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
  color: #102232;
  font-size: clamp(17px, 1.32vw, 19px);
  font-weight: 400;
  line-height: 1.18;
  list-style: none;
}

.pricing__plan li {
  position: relative;
  padding-left: 31px;
}

.pricing__plan li::before {
  content: "";
  position: absolute;
  top: 0.05em;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("assets/icons/tick.svg") center / contain no-repeat;
}

.pricing__plan .button {
  width: 100%;
  min-height: 57px;
  margin-top: auto;
  border-radius: 3px;
  background: #102232;
  color: #ffffff;
  font-size: clamp(17px, 1.32vw, 19px);
  font-weight: 500;
}

@media (max-width: 900px) {
  .pricing {
    padding: 92px 0 58px;
  }

  .pricing .container {
    display: block;
    padding-right: 19px;
    padding-left: 19px;
  }

  .pricing .section-label {
    min-height: 28px;
    margin: 0 auto 17px;
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .pricing h2 {
    max-width: 345px;
    margin: 0 auto 29px;
    font-size: clamp(31px, 8.8vw, 34px);
    line-height: 1.1;
    text-align: center;
  }

  .pricing__plans {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
  }

  .pricing__plan {
    min-height: auto;
    border-radius: 6px;
    padding: 24px 13px 19px;
  }

  .pricing__plan h3 {
    margin-bottom: 18px;
    font-size: clamp(31px, 8.6vw, 34px);
  }

  .pricing__plan > p:not(.pricing__price) {
    max-width: 322px;
    min-height: 0;
    font-size: clamp(16px, 4.35vw, 17px);
    line-height: 1.18;
  }

  .pricing__plan:nth-child(3) > p:not(.pricing__price) {
    margin-bottom: 26px;
  }

  .pricing__price {
    margin: 27px 0 26px;
  }

  .pricing__price span:first-child,
  .pricing__price--custom {
    font-size: clamp(48px, 13.2vw, 52px);
  }

  .pricing__price span:last-child {
    font-size: clamp(20px, 5.5vw, 22px);
  }

  .pricing__plan ul {
    gap: 19px;
    margin-bottom: 40px;
    font-size: clamp(18px, 5vw, 20px);
    line-height: 1.12;
  }

  .pricing__plan li {
    padding-left: 32px;
  }

  .pricing__plan li::before {
    top: 0.02em;
    width: 19px;
    height: 19px;
  }

  .pricing__plan .button {
    min-height: 57px;
    font-size: clamp(17px, 4.75vw, 19px);
  }

  .pricing__intro {
    margin-top: 37px;
    color: #6d829d;
    font-size: clamp(17px, 4.65vw, 18px);
    font-weight: 400;
    line-height: 1.12;
  }
}

/* Section 11: FAQ */
.faq {
  background: #e8f4fb;
  color: #102232;
  padding: 88px 0 126px;
}

.faq .container {
  display: block;
  width: 100%;
  max-width: 1320px;
  padding-right: 60px;
  padding-left: 60px;
}

.faq .section-label {
  display: flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid #102232;
  border-radius: 999px;
  color: #102232;
  padding: 0 12px;
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.faq h2 {
  max-width: 535px;
  margin: 0 auto 60px;
  color: #102232;
  font-size: clamp(54px, 4.75vw, 68px);
  font-weight: 500;
  line-height: 0.94;
  text-align: center;
}

.faq__items {
  display: grid;
  width: 100%;
  gap: 27px;
}

.faq-item {
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  padding: 0;
}

.faq-item h3 {
  width: 100%;
  font: inherit;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  background: transparent;
  color: #000000;
  padding: 0 34px;
  font-family: var(--font-serif);
  font-size: clamp(27px, 2.05vw, 30px);
  font-weight: 500;
  line-height: 1.08;
  text-align: left;
  cursor: pointer;
}

.faq-question [data-i18n] {
  min-width: 0;
  flex: 1;
}

.faq-icon {
  position: relative;
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: #000000;
  content: "";
  transition: transform 220ms ease, opacity 180ms ease;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  padding: 0 34px;
}

.faq-answer p {
  max-width: 980px;
  color: #102232;
  padding-bottom: 28px;
  font-size: clamp(17px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.25;
  white-space: pre-line;
}

@media (max-width: 900px) {
  .faq {
    padding: 68px 0 96px;
  }

  .faq .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .faq .section-label {
    min-height: 28px;
    margin-bottom: 16px;
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .faq h2 {
    max-width: 310px;
    margin-bottom: 31px;
    font-size: clamp(31px, 8.5vw, 34px);
    line-height: 0.98;
  }

  .faq__items {
    gap: 19px;
  }

  .faq-item {
    border-radius: 6px;
  }

  .faq-question {
    min-height: 59px;
    gap: 14px;
    padding: 0 14px;
    font-size: clamp(20px, 5.65vw, 22px);
    line-height: 1.05;
  }

  .faq-icon {
    width: 23px;
    min-width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .faq-answer {
    padding: 0 14px;
  }

  .faq-answer p {
    padding-bottom: 19px;
    font-size: clamp(15px, 4vw, 16px);
    line-height: 1.2;
  }
}

/* Section 12: Final CTA */
.final-cta {
  min-height: 621px;
  background-image:
    linear-gradient(90deg, rgba(232, 244, 251, 0.18), rgba(232, 244, 251, 0.1)),
    url("assets/images/desktop/section12-image-background-desktop.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #102232;
  padding: 150px 0 88px;
}

.final-cta .container {
  display: flex;
  width: 100%;
  max-width: 720px;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.final-cta h2 {
  max-width: 690px;
  margin-bottom: 18px;
  color: #102232;
  font-size: clamp(44px, 3.85vw, 56px);
  font-weight: 500;
  line-height: 0.98;
  text-align: center;
}

.final-cta__title-emphasis {
  font-style: italic;
  font-weight: 500;
}

.final-cta p {
  max-width: 518px;
  margin-bottom: 31px;
  color: #102232;
  font-size: clamp(18px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.16;
}

.final-cta .button {
  width: 241px;
  min-height: 56px;
  border-radius: 3px;
  font-size: clamp(18px, 1.35vw, 20px);
  font-weight: 500;
}

.final-cta__trust-list {
  display: flex;
  width: 241px;
  justify-content: space-between;
  gap: 18px;
  margin-top: 9px;
  color: #ffffff;
  font-size: clamp(10px, 0.72vw, 11px);
  font-weight: 400;
  line-height: 1.2;
  list-style: none;
}

.final-cta__trust-list li {
  position: relative;
  white-space: nowrap;
}

.final-cta__trust-list li::before {
  content: "\00B7";
  margin-right: 3px;
}

@media (max-width: 900px) {
  .final-cta {
    min-height: 372px;
    border-radius: 0 6px 0 0;
    background-image:
      linear-gradient(90deg, rgba(232, 244, 251, 0.12), rgba(232, 244, 251, 0.04)),
      url("assets/images/desktop/section12-image-background-desktop.png");
    background-position: center;
    background-size: 100% 100%;
    padding: 52px 16px 38px;
  }

  .final-cta .container {
    max-width: 393px;
    padding-right: 0;
    padding-left: 0;
  }

  .final-cta h2 {
    max-width: 350px;
    margin-bottom: 18px;
    font-size: clamp(32px, 8.8vw, 36px);
    line-height: 0.97;
  }

  .final-cta p {
    max-width: 348px;
    margin-bottom: 29px;
    font-size: clamp(16px, 4.1vw, 17px);
    line-height: 1.12;
  }

  .final-cta .button {
    width: 100%;
    min-height: 57px;
    border-radius: 6px;
    font-size: clamp(18px, 5vw, 20px);
  }

  .final-cta__trust-list {
    width: 100%;
    margin-top: 12px;
    color: #001426;
    font-size: clamp(11px, 3vw, 12px);
  }
}

/* Section 13: Contact */
.contact {
  min-height: 940px;
  background: #e8f4fb;
  color: #102232;
  padding: 132px 0 120px;
}

.contact .container {
  display: grid;
  width: 100%;
  max-width: 1440px;
  grid-template-columns: minmax(0, 520px) minmax(0, 693px);
  align-items: start;
  justify-content: space-between;
  gap: 80px;
  padding-right: 59px;
  padding-left: 60px;
}

.contact__content {
  max-width: 475px;
  padding-top: 12px;
}

.contact .contact__eyebrow {
  width: max-content;
  min-height: 28px;
  margin-bottom: 10px;
  border: 1px solid #102232;
  border-radius: 999px;
  color: #102232;
  padding: 8px 15px 7px;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact h2 {
  max-width: 445px;
  margin-bottom: 23px;
  color: #102232;
  font-size: clamp(48px, 4.1vw, 59px);
  font-weight: 500;
  line-height: 1.05;
}

.contact h2 span {
  display: inline;
}

.contact__title-emphasis {
  font-style: italic;
}

.contact__content p:not(.section-label) {
  max-width: 450px;
  color: #617a97;
  font-size: clamp(17px, 1.32vw, 19px);
  font-weight: 400;
  line-height: 1.12;
}

.contact__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 25px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.contact__field {
  display: grid;
  gap: 6px;
}

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

.contact__field label {
  color: #102232;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: #ffffff;
  color: #102232;
  padding: 15px 18px;
  font-size: 17px;
  line-height: 1.2;
}

.contact__field input {
  height: 58px;
}

.contact__field textarea {
  min-height: 124px;
  resize: vertical;
}

.contact__form .button {
  width: 241px;
  min-height: 58px;
  margin-top: 9px;
  border-radius: 5px;
  background: #102232;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact {
    min-height: auto;
    padding: 56px 0 98px;
  }

  .contact .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 54px;
    max-width: 393px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact__content {
    max-width: none;
    padding-top: 0;
    text-align: center;
  }

  .contact .contact__eyebrow {
    margin: 0 auto 9px;
    font-size: 15px;
  }

  .contact h2 {
    max-width: 315px;
    margin: 0 auto 18px;
    font-size: clamp(30px, 8.55vw, 34px);
    line-height: 0.95;
  }

  .contact__content p:not(.section-label) {
    max-width: 353px;
    margin: 0 auto;
    font-size: clamp(16px, 4.35vw, 17px);
    font-weight: 400;
    line-height: 1.12;
  }

  .contact__form {
    grid-template-columns: 1fr;
    gap: 29px;
    padding: 0;
  }

  .contact__field {
    gap: 8px;
  }

  .contact__field label {
    font-size: 16px;
  }

  .contact__field input {
    height: 58px;
  }

  .contact__field textarea {
    min-height: 58px;
  }

  .contact__form .button {
    width: 100%;
    min-height: 56px;
    margin-top: 3px;
    border-radius: 5px;
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .critical-window h2,
  .product-dashboard h2,
  .daily-tracking h2,
  .organisations-gallery h2,
  .trust h2,
  .founders h2,
  .tracking-cta h2,
  .future h2,
  .pricing h2,
  .faq h2,
  .final-cta h2 {
    max-width: none;
  }
}

@media (min-width: 1441px) {
  html {
    font-size: var(--size-font);
  }

  .site-header .container,
  .hero .container,
  .critical-window .container,
  .product-dashboard .container,
  .daily-tracking .container,
  .organisations-gallery .container,
  .trust .container,
  .founders .container,
  .tracking-cta .container,
  .future .container,
  .pricing .container {
    max-width: 90rem;
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }

  .faq .container {
    max-width: 82.5rem;
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }

  .site-header {
    padding-top: 2.9375rem;
  }

  .site-header__logo img {
    width: 7.625rem;
  }

  .language-switcher__button {
    gap: 0.4375rem;
    font-size: 1.6875rem;
  }

  .language-switcher__button img {
    width: 1.75rem;
    height: 1.25rem;
  }

  .hero,
  .hero__inner,
  .critical-window,
  .product-dashboard {
    min-height: min(100vh, 56.25rem);
  }

  .hero__inner {
    padding-top: 6rem;
  }

  .hero__content {
    width: min(100%, 35rem);
  }

  .hero__eyebrow {
    min-height: 2.3125rem;
    margin-bottom: 1.8125rem;
    background-size: 54% auto;
    padding: 0.5rem 1.375rem 1rem;
    font-size: 0.9rem;
  }

  .hero h1 {
    margin-bottom: 1.25rem;
    font-size: 3.9375rem;
  }

  .hero__content > p:not(.section-label) {
    width: min(100%, 33.75rem);
    margin-bottom: 1.5625rem;
    font-size: 1.0625rem;
  }

  .hero .button,
  .tracking-cta .button,
  .final-cta .button {
    width: 15.0625rem;
    min-height: 3.5rem;
  }

  .hero__trust-list {
    width: 15.0625rem;
    gap: 0.625rem;
    margin-top: -1.4375rem;
    font-size: 0.625rem;
  }

  .final-cta__trust-list {
    width: 15.0625rem;
    gap: 0.625rem;
    margin-top: 0.625rem;
    font-size: 0.625rem;
  }

  .critical-window {
    padding: 5.5rem 0 7.1875rem;
  }

  .critical-window .section-label,
  .product-dashboard .section-label,
  .daily-tracking .section-label,
  .organisations-gallery .section-label {
    min-height: 1.6875rem;
    font-size: 0.6875rem;
  }

  .critical-window h2 {
    max-width: 51.25rem;
    margin-bottom: 2.5rem;
    font-size: 3rem;
  }

  .critical-window__cards {
    gap: 1.25rem;
  }

  .critical-window__card-content {
    padding-top: 1.375rem;
  }

  .critical-window__card h3 {
    max-width: 23.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.8125rem;
  }

  .critical-window__card p {
    max-width: 25rem;
    font-size: 1rem;
  }

  .product-dashboard {
    padding: 2.9375rem 0 2.125rem;
  }

  .product-dashboard .container {
    min-height: min(calc(100vh - 5.0625rem), 51.1875rem);
  }

  .product-dashboard h2 {
    max-width: 47.5rem;
    margin-bottom: 1.875rem;
    font-size: 3.375rem;
  }

  .product-dashboard__image {
    width: min(100%, 45.3125rem);
  }

  .product-dashboard__features {
    gap: 2.375rem;
    padding-top: 2.75rem;
  }

  .product-dashboard__feature h3 {
    margin-bottom: 0.75rem;
    font-size: 1.875rem;
  }

  .product-dashboard__feature p {
    font-size: 1.0625rem;
  }

  .daily-tracking {
    padding: 8.75rem 0 6.5625rem;
  }

  .daily-tracking__header {
    gap: 3rem;
    margin-bottom: 4.625rem;
  }

  .daily-tracking h2 {
    font-size: 3.625rem;
  }

  .daily-tracking__metric {
    grid-template-columns: auto minmax(8.4375rem, 10.625rem);
    gap: 1.25rem;
  }

  .daily-tracking__metric-number {
    font-size: 3.875rem;
  }

  .daily-tracking__metric-text {
    font-size: 1rem;
  }

  .daily-tracking__logos {
    column-gap: 4.625rem;
    row-gap: 4.5rem;
  }

  .daily-tracking__logos img {
    max-width: 15.625rem;
    max-height: 6rem;
  }

  .organisations-gallery {
    padding: 5.0625rem 0 10.875rem;
  }

  .organisations-gallery h2 {
    max-width: 49.375rem;
    margin-bottom: 3.1875rem;
    font-size: 3.625rem;
  }

  .organisations-gallery__track {
    gap: 1.8125rem;
    padding-bottom: 0.625rem;
  }

  .organisations-gallery__card {
    flex-basis: 23.375rem;
    height: 27.375rem;
  }

  .organisations-gallery__card-content {
    padding: 0 1.1875rem 1.125rem;
  }

  .organisations-gallery__card h3 {
    max-width: 20rem;
    margin-bottom: 0.5rem;
    font-size: 2.125rem;
  }

  .organisations-gallery__card p {
    max-width: 19.875rem;
    font-size: 1rem;
  }

  .organisations-gallery.is-horizontal-scroll .organisations-gallery__track::after {
    flex-basis: 1.8125rem;
  }

  .trust {
    min-height: 56.25rem;
    padding: 3.0625rem 0 3.875rem;
  }

  .trust .container {
    grid-template-columns: minmax(26.25rem, 0.94fr) minmax(35rem, 1fr);
    gap: 0 4.625rem;
  }

  .trust .section-label {
    min-height: 1.8125rem;
    margin: 0.8125rem 0 1.375rem;
    font-size: 0.6875rem;
  }

  .trust h2 {
    max-width: 38.125rem;
    font-size: 3.875rem;
  }

  .trust__testimonials {
    gap: 1.875rem;
  }

  .trust__card {
    padding: 1.3125rem 1.5rem 1.25rem;
  }

  .trust__quote-icon {
    width: 1.375rem;
    height: 1.375rem;
    margin-bottom: 0.9375rem;
  }

  .trust__card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
  }

  .trust__card blockquote {
    font-size: 1.1875rem;
  }

  .trust__card figcaption {
    margin-top: 1.1875rem;
    font-size: 1rem;
  }

  .trust__brand--codepixel {
    width: 2.625rem;
    height: 2.5625rem;
  }

  .trust__brand--zuno {
    width: 4rem;
    height: 4rem;
  }

  .trust__brand--bild {
    width: 4.5rem;
  }

  .trust__brand--zunogames {
    width: 4rem;
    height: 4rem;
  }

  .trust__logos {
    gap: 1.3125rem;
    margin-top: 1.8125rem;
  }

  .trust__logo-card {
    width: 7.75rem;
    height: 6.8125rem;
  }

  .founders {
    box-sizing: border-box;
    min-height: calc(min(100vh, 56.25rem) + 18rem);
    padding: 9rem 0;
  }

  .founders .container {
    grid-template-columns: 40.625rem minmax(0, 1fr);
    gap: 0 1.3125rem;
    height: 100vh;
    min-height: 100vh;
  }

  .founders h2 {
    max-width: 38.75rem;
    margin-bottom: 0.75rem;
    font-size: 3.375rem;
  }

  .founders__body {
    max-width: 38.5625rem;
    margin-bottom: 4rem;
  }

  .founders__body p {
    font-size: 1.125rem;
  }

  .founders__points {
    max-width: 30.3125rem;
    gap: 1.875rem;
  }

  .founders__points h3 {
    font-size: 1.8125rem;
  }

  .founders__points p {
    font-size: 1.0625rem;
  }

  .tracking-cta {
    min-height: 36.625rem;
    padding: 15.8125rem 0 3.125rem;
  }

  .tracking-cta__card {
    width: min(100%, 40.625rem);
    padding: 2rem 1.5rem 1.4375rem;
  }

  .tracking-cta h2 {
    max-width: 37.5rem;
    font-size: 2.75rem;
  }

  .tracking-cta p {
    max-width: 30rem;
    margin-bottom: 1.6875rem;
    font-size: 1.1875rem;
  }

  .future {
    padding: 9.625rem 0 7.625rem;
  }

  .future h2 {
    max-width: 53.125rem;
    margin-bottom: 2.6875rem;
    font-size: 3.6875rem;
  }

  .future__items {
    gap: 1.9375rem 1.25rem;
  }

  .future__card {
    min-height: 17.5rem;
  }

  .future__card--large {
    min-height: 37.75rem;
  }

  .future__card-content {
    max-width: 24.5rem;
    padding: 0 1.625rem 1.5625rem 1.8125rem;
  }

  .future__card:not(.future__card--large) .future__card-content {
    max-width: 26.875rem;
    padding: 0 1.625rem 1.25rem;
  }

  .future__card h3 {
    font-size: 1.875rem;
  }

  .future__card p {
    font-size: 1.0625rem;
  }

  .pricing {
    padding: 5.25rem 0 7rem;
  }

  .pricing .container {
    grid-template-columns: minmax(0, 1fr) 22.6875rem;
    gap: 0 3.75rem;
  }

  .pricing h2 {
    max-width: 47.5rem;
    font-size: 4.0625rem;
  }

  .pricing__intro {
    margin-top: 5rem;
    font-size: 1.1875rem;
    font-weight: 400;
  }

  .pricing__plans {
    gap: 1.25rem;
    margin-top: 1rem;
  }

  .pricing__plan {
    min-height: 39.5625rem;
    padding: 2.3125rem 1.9375rem 1.5625rem;
  }

  .pricing__plan h3 {
    margin-bottom: 0.875rem;
    font-size: 2.6875rem;
  }

  .pricing__plan > p:not(.pricing__price),
  .pricing__plan ul,
  .pricing__plan .button {
    font-size: 1.1875rem;
  }

  .pricing__plan > p:not(.pricing__price) {
    max-width: 21.25rem;
    min-height: 3.75rem;
  }

  .pricing__price {
    gap: 0.5rem;
    margin: 1.875rem 0 1.4375rem;
  }

  .pricing__price span:first-child,
  .pricing__price--custom {
    font-size: 4rem;
  }

  .pricing__price span:last-child {
    font-size: 1.8125rem;
  }

  .pricing__plan ul {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .pricing__plan li {
    padding-left: 1.9375rem;
  }

  .pricing__plan li::before {
    width: 1.125rem;
    height: 1.125rem;
  }

  .pricing__plan .button {
    min-height: 3.5625rem;
  }

  .faq {
    padding: 5.5rem 0 7.875rem;
  }

  .faq h2 {
    max-width: 33.4375rem;
    margin-bottom: 3.75rem;
    font-size: 4.25rem;
  }

  .faq__items {
    gap: 1.6875rem;
  }

  .faq-question {
    min-height: 4.75rem;
    gap: 1.75rem;
    padding: 0 2.125rem;
    font-size: 1.875rem;
  }

  .faq-answer {
    padding: 0 2.125rem;
  }

  .faq-answer p {
    max-width: 61.25rem;
    padding-bottom: 1.75rem;
    font-size: 1.125rem;
  }

  .final-cta {
    min-height: 38.8125rem;
    padding: 9.375rem 0 5.5rem;
  }

  .final-cta .container {
    max-width: 45rem;
  }

  .final-cta h2 {
    max-width: 43.125rem;
    margin-bottom: 1.125rem;
    font-size: 3.5rem;
  }

  .final-cta p {
    max-width: 32.375rem;
    margin-bottom: 1.9375rem;
    font-size: 1.3125rem;
  }
}

.button,
.hero .button,
.tracking-cta .button,
.final-cta .button,
.pricing__plan .button {
  font-size: 18px;
}

@media (min-width: 1441px) {
  .button,
  .hero .button,
  .tracking-cta .button,
  .final-cta .button,
  .pricing__plan .button {
    font-size: 1.125rem;
  }
}

.founders .reused-eyebrow,
.future .reused-eyebrow,
.pricing .reused-eyebrow,
.faq .reused-eyebrow,
.contact .reused-eyebrow {
  min-width: 142px;
  border: 0;
  background: url("assets/images/shared/section5-eyebrow-background.png") left center / 80% 100% no-repeat;
  padding: 8px 20px 9px;
  font-size: 0.9rem;
}

.pricing .pricing__eyebrow {
  min-width: 92px;
  background-image: url("assets/images/shared/pricing-eyebrow-background.png");
  background-size: 80% 100%;
}

@media (max-width: 900px) {
  .founders .reused-eyebrow,
  .future .reused-eyebrow,
  .pricing .reused-eyebrow,
  .faq .reused-eyebrow,
  .contact .reused-eyebrow {
    min-width: 134px;
    padding: 8px 20px 9px;
    font-size: 15px;
  }

  .pricing .pricing__eyebrow {
    min-width: 88px;
  }
}

@media (max-width: 900px) {
  .section-label,
  .hero__eyebrow,
  .critical-window .critical-window__eyebrow,
  .product-dashboard .product-dashboard__eyebrow,
  .daily-tracking .daily-tracking__eyebrow,
  .organisations-gallery .organisations-gallery__eyebrow,
  .trust .section-label,
  .founders .reused-eyebrow,
  .future .reused-eyebrow,
  .pricing .reused-eyebrow,
  .faq .reused-eyebrow,
  .contact .reused-eyebrow {
    font-size: 15px;
  }
}

@media (min-width: 901px) {
  .section-label,
  .hero__eyebrow,
  .critical-window .critical-window__eyebrow,
  .product-dashboard .product-dashboard__eyebrow,
  .daily-tracking .daily-tracking__eyebrow,
  .organisations-gallery .organisations-gallery__eyebrow,
  .trust .section-label,
  .founders .reused-eyebrow,
  .future .reused-eyebrow,
  .pricing .reused-eyebrow,
  .faq .reused-eyebrow,
  .contact .reused-eyebrow {
    font-size: 0.6875rem;
  }
}

/* Section 14: Footer */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-footer {
  background: #21303d;
  color: #ffffff;
  padding: 108px 0 28px;
}

.site-footer__inner {
  display: grid;
  width: 100%;
  max-width: 1440px;
  grid-template-columns: minmax(0, 420px) minmax(0, 660px);
  grid-template-rows: auto auto;
  align-items: start;
  justify-content: space-between;
  gap: 64px 92px;
  padding-right: 65px;
  padding-left: 65px;
}

.site-footer__brand {
  grid-column: 1;
  grid-row: 1;
}

.site-footer__brand p {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo img {
  width: 220px;
  max-height: none;
  filter: brightness(0) invert(1);
}

.site-footer__newsletter {
  grid-column: 2;
  grid-row: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.site-footer__newsletter h2 {
  margin-bottom: 23px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.05vw, 30px);
  font-weight: 500;
  line-height: 1.05;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 407px) 241px;
  gap: 11px;
}

.newsletter-form input {
  height: 57px;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  color: #102232;
  padding: 0 18px;
  font-size: 18px;
  line-height: 1;
}

.newsletter-form input::placeholder {
  color: #94a4b7;
  opacity: 1;
}

.newsletter-form .button {
  width: 100%;
  min-height: 57px;
  border-radius: 3px;
  background: #ffffff;
  color: #333333;
  font-size: 18px;
}

.site-footer__nav {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 33px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.site-footer__privacy {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 24px 0 39px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    max-width: 393px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-footer__brand,
  .site-footer__newsletter,
  .site-footer__nav,
  .site-footer__privacy {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer__brand p {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .site-footer__logo img {
    width: 222px;
  }

  .site-footer__nav {
    order: 2;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 35px;
    margin-top: 49px;
    font-size: 16px;
  }

  .site-footer__newsletter {
    order: 3;
    margin-top: 55px;
  }

  .site-footer__newsletter h2 {
    max-width: 320px;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.05;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .newsletter-form input {
    height: 57px;
    border-radius: 5px;
  }

  .newsletter-form .button {
    min-height: 56px;
    border-radius: 5px;
    font-size: 18px;
  }

  .site-footer__privacy {
    order: 4;
    margin-top: 58px;
    font-size: 16px;
  }
}

.hero__trust-list {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
}

.hero__trust-list li {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero__trust-list {
    margin-top: 5px;
    font-size: 11px;
  }
}

@media (min-width: 1441px) {
  .hero__trust-list {
    margin-top: 0.3125rem;
    font-size: 0.625rem;
  }
}

.final-cta__trust-list {
  margin-top: 10px;
  color: #ffffff;
}

@media (max-width: 900px) {
  .final-cta__trust-list {
    margin-top: 12px;
    color: #001426;
  }
}

@media (min-width: 1441px) {
  .final-cta__trust-list {
    margin-top: 0.625rem;
  }
}
