/* CSS Variables */
:root {
  --green-light: #e1f8f5;
  --green-soft: #c9d8d2;
  --green-primary: #76a89f;
  --green-bright: #5ec0ad;
  --black-primary: #0d1821;
  --black-secondary: #373f47;
  --white: #ffffff;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: halyard-display, sans-serif;
  background-color: var(--green-light);
  color: var(--black-primary);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.page-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.page-video::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 300px;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    var(--green-light) 100%
  );
}

.page-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Background Elements */
.background-decoration {
  position: absolute;
  top: -479.26px;
  left: 50%;
  transform: translateX(-50%);
  width: 3858.093px;
  height: 2148.124px;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

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

.background-svg {
  position: absolute;
  top: 594.8px;
  left: 2px;
  width: 1440px;
  height: 1074.062px;
  pointer-events: none;
  z-index: 0;
}

.background-svg img {
  width: 100%;
  height: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 70px;
  max-width: 1440px;
  margin: 0 auto;
  transition: padding 0.3s ease;
}

.header--scrolled {
  background-color: rgba(225, 248, 245, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header--scrolled .header-inner {
  padding-top: 16px;
  padding-bottom: 16px;
}

.header--scrolled .logo-aethl {
  max-width: 130px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44.432px;
  width: 199px;
  transition:
    width 0.3s ease,
    height 0.3s ease;
}

.logo-aethl {
  max-width: 200px;
  height: auto;
  transition: max-width 0.3s ease;
}

.logo-divider {
  width: 49.235px;
  height: 27.62px;
}

.logo-bio {
  width: 31.427px;
  height: 16.449px;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 1.4375rem; /* 23px */
  line-height: 60px;
  color: var(--black-secondary);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--green-bright);
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding-top: 105px;
  overflow: visible;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
  width: 100%;
  max-width: 1178px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 6.25rem; /* 100px */
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  text-wrap: balance;
}

.hero-title span {
  display: inline-flex;
}

.hero-title-line1 {
  color: #373f47;
}

.hero-title-line2 {
  background: linear-gradient(196deg, #32696d 17.61%, #9fd8ce 135.88%);
  background: linear-gradient(
    196deg,
    color(display-p3 0.2502 0.4069 0.4236) 17.61%,
    color(display-p3 0.6711 0.8399 0.8072) 135.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.5625rem; /* 25px */
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
  color: var(--black-secondary);
  letter-spacing: 0.25px;
  width: 100%;
  max-width: 860px;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  align-items: center;
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  font-family:
    'Halyard Display',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;

  gap: 8px;
  padding: 17px 20px 19px;
  line-height: 1;
  border-radius: 16px;
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  width: fit-content;
  text-decoration: none;
  appearance: none;
}

.btn-primary {
  background: linear-gradient(
    175.741deg,
    rgb(55, 149, 131) 31.486%,
    rgb(79, 212, 187) 95.052%
  );
  border-color: #dafff8;
  color: var(--white);
  box-shadow: 2px 2px 15px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 2.16px;
  left: 1.27px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 14px;
  background: radial-gradient(
    ellipse at 27.293px 31.176px,
    rgba(255, 255, 255, 0.1) 5%,
    rgba(255, 255, 255, 0) 47.122%,
    rgba(215, 248, 251, 0.25) 100%
  );
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 2px 4px 20px 7px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.09);
  border-color: #95d9d7;
  color: var(--black-primary);
  box-shadow: 0px 2px 15px 5px rgba(255, 255, 255, 0.23);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-icon {
  width: 24px;
  height: 24px;
}

/* Statistics Section */
.statistics-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.statistics-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 50px;
  border-radius: 500px;
  width: 100%;
  max-width: 1362px;
  min-height: 532px;
  height: auto;
  background: linear-gradient(
    -17.9167deg,
    rgb(204, 255, 248) 12.071%,
    rgb(239, 255, 253) 40.242%
  );
  box-shadow: 0px 4px 100px 0px rgba(94, 192, 173, 0.25);
  overflow: visible;
}

.statistics-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 674px;
  text-align: center;
}

.section-title {
  font-size: 2.4375rem; /* 39px */
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.39px;
  color: black;
  padding: 10px;
}

.section-description {
  font-size: 1.375rem; /* 22px */
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.22px;
  color: black;
  text-align: center;
}

.statistics-grid {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  width: 65rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: calc(100% / 3);
}

.stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 150px;
  background-color: var(--black-primary);
  border-radius: 26px;
  box-shadow:
    0px 0px 20px 0px #63d4be,
    0px 0px 20px 0px var(--green-soft);
  padding: 10px;
}

.stat-value p {
  font-size: 3.125rem; /* 50px */
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
}

.stat-label {
  font-size: 1.625rem; /* 26px */
  font-weight: 300;
  line-height: 1.1;
  color: var(--black-secondary);
  text-align: center;
}

/* Problem Sections */
.problem-sections {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.problem-row {
  display: flex;
  gap: 13px;
}

.problem-row-reverse {
  flex-direction: row-reverse;
}

.problem-image {
  width: 100%;
  max-width: 443px;
  aspect-ratio: 443 / 364;
  border-radius: 25px;
  overflow: hidden;
}

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

.problem-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
  max-width: 727px;
  min-height: 364px;
  height: auto;
  padding: 100px 50px;
  border-radius: 25px;
  background:
    linear-gradient(
      102.558deg,
      rgba(55, 63, 71, 0.08) 17.025%,
      rgb(55, 63, 71) 94.373%
    ),
    linear-gradient(90deg, rgba(55, 63, 71, 0.7) 0%, rgba(55, 63, 71, 0.7) 100%);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.problem-row-reverse .problem-content {
  background: rgba(55, 63, 71, 0.85);
}

.problem-icon {
  width: 44px;
  height: 44px;
}

.problem-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
}

.problem-text h3 {
  font-size: 1.75rem; /* 28px */
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.28px;
}

.problem-text p {
  font-size: 1.25rem; /* 20px */
  font-weight: 200;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

/* Approach Section */

.approach-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  padding: 4rem 6rem;
  border: 1px solid white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0px 0px 50px 0px rgba(94, 192, 173, 0.45);
}

.approach-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.approach-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.approach-header {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1rem; /* 16px */
  font-weight: 500;
  letter-spacing: 0.16px;
  text-align: center;
  width: fit-content;
}

.approach-header .badge {
  background-color: var(--green-light);
  color: var(--green-bright);
}

.approach-title {
  font-size: 3.125rem; /* 50px */
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--white);
}

.approach-title-bold {
  font-weight: 500;
}

.approach-description {
  font-size: 1.375rem; /* 22px */
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.22px;
  color: var(--white);
}

.approach-pillars {
  display: flex;
  gap: 30px;
  width: 100%;
  z-index: 2;
}

.pillar-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 50px;
  border-radius: 32px;
  background: linear-gradient(
    -37.3755deg,
    rgb(204, 255, 248) 12.071%,
    rgb(239, 255, 253) 40.242%
  );
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.pillar-icon {
  width: 75px;
  height: 75px;
}

.pillar-card h3 {
  font-size: 1.5625rem; /* 25px */
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.25px;
  color: var(--black-primary);
}

.pillar-card p {
  font-size: 1.375rem; /* 22px */
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.22px;
  color: var(--black-primary);
}

/* Team Section */
.team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  padding: 100px;
  border: 1px solid white;
  border-radius: 50px;
  background: linear-gradient(
    153.514deg,
    rgb(247, 240, 232) 4.2908%,
    rgb(237, 231, 224) 46.704%
  );
  box-shadow: 0px 0px 50px 0px rgba(94, 192, 173, 0.45);
  overflow: visible;
}

.team-header {
  display: flex;
  flex-direction: column;
  gap: 30px;

  width: 100%;
}

.team-header .badge {
  background-color: var(--white);
  color: var(--green-bright);
}

.team-header h2 {
  font-size: 2.4375rem; /* 39px */
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.39px;
  color: black;
}

.team-header p {
  font-size: 1.25rem; /* 20px */
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.2px;
  color: black;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

/* Person Card */
.person-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 32px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.leader-card {
  width: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease-in-out;
}

.card-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid #95d9d7;
  border-radius: 50px;
  box-shadow: 0px 2px 15px 0px rgba(255, 255, 255, 0.23);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Show toggles only on touch devices */
@media (hover: none) and (pointer: coarse) {
  .card-toggle {
    display: flex;
  }
}

.leader-default {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.leader-hover,
.advisor-hover {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
  background: rgba(241, 237, 232, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 25px;
}

.leader-hover {
  gap: 28px;
  flex: 1;
}

.leader-hover-scroll {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow: auto;
  padding-right: 6px;
}

.person-photo {
  position: relative;
  width: 275px;
  height: 275px;
  flex-shrink: 0;
  margin: 0 auto;
}

.person-photo-bg {
  position: absolute;
  inset: 0;
  border-radius: 135.576px;
  background: radial-gradient(
    circle at center,
    rgba(225, 248, 245, 1) 59.135%,
    rgba(180, 237, 227, 1) 79.808%,
    rgba(225, 248, 245, 0) 100%
  );
  padding: 58.049px;
}

.person-photo img {
  position: relative;
  width: 194.46px;
  height: 194.46px;
  margin: 40.27px;
  mix-blend-mode: darken;
}

.person-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.person-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.person-name,
.person-title {
  margin: 0;
}

.person-name {
  font-size: 1.6rem; /* 30px */
  font-weight: 500;
  line-height: normal;
  color: black;
}

.person-title {
  font-size: 1.2rem; /* 21px */
  font-weight: 400;
  line-height: 27px;
  color: var(--green-primary);
}

.person-bio {
  font-size: 1.1875rem; /* 19px */
  font-weight: 300;
  line-height: 1.45;
  color: black;
}

.person-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.person-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.4;
  color: var(--black-secondary);
}

.person-highlight-icon {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 2px;
}

.person-highlight-icon img {
  display: block;
  width: 16px;
  height: auto;
}

.leader-card .btn {
  margin-top: 0;
  align-self: flex-start;
  width: fit-content;
  justify-content: flex-start;
}

.leader-linkedin,
.advisor-linkedin {
  padding: 12px 16px;
  font-size: 1rem; /* 16px */
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .leader-default {
    transition: opacity 0.3s ease-in-out;
  }

  .leader-card:hover,
  .leader-card:focus-within {
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }

  .leader-card:hover .leader-default,
  .leader-card:focus-within .leader-default {
    opacity: 0.25;
  }

  .leader-card:hover .leader-hover,
  .leader-card:focus-within .leader-hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Advisors */
.advisors-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-top: 12px;
}

.advisors-title {
  font-size: 1.875rem; /* 30px */
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.3px;
  color: black;
}

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

.advisor-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  height: 400px;
  padding: 2rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease-in-out;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  color: var(--black-primary);
  transition: opacity 0.3s ease;
}

.toggle-close {
  display: none;
}

.advisor-card.expanded .toggle-add,
.leader-card.expanded .toggle-add {
  display: none;
}

.advisor-card.expanded .toggle-close,
.leader-card.expanded .toggle-close {
  display: block;
}

.advisor-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 98.601px;
  background: radial-gradient(
    circle at center,
    rgba(241, 237, 232, 1) 59.135%,
    rgba(225, 222, 217, 1) 79.808%,
    rgba(241, 237, 232, 1) 100%
  );
  transition: opacity 0.3s ease-in-out;
}

.advisor-photo img {
  width: 150px;
  height: 150px;
}

.advisor-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}

.advisor-info h4 {
  font-size: 1.6rem; /* match person-name */
  font-weight: 500;
  line-height: normal;
  color: black;
  margin: 0;
}

.advisor-info p {
  font-size: 1.2rem; /* match person-title */
  font-weight: 400;
  line-height: 27px;
  color: var(--green-primary);
  margin: 0;
}

.advisor-default {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.advisor-hover {
  gap: 2rem;
}

/* Hover states only on hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  .advisor-card:hover {
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }

  .advisor-card:hover .advisor-info {
    opacity: 0;
    pointer-events: none;
  }

  .advisor-card:hover .advisor-photo {
    opacity: 0.35;
  }

  .advisor-card:hover .advisor-hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Expanded state for touch devices */
.advisor-card.expanded {
  background: rgba(255, 255, 255, 0.5);
}

.leader-card.expanded {
  background: rgba(255, 255, 255, 0.5);
}

.advisor-card.expanded .advisor-info {
  opacity: 0;
  pointer-events: none;
}

.advisor-card.expanded .advisor-photo {
  opacity: 0.35;
}

.leader-card.expanded .leader-default {
  opacity: 0.25;
}

.advisor-card.expanded .advisor-hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.leader-card.expanded .leader-hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.advisor-bio {
  font-size: 1.1875rem; /* 19px */
  font-weight: 300;
  line-height: 1.45;
  color: black;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -line-clamp: 6;
  overflow-y: auto;
}

@media (max-width: 1200px) {
  .leadership-grid,
  .advisors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* News Section */
.news-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 50px 100px;
  width: 100%;
  max-width: 1366px;
}

.news-section .badge {
  background-color: var(--white);
  color: var(--green-bright);
}

.news-carousel {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.carousel-buttons-mobile {
  display: none;
}

.carousel-btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 42px;
  background-color: var(--black-primary);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 50px;
  border-radius: 25px;
  background: white;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 604px;
}

.news-card h3 {
  font-size: 1.5625rem; /* 25px */
  font-weight: 500;
  line-height: 1.25;
  color: black;
}

.news-card p {
  font-size: 1.25rem; /* 20px */
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: 0.2px;
  color: black;
}

.news-card .btn {
  padding: 9px 16px 12px 16px;
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1;
}

/* Contact Section */
.contact-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.25rem;
  padding: 0 50px 80px;
  width: 100%;
}

.contact-image {
  width: 100%;
  max-width: 515px;
  min-height: 470px;
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
  max-width: 693px;
}

.contact-content .badge {
  background-color: var(--white);
  color: var(--green-bright);
}

.contact-content h2 {
  font-size: 3.125rem; /* 50px */
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  color: black;
}

.contact-content p {
  font-size: 1.375rem; /* 22px */
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.22px;
  color: black;
  width: 100%;
  max-width: 656px;
}

.contact-buttons {
  display: flex;
  gap: 30px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
}

.footer-left {
  display: flex;
  gap: 50px;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: block;
}

.social-icon img,
.social-icon svg {
  width: 100%;
  height: 100%;
}

.footer-info {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1rem; /* 16px */
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.16px;
  color: black;
}

.footer-item svg {
  width: 16px;
  height: 16px;
}

.footer-item a {
  color: black;
  text-decoration: underline;
}

.footer-right p {
  font-size: 1rem; /* 16px */
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.16px;
  color: black;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.back-to-top.visible:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

/* Video modal */
body.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 33, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
}

.video-modal-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #000;
}

.video-modal-player-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 2;
}

/* Newsletter Modal */
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.newsletter-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.newsletter-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 33, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.newsletter-modal-frame {
  position: relative;
  z-index: 1;
  width: min(600px, 100%);
}

.newsletter-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
}

.newsletter-modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 2;
}

/* Newsletter submit toast */
@keyframes mc-spin {
  to {
    transform: rotate(360deg);
  }
}

.mc-spinner {
  display: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  animation: mc-spin 0.7s linear infinite;
}

#mc_embed_signup .button.is-loading .mc-btn-text {
  display: none !important;
}

#mc_embed_signup .button.is-loading .mc-spinner {
  display: block !important;
}

#mc_embed_signup .button.is-loading {
  transform: none !important;
  box-shadow: none !important;
  cursor: wait !important;
}

.mc-toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  z-index: 500;
  background: var(--black-primary);
  color: var(--white);
  font-family: halyard-display, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  padding: 16px 28px 20px;
  border-radius: 14px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.mc-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mailchimp overrides inside modal */
#mc_embed_signup {
  background: transparent !important;
  border-radius: 20px;
  box-sizing: border-box;
  font-family: halyard-display, sans-serif !important;
  color: var(--black-primary) !important;
  padding: 36px !important;
  width: 100% !important;
}

#mc_embed_signup h2 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black-primary);
  margin-bottom: 8px;
}

#mc_embed_signup .indicates-required {
  font-size: 0.875rem;
  color: var(--black-secondary);
  margin-bottom: 24px;
}

#mc_embed_signup .mc-field-group {
  margin-bottom: 18px;
  width: 100% !important;
}

#mc_embed_signup .mc-field-group label,
#mc_embed_signup .mc-field-group strong {
  display: block;
  font-family: halyard-display, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black-secondary);
  margin-bottom: 6px;
}

#mc_embed_signup input[type='email'],
#mc_embed_signup input[type='text'] {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid var(--green-soft) !important;
  border-radius: 10px !important;
  background: var(--green-light) !important;
  font-family: halyard-display, sans-serif !important;
  font-size: 1.0625rem !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  color: var(--black-primary) !important;
  outline: none !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease !important;
  box-sizing: border-box !important;
}

#mc_embed_signup input[type='email']:focus,
#mc_embed_signup input[type='text']:focus {
  border-color: var(--green-bright) !important;
  box-shadow: 0 0 0 3px rgba(94, 192, 173, 0.18) !important;
}

#mc_embed_signup select {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid var(--green-soft) !important;
  border-radius: 10px !important;
  background: var(--green-light) !important;
  font-family: halyard-display, sans-serif !important;
  font-size: 1.0625rem !important;
  font-weight: 300 !important;
  color: var(--black-primary) !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23373f47' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}

#mc_embed_signup select:focus {
  border-color: var(--green-bright) !important;
  box-shadow: 0 0 0 3px rgba(94, 192, 173, 0.18) !important;
}

/* Radio buttons */
#mc_embed_signup .mc-field-group.input-group ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 0 !important;
  margin: 8px 0 0 !important;
}

#mc_embed_signup .mc-field-group.input-group li {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

#mc_embed_signup .mc-field-group.input-group input[type='radio'] {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  accent-color: var(--green-bright) !important;
  cursor: pointer !important;
}

#mc_embed_signup .mc-field-group.input-group label {
  font-size: 0.9375rem !important;
  font-weight: 400 !important;
  color: var(--black-secondary) !important;
  margin: 0 !important;
  cursor: pointer !important;
}

/* Error / success responses */
#mc_embed_signup .response {
  font-family: halyard-display, sans-serif !important;
  font-size: 0.9375rem !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  margin-top: 12px !important;
}

#mc_embed_signup #mce-error-response {
  background: #fff0f0 !important;
  color: #b00020 !important;
}

#mc_embed_signup #mce-success-response {
  background: var(--green-light) !important;
  color: var(--green-primary) !important;
}

/* Subscribe button — site's primary button style */
#mc_embed_signup .clear {
  margin-top: 24px !important;
}

#mc_embed_signup .button,
#mc_embed_signup input[type='submit'] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: halyard-display, sans-serif !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  padding: 15px 32px 19px !important;
  border-radius: 14px !important;
  border: 1px solid #dafff8 !important;
  background: linear-gradient(
    175.741deg,
    rgb(55, 149, 131) 31.486%,
    rgb(79, 212, 187) 95.052%
  ) !important;
  color: #ffffff !important;
  box-shadow: 2px 2px 15px 5px rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
  width: auto !important;
  height: auto !important;
  vertical-align: middle !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

#mc_embed_signup .button:hover,
#mc_embed_signup input[type='submit']:hover {
  transform: translateY(-2px) !important;
  box-shadow: 2px 4px 20px 7px rgba(0, 0, 0, 0.15) !important;
}

#mc_embed_signup .button:disabled,
#mc_embed_signup input[type='submit']:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}
