:root {
  --color-first: #191b22;
  --color-second: #32333d;
  --color-third: #505666;
  --color-four: #6e7486;
  --color-five: #848792;
  --color-six: #cacdd5;
  --color-seven: #dfe0e3;
  --color-eight: #f0f1f5;
  --color-nine: #f5f7f9;
  --color-ten: #fcfcfc;
  --color-soft-white: #fafaf7;
  --color-vanilla: #f6f5f3;
  --color-light-sand: #f1efe9;
  --color-sand: #ece9e1;
  --color-dark-sand: #d8d5cd;
  --color-stone: #bebebd;
  --color-pastel-blue: #c1ceff;
  --color-soft-blue: #99b3ff;
  --color-malibu: #7088fa;
  --color-med-blue: #5579fc;
  --color-blue: #1f5bff;
  --color-deep-blue: #1846c4;
  --color-orange: #ff8e3c;
  --color-haze: #eaeaf3;
  --color-cloud: #b5c1dc;
  --color-grey-blue-light: #939cbd;
  --color-grey-blue: #64729d;
  --color-grey-blue-dark: #42495e;
  --color-green: #0cc291;
  --color-med-green: #a4e8d6;
  --color-soft-green: #e1f7f1;
  --color-light-green: #ebfaf6;
  --color-strong-red: #ad002d;
  --color-red: #ee3867;
  --color-med-red: #f8acc0;
  --color-soft-red: #fde6ec;
  --color-light-red: #feeef2;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

[v-cloak] {
  display: none;
}

::-moz-selection {
  /* Code for Firefox */
  background-color: var(--color-sand);
}

::selection {
  background-color: var(--color-sand);
}

::-ms-input-placeholder {
  color: var(--color-five);
  font-family: inherit;
  opacity: 1;
}

::placeholder {
  color: var(--color-five);
  font-family: inherit;
  opacity: 1;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  box-shadow: none;
  margin: 1px 0;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-six);
  border-radius: 0.5rem;
  min-height: 3rem;
  background-clip: content-box;
  border: 4px solid transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color-scheme: dark;
  font-family: "Archivo", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-synthesis: none;
}

html,
body {
  width: 100%;
  height: 100%;
  min-height: -webkit-fill-available;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
}

body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.54;
  background-color: #ffffff;
  text-underline-offset: 4px;
  tab-size: 4;
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

a {
  text-decoration: none;
  transition: color 0.175s;
  color: inherit;
}

h1 {
  font-weight: 700;
  font-size: 5rem;
  margin: 2.5rem auto;
}

h2 {
  font-weight: 600;
  font-size: 2.75rem;
  margin: 0;
}

h3 {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
}

h4 {
  font-weight: 400;
  font-size: 1.25rem;
}

.article-page h1,
.article-page h2,
.article-page h3,
.article-page h4 {
  color: var(--color-first);
}

.article-page h1 {
  font-size: 2rem;
}

.article-page h2 {
  font-size: 1.5rem;
}

.article-page h3 {
  font-size: 1.33rem;
}

.article-page a {
  text-decoration: underline;
  color: var(--color-med-blue);
}

p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

ol>li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol>li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}

li ol>li {
  margin: 0;
}

li ol>li:before {
  content: counters(item, ".") " ";
}

ul {
  line-height: 2;
}

li span {
  padding: none;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(3rem);
  will-change: opacity, transform;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.15s;
}

.fade-in-content {
  opacity: 0;
  transform: translateY(1rem);
  will-change: opacity, transform;
  transition: opacity 1.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.275s;
}

.fade-in-up.visible,
.fade-in-up.visible .fade-in-content {
  opacity: 1;
  transform: translateY(0);
}

.logo-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

.current-page {
  color: #dfe0e2;
  pointer-events: none;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}

button {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
  -webkit-appearance-based-color: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form,
.form-done {
  margin-top: 36px;
}

.form-done {
  color: #ffffff;
}

img {
  display: block;
  overflow-clip-margin: content-box;
  overflow: clip;
}

input {
  font-family: "ClashDisplay", sans-serif;
}

.heading {
  position: relative;
  z-index: 1;
  font-family: "ClashDisplay", sans-serif;
  font-size: 2.3rem;
  line-height: 1.7;
  font-weight: 600;
  text-transform: none;
  max-width: 800px;
  margin: 0 auto;
}

.heading-bottom {
  color: #fbfbfb;
}

.menu {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 8%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  height: 64px;
}

video {
  max-width: 100%;
  max-height: 100%;
}

/* ----------- Hero ----------- */

.homepage {
  width: 100%;
  overflow: hidden;
}

.hero {
  margin-top: 5vh;
  padding: 12vh;
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  font-family: "Archivo", sans-serif;
  color: #262f36;
  margin: 0 auto;
  position: relative;
}

.hero.fade-in-up {
  transform: translateY(8px);
  transition-duration: 0.5s;
  transition-delay: 0.375s;
}

.text-box {
  width: 50%;
  max-width: 100%;
  text-align: left;
  margin: 0 0 3rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero-title {
  position: relative;
  box-sizing: border-box;
  width: 850px;
  max-width: 100%;
  line-height: 1.15;
  color: var(--color-first);
  font-feature-settings: "ss01" on;
  letter-spacing: 0.0075em;
  margin: 1rem auto;
  text-align: center;
  text-wrap: balance;
  font-family: "ClashDisplay", sans-serif;
}

.hero-title h1 {
  position: relative;
  z-index: 2;
}

.hero-sub {
  z-index: 2;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-grey-blue-dark);
  width: 800px;
  max-width: calc(100% - 12px);
  margin: 0 auto 3rem;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.5s;
}

.hero.visible .hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 1rem;
}

.button-primary {
  cursor: pointer;
  position: relative;
  z-index: 1;
  line-height: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  color: #ffffff;
  background-color: var(--color-med-blue);
}

.button-primary:hover {
  background-color: var(--color-blue);
}

.button-primary,
.button-secondary {
  cursor: pointer;
  position: relative;
  z-index: 3;
  height: 50px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-family: "ClashDisplay", sans-serif;
  font-weight: 400;
  border-radius: 0.5rem;
  line-height: 1;
  transition-property: color, background-color, border-color;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.button-secondary {
  color: var(--color-med-blue);
  border: 1px solid var(--color-deep-blue);
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.button-secondary:hover {
  color: var(--color-blue);
}

.button-secondary:disabled {
  color: var(--color-four);
  border: 2px solid var(--color-cloud);
  cursor: not-allowed;
}

.play-button {
  padding: 0.375rem;
  border-radius: 50%;
  background-color: var(--color-med-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.75rem;
}

.play-button-icon {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--color-ten);
}

/* ----------- Product ----------- */

.product,
.security {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  width: 1300px;
  max-width: calc(100vw - 3rem);
  margin: 0 auto;
  padding: 4rem 0;
}

.product-feature {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% - 2.5rem);
  padding: 5rem 0;
}

.product-feature-separator {
  min-width: 5vw;
  height: 2.5rem;
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0.875rem;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  padding: 1rem;
}

.product-01 {
  background-image: url("/product-01-bg.png");
}

.product-02 {
  background-image: url("/product-02-bg.png");
}

.product-03 {
  background-image: url("/product-03-bg.png");
}

.small-section-title {
  margin: 4rem auto;
  font-size: 3rem;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  color: var(--color-first);
  word-spacing: 0.1rem;
}

.feature-title {
  color: var(--color-first);
  font-family: "ClashDisplay", sans-serif;
  line-height: 1.2;
}

.feature-text {
  color: var(--color-grey-blue-dark);
  font-weight: 400;
  padding: 0;
  margin: 1.5rem auto;
  line-height: 1.7;
  font-size: 1.25rem;
  list-style: none;
  font-family: "Archivo", sans-serif;
}

/* ----------- Testimonials ----------- */

.testimonials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  text-align: left;
  width: 1300px;
  max-width: calc(100vw - 3rem);
  margin: 8rem auto;
}

.form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 500px;
  max-width: 90vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.submit-button {
  height: 50px;
  width: 140px;
  background-color: #313436;
  transition: background-color 0.2s ease;
  font-weight: bold;
  border-radius: 4px;
}

.submit-button:hover {
  background-color: #42495e;
}

.text-wrapper {
  position: relative;
  padding: 10px;
}

.page {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 2rem auto;
  flex-grow: 1;
}

.page-title {
  color: var(--color-first);
  font-size: 2.5rem;
  font-family: "ClashDisplay", sans-serif;
}

/* ----------- Legal ----------- */

.legal-page {
  width: 1250px;
  max-width: 100%;
  padding: 5rem;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  color: var(--color-second);
}

.policy-date {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-five);
  line-height: 1;
  padding-bottom: 0.5rem;
  margin: 0.75rem 0;
  display: inline-block;
}

.legal-content {
  position: relative;
  line-height: 1.6;
  font-weight: 400;
  width: 100%;
  padding: 0;
}

.legal-page ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

.legal-content {
  counter-reset: section;
}

/* Common styles for all numbered items */
.legal-content ol {
  list-style: none;
}

.legal-content ol>li::before {
  font-weight: bold;
  color: var(--color-four);
}

/* Level 1: Main sections (1., 2., etc) */
.legal-content>ol>li {
  counter-increment: section;
}

.legal-content>ol>li::before {
  content: counter(section) ". ";
}

/* Level 2: Subsections (1.1, 1.2, etc) */
.legal-content>ol>li>ol {
  counter-reset: subsection;
}

.legal-content>ol>li>ol>li {
  counter-increment: subsection;
  padding-left: 1.5em;
}

.legal-content>ol>li>ol>li::before {
  content: counter(section) "." counter(subsection) " ";
}

/* Level 3: Alpha items (a., b., etc) */
.legal-content>ol>li>ol>li>ol {
  counter-reset: letter;
}

.legal-content>ol>li>ol>li>ol>li {
  counter-increment: letter;
  padding-left: 2em;
}

.legal-content>ol>li>ol>li>ol>li::before {
  content: counter(letter, lower-alpha) ". ";
}

/* Basic text styles */
.legal-page p {
  margin: 0.5em 0;
}

/* ----------- Forms ----------- */

.input-field {
  cursor: text;
  width: 100%;
  padding: 1rem;
  color: var(--color-first);
  border: 1px solid var(--color-seven);
  border-radius: 0.5rem;
  background-color: var(--color-nine);
  font-size: 1rem;
}

.input-field::placeholder {
  color: var(--color-five);
}

.input-field:focus {
  border-color: var(--color-malibu);
  background: var(--color-ten);
  outline: none;
}

.invalid .input-field,
.invalid .input-field:focus {
  border-color: var(--color-red);
  background: var(--color-eight);
}

.form-field {
  margin-bottom: 1rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-first);
  font-weight: 500;
}

.form-error-message {
  position: absolute;
  color: var(--color-red);
  font-size: 0.875rem;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.textarea {
  min-height: 96px;
  resize: none;
}

.success-message,
.error-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  margin-top: 4rem;
  background-color: transparent;
  border-radius: 1rem;
  font-size: 1.125rem;
  line-height: 1.75;
  text-align: center;
}

.success-message {
  color: var(--color-med-blue);
  border: 1px solid var(--color-soft-blue);
}

.error-message {
  color: var(--color-red);
  border: 1px solid var(--color-five);
}

.success-message-title {
  font-weight: 600;
  font-size: 1.5rem;
  font-family: "ClashDisplay", sans-serif;
}

/* ----------- Laptop & Tablet ----------- */
@media (min-width: 768px) and (max-width: 1440px) and (orientation: landscape) {
  h1 {
    font-size: 4rem;
    margin: 2rem auto;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 10vh;
  }

  .hero-title {
    width: 720px;
    margin: 2rem auto;
  }

  .hero-sub {
    font-size: 1.5rem;
  }

  .small-section-title {
    font-size: 2rem;
    margin-top: 6rem;
  }

  .product,
  .security {
    padding: 2rem 0;
  }

  .product-feature {
    padding: 3rem 0;
  }

  .product-image {
    width: 50%;
  }

  .feature-title {
    font-size: 2.25rem;
  }

  .feature-text {
    font-size: 1.25rem;
  }

  .data-section-graphic {
    opacity: 0.2;
  }

  .testimonials {
    padding: 0 2.5rem;
    margin: 4rem auto;
  }
}

/* ----------- Mobile ----------- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 5rem 1rem;
    margin-top: 4rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-title {
    line-height: 1.1;
    letter-spacing: -0.01rem;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-sub {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.33;
  }

  h2 {
    font-size: 1.6rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  .hero-buttons {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    justify-content: center;
  }

  .small-section-title {
    font-size: 1.75rem;
    margin: 2.5rem auto;
  }

  .heading {
    font-size: 1.8rem;
  }

  .navigation {
    padding: 20px 30px;
  }

  .button-primary,
  .button-secondary {
    width: auto;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    width: 200px;
    line-height: 2;
    height: auto;
  }

  header .button-primary {
    width: auto;
  }

  .product {
    padding: 3rem 0;
  }

  .product-feature {
    flex-direction: column;
    width: 100%;
    padding: 2rem 0;
  }

  .feature-title {
    font-size: 2rem;
  }

  .text-box {
    width: calc(100% - 1rem);
    margin-bottom: 0;
  }

  .product-image {
    width: 100%;
  }

  .input-field {
    width: 100%;
    margin-right: 0;
  }

  .product,
  .security {
    padding: 4rem 0 0;
  }

  .testimonials {
    width: auto;
    flex-direction: column;
    margin: 4rem auto 8rem;
  }

  .tab-and-icon {
    flex-direction: column;
    margin-top: 80px;
  }

  .tab-icon {
    margin-bottom: 80px;
  }

  .data-section-graphic {
    display: none;
  }

  .input-bottom {
    width: 200px;
  }

  .send-button-wrap {
    margin-top: 4rem;
  }

  .submit-button {
    font-size: 14px;
  }

  .page {
    margin-top: 6rem;
  }

  .legal-page {
    padding: 0 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6rem;
  }

  .legal-page>.legal-content>ol>li,
  .legal-page>.legal-content>ol>li>ol>li,
  .legal-page>.legal-content>ol>li>ol>li>ol>li {
    padding-left: 0;
  }

  .top-buffer {
    height: 10px;
  }

  .demo-buffer {
    display: none;
  }
}

/* Internet Explorer */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  body {
    overflow-x: hidden;
  }

  .app {
    display: inline;
  }

  .header-scroll {
    background-color: rgba(245, 247, 249, 0.8);
  }

  .header-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 2rem;
  }

  .hero-buttons .button-primary {
    margin-right: 1rem;
  }

  .data-section-content {
    display: table;
    height: auto;
  }

  .tab-icon {
    margin-right: 48px;
  }
}