/* Shared marketing surface — VCSE Observatory brand (matches official website) */

:root {
  --m-brand: #702283;       /* NBS Purple */
  --m-brand-d: #4e165d;
  --m-brand-mid: #8e42a1;
  --m-accent: #009add;      /* S3 Blue */
  --m-accent-l: #e8f6fc;
  --m-secondary: #e4032e;   /* NTU Red */
  --m-ink: #0f172a;
  --m-body: #334155;
  --m-muted: #64748b;
  --m-line: #e2e8f0;
  --m-bg: #f8fafc;
  --m-card: #fff;
  --m-shadow: 0 1px 2px rgba(112, 34, 131, .05), 0 6px 22px rgba(112, 34, 131, .08);
  --m-shadow-hover: 0 10px 36px rgba(112, 34, 131, .16);
}

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

html { scroll-behavior: smooth; }

body.marketing {
  font-family: Inter, system-ui, sans-serif;
  color: var(--m-ink);
  background: var(--m-bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.m-brand-font,
h1, h2, h3 {
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
  letter-spacing: -.02em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

/* Atmospheric canvas */
.m-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.m-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 12% -10%, rgba(0, 154, 221, .16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 8%, rgba(112, 34, 131, .14), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(142, 66, 161, .1), transparent 55%),
    linear-gradient(180deg, #fbf8fc 0%, #f3eef8 45%, #f8fafc 100%);
}

.m-atmosphere::after {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(112, 34, 131, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 34, 131, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  animation: mGridDrift 28s linear infinite;
  opacity: .9;
}

@keyframes mGridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-48px, -48px, 0); }
}

.m-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .45;
  animation: mOrbFloat 14s ease-in-out infinite;
}

.m-orb-a {
  width: 280px; height: 280px;
  top: 12%; right: 8%;
  background: rgba(0, 154, 221, .32);
}

.m-orb-b {
  width: 220px; height: 220px;
  bottom: 18%; left: 6%;
  background: rgba(112, 34, 131, .28);
  animation-delay: -5s;
}

@keyframes mOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.06); }
}

.m-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.25rem 0 3.5rem;
}

/* Top nav */
.m-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0 1.25rem;
}

.m-nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}

.m-nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.m-nav-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.m-nav-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--m-brand);
  letter-spacing: -.02em;
}

.m-nav-brand-tag {
  font-size: .72rem;
  font-weight: 600;
  color: var(--m-muted);
  letter-spacing: .02em;
}

.m-nav-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
}

.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 1rem;
  padding: .7rem 1.25rem;
  min-height: 44px;
  font-weight: 600;
  font-size: .88rem;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s, color .2s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.m-btn i {
  font-size: .9em;
  line-height: 1;
}

.m-btn:hover { transform: translateY(-2px); }

.m-btn:focus-visible {
  outline: 3px solid var(--m-accent);
  outline-offset: 2px;
}

.m-btn-primary {
  background: linear-gradient(135deg, var(--m-brand), var(--m-brand-d));
  color: #fff;
  border-color: var(--m-brand);
  box-shadow: var(--m-shadow);
}

.m-btn-primary:hover {
  box-shadow: var(--m-shadow-hover);
  color: #fff;
}

.m-btn-ghost {
  background: #fff;
  color: var(--m-brand);
  border-color: var(--m-brand);
  box-shadow: 0 1px 2px rgba(112, 34, 131, .05);
}

.m-btn-ghost:hover {
  background: var(--m-brand);
  color: #fff;
  border-color: var(--m-brand);
}

.m-btn-accent {
  background: linear-gradient(135deg, var(--m-accent), #33b5e4);
  color: #fff;
  border-color: var(--m-accent);
}

.m-btn-accent:hover { filter: brightness(.97); color: #fff; }

.m-btn-lg {
  padding: .9rem 1.5rem;
  font-size: .95rem;
  border-radius: 1rem;
  min-height: 50px;
}

.m-skip {
  position: absolute;
  left: .75rem;
  top: .75rem;
  z-index: 100;
  padding: .65rem 1rem;
  background: var(--m-brand);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: .88rem;
  transform: translateY(-150%);
  transition: transform .15s;
}

.m-skip:focus {
  transform: translateY(0);
  outline: 3px solid var(--m-accent);
  outline-offset: 2px;
}

/* Hero */
.m-hero {
  padding: clamp(2.5rem, 8vh, 5rem) 0 clamp(2rem, 5vh, 3.5rem);
  max-width: 44rem;
  animation: mRise .7s cubic-bezier(.22, 1, .36, 1) both;
}

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

.m-hero-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  font-weight: 700;
  color: var(--m-brand);
  margin: 0 0 .85rem;
  letter-spacing: -.04em;
  line-height: .95;
}

.m-hero-brand span {
  display: block;
  color: var(--m-accent);
  font-weight: 600;
  font-size: .42em;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}

.m-hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--m-body);
  line-height: 1.55;
  margin: 0 0 1.6rem;
  max-width: 34rem;
  font-weight: 500;
}

.m-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  animation: mRise .75s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.m-hero-note {
  margin-top: 1.1rem;
  font-size: .82rem;
  color: var(--m-muted);
  animation: mRise .75s cubic-bezier(.22, 1, .36, 1) .2s both;
}

.m-hero-note a {
  color: var(--m-brand-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Survey strip — interactive CTA, not a card cluster */
.m-survey {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 2.5rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: linear-gradient(105deg, var(--m-brand) 0%, var(--m-brand-mid) 55%, var(--m-accent) 120%);
  color: #fff;
  box-shadow: var(--m-shadow-hover);
  transition: transform .18s, box-shadow .18s;
  animation: mRise .7s cubic-bezier(.22, 1, .36, 1) .08s both;
}

.m-survey:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(112, 34, 131, .28);
}

.m-survey-copy strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.m-survey-copy span {
  font-size: .88rem;
  opacity: .88;
}

.m-survey-go {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
}

.m-survey:hover .m-survey-go {
  background: rgba(255,255,255,.28);
  transform: translateX(3px);
}

/* Sections */
.m-section {
  margin: 2.75rem 0 0;
  animation: mRise .7s cubic-bezier(.22, 1, .36, 1) .18s both;
}

.m-section-head {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.m-section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--m-brand-mid);
  margin-bottom: .4rem;
}

.m-section-title {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--m-ink);
  margin: 0 0 .45rem;
}

.m-section-sub {
  font-size: .98rem;
  color: var(--m-muted);
  line-height: 1.55;
  margin: 0;
}

/* Destination links (interactive) */
.m-destinations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .75rem;
}

.m-dest {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.05rem 1rem;
  background: var(--m-card);
  border: 1px solid var(--m-line);
  border-radius: 14px;
  box-shadow: var(--m-shadow);
  transition: transform .16s, border-color .16s, box-shadow .16s;
  min-height: 112px;
}

.m-dest:hover {
  transform: translateY(-3px);
  border-color: #d4b3de;
  box-shadow: var(--m-shadow-hover);
}

.m-dest-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--m-accent-l), #f6eef9);
  color: var(--m-brand);
  border: 1px solid #d4b3de;
  font-size: .9rem;
}

.m-dest-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .98rem;
  color: var(--m-ink);
}

.m-dest-hint {
  font-size: .78rem;
  color: var(--m-muted);
  line-height: 1.35;
}

/* About editorial */
.m-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}

.m-prose {
  font-size: 1.02rem;
  color: var(--m-body);
  line-height: 1.65;
}

.m-prose p + p { margin-top: 1rem; }

.m-panel {
  padding: 1.35rem 1.4rem;
  background: var(--m-card);
  border: 1px solid var(--m-line);
  border-radius: 18px;
  box-shadow: var(--m-shadow);
}

.m-panel h3 {
  font-size: 1rem;
  margin: 0 0 .85rem;
  color: var(--m-brand);
}

.m-stat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.m-stat-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: start;
}

.m-stat-mark {
  width: 10px;
  height: 10px;
  margin-top: .35rem;
  border-radius: 50%;
  background: var(--m-accent);
  box-shadow: 0 0 0 4px var(--m-accent-l);
}

.m-stat-list strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  color: var(--m-ink);
  margin-bottom: .15rem;
}

.m-stat-list span {
  font-size: .88rem;
  color: var(--m-muted);
  line-height: 1.45;
}

.m-measure {
  display: grid;
  gap: 0;
  border: 1px solid var(--m-line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--m-card);
  box-shadow: var(--m-shadow);
}

.m-measure-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--m-line);
  align-items: baseline;
}

.m-measure-row:last-child { border-bottom: none; }

.m-measure-row:nth-child(even) {
  background: #fafbfc;
}

.m-measure-k {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--m-brand);
}

.m-measure-v {
  font-size: .92rem;
  color: var(--m-body);
  line-height: 1.5;
}

.m-connect {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.m-connect a {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1.1rem 1.15rem;
  background: var(--m-card);
  border: 1px solid var(--m-line);
  border-radius: 14px;
  box-shadow: var(--m-shadow);
  transition: transform .16s, border-color .16s, box-shadow .16s;
}

.m-connect a:hover {
  transform: translateY(-2px);
  border-color: #d4b3de;
  box-shadow: var(--m-shadow-hover);
}

.m-connect-k {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--m-muted);
}

.m-connect-v {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--m-brand);
  word-break: break-word;
}

.m-band {
  margin-top: 2.75rem;
  padding: 1.6rem 1.7rem;
  border-radius: 18px;
  background: linear-gradient(120deg, var(--m-brand-d), var(--m-brand) 50%, var(--m-brand-mid));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  box-shadow: var(--m-shadow-hover);
}

.m-band h2 {
  font-size: 1.35rem;
  margin: 0 0 .35rem;
  color: #fff;
}

.m-band p {
  margin: 0;
  opacity: .88;
  font-size: .92rem;
  max-width: 28rem;
  line-height: 1.5;
}

.m-band .m-btn-primary {
  background: #fff;
  color: var(--m-brand);
}

.m-band .m-btn-primary:hover {
  background: var(--m-accent-l);
}

.m-foot {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--m-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8rem;
  color: var(--m-muted);
}

.m-foot a {
  color: var(--m-brand-mid);
  font-weight: 600;
}

@media (max-width: 860px) {
  .m-split { grid-template-columns: 1fr; }
  .m-connect { grid-template-columns: 1fr; }
  .m-measure-row { grid-template-columns: 1fr; gap: .35rem; }
}

@media (max-width: 640px) {
  .m-shell { width: calc(100% - 1.5rem); padding-top: .85rem; }
  .m-nav-brand-tag { display: none; }
  .m-survey { flex-direction: column; align-items: flex-start; }
  .m-destinations { grid-template-columns: 1fr 1fr; }
  .m-hero-brand { font-size: clamp(2.3rem, 12vw, 3.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .m-atmosphere::after,
  .m-orb,
  .m-hero,
  .m-hero-ctas,
  .m-hero-note,
  .m-survey,
  .m-section { animation: none; }
}

/* ── Home: single-viewport composition (almost no scroll) ─────────────── */

.marketing-home {
  overflow-x: hidden;
  overflow-y: auto;
}

.m-page--fit {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.m-shell--fit {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: min(1080px, calc(100% - 2.5rem));
  padding: .75rem 0 .9rem;
  min-height: 0;
}

.marketing-home .m-nav-logo {
  width: 58px;
  height: 58px;
}

.marketing-home .m-nav-brand-name {
  font-size: 1.15rem;
}

/* Wave 15 banner */
.m-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1rem;
  margin: 0 0 .35rem;
  padding: .95rem 1.15rem .95rem 1rem;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(105deg, var(--m-brand-d) 0%, var(--m-brand) 42%, var(--m-brand-mid) 78%, var(--m-accent) 120%);
  background-size: 160% 100%;
  box-shadow: 0 10px 32px rgba(112, 34, 131, .28);
  text-decoration: none;
  min-height: 64px;
  animation:
    mRise .55s cubic-bezier(.22, 1, .36, 1) both,
    mBannerShine 7s ease-in-out infinite;
}

.m-banner:focus-visible {
  outline: 3px solid #7dd3fc;
  outline-offset: 3px;
}

@keyframes mBannerShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.m-banner-pulse {
  position: absolute;
  left: .75rem;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 0 0 rgba(125, 211, 252, .55);
  animation: mLivePulse 1.8s ease-out infinite;
}

@keyframes mLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(125, 211, 252, .55); }
  70% { box-shadow: 0 0 0 12px rgba(125, 211, 252, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0); }
}

.m-banner-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin-left: .85rem;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 1rem;
}

.m-banner-copy {
  flex: 1;
  min-width: 0;
}

.m-banner-copy strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .15rem;
}

.m-banner-copy span {
  display: block;
  font-size: .86rem;
  opacity: .9;
  line-height: 1.4;
}

.m-banner-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1rem;
  min-height: 44px;
  border-radius: 10px;
  background: #fff;
  color: var(--m-brand);
  font-weight: 700;
  font-size: .86rem;
  transition: transform .16s, background .16s;
}

.m-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(112, 34, 131, .34);
}

.m-banner:hover .m-banner-cta {
  background: var(--m-accent-l);
  transform: translateX(2px);
}

.m-fit-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.1rem, 3vh, 1.85rem);
  min-height: 0;
  padding: clamp(.5rem, 2vh, 1.25rem) 0;
  overflow: visible;
}

.m-fit-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, .95fr);
  gap: clamp(1.25rem, 3.5vw, 2.75rem);
  align-items: center;
  overflow: visible;
}

.m-hero--fit {
  padding: 0;
  max-width: none;
  animation: mRise .65s cubic-bezier(.22, 1, .36, 1) .05s both;
}

.m-hero--fit .m-hero-brand {
  font-size: clamp(2.35rem, 6.5vw, 3.75rem);
  margin-bottom: .55rem;
}

.m-hero--fit .m-hero-lead {
  font-size: clamp(.96rem, 1.7vw, 1.1rem);
  margin-bottom: 1.15rem;
  max-width: 30rem;
}

.m-hero--fit .m-hero-ctas {
  gap: .65rem;
}

.m-fit-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.8vw, 1.85rem);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: min(280px, 42vh);
  padding: .75rem 0;
  overflow: visible;
  animation: mMarkIn .85s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.m-fit-mark img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(112, 34, 131, .18));
  animation: mMarkFloat 6s ease-in-out infinite;
  flex: 0 0 auto;
}

.m-fit-mark .m-fit-mark-wcva {
  width: min(110px, 28%);
  max-width: 110px;
  max-height: 90px;
}

.m-fit-mark .m-fit-mark-baromedr {
  width: min(260px, 62%);
  max-width: 260px;
  max-height: min(260px, 42vh);
}

@keyframes mMarkIn {
  from { opacity: 0; transform: translateX(18px) scale(.94); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes mMarkFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.m-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  padding-top: .5rem;
  animation: mRise .7s cubic-bezier(.22, 1, .36, 1) .14s both;
}

.m-dest-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 56px;
  padding: .85rem 1.05rem;
  background: #fff;
  border: 2px solid rgba(112, 34, 131, .2);
  border-radius: 1rem;
  color: var(--m-brand);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(112, 34, 131, .04);
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}

.m-dest-btn:hover {
  background: linear-gradient(135deg, var(--m-brand), var(--m-brand-d));
  border-color: var(--m-brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--m-shadow-hover);
}

.m-dest-btn:focus-visible {
  outline: 3px solid var(--m-accent);
  outline-offset: 2px;
}

.m-dest-grid .m-dest-ic {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: .65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(112, 34, 131, .08);
  color: var(--m-brand);
  font-size: .9rem;
  transition: background .2s, color .2s;
  border: none;
}

.m-dest-btn:hover .m-dest-ic {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

.m-dest-btn:nth-child(1) { animation: mRise .5s cubic-bezier(.22, 1, .36, 1) .16s both; }
.m-dest-btn:nth-child(2) { animation: mRise .5s cubic-bezier(.22, 1, .36, 1) .2s both; }
.m-dest-btn:nth-child(3) { animation: mRise .5s cubic-bezier(.22, 1, .36, 1) .24s both; }
.m-dest-btn:nth-child(4) { animation: mRise .5s cubic-bezier(.22, 1, .36, 1) .28s both; }
.m-dest-btn:nth-child(5) { animation: mRise .5s cubic-bezier(.22, 1, .36, 1) .32s both; }
.m-dest-btn:nth-child(6) { animation: mRise .5s cubic-bezier(.22, 1, .36, 1) .36s both; }
.m-dest-btn:nth-child(7) { animation: mRise .5s cubic-bezier(.22, 1, .36, 1) .4s both; }
.m-dest-btn:nth-child(8) { animation: mRise .5s cubic-bezier(.22, 1, .36, 1) .44s both; }

.m-foot--fit {
  margin-top: auto;
  padding-top: .7rem;
  border-top: 1px solid rgba(112, 34, 131, .1);
  justify-content: flex-start;
}

.m-foot a:focus-visible {
  outline: 3px solid var(--m-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 960px) {
  .m-dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
  }
}

@media (max-width: 860px) {
  .m-fit-split {
    grid-template-columns: 1fr;
  }
  .m-fit-mark {
    order: -1;
    justify-content: flex-start;
    min-height: 0;
    padding: .25rem 0 .5rem;
    gap: .85rem;
  }
  .m-fit-mark .m-fit-mark-wcva {
    width: 72px;
    max-width: 72px;
    max-height: 58px;
  }
  .m-fit-mark .m-fit-mark-baromedr {
    width: min(150px, 40vw);
    max-width: 150px;
    max-height: 150px;
  }
}

@media (max-width: 640px) {
  .marketing-home { overflow: auto; }
  .m-shell--fit {
    width: calc(100% - 1.25rem);
    padding: .55rem 0 .85rem;
  }
  .m-fit-main {
    justify-content: flex-start;
    padding-top: .55rem;
    gap: 1rem;
  }
  .m-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .m-hero-ctas .m-btn {
    width: 100%;
  }
  .m-banner {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 1rem;
    gap: .75rem;
  }
  .m-banner-pulse {
    left: 1rem;
    top: 1.35rem;
    margin-top: 0;
  }
  .m-banner-icon {
    margin-left: 1rem;
  }
  .m-banner-copy {
    flex: 1 1 calc(100% - 4rem);
  }
  .m-banner-cta {
    width: 100%;
    justify-content: center;
    margin-top: .15rem;
  }
  .m-dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
  }
  .m-dest-btn {
    min-height: 52px;
    padding: .75rem .85rem;
    font-size: .88rem;
  }
  .marketing-home .m-nav-logo {
    width: 48px;
    height: 48px;
  }
  .m-nav-brand-tag { display: none; }
}

@media (max-height: 780px) and (min-width: 641px) {
  .m-hero--fit .m-hero-brand {
    font-size: clamp(2rem, 5.2vh, 3rem);
  }
  .m-hero--fit .m-hero-lead {
    margin-bottom: .75rem;
    font-size: .92rem;
  }
  .m-fit-main { gap: .75rem; }
  .m-fit-mark { min-height: min(200px, 34vh); }
  .m-fit-mark .m-fit-mark-wcva {
    width: 84px;
    max-width: 84px;
    max-height: 68px;
  }
  .m-fit-mark .m-fit-mark-baromedr {
    width: min(190px, 100%);
    max-width: 190px;
    max-height: min(190px, 34vh);
  }
  .m-banner { padding: .7rem .95rem; min-height: 56px; }
  .m-banner-copy strong { font-size: .98rem; }
  .m-banner-icon { width: 36px; height: 36px; font-size: .9rem; }
  .m-btn-lg { padding: .65rem 1rem; font-size: .88rem; min-height: 44px; }
  .m-dest-btn { min-height: 48px; padding: .7rem .9rem; }
  .m-dest-ic { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .m-dest-grid,
  .m-dest-btn,
  .m-fit-mark,
  .m-banner { animation: none; }
  .m-fit-mark img,
  .m-banner-pulse { animation: none; }
}
