/* ============================================================
   Nosey Boys — "Fresh Air" theme
   ============================================================ */

:root {
  /* base */
  --paper: #ffffff;
  --sky: #f4f9ff;
  --sky-deep: #eaf2ff;
  --mist: #dce7f2;
  --ink: #1c2a3a;
  --muted: #5a6b7e;

  /* accent */
  --accent: #1e3fe6;
  --accent-deep: #1430a8;
  --accent-soft: #e7edfd;

  /* type */
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --script: 'Caveat', 'Segoe Script', cursive;

  /* geometry */
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 6px 20px rgba(28, 42, 58, 0.06);
  --shadow: 0 18px 44px rgba(28, 42, 58, 0.10);
  --shadow-lg: 0 30px 70px rgba(30, 63, 230, 0.16);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 0.4em; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }

.script { font-family: var(--script); color: var(--accent); font-weight: 700; line-height: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 0.9em 1.6em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--sm { padding: 0.6em 1.2em; font-size: 0.92rem; }
.btn--lg { padding: 1.05em 2.2em; font-size: 1.15rem; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px rgba(30,63,230,.28); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(30,63,230,.36); }
.btn--ghost { color: var(--accent); border-color: var(--mist); background: rgba(255,255,255,.6); }
.btn--ghost:hover { border-color: var(--accent); transform: translateY(-3px); background: #fff; }
.btn--white { background: #fff; color: var(--accent); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,.2); }

/* ---------- kickers / heads ---------- */
.kicker {
  display: inline-block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem;
}
.kicker--light { color: #bcd0ff; }
.eyebrow { display:inline-block; font-size:.85rem; font-weight:600; color:var(--muted); letter-spacing:.04em; margin-bottom:1rem; }
.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__sub { color: var(--muted); font-size: 1.1rem; }
.section__sub--light { color: #c7d6ff; }
.hl { color: var(--accent); }
.muted { color: var(--muted); }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .35s, box-shadow .35s, backdrop-filter .35s; }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 16px clamp(20px, 5vw, 40px); display: flex; align-items: center; justify-content: space-between; }
.nav.scrolled { background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 4px 24px rgba(28,42,58,.08); }
.nav__brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.nav__logo { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), #4f6bf0); display: grid; place-items: center; box-shadow: 0 8px 18px rgba(30,63,230,.3); flex: none; }
.nav__logo img { width: 30px; height: 30px; object-fit: contain; filter: drop-shadow(0 1px 1px rgba(0,0,0,.25)); }
.nav__name { font-size: 1.15rem; letter-spacing: -0.01em; }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav__links a { font-weight: 500; color: var(--ink); font-size: 0.98rem; transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--accent); }
.nav__sale { color: var(--accent) !important; font-weight: 600 !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(120px, 18vw, 180px) 0 clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--sky-deep) 0%, var(--sky) 55%, #fff 100%); }
.glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.glow--1 { width: 460px; height: 460px; background: radial-gradient(circle, #9fb8ff, transparent 70%); top: -80px; right: -60px; }
.glow--2 { width: 380px; height: 380px; background: radial-gradient(circle, #c9d8ff, transparent 70%); bottom: -60px; left: -80px; }

.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero__copy .script { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: .3rem; }
.hero__copy h1 { margin-bottom: 0.5em; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 34em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.8rem 0 1.3rem; }
.hero__note { font-size: .95rem; color: var(--muted); }

/* hero visual */
.hero__visual { position: relative; min-height: 440px; }
.hero__card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); }
.hero__card--main { position: relative; width: 78%; margin-left: auto; aspect-ratio: 3/4; }
.hero__card--main img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--float { position: absolute; width: 40%; aspect-ratio: 3/4; border: 5px solid #fff; }
.hero__card--float img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--a { left: -4%; top: 12%; }
.hero__card--b { left: 6%; bottom: -4%; width: 34%; }
.hero__chip { position: absolute; right: -2%; bottom: 14%; background: #fff; border-radius: 18px; padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; }
.hero__chip strong { font-size: 2rem; color: var(--accent); font-weight: 800; line-height: 1; }
.hero__chip span { font-size: .78rem; color: var(--muted); line-height: 1.15; }

/* particles */
.particles { position: absolute; inset: 0; overflow: hidden; }
.particles i { position: absolute; bottom: -20px; width: 10px; height: 10px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #cddcff, #a8c0ff); opacity: .5; animation: rise linear infinite; }
@keyframes rise {
  0% { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  10% { opacity: .5; }
  90% { opacity: .5; }
  100% { transform: translateY(-108vh) translateX(30px) scale(1); opacity: 0; }
}

/* float animations */
.float-slow { animation: bob 6s ease-in-out infinite; }
.float-slower { animation: bob 8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ============================================================
   MISSION
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: clamp(40px, 6vw, 64px); }
.stat { background: var(--sky); border: 1px solid var(--mist); border-radius: var(--radius); padding: 30px 24px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s; }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.stat__num { display: block; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: .5rem; }
.stat__label { font-size: .92rem; color: var(--muted); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar { background: #fff; border: 1px solid var(--mist); border-radius: var(--radius); padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s; }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar__icon { font-size: 2.2rem; margin-bottom: 12px; }
.pillar p { color: var(--muted); margin: 0; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: linear-gradient(180deg, #fff 0%, var(--sky) 100%); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--mist); position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; }
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--c, var(--accent)); z-index: 2; }
.card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px color-mix(in srgb, var(--c, var(--accent)) 26%, transparent); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--c-soft, var(--sky)); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 26px 26px 30px; position: relative; flex: 1; }
.card__icon { position: absolute; top: -34px; right: 22px; width: 62px; height: 62px; border-radius: 50%; background: #fff; padding: 8px; box-shadow: var(--shadow-sm); object-fit: contain; }
.card__body h3 { margin-bottom: .1em; }
.card__body h3 span { color: var(--c, var(--accent)); }
.card__for { font-weight: 600; color: var(--c, var(--accent)); font-size: .95rem; margin-bottom: .7rem; }
.card__desc { color: var(--muted); font-size: .96rem; margin-bottom: 1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tags span { font-size: .78rem; padding: 4px 11px; border-radius: 999px; background: var(--c-soft, var(--sky)); color: var(--ink); font-weight: 500; }

.card--price { background: linear-gradient(160deg, var(--accent), var(--accent-deep)); color: #fff; border: 0; }
.card--price::before { display: none; }
.card--price .card__media { display: none; }
.card--price .card__for { color: #cdd9ff; }
.card--price .card__desc.muted { color: #b9c8ff; }
.price-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.price-list li:last-child { border-bottom: 0; }
.price-list strong { font-size: 1.4rem; font-weight: 800; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how__grid, .story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 70px); align-items: center; }
.how__media img, .story__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.steps { list-style: none; padding: 0; margin: 1.6rem 0; }
.steps li { display: flex; gap: 18px; margin-bottom: 22px; }
.steps__n { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 700; display: grid; place-items: center; }
.steps h4 { margin: 0 0 .2em; }
.steps p { margin: 0; color: var(--muted); }
.how__values { background: var(--sky); border-left: 4px solid var(--accent); border-radius: 0 14px 14px 0; padding: 16px 20px; color: var(--muted); font-size: .98rem; margin: 0; }
.how__values strong { color: var(--ink); }

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--sky); }
.story__copy p { color: var(--muted); }
.values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.4rem; }
.value { font-size: .86rem; font-weight: 500; padding: 8px 15px; border-radius: 999px; background: #fff; border: 1px solid var(--mist); color: var(--ink); }
.story__media { position: relative; }
.story__cap { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,.9); backdrop-filter: blur(6px); padding: 8px 14px; border-radius: 999px; font-size: .82rem; font-weight: 500; box-shadow: var(--shadow-sm); }

/* ============================================================
   FOR SALE
   ============================================================ */
.forsale { background: radial-gradient(120% 120% at 80% 0%, #2447ea 0%, #14225f 55%, #0d1741 100%); color: #fff; }
.forsale h2 { color: #fff; }
.forsale__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 44px); margin-bottom: clamp(36px, 5vw, 56px); }
.includes, .why { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); }
.includes h3, .why h3 { color: #fff; margin-bottom: 1.1rem; }
.includes__list { list-style: none; padding: 0; margin: 0; }
.includes__list li { position: relative; padding: 11px 0 11px 34px; border-bottom: 1px solid rgba(255,255,255,.1); color: #d7e0ff; }
.includes__list li:last-child { border-bottom: 0; }
.includes__list li::before { content: "✓"; position: absolute; left: 0; top: 11px; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; font-size: .75rem; display: grid; place-items: center; }
.includes__list strong, .why__item strong { color: #fff; }
.why__item { display: flex; gap: 14px; margin-bottom: 18px; }
.why__item:last-child { margin-bottom: 0; }
.why__item span { font-size: 1.5rem; flex: none; }
.why__item p { margin: 0; color: #c7d3ff; }
.forsale__cta { text-align: center; }
.forsale__cta p { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.2rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact .btn--lg { margin: .6rem 0 1.8rem; }
.socials { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; }
.socials a { font-weight: 500; color: var(--muted); transition: color .2s; }
.socials a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0d1741; color: #aab6da; padding: 56px 0 40px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__logo { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), #4f6bf0); display: grid; place-items: center; flex: none; }
.footer__logo img { width: 32px; height: 32px; object-fit: contain; }
.footer__script { color: #fff; font-size: 1.7rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__nav a { color: #aab6da; font-size: .95rem; transition: color .2s; }
.footer__nav a:hover { color: #fff; }
.footer__fine { width: 100%; margin: 8px 0 0; font-size: .85rem; color: #7d8bb8; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 360px; max-width: 460px; margin: 10px auto 0; }
  .how__grid, .story__grid, .forsale__grid { grid-template-columns: 1fr; }
  .story__media { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; align-items: stretch;
    background: rgba(255,255,255,.97); backdrop-filter: blur(16px); padding: 92px 28px 32px; gap: 6px;
    transform: translateY(-100%); transition: transform .4s var(--ease); box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 4px; border-bottom: 1px solid var(--mist); font-size: 1.05rem; }
  .nav__links .btn { margin-top: 12px; justify-content: center; border-bottom: 0; }
  .nav__toggle { display: flex; z-index: 60; }
  .cards { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .particles { display: none; }
}
