/* Employer Benefits Advantage — marketing site
   Palette + type lifted from the brand kit:
   green #7DB42D · navy #00285A · blue #59ABE5 · Noto Serif headings / Inter body */

:root {
  --green: #7DB42D;
  --green-dark: #689626;
  --navy: #00285A;
  --navy-dark: #001d42;
  --blue: #59ABE5;
  --blue-dark: #3d93d1;
  --ink: #111111;
  --text: #555f6b;
  --muted: #8a94a0;
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --line: #e6e9ed;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 40, 90, 0.08);
  --font-head: "Noto Serif", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 40, 90, 0.18); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.site-header .logo img { height: 44px; width: auto; }

.main-nav ul { list-style: none; display: flex; gap: 6px; align-items: center; }
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav li.current > a { color: var(--green); }
.main-nav li.current > a { font-weight: 600; }

.has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: 2px;
}
.sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.sub a { padding: 10px 14px; font-weight: 500; color: var(--text); }
.sub a:hover { background: var(--bg-soft); color: var(--green); }
.has-sub:hover .sub, .has-sub:focus-within .sub { display: flex; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #f2f7fb 0%, #ffffff 100%); overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
/* Exactly three lines: each <br> segment must never wrap. */
.hero h1 { font-size: clamp(30px, 3.4vw, 46px); margin-bottom: 22px; white-space: nowrap; }
.hero p { font-size: 17px; margin-bottom: 30px; max-width: 56ch; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art img { width: 100%; height: auto; filter: drop-shadow(0 24px 40px rgba(0, 40, 90, 0.15)); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--navy); color: #fff; padding: 56px 0; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 3.6vw, 44px); }
.page-hero p { margin-top: 12px; max-width: 70ch; color: rgba(255,255,255,0.85); font-size: 17px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; }
.card .more {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.card .more:hover { color: var(--green-dark); }

.step-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  color: var(--green);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}

.icon-dot {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(125, 180, 45, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* ---------- Split (text + image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 16px; }
.split p + p { margin-top: 14px; }
.split .btn { margin-top: 26px; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Tabs ---------- */
.tabs { max-width: 900px; margin: 0 auto; }
.tab-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.tab-btns button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: 0.15s;
}
.tab-btns button.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.tab-panel { display: none; text-align: center; font-size: 16px; }
.tab-panel.active { display: block; }

/* ---------- Process (how it works) ---------- */
.process { display: grid; gap: 28px; max-width: 880px; margin: 0 auto; }
.process-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.process-step .n {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step .tag {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.process-step h3 { font-size: 22px; margin: 4px 0 10px; }
.process-step ul { margin: 12px 0 0 18px; columns: 2; column-gap: 40px; font-size: 15px; }
.process-step li { margin-bottom: 6px; }

/* ---------- Flow chain (compliance) ---------- */
.chain {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.chain .node {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  min-width: 120px;
}
.chain .node b { display: block; color: var(--navy); font-size: 15px; }
.chain .node span { font-size: 12.5px; color: var(--muted); }
.chain .arrow { color: var(--green); font-size: 20px; font-weight: 700; }
.chain-note { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 18px; }

/* ---------- Review table ---------- */
.review-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.review-table th, .review-table td { padding: 14px 18px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line); }
.review-table th { background: var(--navy); color: #fff; font-family: var(--font-body); font-weight: 600; }
.review-table tr:last-child td { border-bottom: 0; }
.review-table td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* ---------- Check list ---------- */
.checks { list-style: none; }
.checks li { padding-left: 30px; position: relative; margin-bottom: 12px; font-size: 15.5px; }
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---------- Numbered Q list ---------- */
.qa-list { display: grid; gap: 18px; max-width: 880px; margin: 0 auto; counter-reset: q; }
.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px 24px 74px;
  position: relative;
}
.qa::before {
  counter-increment: q;
  content: counter(q);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(125, 180, 45, 0.15);
  color: var(--green-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.qa h3 { font-size: 17px; font-family: var(--font-body); font-weight: 600; margin-bottom: 6px; }
.qa p { font-size: 14.5px; }

/* ---------- Quote ---------- */
.quote-band { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: center; }
.quote-band img { border-radius: var(--radius); box-shadow: var(--shadow); }
.quote-band blockquote {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--navy);
  line-height: 1.4;
}
.quote-band blockquote::before { content: "“"; color: var(--green); }
.quote-band blockquote::after { content: "”"; color: var(--green); }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field label .req { color: #d33; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(125, 180, 45, 0.18);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-msg { margin-top: 16px; font-weight: 600; display: none; }
.form-msg.ok { display: block; color: var(--green-dark); }
.form-msg.err { display: block; color: #c0392b; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; padding: 72px 0; }
.cta-band .inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 30px; font-size: 16.5px; }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Values ---------- */
.value h3 { font-size: 18px; }

/* ---------- Contact info tiles ---------- */
.contact-tile { text-align: center; }
.contact-tile .icon-dot { margin: 0 auto 18px; }
.contact-tile h3 { font-size: 18px; margin-bottom: 6px; }
.contact-tile a { color: var(--text); font-size: 15.5px; }
.contact-tile a:hover { color: var(--green); }

/* ---------- Legal ---------- */
.legal { max-width: 780px; margin: 0 auto; }
.legal .updated { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; }
.legal p { margin-bottom: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.site-footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 64px 0 48px;
}
.site-footer .logo img { height: 52px; width: auto; margin-bottom: 18px; }
.site-footer p { font-size: 14.5px; }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; font-size: 14.5px; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--green); }
.site-footer .social {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  font-weight: 700;
  font-size: 14px;
}
.site-footer .social:hover { background: var(--green); color: #fff; }
.site-footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  font-size: 13.5px;
  text-align: center;
}

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(22px, 7vw, 44px); }
  .hero-art { order: -1; max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .quote-band { grid-template-columns: 1fr; }
  .quote-band img { max-width: 380px; }
  .site-footer .top { grid-template-columns: 1fr 1fr; }
  .process-step ul { columns: 1; }
}

@media (max-width: 720px) {
  .grid.cols-4, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .site-footer .top { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    padding: 12px 24px 20px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .sub {
    position: static;
    display: flex;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: 0;
  }
}

/* Honeypot — real visitors never see or fill this field */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ---------- Animated hero dashboard cards ---------- */
.hero-anim { position: relative; aspect-ratio: 11 / 9; width: 100%; max-width: 520px; margin-left: auto; }

.hcard {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 40, 90, 0.16);
  padding: 16px 18px;
  animation: card-in 0.7s ease both, floaty 7s ease-in-out 1.6s infinite;
}
.hc-earnings { left: 0;   top: 22%;  width: 46%; animation-delay: 0.15s, 1.6s; }
.hc-order    { right: 2%; top: 0;    width: 32%; animation-delay: 0.35s, 2.4s; animation-duration: 0.7s, 8s; }
.hc-cashflow { right: 0;  bottom: 0; width: 62%; animation-delay: 0.55s, 3.1s; animation-duration: 0.7s, 7.5s; }

.hc-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-weight: 600; font-size: 13.5px; color: var(--ink); margin-bottom: 8px;
}
.hc-dots { color: var(--muted); letter-spacing: 2px; }
.hc-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.hc-big { font-family: var(--font-head); font-weight: 700; font-size: clamp(16px, 2.4vw, 24px); color: var(--ink); }
.hc-sub { font-size: 9.5px; color: var(--muted); line-height: 1.5; margin-top: 6px; }
.hc-split { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

/* Order bars: grow up, staggered */
.hc-bars { width: 100%; margin-top: 8px; display: block; }
.hc-bars .bar { transform-origin: bottom; animation: bar-up 0.6s cubic-bezier(0.2, 0.7, 0.3, 1.2) both; }
.hc-bars .up   { fill: #7DB42D; }
.hc-bars .down { fill: #e05b4f; }
.hc-bars .bar:nth-child(1) { animation-delay: 0.7s; }
.hc-bars .bar:nth-child(2) { animation-delay: 0.8s; }
.hc-bars .bar:nth-child(3) { animation-delay: 0.9s; }
.hc-bars .bar:nth-child(4) { animation-delay: 1.0s; }
.hc-bars .bar:nth-child(5) { animation-delay: 1.1s; }
.hc-bars .bar:nth-child(6) { animation-delay: 1.2s; }
.hc-bars .bar:nth-child(7) { animation-delay: 1.3s; }
.hc-bars .bar:nth-child(8) { animation-delay: 1.4s; }

/* Earnings donut: sweep to 100% */
.hc-donut { width: 44%; max-width: 72px; flex: none; }
.donut-track { fill: none; stroke: #eef3e6; stroke-width: 9; }
.donut-fill {
  fill: none; stroke: #7DB42D; stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 188.5; stroke-dashoffset: 0;
  transform: rotate(-90deg); transform-origin: center;
  animation: donut-sweep 1.4s ease-out 0.6s both;
}
.donut-text { font: 700 13px var(--font-body); fill: var(--ink); text-anchor: middle; }

/* Cashflow: line draws, area fades, dots pop */
.hc-line { width: 100%; margin-top: 4px; display: block; overflow: visible; }
.cf-path {
  fill: none; stroke: #7DB42D; stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 320; stroke-dashoffset: 0;
  animation: line-draw 1.6s ease-out 0.9s both;
}
.cf-area { animation: fade-up 0.9s ease 2.1s both; }
.cf-dots circle {
  fill: #fff; stroke: #7DB42D; stroke-width: 2.5;
  transform-box: fill-box; transform-origin: center;
  animation: dot-pop 0.35s cubic-bezier(0.2, 0.7, 0.3, 1.4) both;
}
.cf-dots circle:nth-child(1) { animation-delay: 1.0s; }
.cf-dots circle:nth-child(2) { animation-delay: 1.2s; }
.cf-dots circle:nth-child(3) { animation-delay: 1.4s; }
.cf-dots circle:nth-child(4) { animation-delay: 1.6s; }
.cf-dots circle:nth-child(5) { animation-delay: 1.8s; }
.cf-dots circle:nth-child(6) { animation-delay: 2.0s; }
.cf-dots circle:nth-child(7) { animation-delay: 2.2s; }
.cf-labels text { font: 500 8px var(--font-body); fill: var(--muted); text-anchor: middle; }
.cf-labels { animation: fade-up 0.8s ease 1.2s both; }
.hc-badge {
  background: #7DB42D; color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 7px; text-align: center; line-height: 1.3;
  animation: dot-pop 0.4s cubic-bezier(0.2, 0.7, 0.3, 1.4) 2.3s both;
}
.hc-badge small { display: block; font-size: 8px; font-weight: 500; opacity: 0.85; }

@keyframes card-in    { from { opacity: 0; transform: translateY(26px) scale(0.95); } }
@keyframes floaty     { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes bar-up     { from { transform: scaleY(0); } }
@keyframes donut-sweep{ from { stroke-dashoffset: 188.5; } }
@keyframes line-draw  { from { stroke-dashoffset: 320; } }
@keyframes dot-pop    { from { transform: scale(0); opacity: 0; } }
@keyframes fade-up    { from { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .hcard, .hc-bars .bar, .donut-fill, .cf-path, .cf-area,
  .cf-dots circle, .cf-labels, .hc-badge { animation: none; }
}

@media (max-width: 960px) {
  .hero-anim { margin: 0 auto; max-width: 440px; }
}

/* ---------- Faded mountains + warm sun behind the hero cards ---------- */
.hero-mountains {
  position: absolute; left: -4%; right: -4%; bottom: -2%;
  width: 108%; height: auto; z-index: 0; pointer-events: none;
  animation: fade-up 1.4s ease 0.1s both;
}
.hcard { z-index: 1; }
.hm-sun, .hm-glow { animation: sun-rise 1.8s ease-out 0.3s both; }
.hm-peak { transform-box: fill-box; transform-origin: bottom center; animation: peak-up 1.1s ease-out both; }
.hm-peak.p1 { animation-delay: 0.1s; }
.hm-peak.p2 { animation-delay: 0.25s; }
.hm-peak.p3 { animation-delay: 0.4s; }

@keyframes peak-up  { from { transform: translateY(26px); opacity: 0; } }
@keyframes sun-rise { from { transform: translateY(34px); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .hero-mountains, .hm-sun, .hm-glow, .hm-peak { animation: none; }
}
