/* Reset and Base Styles */
:root {
  --color-wellness: #b49cef;
  --color-nutrition: #9bb067;
  --color-habits: #ff834a;
  --color-activity: #ff2427;
  --color-tertiary: #69a0f9;
  --color-highlight: #82d4ff;
  --color-background: #1a1b1b;
  --color-text-primary: #0f0f10;
  --color-text-secondary: #6b6b6b;
  --color-text-aux: #2c2d30;
  --color-background-2: rgba(58, 62, 62, 0.8);
  --mobile-header-height: 64px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Manrope', sans-serif;
  color: var(--color-text-primary);
  background: #ffffff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 200;
}
/* STICKY HEADER WRAPPER */
.sticky-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

/* .gradient-bg-wrapper {
  background: linear-gradient(145.137deg, rgb(190, 219, 255) 0%, rgba(233, 212, 255, 0.3) 50%, rgba(142, 197, 255, 0.35) 100%);
} */
/* PROMO BANNER */
.promo-banner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px;
  justify-content: center;
  align-items: center;
  background: #16161780;
  color: #ffffff;
  /* blur and shadow */
  backdrop-filter: blur(22px);
  box-shadow: 8px 21px 29.8px 0px #7d7d7d26;
}
.promo-banner span {
  font-weight: 700;
}

.page-container {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* Container */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

/* position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); */

/* Site Header */
.site-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  background: #000000a8;
  box-shadow: 8px 21px 29.8px 0px #7d7d7d26;
  /* background: linear-gradient(90deg, rgba(40, 44, 52, 0.95) 0%, rgba(30, 33, 39, 0.95) 100%); */
  backdrop-filter: blur(10px);
}

.site-header-main {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 8rem;
  @media (max-width: 767px) {
    justify-content: space-between;
  }
}

.site-header img {
  display: block;
  max-height: 30px;
  z-index: 1000;
}

.site-header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.site-header .nav-buttons,
.mobile-nav .nav-buttons {
  display: flex;
  gap: 4rem;
  align-items: center;
  /* background: linear-gradient(to left, rgba(187, 195, 211, 0.15), rgba(97, 101, 109, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 44px;
  backdrop-filter: blur(11.285px);
  box-shadow: 8px 21px 29.8px 0px rgba(125, 125, 125, 0.15); */
  transition: all 0.3s ease;
  /* padding: 10px 40px; */
  font-size: 16px;
}

.site-header .nav-buttons .nav-btn,
.mobile-nav .nav-btn {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.mobile-nav .nav-buttons {
  padding: 0 20px;
  margin: 8px 0;
}
.site-header .nav-buttons .nav-btn.active,
.site-header .nav-buttons .nav-btn:hover,
.mobile-nav .nav-btn:hover,
.mobile-nav .nav-btn.active {
  color: #82d4ff;
  border-color: var(--color-highlight);
}
.hamburger-menu {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}

/* lines */
.hamburger-line {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  transition:
    top 0.25s ease,
    transform 0.25s ease;
}

/* default positions */
.hamburger-line:nth-child(1) {
  top: 14px;
}

.hamburger-line:nth-child(2) {
  top: 24px;
}

/* active → X */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--mobile-header-height);
  left: 0;
  right: 0;
  /* bottom: 0; */
  background: rgba(30, 33, 39, 0.98);
  border-top: 1px solid #b4b5ba;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding: 24px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  @media (min-width: 768px) {
    display: none;
  }
}

.mobile-nav .nav-btn {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
}

/* Mobile Nav Close Button */
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-nav-close span {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.mobile-nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 767px) {
  .hamburger-menu {
    display: flex;
  }
  .site-header {
    height: var(--mobile-header-height);
    &.is-top {
      background-color: var(--color-background);
    }
  }
  .site-header .nav-buttons,
  .site-header .site-header-right {
    display: none;
  }
}

/* .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 17px 43px;
  background: linear-gradient(to left, rgba(187, 195, 211, 0.15), rgba(97, 101, 109, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 44px;
  backdrop-filter: blur(11.285px);
  box-shadow: 8px 21px 29.8px 0px rgba(125, 125, 125, 0.15);
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(to left, rgba(187, 195, 211, 0.25), rgba(97, 101, 109, 0.25));
  transform: translateY(-2px);
}

*/

/* Landing Section */
.landing {
  position: relative;
  width: 100%;
  height: 982px;
  overflow: hidden;
  background: linear-gradient(146.997deg, rgb(190, 219, 255) 0%, rgba(233, 212, 255, 0.3) 50%, rgba(142, 197, 255, 0.35) 100%);
  &.secondary-landing {
    height: 447px;
    @media (max-width: 767px) {
      min-height: 0;
      height: auto;
    }
    & .hero-content {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      @media (min-width: 768px) {
        position: absolute;
        margin: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -60%);
      }
    }
    .background-image-overlay {
      background-color: #0000008c;
    }
    &.science .background-image {
      background: url('assets/science-hero.webp') center center / cover no-repeat;
    }
    &.privacy .background-image {
      background: url('assets/privacy-hero.webp') center center / cover no-repeat;
    }
    &.features .background-image {
      background: url('assets/features-hero.webp') center center / cover no-repeat;
    }
  }
}

.background-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.05); /* lightening this, remove overlay completely? */
  width: 100%;
  height: 100%;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  background: url('assets/hero-landing.png') center center / cover no-repeat;
  width: 100%;
  height: 100%;
  box-shadow: 8px 21px 29.8px 0px rgba(125, 125, 125, 0.15);
  /* border-radius: 16px; */
}

.home-landing .background-image {
  background-image: url('assets/hero-landing.png');
}

.home-landing .hero-content {
  position: absolute;
  /* top: 50%; */
  left: 50%;
  /* transform: translate(-50%, calc(-50% + 33px)); */
  transform: translateX(-50%);
  bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  z-index: 10;
  width: 100%;
  @media (max-width: 767px) {
    bottom: 60px;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 69px;
  font-weight: 400;
  line-height: 1.25;
  color: white;
  margin: 0;
}

.gradient-text {
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(103, 161, 255, 1) 5.5%,
    rgba(141, 159, 223, 1) 11.875%,
    rgba(179, 157, 192, 1) 18.25%,
    rgba(217, 155, 160, 1) 24.625%,
    rgba(255, 153, 128, 1) 31%,
    rgba(231, 138, 174, 1) 44.5%,
    rgba(207, 123, 220, 1) 58%,
    rgba(155, 142, 238, 1) 78%,
    rgba(103, 161, 255, 1) 98%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 24px;
  line-height: 1.25;
  color: white;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 40px;
  align-items: center;
  & .btn-explore {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    & .arrow-icon {
      transition: 0.3s;
    }
    &:hover {
      & .arrow-icon {
        transform: translateY(10px);
      }
    }
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 17px 43px;
  background: linear-gradient(to left, rgba(187, 195, 211, 0.15), rgba(97, 101, 109, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 44px;
  backdrop-filter: blur(11.285px);
  box-shadow: 8px 21px 29.8px 0px rgba(125, 125, 125, 0.15);
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(to left, rgba(187, 195, 211, 0.25), rgba(97, 101, 109, 0.25));
  transform: translateY(-2px);
}

.arrow-icon {
  display: flex;
  font-size: 15px;
}

.arrow-icon.right {
  font-size: 15px;
  transform: rotate(-90deg);
}
a.arrow-link {
  color: var(--color-tertiary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  & .arrow-icon {
    transform: rotate(0);
    transition: 0.2s;
  }
  &:hover {
    & .arrow-icon {
      transform: rotate(0) translateX(5px);
    }
  }
}
/* Mission Section */
.mission-section {
  padding: 150px 0;
  /* background: linear-gradient(145.137deg, rgb(190, 219, 255) 0%, rgba(233, 212, 255, 0.3) 50%, rgba(142, 197, 255, 0.35) 100%); */
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  background: rgba(97, 101, 109, 0.15);
  border-radius: 6px;
  font-size: 16px;
  color: var(--color-text-aux);
  margin-bottom: 24px;
  &::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;

    background-image: url('/assets/OxeAILogo-new.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.section-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 20px;
}

.image-gallery {
  display: flex;
  gap: 33px;
  justify-content: center;
  align-items: flex-start;
  height: 403px;
}

.gallery-image {
  display: flex;
  flex-direction: column;
  /* width: 287.829px;
  height: 336.373px; */
  border-radius: 16px;
  border: 1px solid rgba(97, 101, 109, 0.15);
  box-shadow: 8px 21px 29.8px 0px rgba(125, 125, 125, 0.15);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gallery-image-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gallery-image img {
  display: flex;
  width: auto;
  height: 336.373px;
}

.gallery-image-2 {
  margin-top: 66px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gallery-image-3 {
  margin-top: 1px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gallery-image-4 {
  margin-top: 67px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.gallery-dots {
  display: none;
}
/* Stats Section */
.stats-section {
  display: flex;
  flex-direction: column;
  padding: 2rem 6rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.47) 0%, rgba(255, 255, 255, 0.47) 100%),
    radial-gradient(
      circle at 0% 100%,
      rgba(82, 148, 255, 1) 10%,
      rgba(125, 151, 218, 1) 19.541%,
      rgba(169, 154, 181, 1) 29.082%,
      rgba(212, 157, 143, 1) 38.623%,
      rgba(255, 160, 106, 1) 48.164%,
      rgba(218, 144, 158, 1) 60.149%,
      rgba(181, 128, 209, 1) 72.133%,
      rgba(132, 138, 232, 1) 81.057%,
      rgba(82, 148, 255, 1) 89.982%
    );
}

.stats-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  letter-spacing: -0.113rem;
}

.stat-label {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-text-aux);
  letter-spacing: -0.54px;
}

.stat-divider {
  width: 0.07rem;
  height: 5rem;
  background: linear-gradient(to bottom, #ededed, white);
  opacity: 0.7;
  align-self: center;
}

/* Feature Blocks */
.feature-blocks {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2rem;
  @media (min-width: 768px) {
    gap: 4rem;
  }
}
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  & .copy {
    & h3 {
      font-size: 24px;
      margin-bottom: 0.5rem;
    }
    & p {
      margin-bottom: 1rem;
      color: var(--color-text-secondary);
    }
    & h4 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }
  }
  & .image {
    box-shadow: 8px 21px 29.8px 0px #7d7d7d26;
    border-radius: 12px;
    border: 2px solid #ffffff;
    overflow: hidden;
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  }
  @media (min-width: 768px) {
    flex-direction: row;
    align-items: center;
    &:nth-child(even) {
      & .copy {
        order: 2;
      }
    }
    & .copy {
      flex: 1;
      & h3 {
        font-size: 40px;
      }
      & p {
        font-size: 20px;
      }
      & h4 {
        font-size: 20px;
      }
    }
    & .image {
      flex: 2;
    }
  }
}

.section-description {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 26px;
  max-width: 640px;
  margin: 0 auto 66px;
  @media (min-width: 768px) {
    font-size: 20px;
  }
}

.video-container {
  margin-bottom: 66px;
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 8px 21px 29.8px 0px #7d7d7d26;
  & .feature-video,
  & .ceo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.video-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: url('assets/insights-new.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  box-shadow: 8px 21px 29.8px 0px rgba(125, 125, 125, 0.15);
}
.video-wrap {
  position: relative;
}

.video-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.play-btn {
  position: absolute;
  width: 130px;
  @media (max-width: 767px) {
    top: 50%;
    transform: translateY(-35%);
    width: 120px;
    height: 120px;
    & svg {
      width: 100%;
      height: 100%;
    }
  }
}

.video-overlay.hidden {
  display: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 66px;
  text-align: left;
}

.feature-card {
  padding: 32px 20px;
  /* border: 1px solid #67a1ff; */
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 8px 21px 29.8px 0px #7d7d7d26;
  & .content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
  }

  & .feature-description {
    color: var(--color-text-secondary);
  }
  /* &:has(.condition) {
    border-color: var(--color-condition);
  }
  &:has(.nutrition) {
    border-color: var(--color-nutrition);
  }
  &:has(.habits) {
    border-color: var(--color-habits);
  }
  &:has(.activity) {
    border-color: var(--color-activity);
  } */
}

/* insert icons */
.feature-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px 0px #00000033;
}

.feature-icon.activity {
  background-color: #ff2427;
}

.feature-icon.nutrition {
  background-color: #9bb067;
}

.feature-icon.habits {
  background-color: #ff834a;
}

.feature-icon.condition {
  background-color: #b49cef;
}

.feature-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-text-primary);
}

.feature-description {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-aux);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 2rem;
  margin: 0 -16px;
  background: linear-gradient(0deg, #afc8e6, #afc8e6), linear-gradient(135deg, #bedbff 0%, rgba(233, 212, 255, 0.3) 50%, rgba(142, 197, 255, 0.35) 100%);
}
@media (min-width: 481px) {
  .how-it-works {
    margin: 0 -40px;
  }
}

@media (min-width: 1280px) {
  .how-it-works {
    margin: 0;
    background: linear-gradient(135deg, #bedbff 0%, rgba(233, 212, 255, 0.3) 50%, rgba(142, 197, 255, 0.35) 100%);
    border-radius: 1rem;
    border: 2px solid #ffffff90;
  }
}

.works-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

.works-description {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text-aux);
}
/* Foundations Section */
.foundations-section {
  padding: 60px 0;
  @media (min-width: 768px) {
    padding: 150px 0;
  }
  & .block {
    backdrop-filter: blur(22.57061004638672px);
    box-shadow: 8px 21px 29.8px 0px #7d7d7d26;
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }
  & .foundations-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    & h3 {
      font-size: 24px;
    }
    @media (min-width: 768px) {
      flex-direction: row;
      gap: 2rem;
      & h3 {
        font-size: 30px;
      }
    }
  }
  & .foundations-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
    & .block {
      align-items: center;
      text-align: center;
      padding: 1rem;
      flex: 1;
      gap: 0.5rem;
    }
    @media (min-width: 768px) {
      flex-direction: row;
      gap: 2rem;
      margin: 2rem 0;
    }
  }
}
/* CEO VIDEO SECTION */
.ceo-video-section {
  & h2 {
    font-size: 28px;
    margin-bottom: 2rem;
    @media (min-width: 768px) {
      font-size: 42px;
      margin-bottom: 4rem;
    }
  }
}
/* Science Section */
.science-section {
  padding: 150px 0;
}
.science-wrapper {
  backdrop-filter: blur(11.285px);
  -webkit-backdrop-filter: blur(11.285px);
  border-radius: 16px;
  box-shadow: 8px 21px 29.8px 0px rgba(125, 125, 125, 0.15);
  padding: 2rem;
}
.science-content {
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 30px;
  align-items: center;
  margin: 66px 0;
}

/* Science text alignment */
.science-text {
  text-align: left;
}

.science-heading {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.69px;
  color: var(--color-text-primary);
  margin-bottom: 30px;
}

.science-body {
  font-size: 16px;
  line-height: 33px;
  letter-spacing: -0.24px;
  color: var(--color-text-aux);
}

.science-illustration {
  width: 550px;
  height: 337px;
  background-image: url('assets/science-1.png');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
}

.quote-section {
  display: grid;
  grid-template-columns: 512px 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 66px;
}

.quote-illustration {
  width: 512px;
  height: 394px;
  background-image: url('assets/science-2.webp');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
}

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

.quote-text {
  font-size: 16px;
  line-height: 33px;
  letter-spacing: -0.24px;
  color: var(--color-text-aux);
  margin-bottom: 12px;
}

.quote-author {
  font-size: 16px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: -0.24px;
  color: var(--color-text-aux);
}

/* Security Section */
.security-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 150px 0;
  margin: 0 auto;
  gap: 56px;
}

/* Heading Section */
.heading-section {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.security-badge {
  background: rgba(97, 101, 109, 0.15);
  padding: 5px 9px;
  border-radius: 13px;
  display: inline-block;
}

.security-badge p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--color-text-aux);
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.main-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 56px;
  line-height: 1.1;
  text-transform: capitalize;
}

.gradient-text {
  background: linear-gradient(
    180deg,
    rgba(103, 161, 255, 1) 2%,
    rgba(155, 142, 238, 1) 22%,
    rgba(207, 123, 220, 1) 42%,
    rgba(231, 138, 174, 1) 55.5%,
    rgba(255, 153, 128, 1) 69%,
    rgba(217, 155, 160, 1) 75.375%,
    rgba(179, 157, 192, 1) 81.75%,
    rgba(141, 159, 223, 1) 88.125%,
    rgba(103, 161, 255, 1) 94.5%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {
  font-size: 16px;
  line-height: 26px;
  max-width: 640px;
}

/* Cards Container */
.cards-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  @media (min-width: 1024px) {
    &:last-of-type .card-tall {
      order: 2;
    }
  }
}

/* Card Styles */
.card {
  /* background: linear-gradient(to left, rgba(97, 101, 109, 0.15), rgba(187, 195, 211, 0.15)); */
  backdrop-filter: blur(11.285px);
  -webkit-backdrop-filter: blur(11.285px);
  border-radius: 16px;
  /* border: 1px solid rgba(97, 101, 109, 0.15); */
  box-shadow: 8px 21px 29.8px 0px rgba(125, 125, 125, 0.15);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
  & .logo {
    max-width: 48px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.logo-icon {
  width: 43.548px;
  height: 43px;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.card-description {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-primary);
}

.card-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.card-image-tall {
  height: 356px;
}

.card-image-medium {
  height: 321px;
}

.privacy-image-container {
  height: 321px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.privacy-image {
  position: absolute;
  height: 165.83%;
  width: 100%;
  left: -0.04%;
  top: -16.42%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .main-title {
    font-size: 32px;
  }

  .card {
    padding: 24px;
  }

  .card-tall {
    height: auto;
  }

  .security-section {
    gap: 40px;
  }
}
/* LOG HABITS */
.log-habits {
  position: relative;
  min-height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('assets/log-habits-bg.webp') center center / cover no-repeat;
  &::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #252525cc;
  }
  & h2 {
    position: relative;
    color: #fff;
    padding: 1rem;
    font-size: 24px;
    text-align: center;
    text-transform: capitalize;
  }
  @media (min-width: 1024px) {
    min-height: 270px;
    & h2 {
      font-size: 56px;
    }
  }
  @media (max-width: 767px) {
    & br {
      display: none;
    }
  }
}
/* Download Section */
.download-section {
  padding: 150px 0;
}

.download-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  @media (min-width: 1024px) {
    & .section-title,
    & .download-description {
      text-align: left;
    }
    & .badge-wrap {
      display: flex;
    }
  }
}

.phone-image {
  width: 400px;
  height: 600px;
  position: relative;
  &:before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 180deg at 50% 50%, #67a1ff -20deg, #67a1ff 7deg, #cf7bdc 151deg, #ff9980 248deg, #67a1ff 340deg, #67a1ff 367deg);
    filter: blur(90px);
  }
  & img {
    position: relative;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }
  &.mobile {
    display: none;
  }
}

.download-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.download-description {
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text-aux);
  margin-bottom: 20px;
}
.try-oxeai-btn {
  margin: 1rem auto 2rem;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  gap: 1rem;
  color: #fff;
  background-color: var(--color-tertiary);
  backdrop-filter: blur(22.57061004638672px);
  box-shadow: 8px 21px 29.8px 0px #7d7d7d26;
  position: relative;
  z-index: 1;
  & img {
    transform: rotate(-90deg);
  }
}
@media (min-width: 1024px) {
  .btn-wrap {
    display: flex;
    & .try-oxeai-btn {
      margin: 1rem 0;
    }
  }
}
.app-downloads {
  margin: 4rem auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 18px;
  @media (min-width: 1024px) {
    text-align: left;
    margin-top: 1rem;
  }
}
.store-badges {
  display: flex;
  gap: 26px;
}

.badge-appstore,
.badge-playstore {
  width: 135px;
  height: 40px;
  background: #000;
  border-radius: 8px;
}

/* Features Page */
.features-section {
  margin: 60px 0;
  @media (min-width: 768px) {
    margin: 150px 0;
    &:nth-child(odd) {
      & .feature-section .top .image {
        order: 2;
      }
    }
  }
  & .feature-section {
    text-align: left;

    & h2 {
      font-size: 32px;
      & .wellness {
        color: var(--color-wellness);
      }
      & .activity {
        color: var(--color-activity);
      }
      & .habits {
        color: var(--color-habits);
      }
      & .nutrition {
        color: var(--color-nutrition);
      }
      @media (min-width: 768px) {
        font-size: 52px;
      }
    }
    & .sub {
      font-size: 18px;
      @media (min-width: 768px) {
        font-size: 24px;
      }
    }
    p:not(.bold) {
      color: var(--color-text-secondary);
    }
    & .feature-page-card {
      backdrop-filter: blur(22.57061004638672px);
      box-shadow: 8px 21px 29.8px 0px #7d7d7d26;
      padding: 2rem;
      margin: 1rem 0;
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      & .top {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        & .image {
          border-radius: 12px;
          overflow: hidden;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
        & .content {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          & h3 {
            font-size: 32px;
          }
          & ul {
            list-style: none;
            padding-left: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            & li {
              position: relative;
              &::before {
                content: '';
                position: absolute;
                left: -1rem;
                top: 8px;
                width: 6px;
                height: 6px;
                border-radius: 50%;
              }
            }
            &.wellness li:before {
              background-color: var(--color-wellness);
            }
            &.activity li:before {
              background-color: var(--color-activity);
            }
            &.habits li:before {
              background-color: var(--color-habits);
            }
            &.nutrition li:before {
              background-color: var(--color-nutrition);
            }
          }
        }
        @media (min-width: 768px) {
          flex-direction: row;
          gap: 3rem;
          & > div {
            flex: 1;
          }
          & .content {
            & h3 {
              font-size: 42px;
            }
            & p,
            & ul {
              font-size: 18px;
            }
          }
        }
      }
      & .bottom,
      & .super-top {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        p {
          font-size: 18px;
          &.bold {
            font-size: 24px;
          }
        }
        @media (min-width: 768px) {
          p {
            font-size: 24px;
            &.bold {
              font-size: 36px;
            }
          }
        }
      }
    }
  }
}

/* Footer */
.footer {
  padding: 2rem 0;
  background: #ffffff;
  color: #000000;
  & .container {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  & .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    & span {
      font-size: 0.875rem;
    }
    & .links {
      display: flex;
      gap: 1.5rem;
    }
  }
  & .store-badges {
    justify-content: flex-start;
  }
  & .footer-bottom {
    font-size: 0.875rem;
    color: #6f6c90;
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    & a {
      color: #3f74e4;
    }
  }
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-nav {
  & ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  & a {
    font-size: 1rem;
    color: #000;
  }
}
.footer-logo img {
  width: 111px;
  height: 35px;
}
@media (min-width: 768px) {
  .footer {
    padding: 2.5rem 0 1.25rem;

    & .container {
      display: grid;
      grid-template-columns: auto 1fr auto;
      grid-template-areas:
        'brand nav badges'
        'social social social'
        'bottom bottom bottom';
      align-items: center;
      gap: 2.5rem 4rem;
    }

    & .social-links {
      grid-area: social;
      flex-direction: row;
      align-items: center;
      gap: 1rem;
      & span {
        display: none;
      }
    }

    & .footer-bottom {
      grid-area: bottom;
      margin-top: 0.25rem;
      padding: 2rem 0 1rem;
      border-top: 1px solid #e6e6e6;
      font-size: 0.875rem;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
  }

  .footer-content {
    display: contents;
  }

  .footer-brand {
    grid-area: brand;
    display: flex;
    align-items: center;
  }

  .footer-nav {
    grid-area: nav;
    justify-self: start;

    & ul {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }
  }

  .footer-logo img {
    width: 111px;
    height: auto;
    display: block;
  }
}
/* Sticky CTA Footer */
.sticky-cta-footer {
  position: sticky;
  bottom: 0;
  z-index: 1000;
  background: var(--color-background-2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.sticky-cta-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 9px 60px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-cta-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  transition: color 0.3s ease;
}

.sticky-cta-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  transition: color 0.3s ease;
}

/* Dark text mode for light backgrounds */
.sticky-cta-footer.dark-text {
  background: rgba(255, 255, 255, 0.4);
}
.sticky-cta-footer.dark-text .sticky-cta-title {
  color: var(--color-text-primary);
}

.sticky-cta-footer.dark-text .sticky-cta-subtitle {
  color: #6b7280;
}

.btn-free-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #6ba3ff;
  border-radius: 12px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-free-trial:hover {
  background: #5a92ee;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 163, 255, 0.4);
}

/* RELEASE NOTES SECTION */
.release-notes {
  padding: 3rem 0;
  overflow: hidden;
  & .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    @media (min-width: 768px) {
      flex-direction: row;
      justify-content: center;
      margin: 2rem 0 4rem;
    }
  }
}

.release-notes-pill {
  display: inline-flex;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: #ece8f5;
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.release-notes-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;

  img {
    height: 2.25rem;
    width: auto;
    vertical-align: middle;
  }
}

.release-notes-carousel {
  position: relative;
  @media (min-width: 768px) {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
  }
}

.release-notes-grid {
  display: flex;
}

.release-notes-card {
  flex: 0 0 78%;
  min-width: 0;
  padding-right: 0.75rem;
  a {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    &::before {
      content: '';
      position: absolute;
      background: linear-gradient(to top, #000 0%, transparent 100%);
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
  }
}

.release-notes-image {
  aspect-ratio: 1 / 1.25;
  overflow: hidden;

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.release-notes-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.875rem 0.875rem 1rem;
  color: #fff;
  text-align: left;
  h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
  }

  p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.8;
  }
}

.release-notes-footer {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.release-notes-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.release-notes-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b8bfd0;
  cursor: pointer;
}

.release-notes-dot.active {
  background: #4e6cff;
}

.release-notes-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  background: #7ea6ff;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
}

/* tablet / desktop */
@media (min-width: 768px) {
  .release-notes-carousel .embla__viewport {
    overflow: visible;
  }

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

  .release-notes-card {
    flex: unset;
    padding-right: 0;
  }

  .release-notes-footer {
    margin-top: 1.5rem;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  .release-notes-dots {
    display: none;
  }
}
/* Responsive Design */
@media (max-width: 1280px) {
  .container {
    padding: 0 40px;
  }

  .stats-section {
    padding: 2rem 3rem;
  }
}

@media (max-width: 1024px) {
  /* Header */
  .site-header {
    padding: 15px 20px;
  }

  /* Hero */
  .hero-title {
    font-size: 48px;
  }

  .hero-content {
    bottom: 20px;
    padding: 0 20px;
  }

  .section-title {
    font-size: 42px;
  }

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

  /* Science section */
  .science-content,
  .quote-section,
  .download-content {
    grid-template-columns: 1fr;
  }

  .science-illustration {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }

  .quote-illustration {
    width: 100%;
    max-width: 512px;
    margin: 0 auto;
    order: 2;
  }

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

  /* Download section */
  .phone-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;

    &.mobile {
      display: block;
    }
    &.desktop {
      display: none;
    }
  }

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

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

@media (max-width: 767px) {
  .page-container {
    overflow: hidden;
  }
  /* Promo Banner */
  .promo-banner {
    padding: 10px 15px;
    font-size: 14px;
  }

  /* Header - hide desktop nav on mobile, show hamburger */
  .site-header {
    padding: 12px 16px;
    justify-content: space-between;
  }

  .site-header .nav-buttons {
    padding: 8px 16px;
    gap: 10px;
  }

  .site-header img {
    max-height: 24px;
  }

  .site-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hamburger-menu {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* Header - switch to sticky on mobile so it pushes content */
  .sticky-header-wrapper {
    position: sticky;
    top: 0;
  }

  /* Landing */
  .landing {
    height: auto;
    min-height: 500px;
    padding: 60px 0;
  }

  /* Pricing page needs work */
  .pricing-landing .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 0 20px;
    gap: 30px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-subtitle br:not(.mobile) {
    display: none;
  }

  .btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 14px;
  }

  /* Sections */
  .mission-section {
    padding: 80px 0 60px;
  }

  /* Section Titles */
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .section-title br {
    display: none;
  }

  /* Mission Section */
  .mission-section {
    padding: 100px 0 80px;
  }
  /* MOBILE CAROUSEL */
  .embla {
    width: 100%;
  }

  /* .embla__viewport {
    overflow: hidden;
  } */

  .embla__container {
    display: flex;
    /* gap: unset; */
    justify-content: unset;
    align-items: unset;
    height: unset;
  }

  .embla__slide {
    flex: 0 0 78%;
    min-width: 0;
    padding: 0 8px;
  }

  .gallery-image {
    border-radius: 24px;
    overflow: hidden;
  }

  .gallery-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
  }

  .gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
  }

  .gallery-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #b8bfd0;
    cursor: pointer;
  }

  .gallery-dot.active {
    background: #4e6cff;
  }
  /*
  .image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    height: auto;
  } */

  .gallery-image {
    /* width: 100%;
    height: 200px; */
    margin-top: 0 !important;
  }

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

  /* Stats */
  .stats-section {
    height: auto;
    padding: 40px 20px;
  }

  .stats-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 20px;
  }

  .stat-item {
    padding: 10px 20px;
    width: 45%;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }

  .stat-divider {
    display: none;
  }

  /* Features */
  /* .features-section {
    padding: 60px 0;
  } */

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .how-it-works {
    margin-top: 40px;
  }

  /* Science */
  .science-section {
    padding: 60px 0;
  }

  .science-content {
    margin: 40px 0;
  }

  .science-heading {
    font-size: 28px;
  }

  .science-illustration {
    width: 100%;
    height: 220px;
  }

  .quote-section {
    margin-top: 40px;
  }

  .quote-illustration {
    width: 100%;
    height: 250px;
  }

  /* Security */
  .security-section {
    padding: 60px 0;
  }

  .card-image-tall {
    height: 220px;
  }

  .privacy-image-container {
    height: 200px;
  }

  .privacy-image {
    height: 100%;
    top: 0;
    left: 0;
  }

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

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

  /* Download */
  .download-section {
    padding: 60px 0;
  }

  .download-content {
    gap: 40px;
  }

  .phone-image {
    width: 100%;
    max-width: 280px;
    height: 420px;
  }

  .download-title {
    font-size: 28px;
  }

  .download-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .store-badges {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Sticky CTA Footer */
  .sticky-cta-content {
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    text-align: center;
  }

  .sticky-cta-title {
    font-size: 14px;
  }

  .sticky-cta-subtitle {
    font-size: 11px;
  }

  .btn-free-trial {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    flex-direction: row;
    gap: 10px;
    padding: 12px 16px;
  }

  .site-header-right {
    width: auto;
  }

  .site-header-right .nav-buttons {
    padding: 6px 12px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 32px;
  }

  .stat-item {
    width: 100%;
  }

  .stat-number {
    font-size: 2rem;
  }

  .science-heading {
    font-size: 24px;
  }

  .science-illustration {
    height: 180px;
  }

  .quote-illustration {
    height: 200px;
  }

  /* Security cards */
  .card-image-tall {
    height: 180px;
  }

  .privacy-image-container {
    height: 160px;
  }

  .privacy-image {
    height: 100%;
    top: 0;
    left: 0;
  }

  .download-title {
    font-size: 24px;
  }

  .phone-image {
    max-width: 240px;
    height: 360px;
  }
}
