/* Design tokens shared across the homepage and the standalone content pages. */
:root {
  --color-background: #e8eaf0;
  --color-surface-container-low: #e5e7ed;
  --color-primary: #6366f1;
  --color-primary-container: #818cf8;
  --color-tertiary: #7c3aed;
  --color-tertiary-container: #a78bfa;
  --color-on-surface: #2e3040;
  --color-on-surface-variant: #585a68;
  --color-secondary: #6c6e7e;
  --color-on-primary-container: #e0e2ff;
  --color-ring-primary: rgba(99, 102, 241, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--color-background);
  color: var(--color-on-surface);
}

body::selection {
  background-color: var(--color-primary-container);
  color: var(--color-on-primary-container);
}

img {
  display: block;
  max-width: 100%;
}

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

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

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

.neomorph-raised {
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.08),
    -6px -6px 12px rgba(255, 255, 255, 0.6);
}

.neomorph-inset,
.active\:neomorph-inset:active {
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.06),
    inset -4px -4px 8px rgba(255, 255, 255, 0.5);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 120s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .animate-marquee {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
  }
}

.light {
  color-scheme: light;
}

/* Homepage utility-style classes.
   The landing page was originally authored with Tailwind-like utilities in the markup,
   so these class definitions preserve that structure without reworking the HTML. */
.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

.w-full {
  width: 100%;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-20 {
  width: 5rem;
}

.w-96 {
  width: 24rem;
}

.max-w-full {
  max-width: 100%;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-lg {
  max-width: 32rem;
}

.min-h-\[360px\] {
  min-height: 360px;
}

.min-h-\[819px\] {
  min-height: 819px;
}

.h-1\.5 {
  height: 0.375rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-96 {
  height: 24rem;
}

.h-\[500px\] {
  height: 500px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pr-12 {
  padding-right: 3rem;
}

.top-0 {
  top: 0;
}

.top-1\/4 {
  top: 25%;
}

.bottom-1\/4 {
  bottom: 25%;
}

.left-1\/4 {
  left: 25%;
}

.right-1\/4 {
  right: 25%;
}

.inset-0 {
  inset: 0;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.object-cover {
  object-fit: cover;
}

.appearance-none {
  appearance: none;
}

.outline-none {
  outline: none;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.uppercase {
  text-transform: uppercase;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.2;
}

.leading-relaxed {
  line-height: 1.625;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-tertiary {
  color: var(--color-tertiary);
}

.text-on-surface {
  color: var(--color-on-surface);
}

.text-on-surface-variant {
  color: var(--color-on-surface-variant);
}

.text-indigo-600 {
  color: #4f46e5;
}

.text-slate-400\/50 {
  color: rgba(148, 163, 184, 0.5);
}

.text-slate-500 {
  color: #64748b;
}

.text-slate-600 {
  color: #475569;
}

.text-slate-800 {
  color: #1e293b;
}

.bg-background,
.bg-\[\#e8eaf0\] {
  background-color: var(--color-background);
}

.bg-surface-container-low {
  background-color: var(--color-surface-container-low);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-primary-container {
  background-color: var(--color-primary-container);
}

.bg-tertiary-container {
  background-color: var(--color-tertiary-container);
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.4), transparent);
}

.from-white\/40,
.to-transparent {
  color: inherit;
}

.mix-blend-multiply {
  mix-blend-mode: multiply;
}

.filter {
  filter: var(--tw-filter);
}

.blur-3xl {
  --tw-filter: blur(64px);
}

.opacity-0 {
  opacity: 0;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.border-none {
  border: none;
}

.border-b-2 {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

.border-indigo-600 {
  border-color: #4f46e5;
}

.ring-1 {
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.1),
    6px 6px 12px rgba(0, 0, 0, 0.08),
    -6px -6px 12px rgba(255, 255, 255, 0.6);
}

.ring-primary\/10 {
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.1),
    6px 6px 12px rgba(0, 0, 0, 0.08),
    -6px -6px 12px rgba(255, 255, 255, 0.6);
}

.shadow-\[6px_6px_12px_rgba\(0\,0\,0\,0\.08\)\,-6px_-6px_12px_rgba\(255\,255\,255\,0\.6\)\] {
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.08),
    -6px -6px 12px rgba(255, 255, 255, 0.6);
}

.shadow-\[inset_4px_4px_8px_rgba\(0\,0\,0\,0\.06\)\,inset_-4px_-4px_8px_rgba\(255\,255\,255\,0\.5\)\] {
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.06),
    inset -4px -4px 8px rgba(255, 255, 255, 0.5);
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: 1.5rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-\[32px\] {
  border-radius: 32px;
}

.rounded-\[40px\] {
  border-radius: 40px;
}

.rounded-\[48px\] {
  border-radius: 48px;
}

.rounded-t-\[32px\] {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.transition,
.transition-all,
.transition-colors,
.transition-opacity {
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.transition {
  transition-property: all;
}

.transition-all {
  transition-property: all;
}

.transition-colors {
  transition-property: color, background-color, border-color;
}

.transition-opacity {
  transition-property: opacity;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:rotate-3 {
  transform: rotate(3deg);
}

.group:hover .group-hover\:scale-110.group-hover\:rotate-3 {
  transform: scale(1.1) rotate(3deg);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:translate-y-\[-2px\]:hover {
  transform: translateY(-2px);
}

.active\:translate-y-\[2px\]:active {
  transform: translateY(2px);
}

.hover\:text-indigo-500:hover {
  color: #6366f1;
}

.hover\:text-primary:hover {
  color: var(--color-primary);
}

.hover\:shadow-\[10px_10px_20px_rgba\(0\,0\,0\,0\.12\)\,-10px_-10px_20px_rgba\(255\,255\,255\,0\.7\)\]:hover {
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.12),
    -10px -10px 20px rgba(255, 255, 255, 0.7);
}

.active\:shadow-\[inset_4px_4px_8px_rgba\(0\,0\,0\,0\.06\)\,inset_-4px_-4px_8px_rgba\(255\,255\,255\,0\.5\)\]:active {
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.06),
    inset -4px -4px 8px rgba(255, 255, 255, 0.5);
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--color-ring-primary);
}

.focus\:ring-primary:focus {
  box-shadow: 0 0 0 2px var(--color-ring-primary);
}

.placeholder\:text-slate-400::placeholder {
  color: #94a3b8;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.space-x-10 > * + * {
  margin-left: 2.5rem;
}

.space-x-12 > * + * {
  margin-left: 3rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-16 {
  gap: 4rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.auto-rows-fr {
  grid-auto-rows: 1fr;
}

.font-\[\'Plus_Jakarta_Sans\'\] {
  font-family: "Plus Jakarta Sans", sans-serif;
}

nav a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

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

  .md\:p-16 {
    padding: 4rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .sticky {
    position: static;
  }

  .min-h-\[819px\] {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  nav {
    gap: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .rounded-\[48px\] {
    border-radius: 32px;
  }
}

/* Shared content-page pattern.
   These classes are intentionally separate from the homepage utilities because the
   legal/help pages need calmer, document-first layouts while still using the same
   brand palette, spacing language, and surface treatment. */
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
}

.page-hero {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4.5rem 2rem 2rem;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 3rem;
  background:
    radial-gradient(circle at top left, rgba(129, 140, 248, 0.26), transparent 30%),
    radial-gradient(circle at bottom right, rgba(167, 139, 250, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 9999px;
  background-color: rgba(99, 102, 241, 0.12);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 1.25rem 0 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 44rem;
  margin: 1.25rem 0 0;
  color: var(--color-on-surface-variant);
  font-size: 1.125rem;
  line-height: 1.8;
}

.content-page {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.content-card {
  border-radius: 40px;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.38);
}

.content-prose {
  max-width: 48rem;
}

.content-prose h2 {
  margin: 2.5rem 0 0.85rem;
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose p,
.content-prose li {
  color: var(--color-on-surface-variant);
  font-size: 1rem;
  line-height: 1.85;
}

.content-prose ul {
  margin: 0.9rem 0 0;
  padding-left: 1.25rem;
}

.content-prose li + li {
  margin-top: 0.4rem;
}

.content-prose a {
  color: var(--color-primary);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Reusable button-like anchor used on the content pages for simple page actions. */
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

/* FAQ cards stay visually lighter than homepage feature tiles so reading remains primary. */
.faq-item {
  border-radius: 28px;
  padding: 1.5rem 1.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.42);
}

.faq-item h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
}

.faq-item p {
  margin: 0.75rem 0 0;
}

@media (max-width: 767px) {
  /* Content pages use their own mobile spacing rules so text-heavy layouts stay readable
     without affecting the landing page’s more promotional composition. */
  .page-hero {
    padding: 2.5rem 1.25rem 1.25rem;
  }

  .content-page {
    padding: 0 1.25rem 3rem;
  }

  .page-hero-card,
  .content-card {
    padding: 2rem 1.5rem;
    border-radius: 32px;
  }
}
