@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #0d0d0d;
  background-color: #f8f8f8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0d0d0d;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 2.875rem);
}

h2 {
  font-size: clamp(1.625rem, 4vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.0625rem;
}

h6 {
  font-size: 0.8125rem;
}

p {
  font-family: "Inter", sans-serif;
  line-height: 1.75;
  color: #555555;
}

:root {
  --color-primary: #4539cc;
  --color-black: #0d0d0d;
  --color-white: #ffffff;
  --font-display: Inter, sans-serif;
  --font-body: Inter, sans-serif;
  --nav-height: 4rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.125rem);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade"] {
  transform: none;
}

.app-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.app-header--visible {
  opacity: 1;
  pointer-events: auto;
}

.app-header__blur {
  position: absolute;
  inset: 0;
  height: 200%;
  pointer-events: none;
  transition:
    backdrop-filter 0.45s ease,
    -webkit-backdrop-filter 0.45s ease,
    background 0.45s ease,
    opacity 0.25s ease;
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.35) 65%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.35) 65%,
    transparent 100%
  );
}

.app-header__row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.app-header__logo,
.app-header__cta {
  display: flex;
  align-items: center;
}

.logo-static {
  display: inline-flex;
  align-items: center;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: currentColor;
  margin-left: 1px;
  animation: blink 0.8s step-end infinite;
  vertical-align: middle;
  opacity: 0;
}
.nav-logo__cursor.visible {
  opacity: 1;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* ── BASE BUTTON — exact port of BaseButton.vue ────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.00625rem;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  outline: none;
  user-select: none;
  transition:
    background 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    opacity 150ms ease;
}
.btn:active:not(.btn--disabled) {
  opacity: 0.82;
}
.btn--disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.btn--sm {
  font-size: 0.75rem;
  padding: 0.563rem 1rem;
}
.btn--md {
  font-size: 0.75rem;
  padding: 0.75rem 1.625rem;
}
.btn--lg {
  font-size: 0.813rem;
  padding: 0.875rem 2rem;
}

.btn--primary {
  background: #4539cc;
  color: #ffffff;
}

.btn--primary:hover:not(.btn--disabled) {
  background: #4539cc;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.18);
}

.btn--ghost {
  background: transparent;
  color: #555555;
}
.btn--ghost:hover:not(.btn--disabled) {
  background: #f0f0f0;
  color: #0d0d0d;
}

.btn--outline {
  background: transparent;
  color: #0d0d0d;
  border: 1px solid #d0d0d0;
}
.btn--outline:hover:not(.btn--disabled) {
  background: #fafafa;
  border-color: #a0a0a0;
}

.btn--brand {
  background: #4539cc;
  color: #ffffff;
  border-radius: 0.5rem;
}
.btn--brand:hover:not(.btn--disabled) {
  background: #3229a8;
  box-shadow: 0 0.125rem 0.5rem rgba(69, 57, 204, 0.22);
}

.btn--white {
  background: #ffffff;
  color: #0d0d0d;
}
.btn--white:hover:not(.btn--disabled) {
  background: #f0f0f0;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.08);
}

.btn__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.15s ease;
}
.btn__label--hidden {
  visibility: hidden;
}

.btn__loading-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.btn--loading .btn__loading-inner {
  opacity: 1;
}
.btn__loading-text {
  font-size: inherit;
  font-weight: 500;
}

.btn__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
}
.btn__dots span {
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: currentColor;
  animation: btn-dot-bounce 0.65s ease-in-out infinite;
}
.btn__dots span:nth-child(1) {
  animation-delay: 0s;
}
.btn__dots span:nth-child(2) {
  animation-delay: 0.12s;
}
.btn__dots span:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes btn-dot-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  40% {
    transform: translateY(-0.1875rem);
    opacity: 1;
  }
}

/* HighlightMark.vue — exact port */
.hm {
  color: #4539cc;
  position: relative;
  display: inline;
  white-space: nowrap;
}
.hm__arc {
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: -0.2em;
  height: 0.28em;
  display: block;
  pointer-events: none;
}
.hm__svg {
  width: 100%;
  height: 100%;
  color: #4539cc;
  opacity: 0.5;
  overflow: visible;
}

.hero {
  background: #f8f8f8;
}

.hero__inner {
  width: 100%;
  max-width: 65rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  text-align: left;
  padding: clamp(3.5rem, 10svh, 7rem) 0 clamp(0.5rem, 7svh, 5rem);
}
@media (max-width: 640px) {
  .hero__content {
    padding: 2.75rem 0 2.5rem;
  }
}

.hero__logo {
  cursor: pointer;
  margin-bottom: 1.75rem;
}
.hero__logo svg {
  width: clamp(6.875rem, 10vw, 9.25rem);
  height: auto;
}

.hero__announcement {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4539cc;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  padding: 0.375rem 1rem;
  border: 1px solid rgba(69, 57, 204, 0.2);
  border-radius: 9999px;
  background: rgba(69, 57, 204, 0.05);
}

.hero__headline {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  gap: 0.25rem;
}

.hero__headline-sub {
  font-size: clamp(2.25rem - 0.25rem, 5vw - 0.25rem, 2.875rem - 0.25rem);
  line-height: 1.15;
  color: #0d0d0d;
  font-weight: 700;
}

.hero__headline-main {
  font-size: clamp(2.25rem, 5vw, 2.875rem);
  line-height: 1.12;
}

.hero__desc {
  font-size: 0.9375rem;
  color: #737373;
  line-height: 1.75;
  margin-bottom: 1rem;
  width: 36.5rem;
  max-width: 100%;
}
@media (max-width: 640px) {
  .hero__desc {
    width: 100%;
    font-size: 0.8125rem;
  }
}

.hero__cta-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 36.5rem;
  max-width: 100%;
}
@media (max-width: 640px) {
  .hero__cta-block {
    width: 100%;
  }
}

.hero__email-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .hero__email-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }
}

.hero__email-input {
  height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid #e4e4e4;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  color: #0d0d0d;
  background: #ffffff;
  outline: none;
  flex: 1;
  min-width: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.hero__email-input::placeholder {
  color: #a0a0a0;
}
.hero__email-input:focus:not(.hero__email-input--error) {
  border-color: #4539cc;
}
.hero__email-input--error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.03);
}
.hero__email-input--error:focus {
  border-color: #ef4444;
}
.hero__email-input--success {
  border-color: #e4e4e4;
  opacity: 0.5;
  cursor: not-allowed;
}
.hero__email-input:disabled {
  cursor: not-allowed;
}
@media (max-width: 640px) {
  .hero__email-input {
    flex: none;
    width: 100%;
  }
}

.hero__cta-btn {
  cursor: default; /* default until JS sets pointer on valid email */
}
.hero__cta-btn button {
  min-width: 11.125rem;
  justify-content: center;
}
@media (max-width: 640px) {
  .hero__cta-btn button,
  .hero__cta-btn a {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

.hero__btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
}

.hero__microtext-wrap {
  margin-top: 1rem;
  min-height: 2.25rem;
  display: flex;
  align-items: flex-start;
}

.hero__microtext {
  font-size: 0.75rem;
  color: #a0a0a0;
  text-align: left;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.hero__microtext--error {
  color: #ef4444;
}
.hero__microtext--success {
  color: #4539cc;
}

.demo {
  background: linear-gradient(
    180deg,
    #f8f8f8 0%,
    rgba(69, 57, 204, 0.04) 30%,
    rgba(69, 57, 204, 0.07) 100%
  );
  overflow: hidden;
}

.demo__inner {
  width: 100%;
  max-width: 65rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 0 2rem;
}
@media (max-width: 640px) {
  .demo__header {
    padding: 2rem 0 1.5rem;
  }
}

.demo__title {
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.demo__subtitle {
  font-size: 0.8125rem;
  color: #737373;
  line-height: 1.75;
}

.demo__mockup {
  width: 80%;
  margin: 0 auto;
  flex-shrink: 0;
}
.demo__mockup .bm {
  --bm-radius: 0.75rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow:
    0 0.5rem 3rem rgba(69, 57, 204, 0.12),
    0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}
@media (max-width: 1024px) {
  .demo__mockup {
    width: 90%;
  }
}
@media (max-width: 640px) {
  .demo__mockup {
    width: 100%;
  }
}

/* ── Browser Mockup ─────────────────────────────────────────────────────────── */
.bm {
  --bm-radius: 0.75rem;
  border-radius: var(--bm-radius);
  overflow: hidden;
}

.bm--light {
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 1.5rem 3.75rem rgba(0, 0, 0, 0.18),
    0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
}

.bm--dark {
  background: #111111;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 2rem 5rem rgba(0, 0, 0, 0.6);
}

/* Chrome bar */
.bm__chrome {
  position: relative;
  display: flex;
  align-items: center;
  height: 3rem;
  padding: 0.625rem 1.0625rem;
  border-bottom: 1px solid;
  border-top-left-radius: var(--bm-radius);
  border-top-right-radius: var(--bm-radius);
  user-select: none;
}

.bm--light .bm__chrome {
  background: #fff;
  border-bottom-color: #dbdbdb;
}

.bm--dark .bm__chrome {
  background: #2c2c2e;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Left cluster */
.bm__left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
  gap: 0.125rem;
}

.bm__lights {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.75rem;
}

.bm__light {
  width: 0.813rem;
  height: 0.813rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.bm__light--red {
  background: #ff5f57;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}
.bm__light--yellow {
  background: #ffbd2e;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}
.bm__light--green {
  background: #28c840;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}

.bm__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.75rem;
  border-radius: 0.25rem;
  cursor: pointer;
  line-height: 0;
  transition: opacity 0.15s ease;
}

.bm__nav-btn--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.bm__nav-btn:hover:not(.bm__nav-btn--disabled) {
  opacity: 0.65;
}

.bm__icon {
  flex-shrink: 0;
  display: block;
  /* width: 1rem;
  height: 1rem; */
}

.bm--light .bm__icon {
  color: #737373;
}
.bm--dark .bm__icon {
  color: rgba(255, 255, 255, 0.75);
}

/* Shield: absolutely positioned just left of URL bar */
.bm__shield {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% - 17.1875rem - 1.25rem - 0.375rem);
  flex-shrink: 0;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.bm--light .bm__shield {
  color: #6e6e6e;
}
.bm--dark .bm__shield {
  color: rgba(255, 255, 255, 0.45);
}

/* Center — absolutely positioned so URL is truly centred */
.bm__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 21.375rem - 2.125rem);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.bm__url {
  pointer-events: auto;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 34.375rem;
  height: 1.75rem;
  padding: 0 0.625rem;
  border-radius: 0.375rem;
  border: 1px solid;
}

.bm--light .bm__url {
  background: #fff;
  border-color: #bfbfbf;
}
.bm--dark .bm__url {
  background: #1c1c1e;
  border-color: rgba(255, 255, 255, 0.1);
}

.bm__url-inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.bm__url-lock {
  flex-shrink: 0;
}

.bm--light .bm__url-lock {
  color: #6e6e6e;
}
.bm--dark .bm__url-lock {
  color: rgba(255, 255, 255, 0.45);
}

.bm__url-text {
  font-size: 0.813rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  line-height: 1;
  position: relative;
  top: 1px;
}

.bm--light .bm__url-text {
  color: #1b1b1b;
}
.bm--dark .bm__url-text {
  color: rgba(255, 255, 255, 0.85);
}

.bm__reload-btn {
  pointer-events: auto;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  line-height: 0;
}

.bm__reload-btn:hover {
  opacity: 0.75;
}

.bm__url-reload {
  flex-shrink: 0;
  opacity: 0.5;
  width: 0.875rem;
  height: 0.875rem;
}

.bm--light .bm__url-reload {
  color: #6e6e6e;
}
.bm--dark .bm__url-reload {
  color: rgba(255, 255, 255, 0.45);
}

@keyframes bm-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.bm__url-reload--spin {
  animation: bm-spin 0.6s linear;
}

/* Right cluster */
.bm__right {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  flex-shrink: 0;
  margin-left: auto;
  min-width: 10.6875rem;
  justify-content: flex-end;
  z-index: 1;
}

/* Body */
.bm__body {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bm--light .bm__body {
  background: #fff;
}
.bm--dark .bm__body {
  background: #111111;
}

.bm__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive — ≤ 1198px: hide nav-btns & shield */
@media (max-width: 1198px) {
  .bm__nav-btn {
    display: none;
  }
  .bm__shield {
    display: none;
  }
  .bm__right {
    min-width: 3.4375rem;
    gap: 0.75rem;
  }
  .bm__center {
    max-width: calc(100% - 6.875rem - 2.125rem);
  }
  .bm__url {
    width: 100%;
    min-width: 25.3125rem;
    max-width: 34.375rem;
  }
}

/* Tablet ≤ 844px */
@media (max-width: 844px) {
  .bm__chrome {
    height: 2.75rem;
    padding: 0 0.75rem;
  }
  .bm__lights {
    gap: 0.375rem;
    margin-right: 0.5rem;
  }
  .bm__light {
    width: 0.6875rem;
    height: 0.6875rem;
  }
  .bm__url-text {
    font-size: 0.75rem;
  }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .bm__chrome {
    height: 2.375rem;
    padding: 0 0.625rem;
  }
  .bm__lights {
    gap: 0.3125rem;
    margin-right: 0.375rem;
  }
  .bm__light {
    width: 0.5625rem;
    height: 0.5625rem;
  }
  .bm__right {
    display: none;
  }
  .bm__shield {
    display: none;
  }
  .bm__center {
    position: static;
    transform: none;
    flex: 1;
    max-width: none;
    justify-content: flex-start;
    margin: 0 0.5rem;
  }
  .bm__url {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 1.5rem;
  }
  .bm__reload-btn {
    display: none;
  }
  .bm__url-text {
    font-size: 0.625rem;
  }
}

.trust {
  background: #f8f8f8;
}

.trust__inner {
  width: 100%;
  max-width: 65rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.trust__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #a0a0a0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.trust__stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding: 1rem 1.75rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(69, 57, 204, 0.1);
  min-width: 7.5rem;
}
@media (max-width: 640px) {
  .trust__stat {
    padding: 0.875rem 1.25rem;
    min-width: 6.25rem;
  }
}

.trust__stat-value {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #4539cc;
  letter-spacing: -0.03em;
  line-height: 1;
}

.trust__stat-desc {
  font-size: 0.6875rem;
  color: #737373;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.trust__logos {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.trust__logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: trust-scroll 24s linear infinite;
  will-change: transform;
}
.trust__logos-track:hover {
  animation-play-state: paused;
}

.trust__logo-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #d0d0d0;
  letter-spacing: -0.03em;
  padding: 0 2rem;
}
.trust__logo-item::after {
  content: "·";
  margin-left: 2rem;
  color: #e4e4e4;
  font-weight: 400;
}

@keyframes trust-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.features {
  background: #f8f8f8;
  position: relative;
}
.features::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 20%,
      rgba(34, 197, 94, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 30% at 90% 80%,
      rgba(69, 57, 204, 0.04) 0%,
      transparent 60%
    );
}

.features__inner {
  width: 100%;
  max-width: 72.5rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media (max-width: 1024px) {
  .features__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}
@media (max-width: 844px) {
  .features__inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .features__inner {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-inline: 1rem;
  }
}

.features__header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 1024px) {
  .features__header {
    grid-column: 1/-1;
  }
}
@media (max-width: 844px) {
  .features__header {
    order: 0;
  }
}

.features__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
}

.features__subtitle {
  font-size: 0.8125rem;
  color: #737373;
}

.features__row {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.features__row:last-child {
  margin-bottom: 0;
}
.features__row--r1 {
  grid-template-columns: 2fr 1fr;
}
.features__row--r1 .features__card:last-child {
  aspect-ratio: 1;
}
.features__row--r2 {
  grid-template-columns: repeat(3, 1fr);
}
.features__row--r2 .features__card {
  aspect-ratio: 1;
}
.features__row--r3 {
  grid-template-columns: 2fr 1fr;
}
.features__row--r3 .features__card:last-child {
  aspect-ratio: 1;
}
@media (max-width: 1024px) {
  .features__row--r1 {
    grid-template-columns: repeat(2, 1fr);
    grid-column: 1/-1;
  }
  .features__row--r1 .features__card:last-child {
    grid-column: 1/-1;
  }
  .features__row--r2,
  .features__row--r3 {
    display: contents;
  }
  .features__row--r3 .features__card--tracking {
    grid-column: 1/-1;
    order: 1;
  }
  .features__row--r2 .features__card--esig {
    order: 2;
  }
  .features__row--r2 .features__card--purple {
    order: 3;
  }
  .features__row--r2 .features__card--lang {
    order: 4;
  }
}
@media (max-width: 844px) {
  .features__row {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
  }
  .features__row .features__card:last-child {
    grid-column: auto;
  }
  .features__row--r1 {
    order: 1;
  }
  .features__row--r3 {
    order: 2;
  }
  .features__row--r2 {
    order: 3;
  }
}
@media (max-width: 640px) {
  .features__row {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .features__row .features__card {
    aspect-ratio: auto;
  }
}

.features__card {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 250ms ease,
    border-color 250ms ease;
}
.features__card:hover {
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.07);
  border-color: #ccc;
}
.features__card--purple {
  border: 1.5px solid #a855f7;
}
.features__card--purple:hover {
  border-color: #9333ea;
}

.features__preview {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem 1rem;
  overflow: hidden;
  position: relative;
}
.features__preview--flush {
  padding: 1rem 1rem 0;
  align-items: flex-start;
}
@media (max-width: 844px) {
  .features__preview {
    padding: 1.375rem 1.125rem 0.875rem;
  }
}
@media (max-width: 640px) {
  .features__preview {
    padding: 1.25rem 1rem 0.75rem;
  }
  .features__preview--flush {
    padding: 0.875rem 0.875rem 0;
  }
}

.features__caption {
  padding: 0.875rem 1.25rem 1.125rem;
  border-top: 1px solid #f2f2f2;
  margin-top: auto;
  min-height: 6rem;
}
@media (max-width: 844px) {
  .features__caption {
    min-height: 5.5rem;
  }
}
@media (max-width: 640px) {
  .features__caption {
    padding: 0.75rem 1rem 0.875rem;
    min-height: 0;
  }
}

.features__caption-soon {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  color: #9333ea;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 1.25rem;
  padding: 0.0625rem 0.4375rem;
  vertical-align: text-top;
  margin-left: 0.3125rem;
}

.features__caption-title {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.features__caption-desc {
  font-size: 0.8125rem;
  color: #737373;
  line-height: 1.55;
}

.features__preview--lottie {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  min-height: 11.875rem;
  max-height: 14.375rem;
}
@media (max-width: 640px) {
  .features__preview--lottie {
    min-height: 10rem;
    max-height: 11.875rem;
  }
}
.features__preview--lottie .lottie-player {
  width: 100%;
  height: 100%;
  scale: 1.6;
}
@media (max-width: 844px) {
  .features__preview--lottie .lottie-player {
    scale: 1;
  }
}

.mock-form {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}
.mock-form__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.6875rem;
  background: rgba(69, 57, 204, 0.06);
  border: 1px solid rgba(69, 57, 204, 0.18);
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #4539cc;
  align-self: flex-start;
}
.mock-form__doc-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 0.5rem;
  padding: 0.5rem 0.625rem;
}
.mock-form__thumb {
  width: 3rem;
  height: 2.125rem;
  background: #f2f2f2;
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
  padding: 0.25rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  position: relative;
}
.mock-form__thumb-line {
  height: 0.25rem;
  background: #d4d4d4;
  border-radius: 0.125rem;
}
.mock-form__thumb-line--short {
  width: 60%;
}
.mock-form__thumb-stamp {
  position: absolute;
  right: 0.1875rem;
  bottom: 0.1875rem;
  width: 1rem;
  height: 0.625rem;
  background: rgba(69, 57, 204, 0.12);
  border: 1px solid rgba(69, 57, 204, 0.3);
  border-radius: 0.125rem;
}
.mock-form__arrow-icon {
  font-size: 0.8125rem;
  color: #4539cc;
  flex-shrink: 0;
}
.mock-form__doc-val {
  font-size: 0.625rem;
  font-family: "JetBrains Mono", monospace;
  color: #555;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
  padding: 0.1875rem 0.4375rem;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mock-form__label {
  font-size: 0.625rem;
  color: #737373;
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}
.mock-form__req {
  color: #4539cc;
  font-size: 0.625rem;
}
.mock-form__input {
  font-size: 0.6875rem;
  font-family: "JetBrains Mono", monospace;
  color: #555555;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  padding: 0.375rem 0.625rem;
}
.mock-form__input--active {
  border-color: #4539cc;
  background: rgba(69, 57, 204, 0.02);
  color: #0d0d0d;
}

.mock-brand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-brand__doc {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  width: 11.25rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
}
.mock-brand__doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.mock-brand__logo-pill {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: #4539cc;
  background: rgba(69, 57, 204, 0.07);
  border-radius: 1.25rem;
  padding: 0.1875rem 0.5rem;
}
.mock-brand__logo-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4539cc;
}
.mock-brand__doc-tag {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #737373;
  background: #f2f2f2;
  border-radius: 0.25rem;
  padding: 0.125rem 0.375rem;
}
.mock-brand__doc-lines {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}
.mock-brand__line {
  height: 0.375rem;
  border-radius: 0.1875rem;
  background: #ebebeb;
}
.mock-brand__line--title {
  height: 0.5625rem;
  background: #ddd;
  width: 75%;
}
.mock-brand__line--short {
  width: 50%;
}
.mock-brand__line--med {
  width: 65%;
}
.mock-brand__doc-footer {
  border-top: 1px solid #f0f0f0;
  padding-top: 0.625rem;
}
.mock-brand__color-row {
  display: flex;
  gap: 0.375rem;
}
.mock-brand__swatch {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
}
.mock-brand__swatch--1 {
  background: #4539cc;
}
.mock-brand__swatch--2 {
  background: #3a7d6e;
}
.mock-brand__swatch--3 {
  background: #f0eefc;
  border: 1px solid #ddd;
}

.mock-sign {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-sign__doc {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  width: 11.25rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
}
.mock-sign__doc-lines {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}
.mock-sign__line {
  height: 0.375rem;
  border-radius: 0.1875rem;
  background: #ebebeb;
}
.mock-sign__line--short {
  width: 60%;
}
.mock-sign__field {
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem 0.625rem;
}
.mock-sign__field-label {
  font-size: 0.5625rem;
  color: #a0a0a0;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-sign__field-area {
  height: 2.25rem;
  background: #fafafa;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.mock-sign__sig {
  width: 100%;
  height: 100%;
}
.mock-sign__sig-path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: sig-draw 3s linear infinite;
}
.mock-sign__check {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.625rem;
  font-weight: 500;
  color: #3a7d6e;
}

@keyframes sig-draw {
  0% {
    stroke-dashoffset: 420;
    opacity: 0;
  }
  8% {
    stroke-dashoffset: 420;
    opacity: 1;
  }
  52% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  76% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  92% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 420;
    opacity: 0;
  }
}
.mock-lang {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-lang__card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  width: 13.75rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
}
.mock-lang__flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.mock-lang__flag {
  font-size: 1.125rem;
  line-height: 1;
}
.mock-lang__rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.mock-lang__row {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.mock-lang__orig {
  font-size: 0.5625rem;
  color: #a0a0a0;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-lang__trans {
  font-size: 0.5625rem;
  color: #0d0d0d;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-lang__chips {
  display: flex;
  gap: 0.3125rem;
}
.mock-lang__chip {
  font-size: 0.625rem;
  font-weight: 600;
  color: #4539cc;
  background: rgba(69, 57, 204, 0.08);
  border-radius: 0.25rem;
  padding: 0.125rem 0.4375rem;
}
.mock-lang__chip--more {
  color: #a0a0a0;
  background: #f2f2f2;
}

.mock-storage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.mock-storage__icons {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.mock-storage__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  color: #737373;
  font-weight: 500;
}
.mock-storage__icon svg {
  width: 2.25rem;
  height: 2.25rem;
}
.mock-storage__arrow {
  opacity: 0.5;
}
.mock-storage__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #737373;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
}
@media (max-width: 844px) {
  .mock-storage {
    gap: 0.5rem;
  }
  .mock-storage__icons {
    gap: 0.875rem;
  }
  .mock-storage__icon svg {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.mock-tracker {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 0.6875rem;
}
.mock-tracker__header,
.mock-tracker__row {
  display: grid;
  grid-template-columns: minmax(6.25rem, 1fr) minmax(10rem, 13.75rem) 5rem;
  align-items: center;
  column-gap: 0.5rem;
  padding: 0.625rem 0.875rem;
}
.mock-tracker__header {
  border-bottom: 1px solid #eee;
}
.mock-tracker__row {
  border-bottom: 1px solid #f5f5f5;
}
.mock-tracker__row:last-child {
  border-bottom: none;
}
.mock-tracker__header-name,
.mock-tracker__header-time {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a0a0a0;
  font-weight: 600;
}
.mock-tracker__header-time {
  text-align: right;
}
.mock-tracker__header-pipeline {
  display: flex;
  align-items: center;
}
.mock-tracker__header-step {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #a0a0a0;
  font-weight: 600;
  text-align: center;
  width: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.mock-tracker__step-full {
  display: inline;
}
.mock-tracker__step-abbr {
  display: none;
}
.mock-tracker__header-connector {
  flex: 1;
}
.mock-tracker__doc-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.mock-tracker__doc-name {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #0d0d0d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-tracker__pipeline {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
.mock-tracker__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-tracker__dot--done {
  background: #4539cc;
  border: 1.5px solid #4539cc;
}
.mock-tracker__dot--active {
  background: #ffffff;
  border: 2px solid #4539cc;
  box-shadow: 0 0 0 3px rgba(69, 57, 204, 0.12);
}
.mock-tracker__dot--idle {
  background: #ffffff;
  border: 1.5px solid #d4d4d4;
}
.mock-tracker__connector {
  flex: 1;
  height: 0;
  border-top: 2px dotted #e2e2e2;
}
.mock-tracker__connector--filled {
  border-top-color: #d0d0d0;
}
.mock-tracker__connector--half {
  border-top-color: #d0d0d0;
  opacity: 0.35;
}
.mock-tracker__time {
  font-size: 0.625rem;
  color: #a0a0a0;
  text-align: right;
  white-space: nowrap;
}
.mock-tracker__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0.875rem;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}
.mock-tracker__footer-stat {
  font-size: 0.6875rem;
  color: #737373;
}
.mock-tracker__footer-num {
  font-weight: 700;
  color: #0d0d0d;
}
.mock-tracker__footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  border: none;
  background: #f2f2f2;
  color: #555555;
  cursor: pointer;
  transition: background 0.15s ease;
}
.mock-tracker__footer-btn:hover {
  background: #e8e8e8;
  color: #0d0d0d;
}
@media (max-width: 1024px) {
  .mock-tracker__header,
  .mock-tracker__row {
    grid-template-columns: minmax(6.25rem, 1fr) minmax(8.75rem, 11.25rem);
  }
  .mock-tracker__header-time,
  .mock-tracker__time {
    display: none;
  }
}
@media (max-width: 844px) {
  .mock-tracker__header,
  .mock-tracker__row {
    grid-template-columns: minmax(5rem, 1fr) minmax(7.5rem, 10rem);
    column-gap: 0.5rem;
    padding: 0.5rem 0.625rem;
  }
  .mock-tracker__header-step {
    font-size: 0.4375rem;
  }
  .mock-tracker__step-full {
    display: none;
  }
  .mock-tracker__step-abbr {
    display: inline;
  }
  .mock-tracker__doc-name {
    font-size: 0.625rem;
  }
  .mock-tracker__dot {
    width: 0.625rem;
    height: 0.625rem;
  }
  .mock-tracker__footer {
    padding: 0.5rem 0.625rem;
  }
}

.security {
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.security__inner {
  width: 100%;
  max-width: 68.75rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.25rem;
}

.security__header {
  text-align: center;
  max-width: 43.75rem;
}

.security__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.875rem;
}

.security__subtitle {
  font-size: 0.9375rem;
  color: #737373;
  line-height: 1.75;
  margin: 0;
}

.security__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 844px) {
  .security__body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.security__doc {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0.125rem 0.5rem rgba(0, 0, 0, 0.04),
    0 0.75rem 2.5rem rgba(0, 0, 0, 0.07);
}

.security__scan {
  position: absolute;
  top: -2%;
  left: 0;
  right: 0;
  height: 0.125rem;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(69, 57, 204, 0.4),
    transparent
  );
}

.security__doc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f0f0f0;
}

.security__doc-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.security__doc-chip {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4539cc;
  background: rgba(69, 57, 204, 0.08);
  border: 1px solid rgba(69, 57, 204, 0.15);
  border-radius: 0.25rem;
  padding: 0.125rem 0.375rem;
}

.security__doc-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #333333;
}

.security__shield-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: #4539cc;
  background: rgba(69, 57, 204, 0.06);
  border: 1px solid rgba(69, 57, 204, 0.14);
  border-radius: 9999px;
  padding: 0.1875rem 0.625rem;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 0 0.25rem rgba(69, 57, 204, 0.08);
  }
}
.security__doc-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  margin-bottom: 1.125rem;
}

.security__doc-line {
  height: 0.375rem;
  border-radius: 0.1875rem;
  background: #d1d5db;
  width: 100%;
}
.security__doc-line--med {
  width: 75%;
}
.security__doc-line--short {
  width: 45%;
}

.security__fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.security__field {
  background: #fafafa;
  border: 1px solid #e4e4e4;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.security__field-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.5625rem;
  font-weight: 500;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.1875rem;
}

.security__field-value {
  font-size: 0.75rem;
  font-weight: 500;
  color: #737373;
  filter: blur(0.1875rem);
}

.security__sig-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.75rem;
}

.security__sig-block {
  flex: 1;
}

.security__sig-label {
  font-size: 0.5625rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.security__sig-svg {
  width: 7.5rem;
  height: 2rem;
  display: block;
}

.security__sig-path {
  opacity: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.security__verified {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #16a34a;
  opacity: 0;
  transform: translateY(0.25rem);
  transition:
    opacity 500ms ease,
    transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.security__verified--show {
  opacity: 1;
  transform: translateY(0);
}

.security__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.6;
}

.security__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.security__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.security__item-icon {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.security__item-icon--red {
  background: rgba(220, 38, 38, 0.07);
  color: #dc2626;
}
.security__item-icon--blue {
  background: rgba(69, 57, 204, 0.07);
  color: #4539cc;
}
.security__item-icon--purple {
  background: rgba(147, 51, 234, 0.07);
  color: #9333ea;
}
.security__item-icon--green {
  background: rgba(22, 163, 74, 0.07);
  color: #16a34a;
}

.security__item-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.security__item-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d0d0d;
  line-height: 1.3;
  margin: 0;
}

.security__item-desc {
  font-size: 0.75rem;
  color: #737373;
  line-height: 1.55;
  margin: 0;
}

.prod {
  background: #f8f8f8;
  position: relative;
}

.prod__inner {
  width: 100%;
  max-width: 65rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.prod__header {
  text-align: center;
  max-width: 43.75rem;
}

.prod__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 0.875rem;
}

.prod__subtitle {
  font-size: 0.9375rem;
  color: #737373;
  line-height: 1.75;
  margin: 0;
}

.prod__comparison {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 4.5rem 1fr;
  align-items: stretch;
}
@media (max-width: 844px) {
  .prod__comparison {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.prod__card {
  border-radius: 1rem;
  padding: 1.5rem 1.625rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.prod__card--before {
  background: #ffffff;
  border: 1px solid #e4e4e4;
}
.prod__card--after {
  background: #ffffff;
  border: 1.5px solid rgba(69, 57, 204, 0.22);
  box-shadow:
    0 0 0 4px rgba(69, 57, 204, 0.04),
    0 0.75rem 2.5rem rgba(69, 57, 204, 0.07);
}

.prod__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  align-self: flex-start;
}
.prod__card-tag--before {
  background: #f0f0f0;
  color: #737373;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.02em;
}
.prod__card-tag--after {
  background: rgba(69, 57, 204, 0.08);
  color: #4539cc;
}

.prod__steps {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.prod__step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.prod__step--before {
  opacity: 0.7;
}

.prod__step-num {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 0.375rem;
  background: #f0f0f0;
  color: #737373;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

.prod__step-check {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 0.375rem;
  background: #4539cc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

.prod__step-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.prod__step-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.3;
  margin: 0;
}
.prod__step--before .prod__step-label {
  color: #737373;
  text-decoration: line-through;
  text-decoration-color: #d0d0d0;
}

.prod__step-note {
  font-size: 0.75rem;
  color: #a0a0a0;
  line-height: 1.4;
  margin: 0;
}
.prod__step--after .prod__step-note {
  color: #737373;
}

.prod__card-footer {
  margin-top: auto;
}

.prod__time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.625rem 1rem;
  border-radius: 0.625rem;
  font-weight: 600;
}
.prod__time-badge--before {
  background: #f0f0f0;
  color: #737373;
  font-size: 0.75rem;
  font-family: "JetBrains Mono", monospace;
}
.prod__time-badge--after {
  background: rgba(69, 57, 204, 0.07);
  color: #4539cc;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.prod__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
}
@media (max-width: 844px) {
  .prod__divider {
    flex-direction: row;
    padding: 0.25rem 0;
  }
}

.prod__divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    #e4e4e4 40%,
    #e4e4e4 60%,
    transparent
  );
}
@media (max-width: 844px) {
  .prod__divider-line {
    width: auto;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      #e4e4e4 40%,
      #e4e4e4 60%,
      transparent
    );
  }
}

.prod__divider-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  flex-shrink: 0;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}
@media (max-width: 844px) {
  .prod__divider-icon svg {
    transform: rotate(90deg);
  }
}

.prod__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 640px) {
  .prod__metrics {
    grid-template-columns: 1fr;
  }
}

.prod__metric {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.prod__metric:not(:last-child) {
  border-right: 1px solid #f0f0f0;
}
@media (max-width: 640px) {
  .prod__metric:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
}

.prod__metric-value {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #4539cc;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}

.prod__metric-label {
  font-size: 0.8125rem;
  color: #737373;
  line-height: 1.55;
  margin: 0;
}

/* ── PRICING TOGGLE (PricingToggle.vue) ──────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-toggle__pill {
  position: relative;
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 9999px;
  padding: 0.1875rem;
  gap: 0;
}
.pricing-toggle__indicator {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: calc(50% - 0.1875rem);
  height: calc(100% - 0.375rem);
  border-radius: 9999px;
  background: #ffffff;
  box-shadow:
    0 1px 0.1875rem rgba(0, 0, 0, 0.12),
    0 1px 0.125rem rgba(0, 0, 0, 0.08);
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: none;
}
.pricing-toggle__indicator--annual {
  transform: translateX(100%);
}
.pricing-toggle__option {
  position: relative;
  z-index: 1;
  padding: 0.4375rem 1.25rem;
  border: none;
  background: none;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #a0a0a0;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}
.pricing-toggle__option--active {
  color: #0d0d0d;
}

.pricing {
  background: linear-gradient(
    180deg,
    #f8f8f8 0%,
    rgba(69, 57, 204, 0.04) 40%,
    rgba(69, 57, 204, 0.08) 100%
  );
}
.pricing__inner {
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing__header.is-visible {
  opacity: 1;
}
.pricing__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.pricing__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  color: #a0a0a0;
  line-height: 1.55;
  margin-bottom: 0.25rem;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e4e4e4;
}
@media (max-width: 844px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}
.pricing__card {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing__card.is-visible {
  opacity: 1;
}
.pricing__card--0 {
  transition-delay: 80ms;
}
.pricing__card--1 {
  transition-delay: 200ms;
}
.pricing__legal {
  margin-top: 1.25rem;
  width: 100%;
  font-size: 0.75rem;
  color: #a0a0a0;
  line-height: 1.75;
  text-align: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  padding: 1.75rem;
  width: 100%;
}
.pricing-card--free {
  background: #f3f3f7;
  border-right: 1px solid #e4e4e4;
}
.pricing-card--featured {
  background: #ffffff;
}
.pricing-card__header {
  margin-bottom: 1.25rem;
}
.pricing-card__name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  min-height: 1.375rem;
}
.pricing-card__name {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #737373;
  letter-spacing: -0.01em;
}
.pricing-card__name--featured {
  color: #4539cc;
  font-weight: 600;
}
.pricing-card__save-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  background: rgba(69, 57, 204, 0.08);
  color: #4539cc;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.pricing-card__price-wrap {
  min-height: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.0625rem;
  line-height: 1;
  position: relative;
  width: 100%;
}
.pricing-card__price-currency {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d0d0d;
  align-self: flex-start;
  margin-top: 0.3125rem;
  letter-spacing: -0.03em;
}
.pricing-card__price-value {
  font-family: "Inter", sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card__price-value--free {
  font-size: 3rem;
}
.pricing-card__price-period {
  font-size: 0.75rem;
  color: #737373;
  margin-left: 0.125rem;
  align-self: flex-end;
  padding-bottom: 0.375rem;
}
.pricing-card__billing-note {
  font-size: 0.75rem;
  color: #a0a0a0;
  margin-top: 0.125rem;
}
.pricing-card__footer {
  margin-bottom: 1.25rem;
}
.pricing-card__cta {
  width: 100% !important;
  border-radius: 0.75rem !important;
  background: rgba(228, 228, 228, 0.8) !important;
  color: #333333 !important;
  border: 1px solid rgba(208, 208, 208, 0.5) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  padding: 0.75rem 1.625rem !important;
  cursor: pointer !important;
  transition:
    background 150ms ease,
    box-shadow 150ms ease !important;
  letter-spacing: -0.006em !important;
}
.pricing-card__cta:hover {
  background: #e4e4e4 !important;
}
.pricing-card__cta--filled {
  background: #0d0d0d !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, 0.14) !important;
}
.pricing-card__cta--filled:hover {
  background: #333333 !important;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2) !important;
}
.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-card__inherit-note {
  font-size: 0.75rem;
  color: #a0a0a0;
  margin-bottom: 0.75rem;
}
.pricing-card__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-card__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  color: #0d0d0d;
}
.pricing-card__item:not(:last-child) {
  border-bottom: 1px solid rgba(228, 228, 228, 0.6);
}
.pricing-card__check {
  color: #a0a0a0;
  flex-shrink: 0;
}
.pricing-card--featured .pricing-card__check {
  color: #4539cc;
}

.pricing-addons {
  background: linear-gradient(
    180deg,
    rgba(69, 57, 204, 0.08) 0%,
    rgba(69, 57, 204, 0.03) 60%,
    #f8f8f8 100%
  );
}
.pricing-addons__inner {
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.pricing-addons__addons-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 1rem;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing-addons__addons-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 844px) {
  .pricing-addons__addons-card {
    grid-template-columns: 1fr;
  }
}
.pricing-addons__addons-left {
  padding: 1.75rem;
  border-right: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 844px) {
  .pricing-addons__addons-left {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
}
.pricing-addons__addons-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-addons__addons-icon {
  color: #a0a0a0;
  flex-shrink: 0;
}
.pricing-addons__addons-title {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.03em;
}
.pricing-addons__addons-desc {
  font-size: 0.75rem;
  color: #737373;
  line-height: 1.75;
}
.pricing-addons__addons-note {
  font-size: 0.75rem;
  color: #a0a0a0;
  line-height: 1.75;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}
.pricing-addons__addons-right {
  padding: 1.75rem;
}
.pricing-addons__table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-addons__th {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 0 0.625rem;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}
.pricing-addons__th--right {
  text-align: right;
}
.pricing-addons__tr {
  border-bottom: 1px solid #f0f0f0;
}
.pricing-addons__tr:last-child {
  border-bottom: none;
}
.pricing-addons__td {
  padding: 0.625rem 0;
  font-size: 0.75rem;
  color: #0d0d0d;
}
.pricing-addons__td--right {
  text-align: right;
  color: #555555;
  font-variant-numeric: tabular-nums;
}
.pricing-addons__included-text {
  color: #a0a0a0;
  font-weight: 500;
}
.pricing-addons__billing-note {
  font-size: 0.75rem;
  color: #a0a0a0;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #f0f0f0;
  text-align: right;
}
.pricing-addons__enterprise-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 1rem;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.pricing-addons__enterprise-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .pricing-addons__enterprise-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.pricing-addons__enterprise-left {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.pricing-addons__enterprise-icon {
  color: #a0a0a0;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.pricing-addons__enterprise-title {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  margin-bottom: 0.125rem;
}
.pricing-addons__enterprise-desc {
  font-size: 0.75rem;
  color: #737373;
  line-height: 1.55;
}
.pricing-addons__enterprise-cta {
  flex-shrink: 0;
}
.pricing-addons__marquee {
  width: 100%;
  overflow: hidden;
  padding: 0.625rem 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}
.pricing-addons__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}
.pricing-addons__marquee-track:hover {
  animation-play-state: paused;
}
.pricing-addons__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  color: #a0a0a0;
  padding: 0 0.25rem;
}
.pricing-addons__marquee-sep {
  color: #d0d0d0;
  font-size: 0.875rem;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.faq {
  background: linear-gradient(
    180deg,
    #f8f8f8 0%,
    rgba(69, 57, 204, 0.04) 50%,
    #f8f8f8 100%
  );
}

.faq__inner {
  width: 100%;
  max-width: 65rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-top: 5rem;
  padding-bottom: 15rem;
}

.faq__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.faq__list {
  list-style: none;
  border-top: 1px solid #e8e8e8;
}

.faq__item {
  border-bottom: 1px solid #e8e8e8;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq__question:focus-visible {
  outline: 2px solid #4539cc;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.faq__question-text {
  font-size: 1rem;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 1.3;
  flex: 1;
}

.faq__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #888;
  transition: transform 0.2s ease;
}
.faq__chevron--open {
  transform: rotate(90deg);
}

.faq__answer-outer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer-outer--open {
  grid-template-rows: 1fr;
}

.faq__answer {
  min-height: 0;
  overflow: hidden;
}

.faq__answer-inner {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.7;
  padding-bottom: 1.25rem;
}

.footer {
  background: #f8f8f8;
}

.footer__inner {
  width: 100%;
  max-width: 65rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
  display: grid;
  grid-template-columns: 13.75rem 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}
.footer__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: #ebebeb;
}
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 11.875rem 1fr 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 844px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (max-width: 844px) {
  .footer__brand {
    grid-column: 1/-1;
  }
}

.footer__logo-link {
  display: inline-flex;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 0.125rem;
}

.footer__tagline {
  font-size: 0.84375rem;
  color: #737373;
  line-height: 1.55;
  margin: 0;
  max-width: 12.5rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 0.25rem;
}

.footer__col-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: 0.01em;
  margin: 0 0 0.625rem;
  display: block;
}
.footer__col-label--spaced {
  margin-top: 1.75rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  font-size: 0.84375rem;
  color: #737373;
  text-decoration: none;
  line-height: 1.3;
  transition: color 150ms ease;
}
.footer__link:hover {
  color: #0d0d0d;
}

.footer__bottom-copy {
  font-size: 0.75rem;
  color: #a0a0a0;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.footer__madeinca {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 150ms ease;
}
.footer__madeinca:hover {
  opacity: 1;
}

.footer__madeinca-img {
  display: block;
  width: 6.25rem;
  height: auto;
  object-fit: contain;
}
@media (max-width: 640px) {
  .footer__madeinca-img {
    width: 5.5rem;
  }
}
