/* =============================================
   EarlyBird section styles
   Hero dawn scene, trust bar, services, about +
   dashboard mock, why grid, journey tweaks, compare,
   pricing, proof band, FAQ daybreak sheet, contact,
   footer. Loads last, after marble-elements.css.
   ============================================= */

/* =============================================
   1. Hero: the dawn scene
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 120px;
  overflow: hidden;
  background: var(--sky-top);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.hero__badge {
  margin-bottom: 26px;
}

.hero__h1 {
  max-width: 13em;
  margin-bottom: 26px;
}

/* SplitText word masks: descender-safe clip (site.js builds these) */
.h1-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero__sub {
  max-width: 560px;
  color: var(--muted);
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
}

.face-mono {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 9%, transparent);
  border: 2px solid var(--ink);
  margin-left: -10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero__faces {
  display: flex;
  flex-shrink: 0;
}

.hero__faces .face-mono:first-child {
  margin-left: 0;
}

.stars {
  color: var(--star);
  letter-spacing: 2px;
  font-size: 14px;
}

.hero__proof-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__proof-link:hover {
  color: var(--paper);
}

/* ---- Scenery layer (decorative, aria-hidden) ---- */
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-top) 55%, var(--sky-glow) 100%);
}

/* dawnRise: base styles ARE the end state, the keyframe animates
   from a lower, dimmer start, so reduced motion and no-JS render
   the finished dawn with zero extra rules. */
.hero__glowwrap {
  position: absolute;
  inset: 0;
  animation: dawnRise 2.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes dawnRise {
  from {
    transform: translateY(40px);
    opacity: 0.55;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: radial-gradient(120% 100% at 22% 100%, color-mix(in srgb, var(--sun) 10%, transparent) 0%, transparent 55%);
}

.hero__sunwrap {
  position: absolute;
  left: 16%;
  bottom: 120px;
  width: 130px;
  height: 130px;
}

.hero__sun {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 90px color-mix(in srgb, var(--sun) 40%, transparent);
}

.hero__sunring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--sun) 55%, transparent);
  opacity: 0;
  animation: sunRing 5s ease-out infinite;
}

.hero__sunring--2 {
  animation-delay: 2.5s;
}

@keyframes sunRing {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  80% {
    transform: scale(1.9);
    opacity: 0;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* ---- Clouds: paper-tint blobs on slow drift loops.
   Negative delays start each one mid-flight. ---- */
.hero__clouds {
  position: absolute;
  inset: 0;
}

.hero__cloud {
  position: absolute;
  color: color-mix(in srgb, var(--paper) 6%, transparent);
  animation: cloudDrift linear infinite;
}

.hero__clouds--near .hero__cloud {
  color: color-mix(in srgb, var(--paper) 9%, transparent);
}

.hero__cloud--1 {
  top: 16%;
  animation-duration: 105s;
  animation-delay: -20s;
}

.hero__cloud--2 {
  top: 30%;
  animation-duration: 120s;
  animation-delay: -70s;
}

.hero__cloud--3 {
  top: 10%;
  animation-duration: 75s;
  animation-delay: -12s;
}

.hero__cloud--4 {
  top: 40%;
  animation-duration: 90s;
  animation-delay: -55s;
}

@keyframes cloudDrift {
  from {
    transform: translateX(-320px);
  }

  to {
    transform: translateX(calc(100vw + 320px));
  }
}

/* ---- Hills: three ink-step silhouettes ---- */
.hero__hill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

.hero__hill--back {
  height: 220px;
  z-index: 2;
}

.hero__hill--mid {
  height: 170px;
  z-index: 3;
}

.hero__hill--front {
  height: 120px;
  z-index: 4;
}

/* ---- The bird: parallax > drift > swoop > float nesting so CSS
   loops and the GSAP swoop never write to the same transform ---- */
.hero__bird-par {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.hero__bird-drift {
  position: absolute;
  left: 10%;
  top: 22%;
  animation: birdDrift 40s ease-in-out infinite alternate;
}

.hero__bird-float {
  animation: birdFloat 6s ease-in-out infinite;
}

.hero__bird {
  color: var(--accent);
  filter: drop-shadow(0 6px 18px color-mix(in srgb, var(--accent) 25%, transparent));
}

/* the swoop layer is GSAP scope only */
.hero--swooping .hero__bird-drift,
.hero--swooping .hero__bird-float {
  animation-play-state: paused;
}

@keyframes birdDrift {
  from {
    transform: translateX(0) translateY(0);
  }

  to {
    transform: translateX(46vw) translateY(-40px);
  }
}

@keyframes birdFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

/* ---- Dust motes (spans injected by site.js, desktop only) ---- */
.hero__dust {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.hero__dust span {
  position: absolute;
  bottom: 10%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 40%, transparent);
  opacity: 0;
  animation: dustRise linear infinite;
}

@keyframes dustRise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  12% {
    opacity: 0.45;
  }

  85% {
    opacity: 0.15;
  }

  100% {
    transform: translateY(-52vh) translateX(26px);
    opacity: 0;
  }
}

/* ---- The worm (easter egg, injected by site.js) ---- */
.hero__worm {
  position: absolute;
  z-index: 4;
  transform: scale(0);
}

.hero__worm.pop {
  animation: wormPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes wormPop {
  from {
    transform: scale(0) rotate(-10deg);
  }

  to {
    transform: scale(1) rotate(0deg);
  }
}

/* the hero receives clicks for the easter egg */
.hero {
  cursor: default;
}

/* ---- Hero mobile: sun + 2 hills + 1 cloud, nothing else ---- */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 90px;
  }

  .hero__cloud--2,
  .hero__cloud--3,
  .hero__cloud--4 {
    display: none;
  }

  .hero__hill--mid {
    display: none;
  }

  .hero__sunwrap {
    width: 92px;
    height: 92px;
    bottom: 90px;
    left: 10%;
  }

  .hero__bird-drift {
    top: 16%;
  }

  .hero__sub {
    font-size: 16px;
  }

  .hero__proof {
    font-size: 13.5px;
  }
}

/* =============================================
   2. Trust bar
   ============================================= */
.trust-bar {
  padding: 64px 0 70px;
  background: var(--ink);
}

.trust-bar__heading {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 36px;
}

/* cleaned, content-trimmed logos: fit each in a uniform box (height + width
   caps) so the row reads big and balanced. object-fit keeps ratios intact. */
.lmarquee__track img {
  max-height: 68px;
  max-width: 172px;
  object-fit: contain;
}

.lmarquee__track {
  gap: 76px;
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 48px 0 52px;
  }

  .lmarquee__track {
    gap: 52px;
  }

  .lmarquee__track img {
    max-height: 54px;
    max-width: 140px;
  }
}

/* =============================================
   3. Services
   ============================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 34px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
}

.svc-card__icon {
  display: inline-flex;
  color: var(--accent);
  margin-bottom: 18px;
}

.svc-card p {
  font-size: 15.5px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    padding: 28px 24px;
  }
}

/* =============================================
   4. About + dashboard mock
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about__copy p {
  color: var(--muted);
  margin-bottom: 20px;
}

.about__punch {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--paper) !important;
  line-height: 1.35;
}

.about__caption {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 440px;
}

/* ---- The SEranking dashboard mock. Base markup and styles are the
   IMPROVED end state: reduced-motion and no-JS users see the finished
   dashboard. site.js resets to the start state before each loop. ---- */
.dash {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.dash__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--white) 3%, transparent);
}

.dash__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 22%, transparent);
}

.dash__url {
  margin-left: 10px;
  flex: 1;
  font-size: 12.5px;
  color: var(--faint);
  background: color-mix(in srgb, var(--white) 4%, transparent);
  border-radius: var(--r-pill);
  padding: 5px 14px;
}

.dash__stage {
  padding: 20px;
  transition: opacity 0.26s ease;
}

.dash__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.dash__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--white) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-size: 12.5px;
}

.dash__chip-label {
  color: var(--faint);
}

.dash__chip-val {
  color: var(--accent);
  font-weight: 700;
}

.dash__rows {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.dash__row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
}

.dash__kw {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash__track {
  height: 7px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--white) 6%, transparent);
  overflow: hidden;
  display: block;
}

.dash__fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  transform: scaleX(var(--e));
  transform-origin: left;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.dash--start .dash__fill {
  transform: scaleX(var(--s));
  transition: none;
}

.dash__pos {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: var(--r-pill);
  padding: 3px 0;
}

.dash__pop {
  position: absolute;
  top: -30px;
  right: 0;
  z-index: 2;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
}

.dash__pop.pop {
  animation: stickerPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes stickerPop {
  from {
    transform: scale(0) rotate(-5deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.dash__sparkwin {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
}

.dash__spark {
  display: block;
  width: 100%;
  height: 70px;
}

.dash__sparkarea {
  fill: color-mix(in srgb, var(--accent) 13%, transparent);
}

.dash__sparkline {
  stroke: var(--accent);
  stroke-width: 2;
}

/* curtain reveals the sparkline; base = fully revealed */
.dash__curtain {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.dash--start .dash__curtain {
  transform: scaleX(0.6);
  transition: none;
}

@media (max-width: 1000px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  /* three rows are plenty on a phone */
  .dash__row:nth-child(n+5) {
    display: none;
  }

  .dash__chips {
    gap: 7px;
  }
}

/* =============================================
   5. Why choose EarlyBird
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 34px;
  margin-bottom: 80px;
}

.why-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-row__icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
}

.why-row h3 {
  font-size: 20px;
}

.why-row p {
  font-size: 15px;
  color: var(--muted);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1;
  color: var(--accent);
}

.stat__num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 44px;
  }
}

/* =============================================
   6. Journey trail: page-level tweaks over the port
   ============================================= */
.journey-trail {
  padding: 110px 0 120px;
}

.journey-trail .eyebrow {
  text-align: center;
}

/* solid accent line drawn over the dotted base by the site.js scrub */
.jt-path-draw {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0.9;
}

/* =============================================
   7. Comparison band
   ============================================= */
.compare__h2 {
  text-align: center;
  max-width: 15em;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   8. Pricing
   ============================================= */
.pricing__note {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 56px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 40px 34px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.price-card--hot {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 0 60px color-mix(in srgb, var(--accent) 7%, transparent);
}

.price-card__pill {
  position: absolute;
  top: -15px;
  left: 34px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
}

.price-card__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.price-card__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 4.6vw, 58px);
  line-height: 1;
  color: var(--paper);
  margin-bottom: 14px;
}

/* fixed-width numeral span: the count-up never shifts layout */
.price__num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  text-align: left;
}

.price__cur {
  font-size: 0.62em;
  vertical-align: 0.28em;
  margin-right: 2px;
}

.price__per {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
  margin-left: 4px;
}

.price-card__tagline {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 3.2em;
}

.price-card__features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-card__features li {
  position: relative;
  font-size: 15px;
  color: color-mix(in srgb, var(--paper) 78%, transparent);
  padding: 9px 0 9px 28px;
  border-top: 1px solid color-mix(in srgb, var(--white) 6%, transparent);
}

.price-card__features li::before {
  content: "\2713";
  position: absolute;
  left: 2px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.price-card__cta {
  align-self: stretch;
}

.price-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
}

.price-badge {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--paper);
  background: color-mix(in srgb, var(--white) 5%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 20px;
}

/* Advanced pops 4% on desktop only */
@media (min-width: 861px) {
  .price-card--hot {
    transform: scale(1.04);
  }

  .price-card--hot:hover {
    transform: scale(1.04) translateY(-6px);
  }
}

@media (max-width: 1000px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* stacked with Advanced on top per the blueprint */
  .price-card--hot {
    order: -1;
  }

  .price-card__tagline {
    min-height: 0;
  }
}

/* =============================================
   9. Proof band (testimonials)
   ============================================= */
.proof {
  padding-bottom: 40px;
}

.proof__h2 {
  text-align: center;
  max-width: 14em;
  margin-left: auto;
  margin-right: auto;
}

.proof__sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 56px;
}

/* =============================================
   10. FAQ: the daybreak sheet
   ============================================= */
.faq-band {
  background: var(--ink);
  padding-top: 60px;
}

/* seam-cover gradient: softens the join where the paper rises out of the ink */
.faq-seam {
  height: 70px;
  background: linear-gradient(180deg, var(--ink) 0%, color-mix(in srgb, var(--ink) 92%, var(--paper)) 100%);
}

.faq-sheet {
  background: var(--paper);
  border-radius: 30px 30px 0 0;
  padding: 100px 0 110px;
  margin-top: -30px;
  position: relative;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.35);
}

.faq-sheet h2 {
  color: var(--ink);
  margin-bottom: 48px;
}

.faq-sheet .accent {
  /* On the light daybreak sheet the neon accent vanishes (2.17:1), so darken the
     brand green toward ink for a readable deep-green full stop. Palette-derived. */
  color: color-mix(in srgb, var(--accent-deep) 50%, var(--ink));
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 17.5px;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--accent-deep);
}

.faq-item__chev {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--faint);
  border-bottom: 2px solid var(--faint);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -4px;
}

.faq-item[open] .faq-item__chev {
  transform: rotate(225deg);
  margin-top: 4px;
}

/* site.js keeps [open] set while the close eases shut; the
   .closing class flips the chevron back immediately */
.faq-item.closing .faq-item__chev {
  transform: rotate(45deg);
  margin-top: -4px;
}

.faq-item__body {
  padding: 0 26px;
}

.faq-item__body p,
.faq-item__body ul {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--faint);
  margin-bottom: 14px;
}

.faq-item__body ul {
  list-style: disc;
  padding-left: 22px;
  list-style-position: outside;
}

.faq-item__body li {
  margin-bottom: 8px;
}

.faq-item__body > :last-child {
  padding-bottom: 24px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-sheet {
    padding: 64px 0 72px;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 18px 20px;
  }

  .faq-item__body {
    padding: 0 20px;
  }
}

/* =============================================
   11. Contact
   ============================================= */
.contact {
  background: var(--ink);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact__copy p {
  color: var(--muted);
  max-width: 460px;
}

.contact__bird {
  color: var(--accent);
  margin-top: 34px;
}

.contact__form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 40px 36px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 15.5px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field textarea {
  border-radius: var(--r-sm);
  resize: vertical;
  min-height: 130px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--faint);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.field__select {
  position: relative;
}

.field__select::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: var(--paper);
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.contact__submit {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact__submit .btn__check {
  position: absolute;
  opacity: 0;
}

/* JS-off / reduced-motion success state: simple swap */
.contact__submit.is-done .btn__label {
  opacity: 0;
}

.contact__submit.is-done .btn__check {
  opacity: 1;
}

.contact__submit[disabled] {
  cursor: default;
}

.form__status {
  margin-top: 16px;
}

.form__msg {
  font-size: 14.5px;
  line-height: 1.55;
}

.form__msg--ok {
  color: var(--accent);
}

.form__msg--err {
  color: var(--paper);
}

@media (max-width: 1000px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact__form {
    padding: 30px 22px;
  }
}

/* =============================================
   12. Footer
   ============================================= */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
}

.footer__brand img {
  width: 199px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 22px;
}

.footer__sh {
  font-size: 15px;
  color: var(--muted);
  max-width: 340px;
}

.footer__col h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}

.footer__col a,
.footer__col address {
  display: block;
  font-size: 15.5px;
  color: var(--paper);
  margin-bottom: 12px;
  text-decoration: none;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__strip {
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 14px 20px;
}

@media (max-width: 860px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 50px;
  }

  .footer {
    padding-top: 56px;
  }
}

/* =============================================
   13. Reduced motion: scenery and loops freeze in
   composed, fully visible end states. Never a
   nuclear kill: reveals and focus states survive
   via the marble-elements.css block.
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .hero__glowwrap,
  .hero__sunring,
  .hero__cloud,
  .hero__bird-drift,
  .hero__bird-float,
  .hero__dust span,
  .hero__worm.pop,
  .dash__pop.pop {
    animation: none;
  }

  /* static dawn: bird rests mid-sky, clouds at their base spots,
     sun risen (glowwrap base styles are already the end state) */
  .hero__bird-drift {
    transform: translateX(18vw);
  }

  .hero__cloud--1 {
    transform: translateX(30vw);
  }

  .hero__cloud--2 {
    transform: translateX(62vw);
  }

  .hero__cloud--3 {
    transform: translateX(56vw);
  }

  .hero__cloud--4 {
    transform: translateX(12vw);
  }

  /* sticker-style chips render pre-popped */
  .hero__worm.pop {
    transform: scale(1);
  }

  .dash__pop,
  .dash__pop.pop {
    transform: scale(1);
    opacity: 1;
  }

  /* dashboard holds its improved end state */
  .dash__fill,
  .dash--start .dash__fill {
    transform: scaleX(var(--e));
    transition: none;
  }

  .dash__curtain,
  .dash--start .dash__curtain {
    transform: scaleX(0);
    transition: none;
  }

  .dash__stage {
    transition: none;
  }

  .faq-item__chev,
  .field input,
  .field select,
  .field textarea,
  .svc-card,
  .price-card,
  .tcard,
  .mcard {
    transition-duration: 0.01s;
  }
}
