/* ============================================================
   LAYOUT   Nav + Hero   v5.1   Mobile-first
   ============================================================ */

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(253,250,245,.95);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--c-ink-10);
  padding: 12px 5vw;
}
.nav__logo {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--f-ui);
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.3px;
  color: var(--c-ink);
}
.nav__logo .accent { color: var(--c-sky); }
.nav__logo .dot { color: var(--c-coral); font-size: 1.4rem; line-height: 0; margin-left: 1px; }

.nav__links {
  display: flex; align-items: center; gap: 2rem;
}
.nav__links a {
  font-family: var(--f-ui);
  font-size: .82rem; font-weight: 500; letter-spacing: .2px;
  color: var(--c-ink-80);
  position: relative; padding: 6px 0;
  transition: color .2s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--c-sky);
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--c-ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.nav__cta {
  font-family: var(--f-ui);
  font-size: .8rem; font-weight: 500;
  background: var(--c-ink); color: var(--c-paper);
  padding: 10px 20px; border-radius: var(--r-pill);
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--c-sky); transform: translateY(-1px); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { padding: 8px 16px; font-size: .78rem; }
}

/* HERO */
.hero {
  padding: 130px 5vw 64px;
  position: relative;
  overflow: hidden;
  background: var(--c-paper);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    to bottom, transparent, transparent 39px,
    rgba(26,26,46,.04) 39px, rgba(26,26,46,.04) 40px
  );
  pointer-events: none;
}
.hero__number {
  position: absolute; right: -1vw; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(10rem, 22vw, 28rem);
  font-weight: 700;
  color: var(--c-ink); opacity: .04;
  pointer-events: none; user-select: none; line-height: 1;
}
.hero__left { position: relative; z-index: 2; max-width: 720px; }

.hero__eyebrow {
  font-family: var(--f-ui);
  font-size: .72rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--c-sky);
  margin-bottom: var(--s-4);
  display: inline-flex; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp .6s ease .1s forwards;
}
.hero__eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1.5px; background: var(--c-sky);
}

/* Hero H1: DM Sans SemiBold - clean, strong display */
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  font-weight: 600; line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: var(--s-5);
  color: var(--c-ink);
  opacity: 0; animation: fadeUp .7s ease .22s forwards;
}
.hero__title em { font-style: italic; color: var(--c-sky); }

.hero__body {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.6vw, 1.1rem); line-height: 1.78;
  color: var(--c-ink-60); max-width: 500px;
  margin-bottom: var(--s-6);
  opacity: 0; animation: fadeUp .7s ease .36s forwards;
}

.hero__actions {
  display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s ease .5s forwards;
}
.btn {
  font-family: var(--f-ui);
  font-size: .88rem; font-weight: 500; letter-spacing: .2px;
  padding: 14px 26px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--c-ink); color: var(--c-paper); }
.btn--primary:hover { background: var(--c-sky); }
.btn--ghost { color: var(--c-ink); border: 1.5px solid var(--c-ink-20); }
.btn--ghost:hover { border-color: var(--c-ink); background: var(--c-white); }

.hero__meta {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: var(--s-6);
  padding-top: var(--s-5); margin-top: var(--s-6);
  border-top: 1px solid var(--c-ink-10);
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s ease .7s forwards;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero__meta-item .n {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 600;
  line-height: 1; color: var(--c-ink);
}
.hero__meta-item .l {
  font-family: var(--f-ui);
  font-size: .62rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--c-ink-60);
}
.hero__meta-sep { width: 1px; height: 24px; background: var(--c-ink-20); }

@media (max-width: 600px) {
  .hero { padding: 110px 5vw 48px; }
  .hero__number { display: none; }
  .hero__meta { gap: var(--s-5); }
  .hero__meta-sep { display: none; }
  .btn { padding: 12px 22px; font-size: .84rem; }
}

/* TICKER */
.ticker {
  background: var(--c-ink); color: var(--c-paper);
  padding: 13px 0; overflow: hidden; white-space: nowrap;
}
.ticker__inner {
  display: inline-flex; align-items: center;
  animation: ticker-scroll 38s linear infinite;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-ui); font-size: .72rem; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 0 28px; color: rgba(253,250,245,.5);
}
.ticker__item strong { color: var(--c-sun); font-weight: 600; }
.ticker__sep { color: var(--c-coral); }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* NAV LOGO with Bloom mark */
.nav__logo {
  display: flex; align-items: center; gap: 10px;
}
.nav__bloom {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.12));
}
.nav__logo-text {
  font-family: var(--f-ui);
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.3px;
  color: var(--c-ink);
}
.nav__logo-text .accent { color: var(--c-sky); }
/* Remove old .dot since logo replaced */
.nav__logo .dot { display: none; }

@media (max-width: 480px) {
  .nav__bloom { width: 28px; height: 28px; }
  .nav__logo-text { font-size: 1rem; }
}

/* Hero value line below buttons */
.hero__value {
  font-family: var(--f-ui);
  font-size: .78rem; font-weight: 500; letter-spacing: 1.5px;
  color: var(--c-ink-40); margin-top: var(--s-4);
  text-transform: uppercase;
}
