:root{
  --bg1:#fff7fb;
  --bg2:#fff3f8;
  --pink:#f7c1d9;
  --pink2:#ffd1e6;
  --pinkDark:#ec8fb6;
  --accent:#ff5fa2;
  --ink:#141414;
  --muted:#4a4a4a;
  --border:#f1c6da;
  --shadow: 0 14px 34px rgba(0,0,0,.08);
  --shadowSoft: 0 12px 26px rgba(236,143,182,.22);
  --rXL: 28px;
  --rL: 20px;
  --rM: 16px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
}
a{ color:inherit; text-decoration:none; }

.container{
  width: min(1500px, 98vw);
  margin: 0 auto;
  padding: 10px 22px 70px;
}

/* ===== Running ticker banner ===== */
.top-banner{
  overflow:hidden;
  border-bottom: 1px solid rgba(241,198,218,.9);
  background: linear-gradient(120deg, var(--pink2), var(--pink), var(--pink2));
}
.ticker-wrap{ max-width:1500px; margin:0 auto; padding:0 22px; overflow:hidden; }
.ticker{
  display:flex;
  gap: 28px;
  white-space: nowrap;
  padding: 10px 0;
  animation: tickerMove 18s linear infinite;
}
@keyframes tickerMove{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
.ticker span{
  font-weight: 900;
  color:#7a1143;
  font-size: 14px;
  letter-spacing:.2px;
}

/* ===== Nav ===== */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0 10px;
  position: relative;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{
  height: 78px; /* BIGGER LOGO */
  width:auto;
  display:block;
}

.navlinks{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.navlinks a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;            /* consistent size */
  padding: 0 18px;
  border-radius:999px;
  font-weight: 900;
  color: rgba(0,0,0,.72);
  border:1px solid transparent;
  line-height: 1;
}
.navlinks a:hover{
  background: rgba(255,255,255,.85);
  border-color: rgba(241,198,218,.95);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 18px;
  border-radius:999px;
  font-weight: 950;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary{
  color:#fff;
  background: linear-gradient(135deg, var(--pinkDark), var(--accent));
  box-shadow: var(--shadowSoft);
}
.btn-primary:hover{ transform: translateY(-1px); }

.btn-secondary{
  color:#7a1143;
  background: rgba(255,255,255,.92);
  border-color: rgba(241,198,218,.98);
}
.btn-secondary:hover{ transform: translateY(-1px); }

.menu-btn{ display:none; }

/* Flashing / pulsing CTA */
.pulse{
  position: relative;
  font-weight: 950 !important;
  color:#7a1143 !important;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(241,198,218,.98) !important;
  box-shadow: 0 10px 22px rgba(236,143,182,.22);
}
.pulse::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:999px;
  border: 2px solid rgba(255,95,162,.55);
  opacity:.75;
  animation: pulseRing 1.4s ease-out infinite;
  pointer-events:none;
}
@keyframes pulseRing{
  0%{ transform: scale(1); opacity: .75; }
  100%{ transform: scale(1.12); opacity: 0; }
}
.blink{ animation: softBlink 1.1s ease-in-out infinite; }
@keyframes softBlink{
  0%, 100%{ filter: brightness(1); opacity: 1; }
  50%{ filter: brightness(1.07); opacity: .78; }
}

/* Badge */
.badge{
  display:inline-block;
  padding: 7px 14px;
  border-radius:999px;
  background: rgba(247,193,217,.92);
  color:#7a1143;
  font-weight: 950;
  font-size: 13px;
  letter-spacing:.2px;
}

h1{
  margin: 10px 0 10px;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
}

.card{
  background:#fff;
  border: 1px solid rgba(241,198,218,.92);
  border-radius: var(--rM);
  padding: 16px;
  box-shadow: 0 5px 14px rgba(0,0,0,.04);
}
.small{ margin-top:8px; font-size:14px; line-height:1.6; color: rgba(0,0,0,.70); }

.footer{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(241,198,218,.78);
  color: rgba(0,0,0,.66);
  font-size: 14px;
  line-height: 1.6;
}

/* Mobile menu */
@media (max-width: 860px){
  .menu-btn{
    display:inline-flex;
    padding:10px 12px;
    border-radius:999px;
    font-weight:950;
    border:1px solid rgba(241,198,218,.95);
    background: rgba(255,255,255,.92);
    cursor:pointer;
  }
  .navlinks{
    display:none;
    position:absolute;
    right:0;
    top:84px;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    background: rgba(255,255,255,.96);
    border:1px solid rgba(241,198,218,.95);
    border-radius:18px;
    padding:10px;
    box-shadow: var(--shadow);
    z-index: 50;
  }
  .navlinks.open{ display:flex; }
  .navlinks a, .btn{ width: 100%; }
}
.waitlist-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: #ff5fa2;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.waitlist-btn:hover {
  background: #ec8fb6;
  transform: translateY(-1px);
}
.waitlist-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: #ff5fa2;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.waitlist-btn:hover {
  background: #ec8fb6;
  transform: translateY(-1px);
}
.contact-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}



/* ===== Form field errors (used on landing application form) ===== */
.field-error{
  margin-top:6px;
  font-size: 13px;
  line-height: 1.4;
  color:#7a1143;
  font-weight: 800;
}
.input-error{
  border-color: rgba(236,143,182,.95) !important;
  box-shadow: 0 0 0 3px rgba(236,143,182,.18);
}
@media (max-width: 768px) {
  .apply-bar,
  .sticky-apply,
  .mobile-apply,
  .floating-cta {
    display: none !important;
  }
}
