/* Prisma-style landing: dark, cream, cinematic. Then the city scroll takes over. */

.landing-page {
  --cream: #dedbc8;
  --cream-text: #e1e0cc;
  --ink-landing: #0c0b0a;
  background: var(--ink-landing);
  color: var(--cream-text);
  font-family: Almarai, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Anchor navigation glides; reduced motion jumps. */
html {
  scroll-behavior: smooth;
  scrollbar-color: #3a3a3a var(--ink-landing, #0c0b0a);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

::-webkit-scrollbar-track { background: #0c0b0a; }
::-webkit-scrollbar-thumb { background: #3a3a3a; border-left-color: #1a1a1a; }

/* The skip link is the only .mono-label outside the form; give it the page
   face so no monospace font is fetched for an element nobody sees. */
.landing-page .skip-link {
  font-family: Almarai, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.colibri-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.noise-overlay,
.bg-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.noise-overlay {
  opacity: 0.7;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.bg-noise {
  opacity: 0.15;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.landing-nav {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--ink-landing);
  border-radius: 0 0 1rem 1rem;
  padding: 0.5rem 1rem;
}

.landing-bird {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: #e1e0cc;
  flex: none;
}

.landing-bird-mark {
  display: block;
  width: 28px;
  height: auto;
}

.landing-nav a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  color: rgba(225, 224, 204, 0.8);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.landing-nav a:hover,
.landing-nav a:focus-visible {
  color: #e1e0cc;
}

.landing-nav a:focus-visible {
  outline: 1px solid #e1e0cc;
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .landing-nav {
    gap: 1.5rem;
    border-radius: 0 0 1.5rem 1.5rem;
    padding: 0.5rem 2rem;
  }
  .landing-nav a { font-size: 0.75rem; }
}

@media (min-width: 768px) {
  .landing-nav {
    gap: 3rem;
  }
  .landing-nav a { font-size: 0.875rem; }
}

@media (min-width: 1024px) {
  .landing-nav { gap: 3.5rem; }
}

/* Docked: the same tab, fixed to the viewport top from the moment it gets
   there (landing.js measures the hero padding so there is no jump). The
   Contact link carries its pill padding at all times behind negative margins,
   so lighting it cream on dock changes color only, never layout. */
.landing-nav.is-docked {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  z-index: 60;
  justify-content: center;
  border-radius: 0;
  background: var(--ink-landing);
}

.landing-nav a[href$="#contact-form"] {
  padding: 0.45rem 0.55rem;
  margin: -0.45rem -0.55rem;
  border-radius: 999px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* The overhang must stay under the tab's link gap (0.75rem on phones,
   1.5rem from 640px) or the pill covers the tail of the previous link. */
@media (min-width: 640px) {
  .landing-nav a[href$="#contact-form"] {
    padding: 0.45rem 0.85rem;
    margin: -0.45rem -0.85rem;
  }
}

.landing-nav.is-docked a[href$="#contact-form"] {
  background: #dedbc8;
  color: #000;
}

.landing-nav.is-docked a[href$="#contact-form"]:hover,
.landing-nav.is-docked a[href$="#contact-form"]:focus-visible {
  color: #000;
  background: #e1e0cc;
}

@media (prefers-reduced-motion: reduce) {
  .landing-nav a[href$="#contact-form"] { transition: none; }
}

.landing-hero {
  height: 100vh;
  height: 100dvh;
  padding: 1rem;
  background: var(--ink-landing);
}

@media (min-width: 768px) {
  .landing-hero { padding: 1.5rem; }
}

.landing-hero-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .landing-hero-frame { border-radius: 2rem; }
}

/* The poster is frame 0 of the loop, so the frame is painted from first
   paint and playback takes over without a cut. */
.landing-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink-landing);
}

.landing-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.3), transparent, rgb(0 0 0 / 0.6));
  pointer-events: none;
}

.landing-hero-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.25rem 1.25rem 1.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .landing-hero-content {
    grid-template-columns: 1fr minmax(18rem, 24rem);
    padding: 2rem 2.25rem 2.4rem;
  }
}

.landing-wordmark-row {
  display: flex;
  align-items: flex-end;
  gap: 0.14em;
  min-width: 0;
  color: #e1e0cc;
  font-size: 6.4vw;
  line-height: 0.85;
}

@media (min-width: 640px) { .landing-wordmark-row { font-size: 6.2vw; } }
@media (min-width: 768px) { .landing-wordmark-row { font-size: 5.5vw; } }
@media (min-width: 1024px) { .landing-wordmark-row { font-size: 5.8vw; } }
@media (min-width: 1280px) { .landing-wordmark-row { font-size: 6.1vw; } }

.landing-wordmark {
  position: relative;
  margin: 0;
  color: inherit;
  font-family: Almarai, sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: inherit;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.wordmark-bird {
  flex: none;
  display: block;
  width: 1.05em;
  height: auto;
  margin-bottom: 0.06em;
  color: inherit;
  opacity: 0;
  transform: translateY(12px);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s, opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
}

.landing-hero.is-in .wordmark-bird {
  opacity: 1;
  transform: translateY(0);
}

.landing-wordmark .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.landing-wordmark .word > span {
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-wordmark.is-in .word > span {
  transform: translateY(0);
  opacity: 1;
}

.landing-wordmark .word { position: relative; }
.landing-wordmark.is-in .word { overflow: visible; }

.landing-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  width: 100%;
  max-width: min(28rem, 100%);
}

@media (min-width: 768px) {
  .landing-hero-copy {
    justify-self: end;
    padding-bottom: 0.35em;
  }
}

.landing-hero-copy p {
  margin: 0;
  color: rgb(222 219 200 / 0.85);
  font-size: 1rem;
  line-height: 1.2;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}


.landing-hero.is-in .landing-hero-copy p {
  transform: translateY(0);
  opacity: 1;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.2rem 0.25rem 0.2rem 1.15rem;
  border-radius: 999px;
  background: #dedbc8;
  color: #000;
  font-family: Almarai, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s, opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s, gap 0.25s ease;
}

@media (min-width: 640px) { .landing-cta { font-size: 1rem; } }

.landing-hero.is-in .landing-cta {
  transform: translateY(0);
  opacity: 1;
}

.landing-cta:hover,
.landing-cta:focus-visible { gap: 0.75rem; }

.landing-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--ink-landing);
  color: #e1e0cc;
  transition: transform 0.25s ease;
}

@media (min-width: 640px) {
  .landing-cta-icon { width: 2.5rem; height: 2.5rem; }
}

.landing-cta:hover .landing-cta-icon,
.landing-cta:focus-visible .landing-cta-icon {
  transform: scale(1.1);
}

.landing-cta:focus-visible {
  outline: 2px solid #e1e0cc;
  outline-offset: 3px;
}

.landing-cta svg {
  width: 1rem;
  height: 1rem;
}

.landing-about {
  background: var(--ink-landing);
  padding: 5rem 1.25rem 6rem;
}

.landing-about-card {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  background: #101010;
  text-align: center;
}

@media (min-width: 768px) {
  .landing-about-card { padding: 6rem 3rem; }
}

.landing-about-h {
  max-width: 48rem;
  margin: 0 auto;
  color: #e1e0cc;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 0.95;
}

@media (min-width: 640px) { .landing-about-h { font-size: 2.25rem; line-height: 0.9; } }
@media (min-width: 768px) { .landing-about-h { font-size: 3rem; } }
@media (min-width: 1024px) { .landing-about-h { font-size: 3.75rem; } }
@media (min-width: 1280px) { .landing-about-h { font-size: 4.5rem; } }

.landing-serif {
  font-family: Almarai, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.landing-about-body {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  color: #dedbc8;
  font-size: 1rem;
  line-height: 1.55;
}


.landing-features {
  position: relative;
  background: var(--ink-landing);
  padding: 5rem 1.25rem 6rem;
  overflow: hidden;
}

.landing-features-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}

.landing-features-h {
  max-width: 40rem;
  margin: 0 0 2.5rem;
  color: #e1e0cc;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.15;
}

@media (min-width: 640px) { .landing-features-h { font-size: 1.5rem; } }
@media (min-width: 768px) { .landing-features-h { font-size: 1.875rem; } }
@media (min-width: 1024px) { .landing-features-h { font-size: 2.25rem; } }

.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .feat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    align-items: stretch;
  }
}

.feat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.2rem 1.5rem;
  overflow: hidden;
  border-radius: 1.1rem;
  background: #1a1916;
}

.feat-card h3 {
  margin: 0 0 1rem;
  color: #e1e0cc;
  font-size: 1.15rem;
  font-weight: 700;
}

.feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.feat-list li {
  color: #c4c1ae;
  font-size: 0.95rem;
  line-height: 1.4;
}

.landing-work {
  background: var(--ink-landing);
  padding: 2.75rem 1.25rem 4.5rem;
}

.landing-work-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.landing-work-h {
  margin: 0 0 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .work-grid { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
}

@media (min-width: 1024px) {
  .work-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.35rem; }
}

/* Five cards in two columns leave one alone; the product card takes the row. */
@media (min-width: 640px) and (max-width: 1023px) {
  .work-card-wide { grid-column: span 2; }
}

.work-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.1rem;
  background: #1a1916;
  color: inherit;
  text-decoration: none;
}

.work-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.work-card-copy {
  padding: 0.7rem 0.85rem 0.85rem;
}

.work-card-copy span {
  display: block;
  margin-bottom: 0.3rem;
  color: #9ca3af;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card-copy h3 {
  margin: 0 0 0.25rem;
  color: #e1e0cc;
  font-size: 1rem;
  font-weight: 500;
}

.work-card-copy p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.3;
}

.work-card:focus-visible {
  outline: 1px solid #e1e0cc;
  outline-offset: 3px;
}

.landing-faq {
  background: var(--ink-landing);
  padding: 4.5rem 1.25rem 5.5rem;
}

.landing-faq-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.landing-faq-h {
  margin: 0 0 2.2rem;
  color: #e1e0cc;
  font-family: Almarai, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.faq-list {
  margin: 0;
}

.faq-item {
  margin: 0;
  padding: 1.35rem 0 1.45rem;
  border-top: 1px solid rgb(225 224 204 / 0.14);
}

.faq-item:last-child {
  border-bottom: 1px solid rgb(225 224 204 / 0.14);
}

.faq-item dt {
  color: #e1e0cc;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.faq-item dd {
  margin: 0.55rem 0 0;
  max-width: 40rem;
  color: rgb(222 219 200 / 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.landing-contact {
  background: var(--ink-landing);
  padding: 4rem 1.25rem 2.5rem;
}

.landing-contact-card {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.5rem 1.4rem 2.2rem;
  background: #101010;
  border-radius: 1.25rem;
}

@media (min-width: 768px) {
  .landing-contact-card { padding: 3.2rem 2.4rem 2.6rem; }
}

.landing-contact-h {
  margin: 0;
  color: #e1e0cc;
  font-family: Almarai, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.landing-contact-lead {
  margin: 1rem 0 1.6rem;
  max-width: 34rem;
  color: rgb(222 219 200 / 0.72);
  font-size: 1rem;
  line-height: 1.35;
}

/* ---------- contact: the email row and the Web3Forms form ----------
   Folded here from contact.css and plan.css (2026-09-03) so the landing owns
   its form styles in one place. The form stays a native POST; plan-contact.js
   adds .is-dirty, .is-shown, .is-error, and [disabled]. */

.landing-page .contact-rows {
  width: 100%;
  margin-top: 0.4rem;
}

.landing-page .row-shell {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.landing-page .contact-row {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0 0.85rem;
}

.landing-page .contact-row-text {
  color: #e1e0cc;
  font-family: Almarai, sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.landing-page .row-copy {
  min-height: 44px;
  padding: 12px 10px;
  margin-left: 0.75rem;
  color: rgb(225 224 204 / 0.78);
  font-family: Almarai, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.landing-page .row-copy:hover,
.landing-page .row-copy:focus-visible {
  color: #e1e0cc;
}

.landing-page .contact-form-block {
  width: 100%;
  margin-top: 0.6rem;
}

/* Bots tick the honeypot; it never renders for humans or screen readers. */
.landing-page .form-botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.landing-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  row-gap: clamp(1.75rem, 4.5vh, 2.75rem);
}

.landing-page .field {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.landing-page .field-wide {
  grid-column: 1 / -1;
}

.landing-page .field-label {
  margin-bottom: 0.85rem;
  color: rgb(225 224 204 / 0.78);
  font-family: Almarai, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: none;
  transition: color 0.3s ease;
}

.landing-page .field:focus-within .field-label {
  color: #e1e0cc;
}

/* Underline inputs: no boxes, a hairline that lights cream on focus. */
.landing-page .field-input {
  width: 100%;
  padding: 0.55rem 0;
  border: 0;
  border-bottom: 1px solid rgb(225 224 204 / 0.22);
  border-radius: 0;
  background: transparent;
  color: #e1e0cc;
  font-family: Almarai, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: border-color 0.3s ease;
}

.landing-page .field-input::placeholder {
  color: rgb(222 219 200 / 0.55);
  opacity: 1;
}

.landing-page .field-input:focus {
  outline: none;
  border-bottom-color: #dedbc8;
}

/* Invalid only after the field has been touched (plan-contact.js adds .is-dirty). */
.landing-page .field-input.is-dirty:invalid {
  border-bottom-color: #c46f4a;
}

.landing-page .field-textarea {
  resize: vertical;
  min-height: 3.2em;
}

.landing-page .form-privacy {
  max-width: 70ch;
  margin: clamp(1.5rem, 3vh, 2rem) 0 0;
  color: rgb(225 224 204 / 0.78);
  font-family: Almarai, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.landing-page .form-consent {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  max-width: 70ch;
  margin-top: 1rem;
  color: rgb(225 224 204 / 0.78);
  font-family: Almarai, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

.landing-page .form-consent-input {
  width: 24px;
  height: 24px;
  margin: 10px 10px 0 0;
  border-radius: 0;
  accent-color: #dedbc8;
}

.landing-page .form-consent-input:focus-visible {
  outline: 2px solid #e1e0cc;
  outline-offset: 3px;
}

.landing-page .form-privacy a,
.landing-page .form-consent a {
  color: #e1e0cc;
  text-decoration-line: underline;
  text-decoration-color: rgb(255 255 255 / 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.landing-page .form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: clamp(2rem, 5vh, 3.25rem);
}

.landing-page .form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 44px;
  padding: 0.75rem 2rem;
  border: 0;
  border-radius: 999px;
  background: #dedbc8;
  color: #000;
  font-family: Almarai, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.landing-page .form-submit:hover,
.landing-page .form-submit:focus-visible {
  background: #e1e0cc;
}

.landing-page .form-submit-arrow {
  width: 2.25rem;
  height: auto;
  transition: transform 0.4s ease;
}

.landing-page .form-submit:hover .form-submit-arrow,
.landing-page .form-submit:focus-visible .form-submit-arrow {
  transform: translateX(5px);
}

.landing-page .form-submit[disabled] {
  opacity: 0.55;
  cursor: progress;
}

.landing-page .form-submit[disabled] .form-submit-arrow {
  transform: none;
}

.landing-page .form-status {
  margin: 0;
  color: rgb(225 224 204 / 0.78);
  font-family: Almarai, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.landing-page .form-status.is-shown {
  opacity: 1;
  transform: none;
}

.landing-page .form-status.is-error {
  color: #e08a68;
}

.landing-page .form-note {
  margin-top: 1.5rem;
  color: rgb(225 224 204 / 0.78);
  font-family: Almarai, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

@media (max-width: 767px) {
  .landing-page .form-grid { grid-template-columns: minmax(0, 1fr); }
  .landing-page .form-submit { width: 100%; justify-content: center; }
}

.landing-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  width: min(72rem, 100%);
  margin: 2.5rem auto 0;
  padding: 0 0.2rem 0.5rem;
  color: rgb(225 224 204 / 0.7);
  font-size: 0.875rem;
}

.landing-foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.35rem;
}

.landing-foot nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.55rem;
}

@media (max-width: 767px) {
  .landing-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

.landing-foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  color: #e1e0cc;
  text-decoration: none;
  font-size: 1rem;
}

.landing-foot-mark {
  display: block;
  width: 28px;
  height: auto;
  color: inherit;
}

.landing-foot a:hover,
.landing-foot a:focus-visible {
  color: #e1e0cc;
}

#about,
#features,
#discovery,
#pilot,
#production,
#work,
#faq,
#contact,
#contact-form {
  scroll-margin-top: 4.5rem;
}

@media (max-width: 639px) {
  .landing-nav a[href="#work"] { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-wordmark .word > span,
  .landing-hero-copy p,
  .landing-cta,
  .wordmark-bird {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}
