:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  line-height: 1.6;
  background-color: #030303;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #fafafa;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  padding: 2.5rem clamp(1.5rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 55%),
    #030303;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 100%
    );
  background-size: 120px 120px;
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.hero__nav {
  width: min(1120px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: rgba(15, 15, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__logo-mark {
  font-size: 1.4rem;
  color: #ffffff;
}

.hero__menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(14, 14, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 20, 0.6);
  color: #fff;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero__menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(14, 14, 20, 0.75);
  transform: translateY(-1px);
}

.hero__menu-toggle:focus-visible {
  outline: 2px solid rgba(148, 163, 184, 0.4);
  outline-offset: 3px;
}

.hero__menu-toggle-bar {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.hero__menu-toggle-bar::before,
.hero__menu-toggle-bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero__menu-toggle-bar::before {
  transform: translateY(-6px);
}

.hero__menu-toggle-bar::after {
  transform: translateY(6px);
}

.hero__menu-toggle[aria-expanded='true'] .hero__menu-toggle-bar {
  background: transparent;
}

.hero__menu-toggle[aria-expanded='true'] .hero__menu-toggle-bar::before {
  transform: translateY(0) rotate(45deg);
}

.hero__menu-toggle[aria-expanded='true'] .hero__menu-toggle-bar::after {
  transform: translateY(0) rotate(-45deg);
}

.hero__menu-link {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.hero__menu-link:hover,
.hero__menu-link--active {
  opacity: 1;
}

.hero__menu-link--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  opacity: 1;
  font-weight: 600;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.hero__menu-link--cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  background: #fafafa;
  color: #050505;
  box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.25);
}

.button--light:hover {
  box-shadow: 0 10px 28px -12px rgba(255, 255, 255, 0.55);
}

.button--primary {
  background: #fafafa;
  color: #050505;
  box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.25);
}

.button--primary:hover {
  box-shadow: 0 10px 28px -12px rgba(255, 255, 255, 0.55);
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero__content {
  width: min(960px, 100%);
  margin-top: clamp(6rem, 10vw, 8rem);
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: rgba(191, 219, 254, 0.9);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 640px;
  color: rgba(235, 235, 245, 0.78);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(235, 235, 245, 0.7);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  position: relative;
  display: flex;
  justify-content: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3.5rem);
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(56, 189, 248, 0.08),
      transparent 55%
    ),
    radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.05), transparent 60%);
  opacity: 0.7;
}

.section__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.section__inner--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(2rem, 6vw, 4rem);
}

.section__inner--compact {
  grid-template-columns: minmax(0, 1fr);
  max-width: 880px;
}

.section__header {
  display: grid;
  gap: 0.75rem;
  text-align: center;
  justify-items: center;
}

.section__inner--split .section__header {
  justify-items: start;
  text-align: left;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: rgba(191, 219, 254, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.01em;
}

.section__description {
  margin: 0;
  max-width: 640px;
  color: rgba(235, 235, 245, 0.78);
}

.section__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.features__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: rgba(14, 14, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 35px 80px -45px rgba(15, 15, 25, 0.9);
  backdrop-filter: blur(14px);
}

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.feature-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.feature-card__text {
  margin: 0;
  color: rgba(235, 235, 245, 0.72);
}

.solutions__list {
  display: grid;
  gap: 1.5rem;
}

.solutions__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.solutions__item p {
  margin: 0;
  color: rgba(235, 235, 245, 0.72);
}

.timeline {
  list-style: none;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: 0;
  margin: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.timeline__badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(56, 189, 248, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.timeline__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.timeline__item p {
  margin: 0;
  color: rgba(235, 235, 245, 0.7);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.testimonial-card {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card__quote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(235, 235, 245, 0.78);
}

.testimonial-card__meta {
  display: grid;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: rgba(235, 235, 245, 0.65);
}

.testimonial-card__name {
  font-weight: 600;
  color: #fff;
}

.login-card,
.cta-card {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: rgba(8, 8, 14, 0.85);
}

.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer {
  padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  background: rgba(10, 10, 15, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.footer__menu a {
  color: rgba(235, 235, 245, 0.68);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer__menu a:hover {
  color: #fff;
}

.footer__note {
  margin: 0;
  color: rgba(235, 235, 245, 0.45);
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .hero__nav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
  }

  .hero__logo {
    flex-shrink: 0;
  }

  .hero__menu-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .hero__menu {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 1.1rem;
    background: rgba(14, 14, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero__menu[data-open='true'] {
    display: flex;
  }

  .hero__menu-link {
    width: 100%;
    text-align: left;
    opacity: 0.9;
  }

  .hero__menu-link--cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .hero__menu-link:hover,
  .hero__menu-link--active {
    opacity: 1;
  }

  .section__inner--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 2rem 1.25rem;
  }

  .hero__nav {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .hero__menu {
    padding: 0.75rem 0.85rem;
    gap: 0.6rem;
  }

  .hero__menu-link {
    font-size: 1rem;
  }

  .hero__badge {
    font-size: 0.75rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section {
    padding: clamp(3rem, 12vw, 4rem) 1.25rem;
  }

  .section__header {
    text-align: left;
    justify-items: start;
  }

  .section__eyebrow {
    font-size: 0.7rem;
  }

  .features__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .timeline__item {
    grid-template-columns: minmax(0, 1fr);
  }

  .timeline__badge {
    width: 2rem;
    height: 2rem;
  }

  .testimonials__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-card__actions {
    flex-direction: column;
  }

  .cta-card__actions .button {
    width: 100%;
  }

  .footer__inner {
    justify-items: start;
    text-align: left;
  }

  .footer__menu {
    justify-content: flex-start;
  }
}

