:root {
  --primary: #4b7cff;
  --secondary: #7c5cff;
  --text: #0f172a;
  --muted: #64748b;
  --card-bg: #f8fafc;
  --bg: #f4f7ff;
  --gradient: linear-gradient(120deg, #4b7cff, #7c5cff);
  --shadow-card: 0 20px 60px rgba(75, 124, 255, 0.12);
  --shadow-hover: 0 24px 70px rgba(124, 92, 255, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'SF Pro Display', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  padding: 2rem clamp(1.5rem, 4vw, 4rem) clamp(3rem, 8vw, 6rem);
  background: radial-gradient(circle at 0% 0%, rgba(124, 92, 255, 0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(75, 124, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #ffffff, #eef2ff);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 20% -10% -10% 40%;
  background: var(--gradient);
  opacity: 0.08;
  filter: blur(70px);
  z-index: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  /* Optional: adds rounded corners if the image is square */
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__content .lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.lead--tags {
  font-weight: 600;
  color: var(--text);
}

.hero__bullets {
  list-style: none;
  margin-bottom: 2rem;
  color: var(--muted);
}

.hero__bullets li+li {
  margin-top: 0.5rem;
}

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

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visual-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.visual-card--ghost {
  padding: 1rem 1.5rem;
  font-weight: 600;
  background: rgba(124, 92, 255, 0.08);
}

.visual-card__header {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.status-pill {
  background: rgba(124, 92, 255, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.code-block {
  background: #0f172a;
  border-radius: 18px;
  color: #e2e8f0;
  padding: 1rem;
  font-size: 0.9rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}

.comment {
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(124, 92, 255, 0.15);
}

.btn {
  background: var(--gradient);
  border: none;
  border-radius: 999px;
  color: white;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(75, 124, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(75, 124, 255, 0.4);
  box-shadow: none;
}

.btn--outline:hover {
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.35);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.65rem 1.4rem;
  box-shadow: none;
}

main {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
}

section+section {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.value-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(75, 124, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline__track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline__step {
  text-align: center;
}

.timeline__connector {
  height: 2px;
  background: var(--gradient);
}

.chip {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(75, 124, 255, 0.12);
  font-size: 1.4rem;
}

.timeline__note {
  margin-top: 1rem;
  font-style: italic;
  color: var(--muted);
}

.feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.feature__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stacked-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.stacked-card--primary {
  border: 1px solid rgba(75, 124, 255, 0.2);
}

.stacked-card--secondary {
  border: 1px solid rgba(124, 92, 255, 0.2);
}

.stacked-card__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.pill {
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.pill--success {
  background: rgba(10, 184, 122, 0.15);
  color: #0b8f6f;
}

.pill--warn {
  background: rgba(255, 192, 67, 0.18);
  color: #b06a00;
}

.muted {
  color: var(--muted);
}

.pilot__card {
  background: #fff;
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.pilot__card .btn {
  margin-top: 1.5rem;
}

.community {
  background: linear-gradient(135deg, rgba(75, 124, 255, 0.08), rgba(124, 92, 255, 0.12));
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.avatar-row {
  display: flex;
  gap: 0.5rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.waitlist__card {
  background: #fff;
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-card);
}

.waitlist__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.waitlist__form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.waitlist__form input,
.waitlist__form select {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.waitlist__form .terms-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  grid-column: 1 / -1;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.waitlist__form .terms-checkbox input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  cursor: pointer;
}

.waitlist__form .terms-checkbox a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.waitlist__form .terms-checkbox a:hover {
  text-decoration: underline;
}

.waitlist__form input:focus,
.waitlist__form select:focus {
  outline: none;
  border-color: rgba(75, 124, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(75, 124, 255, 0.15);
}

.waitlist__form button {
  grid-column: 1 / -1;
}

.privacy {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--muted);
}

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

.toast {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  background: rgba(75, 124, 255, 0.08);
  border: 1px solid rgba(75, 124, 255, 0.2);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  font-weight: 600;
  color: var(--primary);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.site-footer {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.footer__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(75, 124, 255, 0.7), rgba(124, 92, 255, 0.75));
  opacity: 0.85;
}

.footer__content {
  position: relative;
  color: #f8faff;
  padding: 2.5rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer__content img {
  width: 40px;
}

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

.footer__links a {
  color: #f1f5f9;
  text-decoration: none;
}

[data-animate='fade'] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate='fade'].animate-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav__actions {
    justify-content: flex-end;
  }

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

  .timeline__connector {
    width: 2px;
    height: 48px;
    margin: 0 auto;
  }

  .timeline__step {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Privacy Policy Page */
.hero--compact {
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
  min-height: auto;
  background: var(--bg);
}

.hero--compact .nav {
  margin-bottom: 0;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.policy-container h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.policy-content {
  margin-top: 3rem;
  background: #fff;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--muted);
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--primary);
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  width: 400px;
}

.modal__content h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.modal__content p {
  color: var(--muted);
}

.hidden {
  display: none;
}
