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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f9f5ff;
  color: #201a33;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: radial-gradient(circle at top left, #f3e8ff 0, #fff7ed 40%, #fdf2ff 80%, #ffffff 100%);
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(90deg, #9f5bff, #ff8acb, #ffc56f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 212, 255, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand-pill {
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  background: #f5ebff;
  box-shadow: 0 18px 40px rgba(178, 147, 255, 0.55);
}

.brand-pill-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #7b3aed;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: #5b5570;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9f5bff, #ff8acb);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .nav-cta {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 95, 255, 0.5);
  background: white;
  color: #7b3aed;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: #a855f7;
  color: white;
  box-shadow: 0 18px 40px rgba(168, 85, 247, 0.7);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e3d6ff;
  color: #43326d;
}

.btn-gold {
  background: #fbbf24;
  color: #1f2937;
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.5);
}

.btn-gradient {
  background: linear-gradient(90deg, #9f5bff, #ff8acb, #ffc56f);
  color: #1f1b33;
  box-shadow: 0 18px 42px rgba(147, 95, 255, 0.7);
}

.btn-small {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.full-width {
  width: 100%;
}

/* Hero */
.hero {
  padding-top: 4.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3.25rem;
  align-items: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 3.2vw + 1.7rem, 3.9rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #615a7a;
  max-width: 36rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
}

.metric-value {
  font-weight: 700;
  font-size: 1.25rem;
  color: #7c3aed;
}

.metric-label {
  font-size: 0.85rem;
  color: #7b718f;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-image-frame {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(148, 127, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}

.mouse {
  width: 30px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(180, 152, 255, 0.9);
  position: relative;
}

.mouse::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #c4b5fd;
  transform: translateX(-50%);
  animation: scroll 1.4s infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, 12px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 24px);
  }
}

/* Section headings */
.section-heading {
  text-align: center;
  margin-bottom: 2.7rem;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: #746a8f;
  font-size: 0.97rem;
}

/* Journey */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.7rem;
  margin-bottom: 2.6rem;
}

.step-card {
  position: relative;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 26px 60px rgba(188, 163, 255, 0.7);
  border: 1px solid rgba(242, 232, 255, 0.95);
}

.step-badge {
  position: absolute;
  top: -15px;
  left: 1.4rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #4f46e5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 14px 30px rgba(129, 140, 248, 0.9);
}

.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 1.1rem;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-icon img {
  width: 26px;
  height: 26px;
}

.step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.step-card p {
  font-size: 0.92rem;
  color: #6b647f;
}

.journey-metrics {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  text-align: center;
}

.metric-highlight {
  font-weight: 700;
  font-size: 1.15rem;
}

.metric-highlight.purple {
  color: #8b5cf6;
}
.metric-highlight.gold {
  color: #eab308;
}
.metric-highlight.teal {
  color: #14b8a6;
}

.metric-caption {
  display: block;
  font-size: 0.86rem;
  color: #7b718f;
  margin-top: 0.1rem;
}

/* Technology */
.tech-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.tech-row-alt {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.tech-image-frame {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(188, 163, 255, 0.85);
}

.tech-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-copy h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.tech-copy p {
  color: #6e6686;
  font-size: 0.97rem;
  margin-bottom: 0.7rem;
}

.icon-pill {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, #fde68a, #f97316);
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.icon-pill.purple {
  background: linear-gradient(135deg, #c4b5fd, #a855f7);
}

.icon-pill.teal {
  background: linear-gradient(135deg, #a7f3d0, #14b8a6);
}

.icon-pill img {
  width: 24px;
  height: 24px;
}

.link-arrow {
  font-size: 0.9rem;
  color: #7c3aed;
  text-decoration: none;
}

.link-arrow span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.link-arrow:hover span {
  transform: translateX(3px);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.plan-card {
  background: #ffffff;
  border-radius: 1.7rem;
  padding: 1.9rem 1.6rem 1.8rem;
  border: 1px solid rgba(230, 216, 255, 0.95);
  box-shadow: 0 30px 70px rgba(188, 163, 255, 0.85);
}

.plan-featured {
  position: relative;
  transform: translateY(-12px);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #9f5bff, #ff8acb, #5eead4);
  color: #1f1b33;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(147, 95, 255, 0.9);
}

.plan-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.plan-sub {
  font-size: 0.88rem;
  color: #7b718f;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 1.2rem;
}

.plan-price .currency {
  font-size: 1.4rem;
  font-weight: 600;
}

.plan-price .amount {
  font-size: 2.4rem;
  font-weight: 700;
}

.plan-price .period {
  font-size: 0.9rem;
  color: #6b647f;
}

.plan-card .btn {
  width: 100%;
  margin-bottom: 1.1rem;
}

/* FIX: remove broken characters – use pure CSS dot, no font symbol */
.plan-list {
  list-style: none;
  font-size: 0.9rem;
  color: #6b647f;
}

.plan-list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.45rem;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #8b5cf6;
  transform: translateY(-50%);
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.7rem;
  margin-bottom: 3rem;
}

.trust-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(236, 233, 255, 0.95);
  box-shadow: 0 28px 60px rgba(188, 163, 255, 0.85);
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 1.2rem;
  background: #f5ebff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.trust-icon img {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: #6e6686;
}

.commitment-card {
  margin-inline: auto;
  max-width: 780px;
  background: #fff;
  border-radius: 1.7rem;
  padding: 1.9rem 1.7rem;
  border: 1px solid rgba(236, 233, 255, 0.95);
  box-shadow: 0 32px 70px rgba(188, 163, 255, 0.9);
}

.commitment-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.commitment-card p {
  font-size: 0.93rem;
  color: #6e6686;
}

/* Interest form */
.interest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.interest-form {
  background: #ffffff;
  border-radius: 1.7rem;
  padding: 1.9rem 1.7rem;
  box-shadow: 0 30px 70px rgba(188, 163, 255, 0.9);
  border: 1px solid rgba(236, 233, 255, 0.95);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-size: 0.86rem;
  font-weight: 500;
  color: #4b3f6a;
}

.form-field input,
.form-field textarea {
  border-radius: 0.9rem;
  border: 1px solid #e5defb;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
  background: #faf5ff;
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.35);
  background: #ffffff;
}

.form-footnote {
  font-size: 0.78rem;
  color: #7b718f;
  margin-top: 0.6rem;
}

.form-status {
  font-size: 0.86rem;
  margin-top: 0.7rem;
}

.form-status.success {
  color: #047857;
}

.form-status.error {
  color: #dc2626;
}

.interest-side {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.interest-highlight {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(236, 233, 255, 0.95);
  box-shadow: 0 26px 60px rgba(188, 163, 255, 0.8);
}

.interest-highlight h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.interest-highlight ul {
  list-style: none;
  font-size: 0.9rem;
  color: #6e6686;
}

.interest-highlight li {
  margin-bottom: 0.4rem;
  padding-left: 1.1rem;
  position: relative;
}

/* FIX: remove broken characters in highlight list too */
.interest-highlight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #a855f7;
  transform: translateY(-50%);
}

.interest-note {
  font-size: 0.9rem;
  color: #6b647f;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1.3rem;
  display: none;
  justify-content: center;
  z-index: 50;
  pointer-events: none;
}

.sticky-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;        /* center text + button */
  text-align: center;             /* center multi-line text */
  flex-wrap: wrap;
  gap: 0.75rem;
  background: rgba(20, 10, 36, 0.96);
  color: #f9fafb;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
  font-size: 0.88rem;
}

.sticky-inner .btn {
  box-shadow: none;
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #a855f7;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(88, 28, 135, 0.7);
  z-index: 60;
}

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

/* Footer */
.site-footer {
  padding: 2.4rem 0 2rem;
  background: #f1ecff;
  border-top: 1px solid rgba(212, 212, 255, 0.9);
  font-size: 0.86rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
}

.footer-links a {
  color: #5b5570;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: #6b647f;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Simple highlight when auto-scrolling to form */
.form-highlight {
  box-shadow: 0 0 0 2px rgba(147, 95, 255, 0.8), 0 30px 70px rgba(188, 163, 255, 0.9);
  transition: box-shadow 0.4s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
    justify-content: center;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

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

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

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

  .section {
    padding: 3.4rem 0;
  }

  .sticky-inner {
    width: min(92%, 480px);
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
