/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #11162a;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --purple: #5b2cff;
  --purple-dark: #4520d7;
  --purple-soft: #f3efff;

  --blue: #1745d1;
  --dark: #0b1020;
  --text: #11162a;
  --muted: #687087;

  --border: #e8eaf0;
  --surface: #f8f9fc;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1180px;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
  width: min(
    calc(100% - 32px),
    var(--container)
  );

  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-label {
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.section-intro {
  max-width: 680px;
}

.section-intro h2,
.section h2 {
  color: var(--dark);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-description {
  max-width: 570px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(232, 234, 240, 0.8);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.brand-name {
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.nav-cta {
  padding: 10px 17px;

  border-radius: 10px;

  background: var(--dark);
  color: #ffffff;

  font-size: 14px;
  font-weight: 650;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.nav-cta:hover {
  background: #1a2033;
  transform: translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(91, 44, 255, 0.09),
      transparent 38%
    ),
    #ffffff;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 7px 12px;

  border: 1px solid #e8e2ff;
  border-radius: 999px;

  background: #faf9ff;

  color: #5a526e;
  font-size: 12px;
  font-weight: 650;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 4px rgba(91, 44, 255, 0.1);
}

.hero h1 {
  max-width: 850px;
  margin-top: 24px;

  color: var(--dark);

  font-size: clamp(46px, 8vw, 78px);
  line-height: 0.98;

  letter-spacing: -0.065em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--purple);
}

.hero-description {
  max-width: 620px;
  margin-top: 25px;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.7;
}

.waitlist-form {
  width: min(100%, 510px);
  margin-top: 30px;

  display: flex;
  gap: 9px;

  padding: 5px;

  background: #ffffff;

  border: 1px solid #dedfe6;
  border-radius: 14px;

  box-shadow:
    0 12px 35px rgba(17, 22, 42, 0.08);
}

.waitlist-form input {
  min-width: 0;
  flex: 1;

  border: 0;
  outline: 0;

  padding: 13px 14px;

  background: transparent;

  color: var(--text);
  font-size: 14px;
}

.waitlist-form input::placeholder {
  color: #969bab;
}

.waitlist-form button {
  flex-shrink: 0;

  border: 0;
  border-radius: 10px;

  padding: 12px 17px;

  background: var(--purple);
  color: #ffffff;

  font-size: 13px;
  font-weight: 700;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.waitlist-form button:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.waitlist-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  margin-top: 11px;

  color: #8b91a1;

  font-size: 12px;
}


/* =========================================================
   PRODUCT PREVIEW
========================================================= */

.hero-preview {
  margin-top: 70px;
}

.browser-frame {
  overflow: hidden;

  border: 1px solid #dfe2eb;
  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 35px 90px rgba(16, 20, 40, 0.13),
    0 8px 25px rgba(16, 20, 40, 0.06);
}

.browser-top {
  height: 46px;

  display: flex;
  align-items: center;

  padding: 0 17px;

  background: #f6f7fa;
  border-bottom: 1px solid #e5e7ed;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #c9ccd4;
}

.browser-address {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  min-width: 150px;

  padding: 5px 16px;

  border: 1px solid #e1e3e9;
  border-radius: 7px;

  background: #ffffff;

  color: #9297a5;

  font-size: 10px;
  text-align: center;
}

.product-screenshot {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.product-screenshot img {
  width: 100%;
  height: auto;

  display: block;
}


/* =========================================================
   AUDIENCE
========================================================= */

.audience {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: #fafbfc;
}

.audience h2 {
  max-width: 650px;
}

.audience-list {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  padding: 10px 15px;

  border: 1px solid #e4e6ed;
  border-radius: 999px;

  background: #ffffff;

  color: #41485c;

  font-size: 13px;
  font-weight: 600;
}


/* =========================================================
   PROBLEM
========================================================= */

.problem {
  background: #ffffff;
}

.tool-stack {
  margin-top: 45px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tool-item {
  min-height: 125px;

  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: #ffffff;

  box-shadow:
    0 5px 20px rgba(15, 20, 40, 0.035);
}

.tool-item span {
  color: #858b9a;
  font-size: 12px;
}

.tool-item strong {
  color: var(--dark);
  font-size: 17px;
}

.problem-result {
  margin-top: 18px;

  padding: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-radius: var(--radius-md);

  background: #f8f6ff;
  border: 1px solid #e9e3ff;
}

.problem-result span {
  color: #777c8b;
  font-size: 14px;
}

.problem-result strong {
  color: var(--purple);
  font-size: 15px;
}


/* =========================================================
   SOLUTION
========================================================= */

.solution {
  background: #fafbff;
}

.solution-card {
  position: relative;

  padding: clamp(28px, 5vw, 60px);

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(91, 44, 255, 0.16),
      transparent 35%
    ),
    #11162a;

  color: #ffffff;

  overflow: hidden;
}

.solution-card .section-label {
  color: #a996ff;
}

.solution-content {
  max-width: 720px;
}

.solution-card h2 {
  color: #ffffff;
}

.solution-card > .solution-content > p:last-child {
  max-width: 600px;
  margin-top: 22px;

  color: #aeb4c6;
  font-size: 16px;
}

.journey {
  margin-top: 45px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.journey-step {
  min-width: 100px;

  padding: 14px 16px;

  display: flex;
  flex-direction: column;
  gap: 3px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.05);
}

.journey-step span {
  color: #858ca2;
  font-size: 10px;
  font-weight: 700;
}

.journey-step strong {
  font-size: 14px;
}

.journey i {
  color: #71788d;
  font-style: normal;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
  background: #ffffff;
}

.feature-grid {
  margin-top: 45px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-card {
  padding: 28px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: #ffffff;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 16px 35px rgba(16, 20, 40, 0.07);
}

.feature-icon {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: var(--purple-soft);
  color: var(--purple);

  font-size: 11px;
  font-weight: 800;
}

.feature-card h3 {
  margin-top: 22px;

  color: var(--dark);

  font-size: 18px;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin-top: 9px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  padding: 90px 0;

  background: #ffffff;
}

.cta-card {
  position: relative;

  padding: clamp(35px, 7vw, 75px);

  overflow: hidden;

  border-radius: 28px;

  background: #11162a;

  text-align: center;
}

.cta-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  top: -300px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background: rgba(91, 44, 255, 0.25);

  filter: blur(80px);

  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-card .section-label {
  color: #a996ff;
}

.cta-card h2 {
  max-width: 650px;

  color: #ffffff;

  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.cta-card > .cta-content > p:not(.section-label):not(.form-note) {
  max-width: 520px;
  margin-top: 18px;

  color: #aeb4c6;
}

.cta-form {
  margin-top: 30px;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
  background: #fafbfc;
}

.faq-list {
  max-width: 850px;
  margin-top: 42px;

  border-top: 1px solid var(--border);
}

.faq-item {
  width: 100%;

  position: relative;

  padding: 22px 0;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;

  border: 0;
  border-bottom: 1px solid var(--border);

  background: transparent;

  color: var(--dark);

  text-align: left;
}

.faq-question {
  font-size: 15px;
  font-weight: 700;
}

.faq-icon {
  color: var(--purple);
  font-size: 22px;
  line-height: 1;

  transition: transform 0.25s ease;
}

.faq-answer {
  grid-column: 1 / -1;

  max-height: 0;

  overflow: hidden;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;

  opacity: 0;

  transition:
    max-height 0.3s ease,
    opacity 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 150px;
  margin-top: 5px;
  opacity: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 55px 0;

  border-top: 1px solid var(--border);

  background: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-inner > p {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #626879;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--purple);
}

.footer small {
  color: #969baa;
  font-size: 11px;
}


/* =========================================================
   VERIFICATION MODAL
========================================================= */

.verification-modal {
  position: fixed;
  inset: 0;

  z-index: 100;

  display: grid;
  place-items: center;

  padding: 20px;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.verification-modal.open {
  visibility: visible;
  opacity: 1;
}

.verification-overlay {
  position: absolute;
  inset: 0;

  background: rgba(5, 8, 20, 0.65);

  backdrop-filter: blur(8px);
}

.verification-modal-card {
  position: relative;
  z-index: 1;

  width: min(100%, 440px);

  padding: 34px 28px;

  border: 1px solid #e5e6ec;
  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2);

  text-align: center;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;

  background: #f3f4f7;

  color: #626879;

  font-size: 21px;
}

.modal-icon {
  width: 55px;
  height: 55px;

  margin: 0 auto 20px;

  display: grid;
  place-items: center;

  border-radius: 16px;

  background: var(--purple-soft);

  color: var(--purple);

  font-size: 22px;
}

.verification-modal-card .section-label {
  margin-bottom: 8px;
}

.verification-modal-card h2 {
  color: var(--dark);

  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.verification-modal-text {
  margin-top: 15px;

  color: var(--muted);

  font-size: 14px;
}

.verification-modal-text strong {
  display: block;

  margin-top: 3px;

  color: var(--dark);
}

.verification-expiry {
  margin-top: 9px;

  color: #969baa;

  font-size: 12px;
}

.resend-button {
  width: 100%;

  margin-top: 25px;

  padding: 13px;

  border: 1px solid #dedfe7;
  border-radius: 10px;

  background: #ffffff;

  color: var(--dark);

  font-size: 13px;
  font-weight: 700;
}

.resend-button:hover {
  border-color: #c9c4e7;
  background: #faf9ff;
}

.resend-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.resend-status {
  min-height: 20px;

  margin-top: 12px;

  color: var(--purple);

  font-size: 12px;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
  position: fixed;

  z-index: 200;

  left: 50%;
  bottom: 24px;

  transform:
    translate(-50%, 20px);

  width: max-content;
  max-width: calc(100% - 32px);

  padding: 12px 17px;

  border-radius: 10px;

  background: #11162a;
  color: #ffffff;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18);

  font-size: 13px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;

  transform:
    translate(-50%, 0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

  .hero {
    padding-top: 70px;
  }

  .tool-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey {
    align-items: stretch;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .container {
    width: min(
      calc(100% - 24px),
      var(--container)
    );
  }

  .section {
    padding: 70px 0;
  }

  .navbar {
    min-height: 68px;
  }

  .brand-logo {
    width: 31px;
    height: 31px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 12px;
  }

  .hero {
    padding: 65px 0 45px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .hero-description {
    font-size: 15px;
  }

  .waitlist-form {
    flex-direction: column;

    padding: 6px;

    border-radius: 13px;
  }

  .waitlist-form input {
    width: 100%;
    padding: 13px 12px;
  }

  .waitlist-form button {
    width: 100%;
  }

  .hero-preview {
    margin-top: 45px;
  }

  .browser-frame {
    border-radius: 12px;
  }

  .browser-top {
    height: 36px;
    padding: 0 12px;
  }

  .browser-dots span {
    width: 6px;
    height: 6px;
  }

  .browser-address {
    min-width: 100px;
    padding: 3px 10px;
    font-size: 8px;
  }

  .tool-stack {
    grid-template-columns: 1fr;
  }

  .tool-item {
    min-height: 105px;
  }

  .problem-result {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .solution-card {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .journey {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .journey i {
    display: none;
  }

  .journey-step {
    min-width: 0;
  }

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

  .feature-card {
    padding: 24px;
  }

  .final-cta {
    padding: 70px 0;
  }

  .cta-card {
    padding: 38px 20px;
    border-radius: 20px;
  }

  .cta-card h2 {
    font-size: 38px;
  }

  .verification-modal-card {
    padding: 32px 20px;
  }

  .footer {
    padding: 45px 0;
  }

}