:root {
  --gray-900: #21211E;
  --gray-800: #444240;
  --gray-700: #545456;
  --gray-500: #6F6F6D;
  --gray-450: #888480;
  --gray-400: #858583;
  --gray-300: #CDCDCC;
  --gray-200: #737377;
  --gray-0: #fff;
  --brown-500: #A95726;
  --brown-100: #F2E1D3;
  --cool-gray-800: #28353F;
  --cool-gray-700: #474D5C;
  --cool-gray-500: #767585;
  --blue-500: #00DDFF;
  --blue-100: #F0FAFD;
  --main-color-dark: var(--cool-gray-800);
  --main-color-light: var(--blue-500);
  --white: var(--gray-0);
  --text-hero-title: var(--brown-100);
  --text-hero-icon: var(--gray-0);
  --text-hero-asking-web: var(--gray-400);
  --text-hero-strikethrough-web: var(--gray-500);
  --text-section-sub: var(--cool-gray-800);
  --text-section-title: var(--cool-gray-800);
  --text-section-caption: var(--brown-500);
  --text-location-perks-web: var(--gray-200);
  --text-location-perks-mobile: var(--gray-450);
  --icon-hero: var(--brown-500);
  --icon-title-caption: var(--brown-500);
  --icon-location-perks-web: var(--gray-700);
  --icon-location-perks-mobile: var(--gray-450);
  --surface-desktop-background: var(--gray-900);
  --surface-button-primary: var(--blue-500);
  --surface-button-secondary: var(--cool-gray-800);
}

.troubleshoot {
  border: 1px solid red;
}

body {
  background-color: var(--surface-desktop-background);
  font-family: Inter;
}

.page-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ========================= NAVIGATION ========================= */

header.navigation {
  position: absolute;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

nav.zero {
  height: 4.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.8rem 0;
  margin: 0 2rem;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 4rem;
  font-family: Inter;
  color: var(--white);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.04rem;
}

nav ul a {
  text-decoration: none;
  color: var(--white);
  transition: opacity 200ms ease;
  opacity: 0.4;
}

nav ul a:hover {
  opacity: 1;
}

/* ========================= SECTION ONE ========================= */

section.one {
  background-image: url(../images/background-v2.png);
  background-size: contain;
  height: 100vh;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
}

.left,
.right {
  height: 100%;
  font-size: 1.6rem;
  flex: 1 1 50%;
}

.right {
  display: flex;
  align-items: center;
}

.title-features-price {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.title-features-price h1 {
  color: var(--text-hero-title);
  font-family: InterDisplay;
  font-size: 5.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 6.25rem;
  letter-spacing: -0.16875rem;
  width: 70%;
  margin: 0;
}

.title-features-price ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2.8rem;
  row-gap: 1.2rem;
}

.title-features-price ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  font-family: Inter;
  color: var(--white);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  font-family: Inter;
}

.price p:first-of-type {
  color: var(--white);
  font-family: Inter;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.price p:last-of-type {
  color: var(--white);
  opacity: 0.5;
  font-family: Inter;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.36px;
  text-decoration-line: line-through;
  margin: 0;
}

.price-wrapper > p {
  color: var(--white);
  font-family: Inter;
  opacity: 0.2;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.225px;
}

.for-btns {
  display: flex;
  gap: 2rem;
}

.titleDetails-buttons {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.btn-primary {
  display: flex;
  padding: 1.6rem;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: var(--surface-button-primary);
  color: var(--main-color-dark);
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8rem;
  letter-spacing: -0.015rem;
  text-decoration: none;
}

.btn-secondary {
  display: flex;
  padding: 1.6rem;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: var(--surface-button-secondary);
  color: var(--main-color-light);
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8rem;
  letter-spacing: -0.015rem;
  text-decoration: none;
}

/* ========================= SECTION AREAS ========================= */

section.area {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

section header.top {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 50%;   
  margin-top: 1.4rem;
}

header.top div {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  width: 100%;
}

header.top div:first-of-type p:first-of-type {
  color: var(--main-color-dark);
  text-align: center;
  font-family: Inter;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  opacity: 0.5;
}

header.top h2 {
  color: var(--main-color-dark);
  text-align: center;
  font-family: InterDisplay;
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5.2rem;
  letter-spacing: -0.144rem;
}

header.top div:nth-of-type(2) {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

header.top div:nth-of-type(2) p {
  color: var(--icon-title-caption);
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.2rem;
  letter-spacing: -0.024rem;
}

/* ========================= PRODUCTS / HOTSPOTS ========================= */

.products {
  padding: 2em;
  width: 100%;
}

.product-card {
  width: 80%;
  max-width: 1920px;
  margin: 2em auto;
  position: relative;
}

.product-card img {
  width: 100%;
}

.product-image {
  position: relative;
}

.hotspot {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
}

.hotspot::before {
  background-color: inherit;
  border-radius: inherit;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse 2s linear infinite;
  pointer-events: none;
}

.product-card:nth-child(1) .hotspot {
  background-color: var(--main-color-light);
}

.product-card:nth-child(1) .h-1 { left: 14%; top: 15%; }
.product-card:nth-child(1) .h-2 { left: 37%; top: 55%; }
.product-card:nth-child(1) .h-4 { left: 84%; top: 24%; }
.product-card:nth-child(1) .h-5 { left: 72%; top: 18%; }
.product-card:nth-child(1) .h-6 { left: 3.5%; top: 50%; }

.tooltip {
  position: absolute;
  top: -5em;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f0f0f0;
  color: black;
  min-width: 5em;
  border-radius: 5px;
  transition: 200ms;
  pointer-events: none;
}

.tooltip::before {
  content: "";
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-left: 0.5em solid transparent;
  border-right: 0.5em solid transparent;
  border-top: 1em solid #f0f0f0;
}

.tooltip {
  opacity: 0;
}

.hotspot:hover .tooltip,
.tooltip-show {
  top: -7em;
  opacity: 1;
}

@keyframes pulse {
  0%   { width: 0; height: 0; opacity: 1; }
  50%  { width: 300%; height: 300%; opacity: 0; }
  100% { opacity: 0; }
}

/* ========================= ACCORDION ========================= */

.accordion-section {
  width: 100%;
  background-color: var(--white);
}

.accordion {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin: 0 2rem 0;
}

.accordion-item {
  border: 1px solid var(--gray-300);
  border-radius: 1.6rem;
  background: #F8F8F8;
  overflow: hidden;
  transition: border-color 250ms ease, background-color 250ms ease;
}

.accordion-item.active {
  background: #F6F4F2;
}

.accordion-header {
  width: 100%;
  border: none;
  background: transparent;
  padding: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  cursor: pointer;
  text-align: left;
}

.accordion-copy {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.accordion-copy p {
  margin: 0;
  color: var(--brown-500);
  font-family: Inter;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

.accordion-copy h3 {
  margin: 0;
  color: var(--cool-gray-800);
  font-family: Inter;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02rem;
}

.accordion-icon {
  color: var(--gray-200);
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 250ms ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  padding: 0 3.2rem;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 0 3.2rem 3.2rem;
}

.accordion-content p {
  margin: 0;
  color: var(--cool-gray-700);
  font-family: Inter;
  font-size: 1.6rem;
  line-height: 1.7;
}

.accordion-header:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: -2px;
}

/* ========================= SECTION THREE ========================= */

section.three {
  background-color: #F4FBFD;
}

.perks {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  margin: 0 10%;
  padding: 4rem 0;
}

.icon-location-perk {
  display: flex;
  width: 31rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}

.location-perk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  align-self: stretch;
}

.location-perk h3 {
  color: var(--gray-900);
  font-family: InterDisplay;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.072rem;
}

.location-perk p {
  color: var(--gray-200);
  font-family: Inter;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.06rem;
}

/* ========================= SECTION FOUR ========================= */

section.four {
  background: var(--gray-900);
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.structural-integrity {
  width: 100%;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.structLeft,
.structRight {
  flex: 1 1 50%;
}

.structLeft {
  flex: 1 1 10%;
}

.structLeft h2 {
  color: var(--brown-100);
  font-family: InterDisplay;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.18rem;
  margin: 0;
}

.structRight {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.structRight p,
.structRight ul {
  color: var(--white);
  font-family: Inter;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: -0.06rem;
  margin: 0;
  max-width: 58rem;
}

.structRight ul {
  margin: 0;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.structRight li {
  color: var(--white);
  font-family: Inter;
  font-size: 1.8rem;
  line-height: 1.4;
}

.two-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.media-card {
  border-radius: 0.8rem;
  overflow: hidden;
  background: #2A2A2A;
  height: 72rem;
}

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

.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: black;
}

/* ========================= SECTION FIVE ========================= */

section.five {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.pricing-card {
  width: 100%;
  max-width: 70rem;
  border-radius: 1.2rem;
  border: 1px solid #ECECEC;
  background: white;
}

.pricing-card__top {
  padding: 4rem;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.pricing-card__top div {
  gap: 0.6rem;
  display: flex;
  flex-direction: column;
}

.pricing-card__top h3 {
  color: var(--main-color-dark);
  font-family: Inter;
  font-size: 3.2rem;
  font-weight: 600;
}

.pricing-card__top p {
  color: #7A7A89;
  font-family: Inter;
  font-size: 2rem;
  font-weight: 400;
}

.pricing-card__top h4 {
  color: var(--main-color-dark);
  font-family: Inter;
  font-size: 4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.12rem;
}

.pricing-card__bottom {
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.pricing-card__bottom ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.pricing-card__bottom li {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #767585;
  font-family: Inter;
  font-size: 2rem;
  font-weight: 400;
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.btn-access,
.btn-copy {
  padding: 2.2rem;

}

.btn-access {
  background: var(--cool-gray-800);
  color: var(--blue-500);
  text-decoration: none;
}

.btn-copy {
  background: var(--blue-500);
  color: var(--main-color-dark);
}



/* Clipboard copy styles */

.btns {
  /* border: 1px solid red; */
  display: flex;
  justify-content: flex-start;
  align-items: center;

}
.btns button {
  font-size: 1.2rem;
  font-weight: 700;
  background-color: var(--surface-cta);
  padding: 0.5rem 1.0rem;
  display: flex;
  width: 9rem;
  justify-content: center;
  border-radius: 0.4rem;
  color: var(--text-nav-cta);
}
.btns button {
transition: opacity 0.15s ease, transform 0.15s ease;
}

.btns button.is-changing {
opacity: 0;
transform: scale(0.98);
}