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

:root {
  --blue: #1d4ed8;
  --blue-dark: #1239a8;
  --blue-light: #3b6ef0;
  --blue-pale: #eff4ff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(29, 78, 216, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: white !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 50%, #f8faff 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(29, 78, 216, 0.12) 0%,
    transparent 70%
  );
  z-index: 0;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1px solid rgba(29, 78, 216, 0.2);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

h1 span {
  color: var(--blue);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 24px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(29, 78, 216, 0.4);
}

.btn-secondary {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-secondary:hover {
  color: var(--blue);
}

/* PHONE MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #0f172a;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.25),
    0 20px 40px rgba(29, 78, 216, 0.15);
  position: relative;
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
}

/* FEATURES */
.section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: rgba(29, 78, 216, 0.2);
  box-shadow: 0 8px 32px rgba(29, 78, 216, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* PRICING */
.pricing-section {
  background: #f8faff;
  padding: 100px 40px;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  position: relative;
}

.pricing-card.featured {
  background: var(--blue);
  color: white;
}

.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-feature {
  color: white;
}

.pricing-card.featured .pricing-period,
.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.7);
}
.feature-card:last-child:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border-color: #93bbff;
}


.pricing-badge {
  position: absolute;
  text-align: center;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-feature::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-feature::before {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-pricing {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  display: block;
  border: 2px solid var(--blue);
  color: var(--blue);
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-pricing:hover {
  background: var(--blue);
  color: white;
}

.pricing-card.featured .btn-pricing {
  background: white;
  color: var(--blue);
  border-color: white;
}

.pricing-card.featured .btn-pricing:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* FOOTER */
footer {
  background: var(--text);
  color: white;
  padding: 60px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 240px;
  line-height: 1.6;
}

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

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
}

.fade-up:nth-child(2) {
  animation-delay: 0.1s;
}
.fade-up:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WAITLIST SECTION */
.waitlist-section {
  background: #0f172a;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(29, 78, 216, 0.4) 0%,
    transparent 65%
  );
}

.waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 78, 216, 0.2);
  border: 1px solid rgba(29, 78, 216, 0.4);
  color: #93bbff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.founder-text {
  color: #94a3b8;
  font-size: 13px;
  font-style: italic;
  margin-top: 10px;
  display: block;
  border-left: 2px solid var(--blue);
  padding-left: 12px;
  text-align: left;
  max-width: 400px;
  margin-inline: auto;
}
.claim-btn {
  text-decoration: none;
  font-size:small;
  position: relative; 
  color: #333; 
  display: inline-block;
  padding-bottom: 2px; 
}

.claim-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px; 
  bottom: 0;
  left: 0;
  background-color: #000000; 
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.claim-btn:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.waitlist-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.waitlist-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 40px;
}

.waitlist-form-big {
  display: flex;
  gap: 12px;
  max-width: 500px;
}

.waitlist-input-big {
  flex: 1;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input-big::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.waitlist-input-big:focus {
  border-color: rgba(29, 78, 216, 0.7);
}

.waitlist-submit-btn {
  background: var(--blue);
  color: white;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(29, 78, 216, 0.4);
}


.btn-primary:active, .waitlist-submit-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 12px rgba(29, 78, 216, 0.2);
}

.waitlist-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 12px;
}

.waitlist-success {
  font-size: 15px;
  color: #4ade80;
  font-weight: 600;
  margin-top: 16px;
}

.waitlist-count {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

/* .waitlist-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
} */

.waitlist-input:focus {
  border-color: var(--blue);
}

.waitlist-btn {
  width: 100%;
  justify-content: center;
}

/* update arrow color in primary btn for waitlist */
.btn-primary svg {
  stroke: white;
}

@media (max-width: 768px) {
  .waitlist-section {
    padding: 60px 20px;
  }
  .waitlist-form-big {
    flex-direction: column;
  }
  .waitlist-submit-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 100px 20px 60px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
  .phone-frame {
    transform: none;
    margin: 0 auto
  }
  .section {
    padding: 60px 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-section {
    padding: 60px 20px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 40px 20px;
  }
  .footer-inner {
    flex-direction: column;
  }
}
