:root {
  --font-family: "Plus Jakarta Sans", sans-serif;
  --main-background-color: #F4F0F0;
  --alt-background-color: #201424;
  --alt-background-color-overlay: rgba(27, 3, 30, 0.2);
  --alt-background-color-overlay-more-opaque: rgba(27, 3, 30, 0.05);
  --primary-color: #FF5731;
  --white: #ffffff;
  --white-opaque: rgba(255, 255, 255, 0.1);
  --white-medium-opacity: rgba(255, 255, 255, 0.6);
  --black: #000000;
  --black-medium-opacity: rgba(0, 0, 0, 0.6);
  --alt-color: #4caf50;
  --hero-gradient-start: rgba(255, 87, 49, 0.12);
  --hero-gradient-end: var(--main-background-color);
  --unique-insights-gradient-start: rgba(165, 126, 255, 1);
  --unique-insights-gradient-end: rgba(227, 26, 60, 0.2);
  --glass-opacity: rgba(255, 255, 255, 0.4);
  --glass-top-shadow: 0 2px 1px var(--glass-opacity) inset;
  --glass-bottom-shadow: 0 -2px 1px var(--glass-opacity) inset;
  --glass-blur: 10px;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  background-color: var(--main-background-color);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
  font-weight: 300;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 25px;
  background-color: var(--main-background-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 33px;
  height: auto;
  display: inline-block;
}

.header-title {
  font-size: 1.75rem;
  line-height: 1.75rem;
  color: var(--black);
  font-weight: 400;
}

/* Buttons */
.button {
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 0.875rem;
  cursor: pointer;
  background-color: var(--white);
  color: var(--black);
  font-weight: 400;
}

.button-primary {
  background-color: var(--primary-color);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 19px 20.5px 19px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 62px;
}

.button-icon {
  font-size: 1.2rem;
  font-weight: 500;
  width: 19px;
  margin-left: 16.5px;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    var(--hero-gradient-start) 0%,
    var(--hero-gradient-end) 40%
  );
  background-size: cover;
  background-position: center;
}

.hero-inner {
  padding: 44px 25px 75px;
  position: relative;
}

.hero-copy {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 54px;
  color: var(--black);
  font-weight: 300;
  margin-right: 21px;
}

.hero-visual {
  margin-top: 44px;
  padding: 32px;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 40px;
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-top-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  box-shadow: var(--glass-bottom-shadow);
}

.card-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.hero-visual-image-container {
  position: relative;
  width: 100%;
}

.hero-visual-image-container-small {
  padding-bottom: 89.93710692%;
}

.hero-visual-image-container-large {
  padding-bottom: 89.93710692%;
}

.hero-visual-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.hero-visual-image-large {
  display: none;
}

.hero-visual-image-large-mobile {
  display: block;
}

/* Sections */
.section {
  padding: 40px 30px 20px;
  background-color: var(--main-background-color);
}

.section-dark {
  background-color: var(--alt-background-color);
  color: var(--white);
  text-align: center;
  padding-bottom: 60px;
  padding-top: 60px;
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: radial-gradient(
    ellipse at 80% 0%,
    var(--unique-insights-gradient-start) 0%,
    var(--unique-insights-gradient-end) 88%
  );
}

.section-dark-content {
  position: relative;
  z-index: 1;
}

.section-latency {
  padding-bottom: 50px;
}

.section-visual {
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 92.72727273%;
}

.section-feature-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.section-title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 24px;
  color: var(--black);
  font-weight: 300;
}

.section-dark-title {
  color: var(--white);
  margin-bottom: 40px;
  font-size: 2.25rem;
  line-height: 2.25rem;
}

.section-title-large {
  font-size: 3rem;
  line-height: 3rem;
}

.section-dark-title, .section-dark-text {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-accent {
  color: var(--primary-color);
  font-weight: 500;
}

.section-text {
  font-size: 1.25rem;
  line-height: 2rem;
  color: var(--black);
}

.section-dark-text {
  color: var(--white);
  font-size: 1.125rem;
  line-height: 2rem;
  opacity: 0.8;
}

.section-features {
  max-width: 930px;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}

.section-features-title {
  margin-bottom: 12px;
}

/* Industries */
.industry-section {
  padding-bottom: 70px;
}

.industry-section-title {
  font-size: 3rem;
  line-height: 3rem;
}

.industry-section-copy-text {
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.industries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.industry-tag {
  color: var(--white);
  padding: 19px 27px;
  font-size: 1.125rem;
  font-weight: 300;
  border-radius: 10px;
  text-align: center;
  position: relative;
  background: var(--alt-background-color-overlay);
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  padding: 39.5px 28px 30px;
  border-radius: 20px;
  text-align: left;
  position: relative;
  background: var(--alt-background-color-overlay-more-opaque);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-top-shadow);
  position: relative;
}

.stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--glass-bottom-shadow);
}
.stat-value {
  font-size: 3.5rem;
  line-height: 3.5rem;
  font-weight: 300;
  margin-bottom: 17px;
  color: var(--white);
}

.stat-label {
  font-size: 1rem;
  line-height: 1rem;
  color: var(--white-medium-opacity);
  opacity: 0.6;
}

.section-stats {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-stats::before {
  transform: translateX(-100%);
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: url("/images/stats-background-mobile.svg") no-repeat center center;
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(-69%, 6%);
}

.industry-panel {
  margin-top: 54px;
  padding: 32px;
  border-radius: 40px;
  background: var(--alt-background-color-overlay-more-opaque);
  border-radius: 40px;
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-top-shadow);
  position: relative;
}

.industry-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  box-shadow: var(--glass-bottom-shadow);
}

/* Team */
.section-team {
  padding-bottom: 60px;
}

.section-team .section-title {
  font-size: 3rem;
  line-height: 3rem;
  text-align: center;
  margin-bottom: 90px;;
}

.team-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-section-no-images {
  margin-top: 90px;
}

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

.team-member-photo {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background-color: #e0e0e0;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  min-width: 150px;
}

.team-member-name {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: var(--black);
}

.team-member-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-top: 6px;
}

.team-member-bio {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--black-medium-opacity);
  max-width: 320px;
  margin: 10px auto 0;
}

.bottom-section {
  position: relative;
  background-color: var(--alt-background-color);
}

/* Book a Demo */
.section-book-demo {
  position: initial;
}

.book-demo-title {
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 34px;
}

.book-demo-text {
  font-size: 1rem;
  line-height: 1.875rem;
  margin-bottom: 50px;
  color: var(--white-medium-opacity);
}

.calendly-inline-widget {
  max-width: 645px;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  margin: auto;
}

/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0);
  padding: 41px 28px;
  display: block;
  border-top: 1px solid var(--white-opaque);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1120px;
  margin: auto;
}

.footer-title {
  font-size: 1.75rem;
  line-height: 1.75rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-link:hover {
  text-decoration: underline;
}

@media screen and (min-width: 910px) {
  .header {
    position: relative;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 52px;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-title {
    font-size: 2.375rem;
    line-height: 2.375rem;
  }

  .logo {
    gap: 16px;
  }

  .logo-icon {
    width: 46px;
  }

  .section {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-dark {
    max-width: 100%;
  }

  /* Constrain inner content for full-width sections (including dark sections) */
  .section-dark > * {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }

  .logo-icon {
    width: 45px;
  }

  .hero-title {
    font-size: 4rem;
    line-height: 4rem;
    margin-right: 0;
  }

  .hero-inner {
    padding-top: 60px;
    padding-bottom: 69px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    max-width: 755px;
  }

  .hero-button {
    margin-bottom: 0;
  }

  .hero-visual {
    margin-top: 64px;
    margin-left: 0;
    margin-right: 0;
    padding: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 33px;
    height: 350px;
  }

  .hero-visual-image {
    margin-bottom: 0;
  }

  .hero-visual-image-container-small {
    max-width: 318px;
    padding-bottom: 0;
  }

  .hero-visual-image-container-large {
    max-width: 515px;
    padding-bottom: 0;
  }

  .hero-visual-image-large {
    display: block;
  }

  .hero-visual-image-large-mobile {
    display: none;
  }

  .section-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .section-dark-title {
    max-width: 836px;
  }

  .section-dark-text {
    max-width: 554px;
  }

  .section-text {
    font-size: 1.5rem;
    line-height: 2rem;
  }

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

  .section-dark {
    display: block;
  }

  .section-dark-title {
    font-size: 4rem;
    line-height: 4rem;
  }

  .section-latency {
    padding-bottom: 60px;
  }

  .section-visual {
    margin-top: 0;
    max-width: 550px;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 54.84%;
  }

  .section-unique-insights {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .stats {
    flex-direction: row;
    gap: 20px;
  }

  .stat {
    flex: 1;
  }

  .stat-label {
    font-size: 1.125rem;
  }

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

  .section-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 970px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-features-title {
    font-size: 1.75rem;
    line-height: 1.75rem;
    margin-bottom: 14px;
  }

  .section-features-copy {
    max-width: 300px;
  }

  .section-features-copy-large {
    max-width: 320px;
  }

  .industry-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-top: 99px;
    padding-bottom: 99px;
  }

  .industry-section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .industry-section-title {
    font-size: 3rem;
    line-height: 3rem;
  }

  .industry-section-copy {
    text-align: left;
    margin: 0;
  }

  .industry-section-copy-text {
    max-width: 447px;
    margin: 0;
    font-size: 1.5rem;
    line-height: 2.5rem;
  }

  .industries {
    grid-template-columns: repeat(2, minmax(0, 243px));
  }

  .industry-panel {
    margin-top: 0;
  }

  .section-stats {
    padding-top: 135px;
    padding-bottom: 135px;
  }

  .section-stats::before {
    transform: translateX(0);
    background: url("/images/stats-background.svg") no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .section-team {
    display: block;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .team-section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .team-member {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  .team-member-photo {
    margin: 0;
    width: 100%;
  }

  .team-member-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .team-member-bio {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    max-width: 100%;
  }

  .section-book-demo {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .book-demo-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
  }

  .book-demo-content {
    max-width: 453px;
  }

  .book-demo-title {
    font-size: 3rem;
    line-height: 3rem;
  }

  .book-demo-text {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    gap: 12px;
  }

  .footer-logo-icon {
    width: 33px;
  }

  .footer-title {
    font-size: 1.875rem;
    line-height: 1rem;
  }

  .footer-link {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}
