@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --sky-light: #d4edfc;
  --sky-mid: #a8d8f0;
  --sky-deep: #4a90d9;
  --sky-dusk: #2c5f8a;
  --sky-night: #1b3a4b;
  --sunshine: #ffd93d;
  --sunset: #ff9f43;
  --coral: #ff6b8a;
  --leaf: #56c596;
  --cloud: rgba(255, 255, 255, 0.7);
  --text-dark: #1b3a4b;
  --text-body: #3d6478;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--sky-light);
  background-image:
    radial-gradient(
      ellipse at 25% 15%,
      rgba(255, 255, 255, 0.55) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 75% 85%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #d4edfc 0%,
      #b8dff5 20%,
      #a8d8f0 40%,
      #8fc8e8 60%,
      #6badd6 80%,
      #4a90c4 100%
    );
  background-attachment: fixed;
}

main {
  width: 100%;
  overflow: hidden;
}

/* ============================
   NAVIGATION — frosted cloud
   ============================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ============================
   BUTTONS — sky themed
   ============================ */
.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border-radius: 12px;
}

.btn-glow {
  background: var(--sky-deep);
  color: white;
  border-color: var(--sky-deep);
  box-shadow: 0 4px 18px rgba(74, 144, 217, 0.3);
}

.btn-glow:hover {
  background: #3a7cc5;
  border-color: #3a7cc5;
  box-shadow: 0 6px 25px rgba(74, 144, 217, 0.45);
  transform: translateY(-2px);
}

.btn-outline-glow {
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-dark);
  border-color: rgba(27, 58, 75, 0.2);
}

.btn-outline-glow:hover {
  border-color: var(--sky-deep);
  color: var(--sky-deep);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 15px rgba(74, 144, 217, 0.15);
}

.btn-pink {
  background: var(--sunset);
  color: white;
  border-color: var(--sunset);
  box-shadow: 0 4px 18px rgba(255, 159, 67, 0.3);
}

.btn-pink:hover {
  background: #e88c35;
  border-color: #e88c35;
  box-shadow: 0 6px 25px rgba(255, 159, 67, 0.45);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1.1rem;
}

/* ============================
   HERO — split with sunshine glow
   ============================ */
.hero {
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

h1 {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: left;
}

h1 em {
  font-style: italic;
  color: var(--sunset);
}

.blurb {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0 0 2rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.blob-hero {
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  background: linear-gradient(135deg, var(--sunset), var(--coral));
  box-shadow: 0 8px 35px rgba(255, 107, 138, 0.2);
}

.hero-bird {
  position: absolute;
  width: 300px;
  pointer-events: none;
  z-index: 5;
  top: -100px;
  right: -60px;
  /* transform: scaleX(-1); */
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  animation: deco-float 4.5s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow:
      0 0 50px rgba(255, 217, 61, 0.1),
      0 0 100px rgba(255, 217, 61, 0.03);
  }
  50% {
    box-shadow:
      0 0 70px rgba(255, 217, 61, 0.18),
      0 0 130px rgba(255, 217, 61, 0.06);
  }
}

/* ============================
   FEATURES — cloud-glass panels
   ============================ */
.feature {
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* Cloud-glass background for each feature */
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ambient warm glow behind each feature */
.feature::before {
  content: "";
  position: absolute;
  width: 45%;
  height: 70%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 1;
}

.feature-1::before {
  background: var(--coral);
  right: -5%;
  top: 10%;
}
.feature-2::before {
  background: var(--sunshine);
  left: -5%;
  top: 15%;
}
.feature-3::before {
  background: var(--sky-deep);
  right: -5%;
  top: 10%;
}
.feature-4::before {
  background: var(--leaf);
  left: -5%;
  top: 15%;
}

.feature-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Blob image frames — soft gradient borders */
.blob-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 360px;
  padding: 5px;
}

.blob-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.blob-1 {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, var(--coral), var(--sunset));
  box-shadow: 0 8px 35px rgba(255, 107, 138, 0.2);
}

.blob-2 {
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  background: linear-gradient(135deg, var(--sunshine), var(--leaf));
  box-shadow: 0 8px 35px rgba(255, 217, 61, 0.2);
}

.blob-3 {
  border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
  background: linear-gradient(135deg, var(--sky-deep), var(--sky-mid));
  box-shadow: 0 8px 35px rgba(74, 144, 217, 0.2);
}

.blob-4 {
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--leaf), var(--sky-deep));
  box-shadow: 0 8px 35px rgba(86, 197, 150, 0.2);
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feature-bird {
  position: absolute;
  width: 280px;
  pointer-events: none;
  z-index: 5;
  animation: deco-float 4.5s ease-in-out infinite;
}

.feature-1 .feature-bird {
  top: -40px;
  left: -100px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  animation-delay: 0.3s;
}

.feature-2 .feature-bird {
  top: -80px;
  left: -60px;

  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  animation-delay: 0.9s;
}

.feature-3 .feature-bird {
  bottom: -60px;
  left: -60px;
  transform: rotate(-5deg);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  animation-delay: 1.5s;
}

.feature-4 .feature-bird {
  top: -100px;
  right: -80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  animation-delay: 2.1s;
}

.feature-text h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.feature-text h2 em {
  font-style: italic;
  color: var(--sunset);
}

.feature-2 .feature-text h2 em {
  color: var(--coral);
}
.feature-3 .feature-text h2 em {
  color: var(--sky-deep);
}
.feature-4 .feature-text h2 em {
  color: var(--leaf);
}

.feature-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ============================
   FINAL CTA — golden hour cloud
   ============================ */
.final-cta {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.final-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cloud-glass + warm sunset tint */
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 217, 61, 0.08),
    rgba(255, 159, 67, 0.06)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
}

.cta-bird {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: deco-float 5s ease-in-out infinite;
}

.cta-bird-left {
  left: 6%;
  /* top: 50%; */
  transform: scaleX(-1);
  width: 300px;
  /* filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1)); */
  animation-delay: 0.5s;
}

.cta-bird-right {
  right: 6%;
  /* bottom: 15%; */
  /* transform: rotate(8deg); */
  width: 300px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  animation-delay: 1.5s;
}

/* ============================
   FOOTER — dusk horizon
   ============================ */
footer {
  background: linear-gradient(180deg, var(--sky-dusk), var(--sky-night));
  padding: 2.5rem 2rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-brand img {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 8px rgba(255, 217, 61, 0.25));
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--sunshine);
}

.footer-copy {
  font-size: 0.85rem;
}

/* ============================
   TEXT PAGES (Privacy, Terms)
   ============================ */
.logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 1.5rem;
  position: relative;
}

.logo-bird {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.logo-text {
  height: 55px;
  margin-left: 0.75rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.text-page {
  padding: 2.5rem;
  max-width: 860px;
  margin: 0 auto 2rem;
  margin-top: 7rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  color: var(--text-dark);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.text-page h1 {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text-dark);
  text-align: left;
  margin-bottom: 0.75rem;
}

.text-page h2 {
  color: var(--text-dark);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.text-page p {
  color: var(--text-body);
  line-height: 1.7;
}

.text-page a {
  color: var(--sky-deep);
}

.text-page ul,
.text-page ol {
  color: var(--text-body);
  padding-left: 1.5rem;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    font-size: 2.75rem;
    text-align: center;
  }

  .blurb {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .blob-hero {
    max-width: 300px;
  }

  .feature-row {
    gap: 2.5rem;
  }

  .blob-frame {
    max-width: 300px;
  }
}

@media (max-width: 960px) {
  .hero-bird {
    display: none;
  }
  .feature-bird {
    display: none;
  }
  .cta-bird {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .nav-logo span {
    display: none;
  }

  .nav-inner {
    padding: 0.65rem 1rem;
  }

  .btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
  }

  .hero {
    padding: 5.5rem 1rem 3rem;
  }

  .hero-visual {
    display: none;
  }

  h1 {
    font-size: 2.1rem;
  }

  .blurb {
    font-size: 1rem;
  }

  .feature {
    padding: 3rem 1rem;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-text {
    order: -1;
    text-align: center;
  }

  .blob-frame {
    max-width: 280px;
    margin: 0 auto;
  }

  .feature-bird {
    display: none;
  }

  .feature-text h2 {
    font-size: 1.8rem;
  }

  .feature-media > img:first-child {
    height: 220px;
  }

  .final-cta {
    padding: 4rem 1rem;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .cta-bird {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .logo-container {
    flex-direction: column;
    padding: 2rem 1rem 1rem;
  }

  .logo-text {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .text-page {
    margin: 0 0.5rem 1.5rem;
    padding: 1.5rem;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .blurb {
    font-size: 0.95rem;
  }

  .feature-text h2 {
    font-size: 1.5rem;
  }

  .final-cta h2 {
    font-size: 1.65rem;
  }

  .logo-bird {
    width: 65px;
    height: 65px;
  }

  .logo-text {
    height: 40px;
  }

  .blob-frame {
    max-width: 240px;
  }
}
