:root {
  /* colors */
  --orange: #ed6214;
  --orange-light: #ff7f00;
  --black: #000000;
  --black-pure: #111111;
  --black-light: #181f30;
  --gray: #666;
  --gray-dark: #333333;
  --gray-light: #f4f2f8;
  --gray-text-light: #bcc9d7;
  --gray-light-border: #d8e1ea;
  --white: #ffffff;
  --blue: #002236;
  --blue-dark: #101828;

  /* gradients */
  --orange-gradient: linear-gradient(89deg, #ed6214 0%, #ff8b26 100%);

  /* fonts */
  --font-lato: 'Lato', sans-serif;
  --font-work-sans: 'Work Sans', sans-serif;

  /* other */
  --container-max-width: 1400px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  text-decoration: none;
  font-size: inherit;
  list-style: none;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  font-size: 16px;
  font-family: var(--font-work-sans);
  color: var(--black);
  overflow-x: hidden;
  max-width: 100vw;
}

p {
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

.header {
  position: relative;
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.625rem;
  max-width: 1600px;
  margin: 0 auto;
}

.header-control {
  display: flex;
  align-items: center;
}

.header-start {
  color: var(--white);
  background: var(--orange-gradient);
  border-radius: 2rem;
  font-weight: 600;
  padding: 0.625rem 2.875rem;
  margin-right: 1.625rem;
  cursor: pointer;
}

.header-start-text {
  margin-right: 2rem;
}

.header-app-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-app-button {
  cursor: pointer;
}

.hero {
  max-width: var(--container-max-width);
  padding: 0 1.625rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 230px;
}

.hero-content {
  max-width: 750px;
  flex: 1 1 50%;
  z-index: 3;
}

.hero-title {
  font-size: 4.75rem;
  font-weight: 700;
  margin-bottom: 2.125rem;
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 3.25rem;
}

.hero-cta-wrapper {
  display: flex;
  align-items: center;
}

.hero-cta {
  background: var(--orange-gradient);
  border-radius: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 1.875rem;
  color: var(--white);
  cursor: pointer;
  margin-right: 1.125rem;
}

.hero-cta-join {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 1.875rem;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 2rem;
  cursor: pointer;
}

.hero-preview {
  position: relative;
  flex: 1 1 50%;
  align-self: stretch;
}

.hero-img {
  position: absolute;
  top: 0;
  z-index: 2;
  right: 0;
}

.circle-gradient-hero {
  position: absolute;
  top: 6rem;
  right: -68rem;
  width: 1600px;
  height: 1600px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #fe9501 0%,
    rgba(255, 255, 255, 0) 89.9%
  );
  border-radius: 50%;
  z-index: -1;
}

.features {
  position: relative;
  max-width: var(--container-max-width);
  margin: 25rem auto 0 auto;
  padding: 0 1.625rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 8.375rem;
}

.features-circle-gradient {
  position: absolute;
  top: 860px;
  left: -50%;
  width: 1415px;
  height: 2074px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #d8e1ea 30.96%,
    rgba(246, 249, 251, 0) 100%
  );
  z-index: -1;
  border-radius: 50%;
}
.features-content {
  padding-right: 5rem;
  max-width: 750px;
  flex: 1 1 50%;
}

.features-content-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.625rem;
}

.features-content-description {
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.features-list {
  display: flex;
  align-items: center;
}

.features-list-item {
  padding: 2.5rem 4rem;
  text-align: center;
}

.features-list-item:first-child {
  padding-left: 0;
}

.features-list-item:last-child {
  padding-right: 0;
}

.features-list-item:nth-child(2) {
  border-left: 2px solid var(--orange-light);
  border-right: 2px solid var(--orange-light);
}

.features-list-title {
  color: var(--orange-light);
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
  display: block;
  font-weight: 700;
}

.features-list-description {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--blue);
}

.features-info {
  flex: 1 1 40%;
}

.features-info-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem 2.5rem 3.75rem 2.5rem;
  box-shadow: 0 24px 128px 0 rgba(10, 38, 70, 0.12);
}

.features-info-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--black-pure);
}

.features-info-description {
  font-size: 1.125rem;
  font-family: var(--font-lato);
  color: var(--gray);
}

.features-info-item:not(:last-child) {
  margin-bottom: 1.25rem;
}

.features-info-icon {
  margin-right: 2.125rem;
}

.shmoozing {
  position: relative;
  background-color: var(--blue-dark);
  text-align: center;
  padding-top: 5.375rem;
  padding-bottom: 13.5rem;
}

.shmoozing-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5rem;
  color: var(--white);
}

.shmoozing-list {
  position: absolute;
  bottom: -5.5rem;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: var(--container-max-width);
}

.shmoozing-list-item {
  position: relative;
  max-width: 440px;
  padding: 4.75rem 2.5rem 2.5rem 2.5rem;
  background-color: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 14px 90px 0 rgba(10, 38, 70, 0.12);
  align-self: stretch;
}

.shmoozing-list-icon {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
}

.shmoozing-list-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black-pure);
}

.shmoozing-list-description {
  font-size: 1.125rem;
  font-family: var(--font-lato);
  color: var(--gray);
}

.shmoozing-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shmoozing-left-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 1328px;
  height: 1328px;
  border-radius: 50%;
  border: 200px solid var(--white);
  opacity: 0.1;
  transform: translate(-5rem, 0);
}

.shmoozing-right-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 1328px;
  height: 1328px;
  border-radius: 50%;
  border: 200px solid var(--white);
  opacity: 0.1;
  transform: translate(10%, -65%);
}

.main {
  padding: 16.5rem 1.625rem 9.375rem 1.625rem;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}

.main-list {
  max-width: 1200px;
  margin: 0 auto;
}

.main-list-item {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  align-items: center;
}

.main-list-item:nth-child(even) {
  text-align: right;
}

.main-list-item:nth-child(even) .main-list-content {
  order: 1;
}
.main-list-item:nth-child(even) .main-list-spacer {
  order: 2;
}

.main-list-item:nth-child(even) .main-list-icon {
  order: 3;
}

.main-list-item:first-child .main-list-icon {
  padding-top: 4.875rem;
}

.main-list-spacer {
  position: relative;
  align-self: stretch;
}

.main-list-spacer-border {
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    var(--orange-light) 0,
    var(--orange-light) 8px,
    transparent 8px,
    transparent 16px
  );
  margin: 0 auto;
}

.main-list-spacer-border.last {
  height: 50%;
}

.main-list-spacer-step {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background-color: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.main-list-spacer-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--orange-light);
  border-radius: 50%;
}

.main-list-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--black-pure);
}

.main-list-description {
  font-size: 1.125rem;
  font-family: var(--font-lato);
  color: var(--gray);
}

.pricing {
  background-color: var(--gray-light);
  padding: 8.75rem 1.625rem;
  text-align: center;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pricing-description {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.pricing-description span {
  display: block;
}

.pricing-radio {
  display: none;
}

.pricing-radio:checked + .pricing-label {
  background-color: var(--gray-dark);
  color: var(--white);
}

.pricing-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  cursor: pointer;
  border-radius: 2rem;
  border: 1px solid var(--gray-dark);
  color: var(--black-pure);
}

.pricing-label.membership {
  margin-right: 1.25rem;
}
.pricing-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 6.25rem;
}

.pricing-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.pricing-list.membership {
  display: none;
  gap: 2rem;
  align-items: center;
  margin: 6.25rem auto 0 auto;
  flex-wrap: wrap;
  max-width: var(--container-max-width);
}

#plans:checked ~ .pricing-list.membership {
  display: flex;
}

.pricing-item-membership {
  position: relative;
  padding: 3.25rem 8.75rem 2.5rem 8.75rem;
  background-color: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 14px 90px 0 rgba(10, 38, 70, 0.12);
  text-align: center;
}

.pricing-membership-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--black-pure);
}

.pricing-membership-spacer {
  width: 65px;
  height: 2px;
  background-color: var(--orange-light);
  margin: 0 auto 1.5rem auto;
}

.pricing-membership-time {
  color: var(--black-light);
  font-size: 2rem;
  font-weight: 700;
}

.pricing-membership-price {
  font-weight: 700;
  color: var(--black-light);
}

.pricing-membership-price-amount {
  color: var(--orange);
}

#payments:checked ~ .pricing-list.payments {
  display: flex;
}

.pricing-list.payments {
  display: none;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  max-width: var(--container-max-width);
  margin: 3.125rem auto 0 auto;
}

.pricing-payments-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background-color: var(--white);
  box-shadow: 0 14px 90px 0 rgba(10, 38, 70, 0.12);
  min-width: 440px;
}

.pricing-payments-item:nth-child(1):before {
  background: radial-gradient(
    50% 50% at 50% 50%,
    #fe9501 0%,
    rgba(255, 255, 255, 0) 89.9%
  );
}

.pricing-payments-item:nth-child(2):before {
  background: radial-gradient(
    50% 50% at 50% 50%,
    #fc5201 0%,
    rgba(255, 255, 255, 0) 89.9%
  );
}

.pricing-payments-item:nth-child(3):before {
  background: radial-gradient(
    50% 50% at 50% 50%,
    #da371b 0%,
    rgba(255, 255, 255, 0) 89.9%
  );
}

.pricing-payments-item:nth-child(4):before {
  background: radial-gradient(
    50% 50% at 50% 50%,
    #c09 0%,
    rgba(255, 255, 255, 0) 89.9%
  );
}

.pricing-payments-item:nth-child(5):before {
  background: radial-gradient(
    50% 50% at 50% 50%,
    #5901ff 0%,
    rgba(255, 255, 255, 0) 89.9%
  );
}

.pricing-payments-item:nth-child(6):before {
  background: radial-gradient(
    50% 50% at 50% 50%,
    #0040ff 0%,
    rgba(255, 255, 255, 0) 89.9%
  );
}

.pricing-payments-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(25%, -70%);
  width: 364px;
  height: 364px;
  border-radius: 50%;
  z-index: 1;
}

.pricing-payments-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 314px;
  height: 314px;
  border-radius: 50%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #d8e1ea 30.96%,
    rgba(246, 249, 251, 0) 100%
  );
  transform: translate(-5%, 0);
  z-index: 1;
}

.pricing-payments-footer {
  background-color: var(--white);
  z-index: 3;
  position: relative;
  text-align: left;
  padding: 1.5rem 2rem;
}

.pricing-payments-time {
  color: var(--black-light);
  font-size: 2rem;
  font-weight: 700;
  margin-right: 1rem;
  vertical-align: middle;
}

.pricing-payments-price {
  font-weight: 700;
  color: var(--orange);
  vertical-align: sub;
}

.pricing-payments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 0 2rem;
}

.pricing-payments-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black-pure);
  text-transform: uppercase;
  z-index: 2;
  padding-bottom: 1rem;
}

.pricing-payments-icon {
  z-index: 2;
}

.form {
  position: relative;
  background: linear-gradient(89deg, #ed6214 0%, #ff8b26 100%);
  padding: 10rem 1.625rem 6.25rem 1.625rem;
  overflow: hidden;
}

.form:before {
  content: '';
  position: absolute;
  width: 1328px;
  height: 1328px;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 200px solid var(--white);
  opacity: 0.1;
  transform: translate(-10%, 13%);
  pointer-events: none;
}

.form:after {
  content: '';
  position: absolute;
  width: 1328px;
  height: 1328px;
  top: 0;
  right: 0;
  border-radius: 50%;
  border: 200px solid var(--white);
  opacity: 0.1;
  transform: translate(10%, -55%);
  pointer-events: none;
}

.form-content {
  position: relative;
  background-color: var(--white);
  padding: 5rem 8.625rem 4.375rem 8.625rem;
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 0 24px 128px 0 rgba(10, 38, 70, 0.12);
  max-width: 752px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.form-content:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  height: 10%;
  transform: translateX(-50%);
  width: 95%;
  border-radius: 1.5rem;
  opacity: 0.7;
  background: var(--white);
}

.form-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-family: var(--font-lato);
  color: var(--black-pure);
}

.form-input {
  width: 100%;
  padding: 0.875rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gray-light-border);
  margin-bottom: 3.5rem;
}
.form-input:first-of-type {
  margin-bottom: 1rem;
}
.form-input::placeholder {
  color: var(--gray-text-light);
}

.form-submit {
  background: var(--orange-gradient);
  border-radius: 2rem;
  font-family: var(--font-lato);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem;
  color: var(--white);
  cursor: pointer;
  width: 100%;
  margin-bottom: 1rem;
}

.form-privacy {
  font-size: 0.875rem;
  color: #697ea1;
}

.footer {
  background-color: var(--blue-dark);
  padding: 2.375rem 1.625rem;
}
.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-info-link {
  color: var(--white);
  font-family: var(--font-lato);
  font-weight: 700;
}

.footer-info-link:not(:last-child) {
  margin-right: 3.875rem;
}

.footer-info-icon {
  margin-right: 0.875rem;
}

.footer-social {
  display: flex;
  align-items: center;
}

.footer-social-text {
  color: var(--white);
  margin-right: 2rem;
}

.footer-social-copyright {
  color: var(--white);
  margin-left: 3rem;
}

.footer-social-link:not(:last-of-type) {
  margin-right: 1.625rem;
}
