/* ==========================================================================
   AviPair — Global Styles
   All base, layout, and component styles live here.
   Media queries only: responsive.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand — AviPair */
  --color-primary: #081628;
  --color-primary-dark: #050f1a;
  --color-primary-light: #f6f8fc;
  --color-secondary: #081628;
  --color-accent: #004aad;
  --color-jet-blue: #253141;
  --color-label-border: #b7c0cb;

  /* Neutrals */
  --color-white: #ffffff;
  --color-black: #0a0a0a;
  --color-gray-50: #f6f8fc;
  --color-gray-100: #eef0f1;
  --color-gray-200: #dce0e3;
  --color-gray-300: #b8c0c6;
  --color-gray-400: #8a959e;
  --color-gray-500: #515151;
  --color-gray-600: #3d4a52;
  --color-gray-700: #2a343a;
  --color-gray-800: #081628;
  --color-gray-900: #050f1a;
  --color-dust-grey: #d7d3d3;

  /* Semantic */
  --color-text: var(--color-primary);
  --color-text-muted: var(--color-gray-500);
  --color-text-inverse: var(--color-white);
  --color-bg: var(--color-white);
  --color-bg-alt: var(--color-primary-light);
  --color-border: var(--color-gray-200);
  --color-focus: var(--color-accent);
  --color-error: #c62828;
  --color-success: #2e7d32;

  /* Typography — Plus Jakarta Sans + Inter (Figma) */
  --font-display: "Plus Jakarta Sans", "Helvetica Neue", sans-serif;
  --font-body: "Plus Jakarta Sans", "Helvetica Neue", sans-serif;
  --font-ui: "Inter", "Helvetica Neue", sans-serif;
  --font-mono: "SF Mono", "Consolas", monospace;

  --fs-xs: 0.75rem;    /* 12px */
  --fs-sm: 0.875rem;   /* 14px */
  --fs-base: 1rem;     /* 16px */
  --fs-md: 1.125rem;   /* 18px */
  --fs-lg: 1.25rem;    /* 20px */
  --fs-xl: 1.5rem;     /* 24px */
  --fs-2xl: 2rem;      /* 32px */
  --fs-3xl: 2.5rem;    /* 40px */
  --fs-4xl: 3rem;      /* 48px */
  --fs-5xl: 3.5rem;    /* 56px */

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.04em;

  /* Spacing scale (4px base) */
  --space-0: 0;
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-7: 2rem;     /* 32px */
  --space-8: 2.5rem;   /* 40px */
  --space-9: 3rem;     /* 48px */
  --space-10: 4rem;    /* 64px */
  --space-11: 5rem;    /* 80px */
  --space-12: 6rem;    /* 96px */

  /* Layout */
  --container-max: 75rem;      /* 1200px */
  --container-wide: 90rem;     /* 1440px */
  --container-narrow: 45rem;   /* 720px */
  --content-max: 84rem;        /* 1344px — Figma content width */
  --content-gutter: 3.125rem;  /* 50px */
  --gutter: var(--space-6);
  --header-height: 4.5rem;
  --section-y: var(--space-10);

  /* Borders & radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --border-width: 1px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgb(15 20 24 / 0.06);
  --shadow-md: 0 4px 12px rgb(15 20 24 / 0.08);
  --shadow-lg: 0 12px 32px rgb(15 20 24 / 0.12);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* --------------------------------------------------------------------------
   2. Font Faces
   Place font files in /assets/fonts and uncomment / update paths.
   -------------------------------------------------------------------------- */

/*
@font-face {
  font-family: "AviPair Display";
  src: url("../assets/fonts/avipair-display.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AviPair Sans";
  src: url("../assets/fonts/avipair-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
*/

/* --------------------------------------------------------------------------
   3. Reset / Base
   -------------------------------------------------------------------------- */

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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  min-height: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

img {
  border-style: none;
}

svg {
  fill: currentColor;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-secondary);
}

.h1,
h1 {
  font-size: var(--fs-4xl);
}

.h2,
h2 {
  font-size: var(--fs-3xl);
}

.h3,
h3 {
  font-size: var(--fs-2xl);
}

.h4,
h4 {
  font-size: var(--fs-xl);
}

.h5,
h5 {
  font-size: var(--fs-lg);
}

.h6,
h6 {
  font-size: var(--fs-md);
}

.lead {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.text-sm {
  font-size: var(--fs-sm);
}

.text-xs {
  font-size: var(--fs-xs);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-inverse {
  color: var(--color-text-inverse);
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-semibold {
  font-weight: var(--fw-semibold);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page__main {
  flex: 1 0 auto;
}

.page__footer {
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--full {
  max-width: none;
}

/* Shared content containment — matches hero / Figma 1440 artboard */
.content-wrap,
.mission__inner,
.events__inner,
.events__viewport,
.product-preview__inner,
.how__inner,
.causes__inner,
.sponsor__inner,
.testimonial__inner,
.cta__inner,
.blog__inner,
.team__inner,
.site-footer__inner,
.video__track {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--content-gutter);
  box-sizing: border-box;
}

.video__copy {
  width: 100%;
  max-width: min(42rem, var(--content-max));
  margin-inline: auto;
  padding-inline: var(--content-gutter);
  box-sizing: border-box;
}

.section {
  padding-block: var(--section-y);
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.section__title {
  font-size: var(--fs-3xl);
}

.section__subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 40rem;
}

/* Flex helpers */
.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-start {
  align-items: flex-start;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.gap-7 { gap: var(--space-7); }
.gap-8 { gap: var(--space-8); }

/* Grid helpers */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

/* --------------------------------------------------------------------------
   6. Shared Components (primitives)
   -------------------------------------------------------------------------- */

/* Skip link */
.skip-link {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: var(--z-toast);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-md);
  transform: translateY(-150%);
  transition: transform var(--duration-base) var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 2.75rem;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-text-inverse);
}

.btn--secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-inverse);
}

.btn--secondary:hover {
  background-color: var(--color-gray-800);
  color: var(--color-text-inverse);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-primary);
}

.btn--ghost:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.btn--sm {
  min-height: 2.25rem;
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
}

.btn--lg {
  min-height: 3.25rem;
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-md);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Links */
.link {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

.link--muted {
  color: var(--color-text-muted);
  text-decoration: none;
}

.link--muted:hover {
  color: var(--color-primary);
}

/* Forms */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-700);
}

.form__hint {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.form__error {
  font-size: var(--fs-xs);
  color: var(--color-error);
}

.form__control {
  width: 100%;
  min-height: 2.75rem;
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-white);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.form__control::placeholder {
  color: var(--color-gray-400);
}

.form__control:hover {
  border-color: var(--color-gray-300);
}

.form__control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
  outline: none;
}

.form__control[aria-invalid="true"] {
  border-color: var(--color-error);
}

textarea.form__control {
  min-height: 8rem;
  resize: vertical;
}

/* Media */
.media {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--lg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Divider */
.divider {
  width: 100%;
  height: var(--border-width);
  border: 0;
  background-color: var(--color-border);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  border-radius: var(--radius-sm);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: var(--fw-medium);
}

.btn--outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn--light {
  background-color: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-ui);
  font-weight: var(--fw-medium);
  padding-left: var(--space-6);
  padding-right: var(--space-3);
}

.btn--light:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.btn--icon {
  gap: var(--space-3);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.btn__icon img {
  width: 0.625rem;
  height: 0.625rem;
}

/* Label / pill badge */
.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
  color: var(--color-primary);
  border: 0.6px solid var(--color-label-border);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.label--light {
  color: var(--color-white);
  background-color: rgb(255 255 255 / 0.16);
  border-color: var(--color-label-border);
}

.label__dot {
  width: 0.375rem;
  height: 0.375rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Header / Nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--color-bg);
  border-bottom: var(--border-width) solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: var(--header-height);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  text-decoration: none;
  letter-spacing: var(--ls-tight);
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--color-primary);
}

.site-logo__img {
  width: auto;
  height: 3.25rem;
  max-width: 11.25rem;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav--pill {
  background-color: var(--color-white);
  padding: var(--space-4) var(--space-7);
  border-radius: var(--radius-md);
}

.nav--pill .nav__list {
  gap: var(--space-10);
}

.nav--pill .nav__link {
  font-family: var(--font-ui);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-gray-500);
  text-decoration: none;
}

.nav--pill .nav__link:hover {
  color: var(--color-primary);
}

.nav--pill .nav__link.is-active,
.nav--pill .nav__link[aria-current="page"] {
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav__link {
  color: var(--color-text);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active,
.nav__link[aria-current="page"] {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--color-secondary);
  border-radius: var(--radius-md);
}

.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: currentColor;
  border-radius: var(--radius-full);
}

.nav-toggle:hover {
  background-color: var(--color-gray-100);
}

.nav-toggle--light {
  color: var(--color-white);
}

.nav-toggle--light:hover {
  background-color: rgb(255 255 255 / 0.12);
}

/* --------------------------------------------------------------------------
   7b. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  min-height: 48rem;
  padding: 1.5rem var(--content-gutter) 5.5rem;
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 60% center;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(
    118deg,
    rgb(8 22 40 / 0.82) 0%,
    rgb(8 22 40 / 0.5) 52%,
    rgb(8 22 40 / 0.16) 100%
  );
}

.site-header--overlay {
  position: relative;
  z-index: 2;
  top: auto;
  width: 100%;
  background-color: transparent;
  border-bottom: none;
}

.site-header--overlay .site-header__inner {
  width: 100%;
  min-height: auto;
  padding: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  max-width: 58rem;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
}

.hero__headings {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.hero__title {
  margin: 0;
  max-width: 46rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: var(--fw-semibold);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-white);
  text-wrap: balance;
}

.hero__text {
  margin: 0;
  max-width: 38rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-white);
}

.hero-access {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  width: 100%;
  overflow: hidden;
  background-color: rgb(8 22 40 / 0.54);
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 1.25rem;
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 0.18);
  backdrop-filter: blur(12px);
}

.hero-access__path {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
  padding: 1.5rem;
}

.hero-access__path--pilot {
  border-left: 1px solid rgb(255 255 255 / 0.18);
}

.hero-access__label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: rgb(255 255 255 / 0.72);
  text-transform: uppercase;
}

.hero-access__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  color: var(--color-white);
}

.hero-access__text {
  margin: 0;
  max-width: 29rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: rgb(255 255 255 / 0.76);
}

.hero-access__web-btn {
  margin-top: auto;
}

.store-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
}

.store-badge img {
  display: block;
  width: 7.5rem;
  height: auto;
}

.store-badge--google img {
  width: 8.4375rem;
}

.store-badge.is-pending {
  opacity: 0.82;
  filter: saturate(0.85);
}

.store-badges__note {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  line-height: 1.4;
  color: rgb(255 255 255 / 0.58);
}

/* --------------------------------------------------------------------------
   7c. Mission / About
   -------------------------------------------------------------------------- */

.mission {
  width: 100%;
  background-color: var(--color-white);
  padding-block: 5rem;
  padding-inline: 0;
}

.mission__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.mission__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3rem;
  width: 100%;
}

.mission__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
}

.mission__title {
  margin: 0;
  flex: 1.67 1 0;
  min-width: 0;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-primary);
}

.mission__aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  gap: 2rem;
  flex: 1 1 0;
  min-width: 0;
  max-width: 31rem;
  width: 100%;
}

.mission__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

.stats__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  flex: 1 1 calc(50% - 0.625rem);
  min-width: 0;
}

.stat__number {
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

.stat__value {
  font-size: clamp(2.25rem, 4vw, 3.375rem);
  letter-spacing: -0.04em;
}

.stat__suffix {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
  padding-bottom: 0.15em;
}

.stat__label {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

.mission__figure {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.mission__image {
  display: block;
  width: 100%;
  height: 20.9375rem;
  object-fit: cover;
  object-position: center 58%;
}

.values {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  flex: 1 1 0;
  min-width: 0;
}

.value__index {
  flex-shrink: 0;
  width: 2.25rem;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-primary);
}

.value__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  flex: 1 1 0;
  min-width: 0;
}

.value__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-primary);
}

.value__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

/* --------------------------------------------------------------------------
   8. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-block: 5rem 2.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.7fr) minmax(0, 0.9fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 3rem 2.5rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 20rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
}

.site-footer__logo img {
  width: auto;
  height: 3.625rem;
  max-width: 12.5rem;
  display: block;
  object-fit: contain;
}

.site-footer__tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: rgb(255 255 255 / 0.72);
}

.social-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-list__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgb(255 255 255 / 0.35);
  border-radius: var(--radius-full);
  color: var(--color-white);
  text-decoration: none;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.social-list__link img {
  display: block;
}

.social-list__link:hover {
  background-color: rgb(255 255 255 / 0.1);
  border-color: var(--color-white);
}

.site-footer__heading {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  color: var(--color-white);
}

.site-footer__heading--lg {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  max-width: 14rem;
  line-height: 1.3;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links a {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: rgb(255 255 255 / 0.72);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.site-footer__links a:hover {
  color: var(--color-white);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: rgb(255 255 255 / 0.72);
}

.contact-list__icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  object-fit: contain;
}

.contact-list__item a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.contact-list__item a:hover {
  color: var(--color-white);
}

.site-footer__newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.newsletter {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
}

.newsletter__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: var(--radius-md);
  background-color: rgb(255 255 255 / 0.08);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-white);
}

.newsletter__input::placeholder {
  color: rgb(255 255 255 / 0.5);
}

.newsletter__input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.newsletter__btn {
  flex-shrink: 0;
  height: 3rem;
  padding-inline: 1.25rem;
  border-radius: var(--radius-md);
}

.site-footer__hint {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: rgb(255 255 255 / 0.55);
}

.site-footer__bottom {
  margin: 3rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: rgb(255 255 255 / 0.55);
}

/* --------------------------------------------------------------------------
   9. Accessibility & Utility
   -------------------------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus,
.sr-only-focusable:focus-within {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

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

.is-invisible {
  visibility: hidden;
}

/* --------------------------------------------------------------------------
   10. Events (Upcoming Charity Events)
   -------------------------------------------------------------------------- */

.events {
  width: 100%;
  background-color: var(--color-white);
  padding-block: 5rem 4.5rem;
  overflow: hidden;
}

.events__inner--controls {
  margin-top: 2.5rem;
}

.events__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  margin-bottom: 3rem;
}

.events__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.events__viewport {
  overflow: hidden;
}

.events__list {
  display: flex;
  align-items: stretch;
  gap: 1.875rem;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform var(--duration-slow) var(--ease-out);
  will-change: transform;
}

.event-card {
  flex: 0 0 25.4375rem;
  max-width: 25.4375rem;
}

.event-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
}

.event-card__image {
  display: block;
  width: 100%;
  height: 15rem;
  margin-bottom: 0.25rem;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

.event-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.event-card__details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  min-width: 0;
}

.event-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

.event-card__icon {
  width: 1.125rem;
  height: 1.25rem;
  flex-shrink: 0;
  object-fit: contain;
}

.event-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-primary);
  background-color: var(--color-gray-100);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.event-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  color: var(--color-primary);
}

.event-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.event-card__title a:hover {
  color: var(--color-accent);
}

.event-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

.events__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination__dot {
  display: block;
  width: 1.5rem;
  height: 0.375rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-full);
  background-color: var(--color-dust-grey);
  cursor: pointer;
  transition:
    width var(--duration-base) var(--ease-out),
    background-color var(--duration-base) var(--ease-out);
}

.pagination__dot.is-active {
  width: 3rem;
  background-color: var(--color-accent);
}

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

.slider-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  color: var(--color-primary);
  cursor: pointer;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.slider-nav__btn img {
  width: 0.6875rem;
  height: 0.625rem;
  display: block;
}

.slider-nav__btn:hover {
  background-color: var(--color-gray-50);
}

.slider-nav__btn:active {
  transform: scale(0.96);
}

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

.slider-nav__btn--next {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.slider-nav__btn--next:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.slider-nav__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* --------------------------------------------------------------------------
   11. Product Preview
   -------------------------------------------------------------------------- */

.product-preview {
  width: 100%;
  padding-block: 5.5rem;
  background:
    radial-gradient(circle at 85% 12%, rgb(0 74 173 / 0.08), transparent 25rem),
    var(--color-primary-light);
}

.product-preview__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.product-preview__heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.product-preview__title {
  max-width: 44rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--fw-semibold);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-primary);
}

.product-preview__intro {
  flex: 0 1 28rem;
  max-width: 28rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--color-gray-500);
  text-align: right;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.7fr);
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid rgb(8 22 40 / 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 1.5rem 4rem rgb(8 22 40 / 0.12);
}

.product-showcase__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 20% 0%, rgb(255 255 255 / 0.12), transparent 18rem),
    var(--color-primary);
}

.product-tab {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: start;
  gap: 0.875rem;
  width: 100%;
  padding: 1.125rem;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 1rem;
  background-color: rgb(255 255 255 / 0.055);
  color: rgb(255 255 255 / 0.76);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.product-tab:hover {
  color: var(--color-white);
  background-color: rgb(255 255 255 / 0.1);
  transform: translateX(0.2rem);
}

.product-tab.is-active {
  color: var(--color-primary);
  background-color: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 0 0.75rem 1.75rem rgb(0 0 0 / 0.18);
}

.product-tab:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.product-tab__number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid currentColor;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  opacity: 0.7;
}

.product-tab__copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-tab__copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  line-height: 1.35;
}

.product-tab__copy span {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 1.45;
  opacity: 0.78;
}

.product-showcase__stage {
  min-width: 0;
  padding: 1.25rem;
  background-color: #eef2f6;
}

.product-window {
  overflow: hidden;
  min-height: 100%;
  background-color: var(--color-white);
  border: 1px solid rgb(8 22 40 / 0.1);
  border-radius: 1rem;
  box-shadow: 0 0.75rem 2rem rgb(8 22 40 / 0.08);
}

.product-window__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
}

.product-window__dots {
  position: absolute;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-window__dots i {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  background-color: var(--color-gray-200);
  border-radius: 50%;
}

.product-window__dots i:first-child {
  background-color: #ff7f6e;
}

.product-window__dots i:nth-child(2) {
  background-color: #ffc34d;
}

.product-window__dots i:last-child {
  background-color: #6bd49b;
}

.product-window__address {
  padding: 0.3rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  background-color: var(--color-gray-50);
  border-radius: var(--radius-full);
}

.product-panel[hidden] {
  display: none;
}

.product-panel__media {
  display: block;
  width: 100%;
  height: 28rem;
  object-fit: contain;
  object-position: top center;
  background-color: #f4f6f8;
}

video.product-panel__media {
  object-position: center;
  background-color: #071527;
}

.product-panel__caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.4rem;
  padding: 1.5rem 1.75rem 1.75rem;
  border-top: 1px solid var(--color-gray-200);
}

.product-panel__eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.product-panel__caption h3,
.pilot-preview__header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  color: var(--color-primary);
}

.product-panel__caption p {
  max-width: 46rem;
  margin: 0.2rem 0 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--color-gray-500);
}

.pilot-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 28rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 90% 0%, rgb(0 74 173 / 0.14), transparent 20rem),
    #f4f7fa;
}

.pilot-preview__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.pilot-preview__header > div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pilot-preview__status {
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-full);
}

.pilot-preview__progress {
  width: 100%;
  height: 0.5rem;
  margin-block: 1.5rem 1.75rem;
  overflow: hidden;
  background-color: var(--color-gray-200);
  border-radius: var(--radius-full);
}

.pilot-preview__progress span {
  display: block;
  width: 75%;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: inherit;
}

.pilot-preview__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pilot-preview__steps li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  padding: 1.1rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.875rem;
}

.pilot-preview__steps li > span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background-color: var(--color-gray-100);
  border-radius: 50%;
}

.pilot-preview__steps li.is-complete > span {
  color: var(--color-white);
  background-color: var(--color-accent);
}

.pilot-preview__steps li > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pilot-preview__steps strong {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  line-height: 1.35;
  color: var(--color-primary);
}

.pilot-preview__steps small {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--color-gray-500);
}

.product-preview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-preview__footer p {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   12. Video Introduction
   -------------------------------------------------------------------------- */

.video {
  width: 100%;
  background-color: var(--color-white);
  padding-block: 5rem;
  overflow: hidden;
}

.video__track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr) minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.video__side {
  display: block;
  width: 100%;
  height: 25.6875rem;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

.video__side--left {
  object-position: 65% center;
}

.video__side--right {
  object-position: 35% center;
}

.video__feature {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}

.video__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.video__image {
  display: block;
  width: 100%;
  height: 30.3125rem;
  object-fit: cover;
  object-position: center;
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  box-shadow: 0 8px 24px rgb(8 22 40 / 0.28);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.video__play img {
  display: block;
  width: 1.0625rem;
  height: 1.25rem;
  margin-left: 0.15rem;
}

.video__play:hover {
  background-color: var(--color-primary-dark);
  transform: translate(-50%, -50%) scale(1.05);
}

.video__play:active {
  transform: translate(-50%, -50%) scale(0.97);
}

.video__play:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

.video__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  text-align: center;
}

.video__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.video__text {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

/* --------------------------------------------------------------------------
   12. How It Works
   -------------------------------------------------------------------------- */

.how {
  width: 100%;
  background-color: var(--color-white);
  padding-block: 5rem;
}

.how__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.how__heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.how__title {
  margin: 0;
  flex: 1 1 auto;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.how__subtitle {
  margin: 0;
  flex: 0 1 18rem;
  max-width: 18rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
  text-align: right;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.steps::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  z-index: 0;
  border-top: 1.5px dashed var(--color-gray-200);
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  background-color: var(--color-gray-50);
  border-radius: var(--radius-full);
}

.step__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  color: var(--color-primary);
}

.step__text {
  margin: 0;
  max-width: 22rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

/* --------------------------------------------------------------------------
   13. Social Issues / Causes
   -------------------------------------------------------------------------- */

.causes {
  width: 100%;
  background-color: var(--color-primary-light);
  padding-block: 5rem;
}

.causes__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.causes__intro {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.causes__intro-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 34rem;
}

.causes__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.causes__text {
  margin: 0;
  max-width: 30rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
  text-align: right;
}

.causes__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cause-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 100%;
  padding: 1.5rem 1.75rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgb(8 22 40 / 0.04);
}

.cause-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  color: var(--color-primary);
}

.cause-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

/* --------------------------------------------------------------------------
   14. Sponsorship
   -------------------------------------------------------------------------- */

.sponsor {
  width: 100%;
  background-color: var(--color-primary-light);
  padding-block: 5rem;
  scroll-margin-top: 1rem;
}

.sponsor__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: 4rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 8% 0%, rgb(0 74 173 / 0.28), transparent 32rem),
    var(--color-primary);
  color: var(--color-white);
}

.sponsor__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.sponsor__eyebrow,
.sponsor__scholarship-kicker {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.sponsor__eyebrow {
  margin-bottom: 1.25rem;
  color: rgb(255 255 255 / 0.7);
}

.sponsor__title {
  max-width: 36rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.sponsor__text {
  max-width: 38rem;
  margin: 1.25rem 0 2rem;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.65;
  color: rgb(255 255 255 / 0.78);
}

.sponsor__btn {
  min-width: 13rem;
  justify-content: space-between;
}

.sponsor__scholarship {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 1.25rem;
  background-color: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(0.75rem);
}

.sponsor__partner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.sponsor__partner-mark {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  padding: 0.5rem;
  border-radius: 1rem;
  background-color: var(--color-white);
}

.sponsor__partner-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor__partner-copy {
  min-width: 0;
}

.sponsor__scholarship-kicker {
  display: block;
  margin-bottom: 0.375rem;
  color: rgb(255 255 255 / 0.58);
}

.sponsor__partner-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  color: var(--color-white);
}

.sponsor__scholarship-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.sponsor__scholarship-text {
  margin: 1rem 0 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: rgb(255 255 255 / 0.74);
}

/* --------------------------------------------------------------------------
   15. Testimonial
   -------------------------------------------------------------------------- */

.testimonial {
  width: 100%;
  background-color: var(--color-white);
  padding-block: 5rem;
}

.testimonial__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.testimonial__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.testimonial__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--color-label-border);
  border-radius: var(--radius-full);
  background-color: transparent;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  cursor: pointer;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

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

.testimonial__tab.is-active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

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

.testimonial__panel {
  display: grid;
  grid-template-columns: minmax(16rem, 26.25rem) minmax(0, 1fr);
  align-items: stretch;
  gap: 3rem;
}

.testimonial__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 26.25rem;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

.testimonial__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 0;
  padding-block: 0.5rem;
}

.testimonial__quote {
  margin: 0;
}

.testimonial__message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.testimonial__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-primary);
}

.testimonial__stat {
  max-width: 42rem;
  margin: 0;
  padding: 0.875rem 1.125rem;
  border-left: 0.25rem solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background-color: var(--color-primary-light);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: 1.55;
  color: var(--color-primary);
}

.testimonial__stat[hidden] {
  display: none;
}

.testimonial__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.testimonial__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  font-style: normal;
  line-height: 1.4;
  color: var(--color-primary);
}

.testimonial__role {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

/* --------------------------------------------------------------------------
   16. Call To Action
   -------------------------------------------------------------------------- */

.cta {
  width: 100%;
  background-color: var(--color-white);
  padding-block: 5rem;
}

.cta__panel {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 36rem;
  overflow: hidden;
  border-radius: 1.5rem;
  color: var(--color-white);
  isolation: isolate;
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  pointer-events: none;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(
    105deg,
    rgb(8 22 40 / 0.82) 0%,
    rgb(8 22 40 / 0.55) 42%,
    rgb(8 22 40 / 0.2) 72%,
    rgb(8 22 40 / 0.08) 100%
  );
}

.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
  padding: 3.5rem;
}

.cta__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 34rem;
}

.cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.cta__text {
  margin: 0;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: rgb(255 255 255 / 0.88);
}

.cta__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   16. Blog
   -------------------------------------------------------------------------- */

.blog {
  width: 100%;
  background-color: var(--color-white);
  padding-block: 5rem;
}

.blog__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.blog__heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.blog__title {
  margin: 0;
  flex: 1 1 auto;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.blog__subtitle {
  margin: 0;
  flex: 0 1 22rem;
  max-width: 22rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
  text-align: right;
}

.blog__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 2.5rem;
}

.blog-featured {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.blog-featured__image {
  display: block;
  width: 100%;
  height: 26.4375rem;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

.blog-featured__tag,
.blog-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-primary);
  background-color: var(--color-gray-100);
  border-radius: var(--radius-sm);
}

.blog-featured__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  color: var(--color-primary);
}

.blog-featured__title a,
.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.blog-featured__title a:hover,
.blog-card__title a:hover {
  color: var(--color-accent);
}

.blog-featured__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

.blog-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  margin-top: auto;
  padding-top: 0.5rem;
}

.blog-featured__meta,
.blog-card__meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

.blog-featured__dot {
  width: 0.25rem;
  height: 0.25rem;
  flex-shrink: 0;
}

.blog-featured__btn {
  flex-shrink: 0;
  padding-inline: 1.5rem;
  border-radius: var(--radius-md);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-card {
  display: grid;
  grid-template-columns: 11.5rem minmax(0, 1fr);
  align-items: stretch;
  gap: 1.25rem;
  padding: 1rem;
  background-color: var(--color-gray-50);
  border-radius: 1rem;
}

.blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 9.875rem;
  object-fit: cover;
  object-position: center;
  border-radius: 0.75rem;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
  padding-block: 0.25rem;
}

.blog-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  color: var(--color-primary);
}

.blog-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: auto;
  padding-top: 0.5rem;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.blog-card__link img {
  width: 0.75rem;
  height: 0.75rem;
  display: block;
}

.blog-card__link:hover {
  color: var(--color-accent);
}

.blog-card__meta img {
  width: 0.25rem;
  height: 0.25rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   17. Meet the Team
   -------------------------------------------------------------------------- */

.team {
  width: 100%;
  padding-block: 5rem;
  background-color: var(--color-gray-50);
}

.team__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.team__heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.team__title {
  flex: 1 1 auto;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.team__subtitle {
  flex: 0 1 27rem;
  max-width: 27rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
  text-align: right;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
}

.team-card__portrait {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.08), transparent 55%),
    var(--color-primary);
}

.team-card__portrait--cto {
  background:
    linear-gradient(215deg, rgb(255 255 255 / 0.1), transparent 58%),
    var(--color-primary);
}

.team-card__portrait::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgb(255 255 255 / 0.04),
    0 0 0 6rem rgb(255 255 255 / 0.025);
}

.team-card__placeholder {
  position: relative;
  z-index: 1;
  padding: 0.625rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-white);
  background-color: rgb(0 0 0 / 0.2);
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.team-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 1.75rem;
}

.team-card__role {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.team-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  color: var(--color-primary);
}

.team-card__bio {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-gray-500);
}

.w-full {
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-6 { margin-bottom: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-8 { margin-bottom: var(--space-8); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.py-4 { padding-block: var(--space-4); }
.px-4 { padding-inline: var(--space-4); }
.py-6 { padding-block: var(--space-6); }
.px-6 { padding-inline: var(--space-6); }

/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: var(--z-toast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition:
    opacity var(--duration-base) var(--ease-out),
    visibility var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.back-to-top:active {
  transform: translateY(1px);
}

.back-to-top__icon {
  display: block;
  flex-shrink: 0;
}
