/* RESET */

* {
    margin: 0;
    padding: 0;
    font-style: normal;
    line-height: normal;
    box-sizing: border-box;
    text-wrap: pretty;
    overflow-wrap: break-word;
    list-style: none;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  
  /* START */
  
  :root {
    --Abyss: #03050a;
    --Ocean: #0b132a;
    --Cool-Slate: #1b2441;
    --Steel: #3a4f6a;
    --Aquamarine: #5cc0be;
    --Crystal: #6fffe8;
    --Foam: #f5fffd;
    --Nav-Color: #151c33;
    --Gradient: linear-gradient(90deg, #03050a 0%, #0b132a 100%);
    --Opposite-Gradient: linear-gradient(
      90deg,
      rgba(27, 36, 65, 0.5) 0%,
      rgba(3, 5, 10, 0.5) 100%
    );
    --Dark-Shadow: 0 0 27.4px 3px rgba(3, 5, 10, 0.5);
    --Crystal-Glow: 0 0 27.4px 3px rgba(111, 255, 232, 0.25);
  }
  
  body {
    background: var(--Gradient);
  }
  
  section {
    margin-bottom: 5.5rem;
  }
  
  main {
    margin: 12rem 0 9rem 0;
  }
  
  /* NAVBAR CONTROLS */
  
  nav {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: var(--Nav-Color);
    height: 6.25rem;
    display: flex;
    gap: 4rem;
    padding: 2rem 2rem 2rem 5rem;
    align-items: center;
  }
  
  /* FOOTER CONTROLS */
  
  footer {
    width: 100%;
    background-color: var(--Nav-Color);
    height: 6.25rem;
    display: flex;
    align-items: center;
    padding: 2rem;
    justify-content: flex-end;
    gap: 2rem;
  }

  #social-icons {
    display: flex;
    font-size: 2rem;
    color: var(--Foam);
    gap: 2rem;
  }
  
  /* SEMANTIC TYPE CONTROLS */
  
  h1 {
    font-family: "Owners-XWide", sans-serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 800;
    color: var(--Foam);
    margin-bottom: 1rem;
  }
  
  h2 {
    font-family: "Owners-XWide", sans-serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--Foam);
    margin-bottom: -0.6rem;
  }
  
  h3 {
    font-family: "Owners-XWide", sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 800;
    color: var(--Foam);
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }
  
  h4 {
    font-family: "Owners-Wide", sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 700;
    color: var(--Foam);
  }
  
  h5 {
    font-family: "Owners-Wide", sans-serif;
    font-size: 0.9375rem;
    font-style: italic;
    font-weight: 800;
    color: var(--Foam);
  }
  
  p,
  li {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--Foam);
  }
  
  li {
    margin-bottom: 0.3rem;
  }
  
  /* HOME CONTROLS */
  
  #home {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem;
  }
  
  #main-body {
    max-width: 44rem;
  }
  
  #main-body > p {
    max-width: 38rem;
    margin-bottom: 2.5rem;
  }
  
  header {
    position: relative;
  }
  
  #header-icon {
    position: absolute;
    left: 32rem;
    top: -2rem;
    z-index: -1;
  }
  
  #header-img {
    max-width: 26rem;
    border-radius: 0.625rem;
    box-shadow: var(--Dark-Shadow);
  }
  
  /* PRODUCT CONTROLS */
  
  #products-header {
    text-align: center;
    margin-bottom: 2.75rem;
  }
  
  /* FEATURES CONTROLS */
  
  #features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--Abyss);
    width: 100%;
  }
  
  .feature {
    position: relative;
    text-align: center;
    padding: 1rem;
    float: left;
    width: 100%;
    max-width: 25rem;
  }
  
  .feature:hover {
    transform: scale(102%);
  }
  
  .feature > h3 {
    margin-top: 1rem;
  }
  
  /* CARD CONTROLS */
  
  #pricing-section {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.75rem;
  }
  
  .price {
    margin: 1.5rem;
  }
  
  .price-card {
    background: var(--Opposite-Gradient);
    border-radius: 0.625rem;
    border: 2px solid var(--Crystal);
    position: relative;
    text-align: center;
    padding: 2.5rem;
    float: left;
    width: 100%;
    max-width: 22rem;
    box-shadow: var(--Dark-Shadow);
  }
  
  .price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--Crystal-Glow);
  }
  
  /* DEMO CONTROLS */
  
  #demo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.5rem;
  }
  
  #video-description {
    max-width: 30rem;
    margin-top: 1.62rem;
  }
  
  iframe {
    border-radius: 0.625rem;
    box-shadow: var(--Dark-Shadow);
  }
  
  /*SIGNUP CONTROLS*/
  
  #sign-up-box {
    border-radius: 0.625rem;
    border: 2px solid var(--Crystal);
    background: var(--Abyss);
    margin: 1.5rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 73rem;
    padding: 2.5rem;
    gap: 2.5rem;
    box-shadow: var(--Dark-Shadow);
  }
  
  #sign-up-box:hover {
    transform: scale(101%);
    box-shadow: var(--Crystal-Glow);
  }
  
  #sign-up-description {
    max-width: 30rem;
  }
  #email {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--Foam);
    border-radius: 0.625rem;
    border: 2px solid var(--Crystal);
    background: var(--Abyss);
    padding: 1rem;
  }
  
  /* BUTTON CONTROLS */
  
  .cta-button {
    font-family: "Owners-Wide";
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    background-color: var(--Abyss);
    color: var(--Foam);
    border: 2px solid var(--Crystal);
    padding: 1rem 1.5rem;
    border-radius: 0.625rem;
    cursor: pointer;
    margin-bottom: 2.75rem;
  }
  
  .cta-button:hover {
    color: var(--Abyss);
    background-color: var(--Crystal);
    transform: translateY(-2px);
  }
  .cta-button:active {
    background-color: var(--Aquamarine);
    transform: translateY(2px);
  }
  
  .price-card > .cta-button {
    margin-bottom: 0;
    margin-top: 1.75rem;
  }
  
  #sign-up-box > .cta-button {
    margin: 0;
  }
  /* DIVIDER CONTROLS */
  
  .divider {
    border-bottom: 2px solid var(--Crystal);
    width: 85%;
    margin: 5.5rem auto;
  }
  
  #features > .divider {
    margin: 2.5rem auto;
  }
  
  @media (max-width: 850px) {
    h1 {
      font-size: 1.5rem;
    }
  
    h2 {
      font-size: 1.05rem;
      margin-bottom: -0.4rem;
    }
  
    h5 {
      font-size: 0.75rem;
    }
  
    #features {
      width: calc(100% + 4rem);
      margin-left: -2rem;
    }
    #header-icon {
      left: 12rem;
      top: -2.8rem;
      z-index: -1;
      scale: 50%;
    }
  
    main {
      padding: 2rem;
      margin: 8rem 0 0 0;
    }
  
    nav {
      padding: 2rem;
      gap: 2rem;
    }

    footer {
        text-align: right;
    }
  
   #home #main-body .cta-button {
      display: block;
      margin: 0 auto;
      text-align: center;
  }