/* Numikoi.com — landing page styles
   Palette, type and motion follow the approved "Numikoi Homepage v2" design. */

:root {
  --ink: #10151f;
  --navy: #193a6f;
  --orange: #f78024;
  --paper: #efede8;
  --white: #ffffff;
  --muted: #5a6377;
  --body: #3c4658;
  --brown: #a34e06;
  --divider: #eae7e1;
  --card-border: #e4e0d8;
  --ai-bg: #f5f6f8;
  --ai-border: #dce0e8;
  --ai-media: #e7eaf1;
  --ai-media-dot: #c3cbdb;
  --lab-media: #efede8;
  --lab-grid-line: #e2ddd2;
  --roadtrip-bg: #fff6ec;
  --roadtrip-border: #1b1140;
  --roadtrip-media-a: #f3e4f7;
  --roadtrip-media-b: #ffe9d6;
  --roadtrip-name: #5b2bb5;
  --roadtrip-tag: linear-gradient(90deg, #5b2bb5, #e4479a 60%, #f2a03c);
  --footer-bg: #10151f;
  --footer-muted: #9aa2b1;
  --footer-divider: #232a38;

  --radius-lg: clamp(18px, 2.4vw, 32px);
  --pad-x: clamp(18px, 3.4vw, 48px);
  --content-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--orange);
}

a:focus-visible,
button:focus-visible,
.project-card:focus-visible,
.founder-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--orange);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--navy);
}

.accent {
  color: var(--orange);
}

img {
  max-width: 100%;
  display: block;
}

/* Layout shell — matches the approved design's "rounded card on cream ground" frame */
.page-frame {
  max-width: 100%;
  overflow-x: hidden;
  padding: clamp(8px, 1.4vw, 18px);
}

.page-surface {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* — header — */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px var(--pad-x);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.logo .reg {
  font-size: 10px;
  color: var(--orange);
}

.logo:hover {
  color: var(--navy);
}

.site-nav {
  display: flex;
  gap: clamp(10px, 2.4vw, 30px);
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 600;
  border-radius: 999px;
}

.btn-cta {
  padding: 10px 18px;
  font-size: 14px;
  background: var(--orange);
  color: var(--ink);
}

.btn-cta:hover {
  background: var(--navy);
  color: #fff;
}

/* — hero — */
.hero {
  position: relative;
  padding: clamp(36px, 6vw, 86px) var(--pad-x) clamp(48px, 6vw, 86px);
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 clamp(24px, 3.6vw, 44px);
}

.hero h1 {
  font-size: clamp(2.7rem, 8.6vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0 auto;
  max-width: 14ch;
}

.hero .lede {
  max-width: 46ch;
  margin: clamp(24px, 3.2vw, 38px) auto 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  color: var(--body);
}

.btn-outline {
  margin-top: clamp(30px, 4.4vw, 54px);
  padding: 15px 28px;
  border: 1.5px solid var(--navy);
  font-size: 15px;
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline .nudge {
  display: inline-block;
  animation: nudge 2.6s ease-in-out infinite;
}

.floaty-label {
  position: absolute;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 600;
}

.floaty-label-1 {
  left: 6%;
  bottom: 14%;
  color: var(--brown);
}

.floaty-label-2 {
  left: 15%;
  bottom: 4%;
  color: var(--navy);
}

/* — hero idea pills —
   One layer of small "thought bubble" pills scattered around the hero.
   Each pill is a single <span class="idea idea--{variant} idea-{name}">;
   variant sets the color pairing, idea-{name} sets its position (so
   breakpoints can reposition without touching markup), and --r/--dur/--delay
   inline custom properties give each one its own tilt and float timing. */
.hero-ideas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.idea {
  position: absolute;
  white-space: nowrap;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
  pointer-events: auto;
  transform: rotate(var(--r, 0deg));
  animation: bob var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform 0.25s ease;
}

.idea:hover {
  transform: rotate(calc(var(--r, 0deg) * 0.5)) translateY(-3px);
}

.idea--neutral {
  background: var(--paper);
  color: var(--body);
}

.idea--cream {
  background: var(--paper);
  color: var(--navy);
}

.idea--navy {
  background: var(--navy);
  color: #fff;
}

.idea--peach {
  background: #fde7d2;
  color: #8a4409;
}

/* positions — desktop */
.idea-new {
  left: 3%;
  top: 14%;
}

.idea-wait {
  right: 3%;
  top: 9%;
}

.idea-ship {
  right: 7%;
  bottom: 6%;
}

.idea-music {
  left: 16%;
  top: 5%;
}

.idea-dj {
  right: 13%;
  top: 6%;
}

.idea-playlist {
  left: 3%;
  top: 42%;
}

.idea-marketers {
  right: 4%;
  top: 41%;
}

.idea-creativity {
  left: 8%;
  bottom: 22%;
}

.idea-dashboard {
  right: 6%;
  bottom: 30%;
}

.idea-hybrid {
  right: 15%;
  bottom: 16%;
}

/* positions — tablet: pull everything toward the edges so nothing
   crosses into the headline/paragraph column as it wraps narrower */
@media (max-width: 900px) and (min-width: 641px) {
  .idea {
    font-size: 12px;
    padding: 8px 13px;
  }

  .idea-new {
    top: 10%;
  }

  .idea-wait {
    top: 6%;
  }

  .idea-ship {
    bottom: 4%;
  }

  .idea-music {
    left: 6%;
    top: 3%;
  }

  .idea-dj {
    right: 6%;
    top: 4%;
  }

  .idea-playlist {
    left: 1%;
    top: 38%;
  }

  .idea-marketers {
    right: 1%;
    top: 37%;
  }

  .idea-creativity {
    left: 2%;
    bottom: 18%;
  }

  .idea-dashboard {
    right: 1%;
    bottom: 26%;
  }

  .idea-hybrid {
    right: 8%;
    bottom: 11%;
  }
}

@media (max-width: 640px) {
  /* Decorative floats can crowd or hide behind the hero copy on small
     screens — drop them rather than risk covering real content. */
  .floaty-label {
    display: none;
  }

  /* Mobile gets a deliberate composition, not a shrunk copy of the desktop
     scatter: the pill layer drops out of absolute positioning entirely and
     becomes a small centered row below the CTA, showing only the
     strongest handful of ideas. */
  .hero-ideas {
    position: static;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding: 0 4px;
  }

  .hero-ideas .idea {
    position: static;
    transform: none;
    animation: none;
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero-ideas .idea:not(.idea--priority) {
    display: none;
  }

  .hero-ideas .idea:hover {
    transform: none;
  }
}

/* — section scaffolding — */
.section {
  padding: clamp(56px, 8vw, 120px) var(--pad-x);
  border-top: 1px solid var(--divider);
}

.section-tight {
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(56px, 8vw, 110px);
  text-align: center;
  border-top: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 18px;
}

.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.eyebrow-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 22px;
}

/* — projects — */
.projects h2 {
  font-size: clamp(2.1rem, 5.2vw, 4.2rem);
  line-height: 1;
  max-width: 18ch;
  margin: 0 auto;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: clamp(40px, 6vw, 80px) auto 0;
  max-width: 1100px;
}

.project-card {
  position: relative;
  margin: 0 8px 28px;
  padding: 14px 14px 22px;
  text-align: left;
  width: clamp(240px, 27vw, 330px);
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 26px rgba(16, 21, 31, 0.06);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1), opacity 0.45s ease,
    box-shadow 0.45s ease;
  transform: rotate(var(--rot, 0deg)) translateY(var(--y, 0px));
}

.project-card--ai {
  width: clamp(230px, 25vw, 300px);
  border-radius: 10px;
  background: var(--ai-bg);
  border: 1px solid var(--ai-border);
}

.project-card--roadtrip {
  width: clamp(240px, 26vw, 318px);
  border-radius: 22px;
  background: var(--roadtrip-bg);
  border: 2px solid var(--roadtrip-border);
}

.project-grid:hover .project-card:not(:hover) {
  opacity: 0.5;
  transform: rotate(var(--rot, 0deg)) translateY(var(--y, 0px)) scale(0.95);
}

.project-card:hover,
.project-grid:has(.project-card:focus-within) .project-card:focus-within {
  transform: rotate(0deg) translateY(calc(var(--y, 0px) - 20px)) scale(1.05);
  box-shadow: 0 26px 60px rgba(16, 21, 31, 0.16);
  z-index: 5;
}

.project-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: var(--lab-media);
  background-image: linear-gradient(var(--lab-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--lab-grid-line) 1px, transparent 1px);
  background-size: 38px 38px;
}

.project-media--ai {
  border-radius: 10px;
  background: var(--ai-media);
  background-image: radial-gradient(var(--ai-media-dot) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
}

.project-media--roadtrip {
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(91, 43, 181, 0.18),
    rgba(228, 71, 154, 0.18) 55%,
    rgba(242, 160, 60, 0.28)
  );
}

/* Real product screenshot sits inside the existing preview frame. The
   pattern/gradient backgrounds above stay in place behind it as a graceful
   fallback while the image loads (or if it fails to load). */
.project-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.project-media:hover img,
.project-media-link:focus-visible img {
  transform: scale(1.02);
}

.project-tag {
  display: inline-block;
  margin: 16px 0 10px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  background: transparent;
  color: var(--body);
  border: 1px dashed #c6c0b4;
}

.project-tag--ai {
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  border: none;
}

.project-tag--roadtrip {
  border-radius: 999px;
  background: var(--roadtrip-tag);
  color: #fff;
  border: none;
}

.project-card h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  margin: 0 0 10px;
}

.project-card--roadtrip h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--roadtrip-name);
}

.project-line {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--body);
  margin: 0 0 12px;
}

.project-concept {
  font-size: 13.5px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--navy);
}

.project-card--roadtrip .project-concept {
  color: var(--roadtrip-name);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}

.project-link:hover {
  color: var(--navy);
}

/* — philosophy + who we are —
   One compact editorial chapter, side by side: why the studio exists on the
   left, the two people behind it on the right. Not two stacked sections. */
.philosophy {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

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

.philosophy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  margin: 14px 0 0;
}

.philosophy-copy {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--body);
  margin: clamp(16px, 2.4vw, 22px) 0 0;
  max-width: 38ch;
}

.thought-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(20px, 3vw, 28px) 0 0;
}

.humans-block h2 {
  margin-top: 0;
}

.humans-intro {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--body);
  margin: clamp(14px, 2vw, 18px) 0 0;
  max-width: 48ch;
}

.founder-card {
  position: relative;
  width: clamp(190px, 22vw, 250px);
  text-align: left;
  transform: rotate(var(--rot, 0deg)) translateY(var(--y, 0px));
  transition: transform 0.3s ease;
}

.founder-card:hover,
.founder-card:focus-within {
  transform: rotate(0deg) translateY(calc(var(--y, 0px) - 6px));
}

.profile-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.founder-card:hover .profile-photo,
.founder-card:focus-within .profile-photo {
  transform: rotate(1deg) scale(1.02);
}

.profile-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo__label {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transform: rotate(-2deg);
  box-shadow: 0 8px 20px rgba(16, 21, 31, 0.08);
}

.founder-card h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  margin: 0 0 2px;
}

.profile-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 12px;
}

.fact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fact-pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--paper);
  border: 1px dashed var(--card-border);
  transition: transform 0.2s ease;
}

.fact-pill:hover {
  transform: translateY(-2px);
}

/* — thought fragments —
   Reused for both the (now retired) inline cloud styling and these floating
   small editorial fragments, not a numbered feature list. */
.thought {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--card-border);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.25s ease;
}

.thought--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.thought--peach {
  background: #fde7d2;
  color: #8a4409;
  border-color: transparent;
}

.thought:hover {
  transform: rotate(0deg) translateY(-3px);
}

/* — stories intro — */
.stories-intro {
  padding-bottom: clamp(28px, 4vw, 48px);
}

.stories-intro h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  max-width: 24ch;
}

/* — story rows — */
.stories {
  padding: 0 var(--pad-x);
}

.story {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 90px) 0;
  border-top: 1px solid var(--divider);
}

.story:last-child {
  padding-bottom: clamp(56px, 8vw, 110px);
}

.story-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: var(--lab-media);
  background-image: linear-gradient(var(--lab-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--lab-grid-line) 1px, transparent 1px);
  background-size: 38px 38px;
}

.story-media--ai {
  border-radius: 10px;
  background: var(--ai-media);
  background-image: radial-gradient(var(--ai-media-dot) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
}

.story-media--roadtrip {
  border-radius: 22px;
  background: linear-gradient(135deg, var(--roadtrip-media-a), var(--roadtrip-media-b));
}

.story-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--brown);
}

.story-eyebrow--ai {
  color: var(--navy);
}

.story-eyebrow--roadtrip {
  color: #b32771;
}

.story h3 {
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}

.story p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
  max-width: 44ch;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}

.story-link:hover {
  color: var(--navy);
}

.story-link--ai {
  color: var(--navy);
}

.story-link--ai:hover {
  color: var(--orange);
}

.story-link--roadtrip {
  color: var(--roadtrip-name);
}

.story-link--roadtrip:hover {
  color: #e4479a;
}

/* Real product screenshots sit inside the existing .story-media frame —
   same "static pattern behind, real image on top" fallback the .project-media
   panels above already use. The image is a tall stitched full-page capture;
   a slow translateY loop stands in for a live scroll preview without an
   iframe. --scroll-y (set per instance, see index.html) is the exact
   percentage of the image's own rendered height that reveals its bottom
   flush against the frame — derived from the frame's fixed 4/3 aspect-ratio
   and each image's real pixel dimensions, so it never overshoots into blank
   space at any viewport width. */
.story-media-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.story-media-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 20px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
}

.story-media-bar span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(16, 21, 31, 0.16);
}

.story-media-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
  animation: story-scroll 12s ease-in-out infinite;
  animation-play-state: paused;
}

.story-media-link.in-view .story-media-img {
  animation-play-state: running;
}

.story-media-link:hover .story-media-img,
.story-media-link:focus-visible .story-media-img {
  animation-play-state: paused;
}

@keyframes story-scroll {
  0%,
  8% {
    transform: translateY(0);
  }
  46%,
  54% {
    transform: translateY(calc(var(--scroll-y, 60%) * -1 * var(--scroll-mobile-factor, 1)));
  }
  92%,
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .story-media-img {
    --scroll-mobile-factor: 0.45;
  }
}

/* — founders —
   Ana + Alexis, side by side inside the "who we are" column. Reuses the
   .founder-card / .profile-photo / .fact-pill component. */
.founders {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(24px, 3.4vw, 36px);
}

/* — contact — */
.contact {
  padding: clamp(64px, 10vw, 150px) var(--pad-x);
  background: var(--navy);
  color: #fff;
}

.contact h2 {
  font-size: clamp(2.2rem, 5.8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 19ch;
  color: #fff;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 52px);
  margin-top: clamp(36px, 5vw, 68px);
  font-size: 14px;
  font-weight: 600;
  color: #9fb0cd;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: clamp(40px, 6vw, 80px);
}

.contact-cta p {
  font-size: clamp(19px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}

.contact-cta .btn-cta {
  padding: 15px 28px;
  font-size: 15px;
}

.contact-cta .btn-cta:hover {
  background: #fff;
  color: var(--navy);
}

/* — footer — */
.site-footer {
  padding: clamp(40px, 6vw, 72px) var(--pad-x) 32px;
  background: var(--footer-bg);
  color: #fff;
}

.footer-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(26px, 4vw, 56px);
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
}

.footer-tagline {
  font-size: 15px;
  color: var(--footer-muted);
  margin: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col h5 {
  font-size: 12.5px;
  font-weight: 600;
  color: #8c94a5;
  margin: 0 0 4px;
}

.footer-col a {
  color: #fff;
  font-size: 15px;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-col .link-pending {
  color: #6b7280;
  font-size: 15px;
  cursor: default;
}

.footer-bottom {
  max-width: var(--content-max);
  margin: clamp(36px, 5vw, 64px) auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--footer-divider);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .tagline {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.footer-bottom .fine-print {
  font-size: 12.5px;
  color: #8c94a5;
}

/* — motion — */
@keyframes bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .idea,
  .btn-outline .nudge,
  .story-media-img {
    animation: none;
  }

  .idea,
  .idea:hover {
    transition: none;
    transform: rotate(var(--r, 0deg));
  }

  html {
    scroll-behavior: auto;
  }

  .project-card,
  .project-media img,
  .thought,
  .thought:hover,
  .profile-photo,
  .founder-card,
  .founder-card:hover,
  .fact-pill {
    transition: none;
  }

  .thought,
  .thought:hover {
    transform: rotate(var(--r, 0deg));
  }

  .founder-card,
  .founder-card:hover {
    transform: rotate(var(--rot, 0deg)) translateY(var(--y, 0px));
  }
}
