@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://unpkg.com/modern-normalize@2.0.0/modern-normalize.css");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #fdfdfd;
  color: #2d2d2d;
}

main {
  display: flex;
  flex-direction: column;
}

section.Section {
  padding: 2rem;
  position: relative;
  z-index: 10;
}
section.Section .Section__Header {
  margin-bottom: 4rem;
  text-align: center;
}
section.Section .Section__Header > .Title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
section.Section .Section__Header > p.Description {
  font-size: 1.1rem;
  max-width: 1024px;
  margin: 0 auto;
}

span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 200, "opsz" 48;
  vertical-align: middle;
}

span.Highlight {
  color: #0aa7d6;
  text-shadow: 0 6px 25px rgba(10, 167, 214, 0.18), 0 4px 10px rgba(10, 167, 214, 0.18);
}

.ToggleSwitch {
  width: 3.5rem;
  height: 1.8rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  background-repeat: no-repeat;
  background-size: contain;
  appearance: none;
  background-color: #011b22;
  transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
  cursor: pointer;
}
.ToggleSwitch:checked {
  background-color: #0aa7d6;
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

:root {
  --navbar-height: 120px;
  --navbar-height-minified: 75px;
}

nav.Navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  padding: 1rem 7.5rem;
  width: 100%;
  height: var(--navbar-height);
  transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
  z-index: 20;
  background-color: rgba(253, 253, 253, 0.9);
  backdrop-filter: blur(8px);
}
nav.Navbar.Minified {
  padding: 0 7.5rem;
  height: var(--navbar-height-minified);
}
nav.Navbar.Minified .Navbar__Logo,
nav.Navbar.Minified .Navbar__Logo img {
  height: 2.5rem;
}
nav.Navbar .Navbar__Logo,
nav.Navbar .Navbar__Logo img {
  transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
  height: 3rem;
}
nav.Navbar .Navbar__Links {
  display: flex;
  gap: 1.5rem;
}
nav.Navbar .Navbar__Links .Navbar__Link {
  position: relative;
  transition: 0.15s;
  color: #2d2d2d;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
nav.Navbar .Navbar__Links .Navbar__Link::after {
  transition: 0.15s;
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #0aa7d6;
  opacity: 0;
  transform: scaleX(0);
}
nav.Navbar .Navbar__Links .Navbar__Link:hover {
  color: #0aa7d6;
}
nav.Navbar .Navbar__Links .Navbar__Link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
nav.Navbar .Navbar__Links .Navbar__Link > .Arrow {
  opacity: 0;
  transform: translateX(-0.25rem);
  transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
  font-size: 18px;
  margin-top: -1px;
  display: none;
}
nav.Navbar > .Navbar__Toggle {
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  display: none;
}
nav.Navbar > .Navbar__Toggle > .material-symbols-outlined {
  font-size: 24px;
  color: #2d2d2d;
  transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
}
nav.Navbar > .Navbar__Toggle:hover > .material-symbols-outlined {
  color: rgba(68, 68, 68, 0.75);
}

section.Hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - var(--navbar-height));
  margin-top: var(--navbar-height);
  overflow: hidden;
}
section.Hero .Hero__Content {
  position: relative;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--navbar-height);
}
section.Hero .Hero__Content .Hero__Title {
  font-size: 4rem;
  line-height: 5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
}
section.Hero .Hero__Content .Hero__Description {
  font-size: 1.32rem;
  line-height: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #444444;
  margin: 8px 0;
}
section.Hero .Hero__Content .Hero__Buttons {
  display: flex;
  gap: 2rem;
}
section.Hero .Hero__Content .Hero__Buttons .Hero__Button {
  background-color: transparent;
  padding: 1rem 2rem;
  font-size: 16px;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 1rem;
  color: #2d2d2d;
  appearance: none;
  text-decoration: none;
}
section.Hero .Hero__Content .Hero__Buttons .Hero__Button--primary {
  background: linear-gradient(45deg, #62caea 0%, #0aa7d6 100%);
  padding: 3px;
  border-radius: 9999px;
}
section.Hero .Hero__Content .Hero__Buttons .Hero__Button--primary .Button__Content {
  padding: 1rem 2rem;
  width: 100%;
  height: 100%;
  background-color: #fdfdfd;
  border-radius: 9999px;
  transition: 0.15s background-color, 0.15s color;
}
section.Hero .Hero__Content .Hero__Buttons .Hero__Button--primary:hover .Button__Content {
  background-color: transparent;
  color: #fdfdfd;
}
section.Hero .Hero__Content .Hero__Buttons .Hero__Button--secondary:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
section.Hero .Hero__Image {
  position: absolute;
  filter: blur(1px);
  height: 75%;
  z-index: -1;
  top: 0;
  opacity: 0.35;
}

section.Features {
  width: 100%;
  overflow: hidden;
}
section.Features > .Title {
  text-align: center;
}
section.Features > .Grid__Wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.Features > .Grid__Wrapper > .Grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  max-width: 1024px;
  margin: 0 auto;
}
section.Features > .Grid__Wrapper > .Grid--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
section.Features > .Grid__Wrapper > .Grid > .Card {
  color: #fdfdfd;
  background-color: #011b22;
}
section.Features > .Grid__Wrapper > .Grid > .Card[data-type=experience] > .Type {
  background-color: rgba(10, 167, 214, 0.15);
  color: #0aa7d6;
}
section.Features > .Grid__Wrapper > .Grid > .Card[data-type=experience] > ul > li > .material-symbols-outlined {
  color: #0aa7d6;
}
section.Features > .Grid__Wrapper > .Grid > .Card[data-type=privacy] > .Type {
  background-color: rgba(10, 214, 139, 0.15);
  color: #0ad68b;
}
section.Features > .Grid__Wrapper > .Grid > .Card[data-type=privacy] > ul > li > .material-symbols-outlined {
  color: #0ad68b;
}
section.Features > .Grid__Wrapper > .Grid > .Card[data-type=affordability] > .Type {
  background-color: rgba(245, 119, 46, 0.15);
  color: #f5772e;
}
section.Features > .Grid__Wrapper > .Grid > .Card[data-type=affordability] > ul > li > .material-symbols-outlined {
  color: #f5772e;
}
section.Features > .Grid__Wrapper > .Grid > .Card[data-type=satisfaction] > .Type {
  background-color: rgba(214, 207, 10, 0.15);
  color: #d6cf0a;
}
section.Features > .Grid__Wrapper > .Grid > .Card[data-type=satisfaction] > ul > li > .material-symbols-outlined {
  color: #d6cf0a;
}
section.Features > .Grid__Wrapper > .Grid > .Card > .Type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
}
section.Features > .Grid__Wrapper > .Grid > .Card > .Type .material-symbols-outlined {
  font-size: 18px;
}
section.Features > .Grid__Wrapper > .Grid > .Card > ul {
  list-style: none;
  padding-left: 0;
}
section.Features > .Grid__Wrapper > .Grid > .Card > ul > li {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 16px;
  line-height: 28px;
}
section.Features > .Grid__Wrapper > .Grid > .Card > ul > li:not(:last-child) {
  margin-bottom: 0.75rem;
}
section.Features > .Grid__Wrapper > .Grid > .Card > ul > li > .material-symbols-outlined {
  font-size: 20px;
  margin-top: 4px;
}
section.Features > .Grid__Wrapper > .Decoration {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
section.Features > .Grid__Wrapper > .Decoration > .Circle {
  position: absolute;
  width: 768px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: linear-gradient(20deg, rgba(10, 167, 214, 0.5) 0%, rgba(253, 253, 253, 0.33) 100%);
  filter: blur(64px);
}

section.Statistics {
  position: relative;
  background-color: #010f13;
  margin: 4rem 0;
  padding: 6rem 0;
  overflow: hidden;
}
section.Statistics > .Section__Header > .Title {
  color: #fdfdfd;
  text-align: center;
  margin-top: 0;
}
section.Statistics > .Section__Header > .Description {
  color: rgba(253, 253, 253, 0.75);
}
section.Statistics > .Stats {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  z-index: 1;
}
section.Statistics > .Stats > .Stats__Card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 0 !important;
  color: #fdfdfd;
  background-color: #01151b;
  text-align: center;
}
section.Statistics > .Stats > .Stats__Card > h3.Number {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}
section.Statistics > .Stats > .Stats__Card > span.Description {
  color: rgba(253, 253, 253, 0.75);
  font-size: 1rem;
}
section.Statistics > .Stats > .Stats__Card:first-child {
  border-radius: 1rem 0 0 1rem !important;
}
section.Statistics > .Stats > .Stats__Card:last-child {
  border-radius: 0 1rem 1rem 0 !important;
}
section.Statistics > .Decoration {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
section.Statistics > .Decoration .Glow {
  position: absolute;
  width: 500px;
  aspect-ratio: 1/1;
  background-color: #0aa7d6;
  border-radius: 50%;
  filter: blur(128px);
  bottom: -350px;
}

section.Testimonials {
  margin-bottom: 4rem;
}
section.Testimonials > .Testimonials {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 1024px;
  margin: 0 auto;
}
section.Testimonials > .Testimonials > .Row {
  margin-right: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
section.Testimonials > .Testimonials > .Row--reverse {
  margin-left: auto;
  margin-right: 0;
  justify-content: flex-end;
}
section.Testimonials > .Testimonials > .Row > .Testimonial {
  width: 384px;
  background-color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.Testimonials > .Testimonials > .Row > .Testimonial > .Testimonial__Content {
  font-size: 18px;
  font-weight: 500;
}
section.Testimonials > .Testimonials > .Row > .Testimonial > .Testimonial__Footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
section.Testimonials > .Testimonials > .Row > .Testimonial > .Testimonial__Footer > .Testimonial__Credit {
  color: #444444;
}
section.Testimonials > .Testimonials > .Row > .Testimonial > .Testimonial__Footer > .Testimonial__Ratings {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(10, 167, 214, 0.2);
  padding: 0.33rem 0.66rem;
  border-radius: 9999px;
}
section.Testimonials > .Testimonials > .Row > .Testimonial > .Testimonial__Footer > .Testimonial__Ratings > .material-symbols-outlined {
  font-size: 18px;
  color: #0aa7d6;
}

section.Pricing {
  position: relative;
  background-color: #010f13;
  margin: 4rem 0;
  padding: 6rem 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.Pricing > .Section__Header,
section.Pricing > .Table {
  max-width: 1098px;
}
section.Pricing > .Section__Header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
}
section.Pricing > .Section__Header > .Title {
  font-size: 3.5rem;
  color: #fdfdfd;
  margin-top: 0;
}
section.Pricing > .Section__Header > .Description {
  color: rgba(253, 253, 253, 0.75);
}
section.Pricing > .Section__Header > .SwitchRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
}
section.Pricing > .Section__Header > .SwitchRow > .Type__Switch {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #011b22;
  border-radius: 9999px;
  user-select: none;
  padding: 4px;
  width: 220px;
}
section.Pricing > .Section__Header > .SwitchRow > .Type__Switch.Disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}
section.Pricing > .Section__Header > .SwitchRow > .Type__Switch > .Switch__Button {
  cursor: pointer;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #fdfdfd;
  background-color: transparent;
  transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
  width: 100%;
  height: 100%;
}
section.Pricing > .Section__Header > .SwitchRow > .Type__Switch > .Switch__Button.Selected {
  background-color: #0aa7d6 !important;
}
section.Pricing > .Section__Header > .SwitchRow > .Type__Switch > .Switch__Button:hover {
  background-color: #123e49;
}
section.Pricing .Table {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  justify-content: center;
  gap: 1rem;
  z-index: 1;
  position: relative;
}
section.Pricing .Table.Hidden {
  display: none;
}
section.Pricing .Table[data-table=ipv4]:not(.Hidden) {
  display: flex;
}
section.Pricing .Table .PricingItem {
  position: relative;
  background-color: #011b22;
  color: #fdfdfd;
  overflow: hidden;
}
section.Pricing .Table .PricingItem,
section.Pricing .Table .PricingItem > .PricingItem__Content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
section.Pricing .Table .PricingItem .PricingItem__Content {
  z-index: 1;
}
section.Pricing .Table .PricingItem .PricingItem__Content > span.Subtitle {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}
section.Pricing .Table .PricingItem .PricingItem__Content > p.Description {
  color: rgba(253, 253, 253, 0.75);
  font-size: 16px;
  margin: 0;
}
section.Pricing .Table .PricingItem .PricingItem__Content > span.Price {
  display: inline-flex;
  align-items: flex-end;
  font-weight: 600;
  line-height: 52px;
}
section.Pricing .Table .PricingItem .PricingItem__Content > span.Price > span.Currency {
  font-size: 32px;
  margin-right: 2px;
}
section.Pricing .Table .PricingItem .PricingItem__Content > span.Price > span.Amount {
  font-size: 52px;
}
section.Pricing .Table .PricingItem .PricingItem__Content > span.Price > span.Time,
section.Pricing .Table .PricingItem .PricingItem__Content > span.Price > span.Per {
  color: rgba(253, 253, 253, 0.6);
  font-size: 16px;
  font-weight: 400;
  margin-left: 4px;
  line-height: 48px;
}
section.Pricing .Table .PricingItem .PricingItem__Content > .FeatureRow {
  display: flex;
  gap: 1rem;
  width: 100%;
}
section.Pricing .Table .PricingItem .PricingItem__Content ul.Features {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
section.Pricing .Table .PricingItem .PricingItem__Content ul.Features > li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 16px;
  line-height: 24px;
}
section.Pricing .Table .PricingItem .PricingItem__Content ul.Features > li:not(:last-child) {
  margin-bottom: 0.75rem;
}
section.Pricing .Table .PricingItem .PricingItem__Content ul.Features > li > .material-symbols-outlined {
  font-size: 20px;
  margin-top: 2px;
  color: var(--accent);
}
section.Pricing .Table .PricingItem .PricingItem__Content button.Button {
  border: none;
  outline: none;
  padding: 0.66rem 1rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: var(--accent);
  cursor: pointer;
  border-radius: 0.25rem;
  transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
}
section.Pricing .Table .PricingItem .PricingItem__Content button.Button:hover {
  background-color: var(--accent-dark);
}
section.Pricing .Table .PricingItem > .Decoration {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
section.Pricing .Table .PricingItem > .Decoration > .Glow {
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--accent);
  border-radius: 50%;
  filter: blur(128px);
  bottom: -325px;
}
section.Pricing .Table .PricingItem[data-item=v4-residential] > .Decoration > .Glow {
  bottom: -700px;
}
section.Pricing .Table .PricingItem[data-item=novice] {
  --accent-dark: #3c565d;
  --accent: #47636b;
  --accent-light: #52717a;
}
section.Pricing .Table .PricingItem[data-item=novice] > span.Subtitle,
section.Pricing .Table .PricingItem[data-item=novice] > ul.Features > li > .material-symbols-outlined {
  color: #618691;
}
section.Pricing .Table .PricingItem[data-item=scripter] {
  --accent-dark: #de6621;
  --accent: #f5772e;
  --accent-light: #ff843d;
}
section.Pricing .Table .PricingItem[data-item=enterprise], section.Pricing .Table .PricingItem[data-item=v4-residential] {
  --accent-dark: #0a799b;
  --accent: #0aa7d6;
  --accent-light: #62caea;
}
section.Pricing .Table .PricingItem[data-item^=thread-] {
  --accent-dark: #de2121;
  --accent: #f52e2e;
  --accent-light: #ff3d3d;
}
section.Pricing .Table .PricingItem[data-item^=thread-] .PricingItem__Content > span.Price {
  display: inline-flex;
  align-items: flex-end;
  font-weight: 600;
  line-height: 36px;
}
section.Pricing .Table .PricingItem[data-item^=thread-] .PricingItem__Content > span.Price > span.Currency {
  font-size: 32px;
  margin-right: 2px;
}
section.Pricing .Table .PricingItem[data-item^=thread-] .PricingItem__Content > span.Price > span.Amount {
  font-size: 36px;
}
section.Pricing .Table .PricingItem[data-item^=thread-] .PricingItem__Content > span.Price > span.Time,
section.Pricing .Table .PricingItem[data-item^=thread-] .PricingItem__Content > span.Price > span.Per {
  color: rgba(253, 253, 253, 0.6);
  font-size: 16px;
  font-weight: 400;
  margin-left: 4px;
  line-height: 36px;
}

section.CTA {
  margin: 0 auto;
  margin-bottom: 4rem;
  max-width: 1024px;
  border-radius: 1.66rem;
  background-color: #eef7fc;
  text-align: center;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  padding: 4rem;
}
section.CTA > h2 {
  font-size: 2.25rem;
  font-weight: 700;
}
section.CTA > p {
  font-size: 1.33rem;
  max-width: 768px;
}
section.CTA > .CTA__Button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  background-color: transparent;
  padding: 1rem 2rem;
  font-size: 16px;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 1rem;
  border-radius: 0.5rem;
  transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
  text-decoration: none;
}
section.CTA > .CTA__Button--primary {
  color: #fdfdfd;
  background-color: #0aa7d6;
}
section.CTA > .CTA__Button--primary:hover {
  background-color: #62caea;
}
section.CTA > .CTA__Button--secondary {
  color: #2d2d2d;
}
section.CTA > .CTA__Button--secondary .material-symbols-outlined {
  display: none;
  font-size: 18px;
  font-variation-settings: "wght" 600;
}
section.CTA > .CTA__Button--secondary:hover > span:nth-child(1) {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
section.CTA > .CTA__Button--secondary:hover .material-symbols-outlined {
  display: inline;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #444444;
}

@media only screen and (max-width: 768px) {
  section.Section .Section__Header {
    padding: 0 1rem;
  }
  section.Pricing .Table .PricingItem {
    position: relative;
    max-width: unset !important;
    justify-content: unset;
  }
  section.Pricing .Table .PricingItem > .Decoration > .Glow {
    bottom: -650px !important;
  }
  nav.Navbar {
    --item-height: 40px;
    --item-count: 4;
    --navbar-padding: 1.25rem;
    flex-wrap: wrap;
    height: fit-content;
    gap: 1rem;
    padding: 1rem 0 !important;
    padding-bottom: 0 !important;
  }
  nav.Navbar.Minified {
    height: fit-content;
  }
  nav.Navbar > .Navbar__Logo {
    margin-left: var(--navbar-padding);
  }
  nav.Navbar > .Navbar__Toggle {
    margin-right: var(--navbar-padding);
  }
  nav.Navbar > .Navbar__Links {
    order: 3;
    width: 100%;
    height: fit-content;
    max-height: calc(var(--item-height) * var(--item-count));
    transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    opacity: 1;
  }
  nav.Navbar > .Navbar__Links > .Navbar__Link {
    display: block;
    padding: 0.5rem var(--navbar-padding);
    min-height: var(--item-height);
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
    font-size: 18px;
  }
  nav.Navbar > .Navbar__Links > .Navbar__Link > .Arrow {
    display: inline;
  }
  nav.Navbar > .Navbar__Links > .Navbar__Link:hover {
    background-color: rgba(241, 241, 241, 0.75);
  }
  nav.Navbar > .Navbar__Links > .Navbar__Link:hover > .Arrow {
    opacity: 1;
    transform: none;
  }
  nav.Navbar > .Navbar__Links > .Navbar__Link:after {
    display: none;
  }
  nav.Navbar > .Navbar__Links > .Navbar__Link:not(:last-child) {
    border-bottom: 1px solid rgba(68, 68, 68, 0.2);
  }
  nav.Navbar > .Navbar__Toggle {
    display: block;
  }
  nav.Navbar[data-open=false] > .Navbar__Links {
    max-height: 0;
    opacity: 0;
  }
}
@media only screen and (max-width: 832px) {
  section.Features > .Grid__Wrapper > .Grid {
    width: 100%;
    max-width: unset;
    display: flex;
    flex-direction: column;
  }
  section.Statistics > .Stats {
    display: flex;
    flex-direction: column;
  }
  section.Statistics > .Stats > .Stats__Card:first-child {
    border-radius: 1rem 1rem 0 0 !important;
  }
  section.Statistics > .Stats > .Stats__Card:last-child {
    border-radius: 0 0 1rem 1rem !important;
  }
}
@media only screen and (max-width: 940px) {
  section.Pricing .Table {
    display: flex;
    flex-wrap: wrap;
  }
  section.Pricing .Table .PricingItem {
    max-width: calc(50% - 0.5rem);
  }
  section.Pricing .Table .PricingItem:nth-of-type(3) {
    max-width: 100%;
    justify-content: unset;
  }
  section.Pricing .Table .PricingItem:nth-of-type(3) > .Decoration > .Glow {
    bottom: -750px;
  }
  section.Testimonials > .Testimonials > .Row {
    flex-direction: column !important;
    margin: unset !important;
  }
  section.Testimonials > .Testimonials > .Row,
  section.Testimonials > .Testimonials > .Row > .Testimonial {
    width: 100%;
  }
  section.CTA {
    width: 100%;
    max-width: unset;
    box-shadow: none;
    border-radius: 0;
  }
}
@media only screen and (max-width: 992px) {
  p.Description {
    max-width: 768px !important;
  }
  nav.Navbar {
    padding: 1rem 3rem;
  }
  nav.Navbar.Minified {
    padding: 0 3rem;
  }
  section.Hero .Hero__Content .Hero__Title {
    font-size: 3.75rem;
  }
  section.Hero .Hero__Content .Hero__Description {
    font-size: 1.2rem;
    max-width: 600px;
  }
}
@media only screen and (max-width: 1024px) {
  section.Statistics > .Stats {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 1110px) {
  section.Pricing .Table {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 2rem;
  }
  section.Pricing .Table .PricingItem {
    width: 100%;
  }
  section.Pricing .Table .PricingItem .PricingItem__Content > span.Price {
    line-height: 36px !important;
  }
  section.Pricing .Table .PricingItem .PricingItem__Content > span.Price > span.Currency {
    font-size: 24px !important;
  }
  section.Pricing .Table .PricingItem .PricingItem__Content > span.Price > span.Amount {
    font-size: 36px !important;
  }
  section.Pricing .Table .PricingItem .PricingItem__Content > span.Price > span.Time,
  section.Pricing .Table .PricingItem .PricingItem__Content > span.Price > span.Per {
    line-height: 36px !important;
  }
}
section.Features > .Grid__Wrapper > .Grid > .Card, section.Statistics > .Stats > .Stats__Card, section.Testimonials > .Testimonials > .Row > .Testimonial, section.Pricing .Table .PricingItem {
  padding: 2rem;
  border-radius: 1rem;
}

/*# sourceMappingURL=styles.css.map */
