@charset "UTF-8";

.remove-all-padding {
  padding: 0 !important;
}

/* Base social icon styles */
.social-icon {
  height: 32px;
  /* Set consistent height for all icons */
  width: auto;
  /* Let width adjust based on aspect ratio */
  transition: transform 0.2s;
}

/* Specific adjustments for each icon based on aspect ratio */
.youtube-icon {
  width: 45px;
  /* (128/90) * 32 ≈ 45px to maintain aspect ratio */
}

.x-icon {
  width: 34px;
  /* (128/121) * 32 ≈ 34px to maintain aspect ratio */
}

.instagram-icon {
  width: 32px;
  /* Square ratio, so same as height */
}

/* Hover effect */
.social-icon:hover {
  transform: scale(1.2);
}


:root {
  --bg1: #fff7f0;
  --bg2: #fff9ff;
  --accent1: #ff6a9b;
  --accent2: #ffd34d;
  --accent3: #7be0ff;
  --muted: #4b5563;
  --card: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.7);
  --shadow: 0 12px 30px rgba(11, 22, 40, 0.12);
  --radius: 18px;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

body {
  background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 100%);
  color: #07102a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 28px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 44px;
  filter: drop-shadow(0 6px 18px rgba(123, 224, 255, 0.18));
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 12px;
}

.nav-links a:hover {
  background: linear-gradient(90deg, rgba(255, 106, 155, 0.10), rgba(255, 211, 77, 0.10));
  color: #07102a;
}

/* Hero */
.hero {
  margin-top: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
  border-radius: calc(var(--radius) + 6px);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  isolation: isolate;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 20px;
  align-items: center;
}

@media (max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-left h1 {
  font-family: "Rubik", "Poppins", sans-serif;
  font-weight: 800;
  margin: 0;
  font-size: clamp(28px, 5.6vw, 48px);
  line-height: 1.02;
  color: #0b1530;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 8px;
  font-weight: 600;
  color: #2b3a4a;
  opacity: 0.95;
  font-size: 16px;
}

.hero-sub {
  margin-top: 16px;
  color: #3b4a5a;
  font-size: 15px;
  line-height: 1.5;
}

/* make sure headline sits above shapes */
#hero-heading {
  position: relative;
  z-index: 3;
  -webkit-text-stroke: 0.6px rgba(11, 16, 40, 0.06);
  text-shadow: 0 2px 6px rgba(11, 16, 40, 0.08);
}

.float-shape {
  mix-blend-mode: normal;
  /* instead of screen */
  z-index: 1;
  opacity: 0.92;
  /* tweak if you want them softer/stronger */
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border: none;
  color: #07102a;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(255, 106, 155, 0.18);
  transition: transform .18s ease;
}

.pill-cta:hover {
  transform: translateY(-3px);
}

.btn-ghost {
  background: #fff;
  border: 1px solid rgba(11, 16, 40, 0.06);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.small-note {
  font-size: 13px;
  color: #415064;
  margin-top: 10px;
}

/* banner video card */
.video-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11, 16, 40, 0.04);
  box-shadow: 0 10px 30px rgba(11, 16, 40, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.5));
  position: relative;
}

.video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

/* playful shapes */
.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.95;
  mix-blend-mode: screen;
  filter: blur(8px);
  animation: floaty 6s ease-in-out infinite;
}

.s1 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, #fff8e6, var(--accent2));
  top: -40px;
  left: -60px;
  transform: rotate(12deg);
}

.s2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 20% 20%, #e7faff, var(--accent3));
  bottom: -30px;
  right: -60px;
}

.s3 {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 106, 155, 0.15), rgba(255, 211, 77, 0.05));
  top: 30%;
  right: -30px;
}

@keyframes floaty {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }

  100% {
    transform: translateY(0)
  }
}

/* Features row */
.features {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.feature {
  flex: 1 1 0;       /* distribute evenly across row */
  min-width: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(11, 16, 40, 0.04);
  box-shadow: 0 12px 24px rgba(11, 16, 40, 0.05);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #07102a;
  padding: 6px;
  /* adjust as needed */
  box-sizing: border-box;
  /* ensures padding doesn’t overflow size */
}

.f1 {
  background: linear-gradient(135deg, var(--accent2), #fff1d6);
}

.f2 {
  background: linear-gradient(135deg, var(--accent3), #e6fbff);
}

.f3 {
  background: linear-gradient(135deg, var(--accent1), #ffe6f0);
}

.f4 {
  background: linear-gradient(135deg, var(--accent1), #f3df97);
}

.feature h4 {
  margin: 0;
  font-size: 16px;
}

.feature p {
  margin: 4px 0 0;
  color: #415064;
  font-size: 13px;
  line-height: 1.45;
}

/* Steps */
.steps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.step {
  flex: 1 1 220px;
  background: linear-gradient(180deg, #ffffff, #fffbf7);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(11, 16, 40, 0.03);
  text-align: center;
  box-shadow: 0 8px 18px rgba(11, 16, 40, 0.04);
}

.step h5 {
  margin: 6px 0 0;
  font-size: 15px;
}

.step p {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 13px;
}

/* footer */
footer {
  margin-top: 36px;
  padding: 20px 0;
  color: #52607a;
  font-size: 13px;
}

.socials img {
  height: 28px;
  margin-left: 10px;
  opacity: 0.95;
}

/* Responsive tweaks */
@media (max-width:720px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    gap: 14px;
  }

  .video-card {
    min-height: 200px;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  border-radius: 10px;
  /* softer corners */
  padding: 6px 0;
  /* spacing inside */
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  /* smaller text */
  font-weight: 400;
  /* normal weight */
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  /* rounded hover effect */
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background: #f7f7f7;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* contact cards */
.contact-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-card {
  flex: 1 1 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(11, 16, 40, 0.04);
  box-shadow: 0 10px 22px rgba(11, 16, 40, 0.04);
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-card img {
  width: 48px;
  height: 48px;
  display: block;
}

.contact-card h4 {
  margin: 0;
  font-size: 16px;
}

.contact-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* social strip */
.social-strip {
  margin-top: 18px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 234, 242, 0.85), rgba(233, 250, 255, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(11, 16, 40, 0.03);
}

.social-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.social-strip img {
  height: 28px;
  display: block;
}

/* footer */
footer.site-footer {
  margin-top: 28px;
  padding: 20px 0;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer .links a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 12px;
}

@media (max-width:720px) {
  .hero-grid {
    gap: 14px;
  }

  .contact-card {
    flex: 1 1 100%;
  }

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

/* Add these CSS rules (drops into your existing stylesheet).
   Behavior:
   - Desktop: two-column grid (hero-left + video-card) and features appear where you placed them.
   - Mobile (<= 980px): everything stacks; the order becomes:
       1. hero-left (heading + tagline + app store + waitlist)
       2. video-card (banner/video)
       3. features
*/

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 20px;
  align-items: start;
}

/* keep your existing 980px breakpoint behavior but override ordering on mobile */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr; /* stack into single column */
    align-items: stretch;
    /* create explicit rows so we can control placement by order */
  }

  /* Base order (DOM order doesn't matter now) */
  .hero-left {
    order: 1; /* keep first */
  }

  .video-card {
    order: 2; /* show after hero-left */
    width: 100%;
    /* reduce/minimize heavy shadows on small screens if desired */
    box-shadow: 0 8px 20px rgba(11, 16, 40, 0.06);
    min-height: 200px;
  }

  .features {
    order: 3; /* show after the video on mobile */
    margin-top: 12px; /* tighten spacing on small screens */
  }

  /* ensure elements behave like block-level flex children on small screens */
  .hero-grid > * {
    /* this makes order effective */
    display: block;
  }
}

/* extra tiny-screen polish */
@media (max-width: 420px) {
  .video-card video {
    min-height: 180px;
  }
  .pill-cta {
    padding: 10px 14px;
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .features {
    flex-wrap: wrap;   /* allow multiple rows */
  }
  .feature {
    flex: 1 1 220px;   /* same as before */
  }
}