/* [project]/app/landing.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --deep: #1a3a6e;
  --navy: #2a5298;
  --mid: #3d7ea6;
  --teal: #4fa3a3;
  --teal-lt: #4eb5a3;
  --white: #fff;
  --off: #f7fafc;
  --muted: #ffffffa6;
  --border: #ffffff2e;
  --glass: #ffffff1a;
  --shadow: #2a529840;
  --font-display: var(--font-quicksand, "Quicksand"), sans-serif;
  --font-body: var(--font-nunito, "Nunito Sans"), sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  cursor: default;
  overflow-x: hidden;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  opacity: .6;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  position: fixed;
  inset: 0;
}

.bg-mesh {
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(80% 60% at 20% 10%, #4fa3a338 0%, #0000 60%), radial-gradient(60% 80% at 85% 80%, #2a529866 0%, #0000 60%), radial-gradient(100% 100%, #2a5298 0%, #1a3a6e 100%);
  position: fixed;
  inset: 0;
}

nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: #1a3a6e80;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-logo {
  font-family: var(--font-display);
  letter-spacing: 4px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  gap: 36px;
  list-style: none;
  display: flex;
}

.nav-links a {
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

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

.nav-cta {
  font-family: var(--font-display);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.nav-cta:hover {
  background: #ffffff2e;
  border-color: #ffffff59;
}

#hero {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: flex;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 3px;
  color: var(--teal-lt);
  text-transform: lowercase;
  opacity: 0;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  animation: .9s .3s forwards fadeUp;
}

.hero-eyebrow-2 {
  font-family: var(--font-display);
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: lowercase;
  opacity: 0;
  margin-bottom: 52px;
  font-size: 13px;
  font-weight: 400;
  animation: .9s .5s forwards fadeUp;
}

.hero-logo {
  font-family: var(--font-display);
  letter-spacing: 8px;
  color: var(--white);
  opacity: 0;
  text-shadow: 0 4px 40px #2a529880;
  margin-bottom: 32px;
  font-size: clamp(64px, 12vw, 130px);
  font-weight: 700;
  line-height: .95;
  animation: 1s .7s forwards fadeUp;
}

.hero-line {
  opacity: 0;
  background: #ffffff59;
  width: 60px;
  height: 1px;
  margin: 0 auto 36px;
  animation: 1s 1s forwards fadeIn;
}

.hero-subtitle {
  color: #ffffffd1;
  letter-spacing: .3px;
  opacity: 0;
  max-width: 520px;
  margin-bottom: 60px;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  animation: .9s 1.1s forwards fadeUp;
}

.waitlist-form {
  opacity: 0;
  gap: 0;
  width: 100%;
  max-width: 460px;
  animation: .9s 1.3s forwards fadeUp;
  display: flex;
}

.waitlist-input {
  border: 1px solid var(--border);
  font-family: var(--font-body);
  color: var(--white);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffff1a;
  border-right: none;
  border-radius: 30px 0 0 30px;
  outline: none;
  flex: 1;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 300;
  transition: background .2s, border-color .2s;
}

.waitlist-input::placeholder {
  color: #ffffff73;
}

.waitlist-input:focus {
  background: #ffffff26;
  border-color: #ffffff59;
}

.waitlist-btn {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 0 30px 30px 0;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, transform .15s;
}

.waitlist-btn:hover {
  background: #e2e8f0;
  transform: translateX(2px);
}

.waitlist-note {
  color: #ffffff61;
  letter-spacing: 1px;
  opacity: 0;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 300;
  animation: 1s 1.6s forwards fadeIn;
}

.store-badges {
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  animation: .9s 1.7s forwards fadeUp;
  display: flex;
}

.store-badge {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: flex;
}

.store-badge:hover {
  background: #ffffff29;
  transform: translateY(-2px);
}

.store-icon {
  font-size: 22px;
  line-height: 1;
}

.store-text {
  text-align: left;
}

.store-label {
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
  display: block;
}

.store-name {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  display: block;
}

.phone-section {
  z-index: 1;
  justify-content: center;
  margin-top: -30px;
  padding: 0 40px 80px;
  display: flex;
  position: relative;
}

.phone-wrap {
  opacity: 0;
  animation: 1s 1.9s forwards fadeUp;
  position: relative;
}

.phone-frame {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffff0f;
  border: 1px solid #ffffff26;
  border-radius: 42px;
  width: 260px;
  padding: 16px;
  box-shadow: 0 40px 80px #00000059, inset 0 0 0 1px #ffffff14, 0 20px 40px #4fa3a31f;
}

.phone-screen {
  background: linear-gradient(170deg, #2a5298 0%, #3d7ea6 50%, #4fa3a3 100%);
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  min-height: 480px;
  padding: 28px 20px 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.phone-status {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
  display: flex;
}

.phone-time {
  font-family: var(--font-display);
  color: #ffffffb3;
  font-size: 11px;
  font-weight: 600;
}

.phone-notch {
  background: #00000040;
  border-radius: 3px;
  width: 60px;
  height: 6px;
}

.phone-signal {
  color: #ffffffb3;
  letter-spacing: 1px;
  font-size: 10px;
}

.phone-logo {
  font-family: var(--font-display);
  letter-spacing: 4px;
  color: #ffffffa6;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
}

.phone-divider {
  background: #ffffff4d;
  width: 30px;
  height: 1px;
  margin: 0 auto 22px;
}

.phone-avatar-ring {
  background: #e6f5ffe6;
  border: 3px solid #ffffff80;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 14px;
  font-size: 42px;
  animation: 3s ease-in-out infinite float;
  display: flex;
  box-shadow: 0 8px 24px #0003;
}

.phone-pet-name {
  font-family: var(--font-body);
  color: #fff;
  letter-spacing: .3px;
  margin-bottom: 2px;
  font-size: 20px;
  font-weight: 600;
}

.phone-pet-meta {
  color: #ffffffb3;
  margin-bottom: 16px;
  font-size: 12px;
}

.phone-health-badge {
  background: #ffffff24;
  border: 1px solid #ffffff38;
  border-radius: 20px;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 16px;
  display: flex;
}

.phone-dot {
  background: #4ade80;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.phone-health-text {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.phone-message-card {
  background: #fffffff5;
  border-radius: 16px;
  width: 100%;
  padding: 14px 16px;
  position: relative;
}

.phone-message-tail {
  border-bottom: 10px solid #fffffff5;
  border-left: 8px solid #0000;
  border-right: 8px solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: -9px;
  left: 24px;
}

.phone-message-text {
  color: #4a5568;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.6;
  transition: opacity .3s;
}

.phone-message-dots {
  gap: 5px;
  display: flex;
}

.phone-dot-ind {
  background: #e2e8f0;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.phone-dot-ind.active {
  background: #3d7ea6;
  border-radius: 3px;
  width: 14px;
}

.phone-bottom {
  justify-content: space-around;
  width: 100%;
  margin-top: 16px;
  display: flex;
}

.phone-nav-item {
  flex-direction: column;
  align-items: center;
  gap: 3px;
  display: flex;
}

.phone-nav-icon {
  font-size: 18px;
}

.phone-nav-label {
  color: #fff9;
  letter-spacing: .5px;
  font-size: 8px;
}

.phone-nav-item.active .phone-nav-label {
  color: #fff;
}

.phone-emergency {
  background: #dc2626;
  border: 2px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 20px;
  display: flex;
  position: absolute;
  bottom: 80px;
  right: 16px;
  box-shadow: 0 4px 16px #dc262680;
}

.phone-glow {
  pointer-events: none;
  background: radial-gradient(circle, #4fa3a326 0%, #0000 70%);
  border-radius: 50%;
  position: absolute;
  inset: -40px;
}

#features {
  z-index: 1;
  padding: 100px 40px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 2.5px;
  color: var(--teal-lt);
  text-transform: lowercase;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  letter-spacing: 3px;
  color: var(--white);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
}

.feature-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  border-radius: 24px;
  padding: 36px 28px;
  transition: background .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff40, #0000);
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.feature-card:hover {
  background: #ffffff1a;
  border-color: #fff3;
  transform: translateY(-4px);
}

.feature-icon {
  margin-bottom: 20px;
  font-size: 36px;
  display: block;
}

.feature-title {
  font-family: var(--font-body);
  color: var(--white);
  letter-spacing: .3px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.feature-desc {
  color: #ffffffa6;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.feature-card.highlight {
  background: #4fa3a31f;
  border-color: #4fa3a34d;
}

.feature-card.highlight:hover {
  background: #4fa3a32e;
}

#about {
  z-index: 1;
  padding: 80px 40px;
  position: relative;
}

.about-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-inner .section-eyebrow {
  margin-bottom: 20px;
}

.about-body {
  color: #fffc;
  letter-spacing: .2px;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 300;
  line-height: 1.8;
}

.about-body strong {
  color: var(--white);
  font-weight: 500;
}

.about-divider {
  background: #ffffff40;
  width: 50px;
  height: 1px;
  margin: 40px auto;
}

.about-name {
  font-family: var(--font-display);
  letter-spacing: 4px;
  color: var(--teal-lt);
  font-size: 26px;
  font-weight: 700;
}

#waitlist {
  z-index: 1;
  text-align: center;
  padding: 80px 40px 120px;
  position: relative;
}

.waitlist-card {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #ffffff0f;
  border: 1px solid #ffffff1f;
  border-radius: 32px;
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.waitlist-card:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff59, #0000);
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.waitlist-card .section-eyebrow {
  margin-bottom: 12px;
}

.waitlist-card-title {
  font-family: var(--font-display);
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
}

.waitlist-card-sub {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

footer {
  z-index: 1;
  border-top: 1px solid #ffffff14;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px;
  display: flex;
  position: relative;
}

.footer-logo {
  font-family: var(--font-display);
  letter-spacing: 4px;
  color: #ffffff80;
  font-size: 16px;
  font-weight: 700;
}

.footer-links {
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  display: flex;
}

.footer-links a {
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff59;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: #ffffffb3;
}

.footer-copy {
  color: #ffffff40;
  letter-spacing: .5px;
  font-size: 11px;
}

.success-msg {
  color: #4ade80;
  letter-spacing: 1px;
  margin-top: 14px;
  font-size: 13px;
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.reveal {
  opacity: 0;
  transition: opacity .7s, transform .7s;
  transform: translateY(28px);
}

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

@media (max-width: 680px) {
  nav {
    padding: 18px 24px;
  }

  .nav-links {
    display: none;
  }

  #hero {
    padding: 100px 24px 60px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-input {
    border-right: 1px solid var(--border);
    border-bottom: none;
    border-radius: 30px;
  }

  .waitlist-btn {
    border-radius: 30px;
  }

  #features {
    padding: 80px 24px;
  }

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

  #about, #waitlist {
    padding: 60px 24px 80px;
  }

  .waitlist-card {
    padding: 40px 28px;
  }

  footer {
    text-align: center;
    flex-direction: column;
    padding: 32px 24px;
  }
}

/*# sourceMappingURL=app_landing_990b8bb6.css.map*/