/* ================================================================
   Knowledge Designs LLC — design system
   White / near-black, deep ink blue accent (#1B3A6B) used sparingly
   Type: Space Grotesk (display) + Inter (body)
   ================================================================ */

:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --accent: #1b3a6b;
  --muted: rgba(10, 10, 10, 0.62);
  --hairline: rgba(10, 10, 10, 0.12);
  --dark: #070b12;
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --pad-y: clamp(4.5rem, 10vw, 8.5rem);
  --pad-x: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: 860px; }

.hairline-b { border-bottom: 1px solid var(--hairline); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--solid { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--solid:hover { background: var(--ink); border-color: var(--ink); }
.btn--lg { font-size: 1.05rem; padding: 0.95rem 2rem; }
.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }
.nav.is-scrolled .btn--ghost { border-color: var(--ink); color: var(--ink); }
.nav.is-scrolled .btn--ghost:hover { background: rgba(10, 10, 10, 0.06); }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* kinetic headline words */
[data-kinetic] .kword {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}
[data-kinetic].in .kword { opacity: 1; transform: none; }

/* ================================================================
   1 · NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
}
.nav__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: #fff;
  transition: color 0.3s ease;
}
.nav__brand b { font-weight: inherit; }
.nav__brand span { font-weight: 500; opacity: 0.75; margin-left: 0.3em; }
.nav__brand-short { display: none; }
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav__brand:hover { text-decoration: none; }
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
  margin-inline: -0.5rem;
}
.nav.is-scrolled .nav__sep,
.nav--solid .nav__sep { background: rgba(10, 10, 10, 0.25); }
.nav__links a:not(.btn) {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  transition: color 0.3s ease;
}
.nav.is-scrolled .nav__links a:not(.btn) { color: var(--ink); }
.nav__links a:not(.btn):hover { text-decoration: none; opacity: 0.7; }

/* ================================================================
   2 · HERO  (dark, video background — the one gradient on the site)
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--dark);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__media video.is-ready { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 18, 0.5) 0%, rgba(7, 11, 18, 0.35) 45%, rgba(7, 11, 18, 0.78) 100%);
}
.hero__content { position: relative; z-index: 1; padding-block: 8rem 6rem; }
.hero__eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 1.5rem;
}
.hero__headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1.75rem;
  max-width: 17ch;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  max-width: 46ch;
  opacity: 0.88;
  margin: 0 0 2.5rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
}
.hero__badges span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  z-index: 1;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: #fff;
  animation: scrollhint 2s ease-in-out infinite;
}
@keyframes scrollhint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}

/* ================================================================
   3 · TRUST STRIP
   ================================================================ */
.trusted { padding-block: clamp(2.5rem, 5vw, 4rem); text-align: center; }
.trusted__line { margin: 0 0 0.75rem; font-size: clamp(1rem, 1.6vw, 1.2rem); }
.trusted__line strong { font-weight: 600; }
.stars { color: var(--accent); letter-spacing: 0.12em; }  /* accent use 1 of 3 */
.trusted__industries {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================================================================
   4 · VALUE GRID
   ================================================================ */
.values { padding-block: var(--pad-y); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.values__card {
  background: var(--bg);
  padding: clamp(1.5rem, 2.6vw, 2.5rem);
}
.values__card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}
.values__card p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ================================================================
   5 · SHOWREEL
   ================================================================ */
.showreel {
  position: relative;
  background: var(--dark);
  min-height: 62vh;
  overflow: hidden;
}
.showreel video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.showreel video.is-ready { opacity: 1; }
.showreel__label {
  position: absolute;
  inset: auto 0 0 0;
  display: block;
  padding: clamp(1.5rem, 4vw, 3rem) var(--pad-x);
  background: linear-gradient(0deg, rgba(7, 11, 18, 0.75), transparent);
  color: #fff;
}
.showreel__label:hover { text-decoration: none; }
.showreel__label:hover span { opacity: 1; }
.showreel__label p {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0;
}
.showreel__label span {
  display: block;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 0.35rem;
}

/* ================================================================
   6 · TESTIMONIAL
   ================================================================ */
.testimonial { padding-block: var(--pad-y); }
.testimonial blockquote { margin: 0; }
.testimonial blockquote p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin: 0 0 1.5rem;
}
.testimonial blockquote footer {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ================================================================
   7 · TECH SUITE MARQUEE
   ================================================================ */
.stack { padding-block: calc(var(--pad-y) * 0.7) calc(var(--pad-y) * 0.55); }
.stack__intro { color: var(--muted); max-width: 52ch; margin: -1.5rem 0 2.5rem; }
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  padding-block: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee:last-of-type { border-bottom: 1px solid var(--hairline); }
.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.75rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 48s; }
.marquee__track span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__track span:nth-child(even) { color: var(--ink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   8 · LATEST DELIVERY
   ================================================================ */
.work { padding-block: var(--pad-y); }
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.work__card { cursor: pointer; outline-offset: 4px; }
.work__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--dark);
  overflow: hidden;
}
.work__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(27, 58, 107, 0.25), rgba(7, 11, 18, 0.55));
  transition: opacity 0.5s ease;
}
.work__card:hover .work__media::after,
.work__card:focus-visible .work__media::after { opacity: 0; }
.work__video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: grayscale(1) brightness(0.72);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.work__card:hover .work__video,
.work__card:focus-visible .work__video {
  filter: grayscale(0) brightness(1);
  transform: scale(1.02);
}
.work__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.25rem;
  align-items: baseline;
  padding-top: 1.1rem;
}
.work__meta h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0;
}
.work__meta p { margin: 0; color: var(--muted); font-size: 0.92rem; grid-column: 1; }
.work__meta span {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);   /* accent use 2 of 3 */
  letter-spacing: 0.06em;
  text-transform: uppercase;
  grid-column: 2;
  grid-row: 1;
}
.work__tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0 0.25rem;
  padding: 0;
  list-style: none;
}
.work__tags li {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}
.work__link,
.work__meta span.work__link {
  grid-column: 1 / -1;
  grid-row: auto;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.02em;
}

/* overlay video cards — always-playing video with white wordmark */
.work__card--overlay { display: block; color: inherit; }
.work__card--overlay:hover { text-decoration: none; }
.work__card--overlay .work__video {
  filter: brightness(0.72);
  transform: scale(1.05);
}
.work__card--overlay:hover .work__video,
.work__card--overlay:focus-visible .work__video {
  filter: brightness(0.88);
  transform: scale(1.02);
}
.work__card--overlay:hover .work__media::after,
.work__card--overlay:focus-visible .work__media::after { opacity: 1; }  /* keep scrim so text stays readable */
.work__wordmark--over {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  text-shadow: 0 2px 28px rgba(7, 11, 18, 0.65);
}
.work__card--overlay:hover .work__wordmark--over,
.work__card--overlay:focus-visible .work__wordmark--over { transform: scale(1.04); }

/* logo still-card variant — clickable typographic tile */
.work__card--logo { display: block; color: inherit; }
.work__card--logo:hover { text-decoration: none; }
.work__media--logo {
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(27, 58, 107, 0.5), transparent 60%),
    var(--dark);
}
.work__wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
  line-height: 1.1;
  transform: scale(1);
  transition: transform 0.6s ease;
}
.work__wordmark b { display: block; font-weight: 500; opacity: 0.8; font-size: 0.55em; letter-spacing: 0.3em; }
.work__wordmark i {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.32em;
  letter-spacing: 0.5em;
  opacity: 0.55;
  margin-top: 0.6em;
}
.work__card--logo:hover .work__wordmark,
.work__card--logo:focus-visible .work__wordmark { transform: scale(1.05); }
.work__card--logo:hover .work__media::after,
.work__card--logo:focus-visible .work__media::after { opacity: 0; }

/* featured lead tile — spans full width above the 2x2 grid */
.work__card--featured { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.work__card--featured .work__media { aspect-ratio: 21 / 8; }
.work__card--featured .work__meta { max-width: 62ch; }
.work__card--featured .work__meta h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
@media (max-width: 640px) {
  .work__card--featured .work__media { aspect-ratio: 16 / 10; }
}

/* ================================================================
   8b · ALSO BY GREG
   ================================================================ */
.also { padding-block: var(--pad-y); }
.also__eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.also .section-title { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.also__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.also__card { display: block; color: inherit; }
.also__card:hover { text-decoration: none; }
.also__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--dark);
  overflow: hidden;
}
.also__media img,
.also__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.95);
}
.also__card:hover .also__media img,
.also__card:focus-visible .also__media img,
.also__card:hover .also__media video,
.also__card:focus-visible .also__media video {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.also__card:hover .work__wordmark--over,
.also__card:focus-visible .work__wordmark--over { transform: scale(1.04); }
.also__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.25rem;
  align-items: baseline;
  padding-top: 1.1rem;
}
.also__meta h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0;
}
.also__meta p { margin: 0; color: var(--muted); font-size: 0.92rem; grid-column: 1; }
.also__meta span {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  grid-column: 2;
  grid-row: 1;
}

/* ================================================================
   9 · SERVICES
   ================================================================ */
.services { padding-block: var(--pad-y); }
.services__list { border-top: 1px solid var(--hairline); }
.services__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 4vw, 4rem);
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  border-bottom: 1px solid var(--hairline);
}
.services__name { display: flex; align-items: baseline; gap: 1.25rem; }
.services__name span {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}
.services__name h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: -0.015em;
  margin: 0;
}
.services__row > p { margin: 0; color: var(--muted); align-self: center; }

/* ================================================================
   10 · THE PERSON
   ================================================================ */
.founder { padding-block: var(--pad-y); }
.founder__grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.founder__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--dark);
  overflow: hidden;
  border-radius: 18px;
  box-shadow:
    0 24px 60px -18px rgba(7, 11, 18, 0.35),
    0 8px 20px -8px rgba(7, 11, 18, 0.18);
}
.founder__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder__monogram {
  display: none;
  position: absolute; inset: 0;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 7rem);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(27, 58, 107, 0.55), transparent 60%),
    var(--dark);
}
.founder__portrait--fallback .founder__monogram { display: grid; }
.founder__copy .section-title { margin-bottom: 1.5rem; }
.founder__copy p { margin: 0 0 1.25rem; color: var(--muted); max-width: 56ch; }
.founder__copy p strong { color: var(--ink); font-weight: 600; }
.founder__loc {
  font-family: var(--display);
  font-size: 0.85rem !important;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ================================================================
   11 · PRICING
   ================================================================ */
.pricing { padding-block: var(--pad-y); }
.pricing__toggle {
  position: relative;
  display: inline-flex;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.pricing__toggle button {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1.6rem;
  background: none;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s ease;
}
.pricing__toggle button.is-active { color: #fff; }
.pricing__pill {
  position: absolute;
  top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing__toggle.is-recurring .pricing__pill { transform: translateX(100%); }
.pricing__panel[hidden] { display: none; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.pricing__card { background: var(--bg); padding: clamp(1.75rem, 2.8vw, 2.5rem); }
.pricing__card--featured { outline: 2px solid var(--accent); outline-offset: -2px; }  /* accent use 3 of 3 */
.pricing__card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}
.pricing__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.pricing__price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing__price--quote { font-size: clamp(1.3rem, 2.1vw, 1.7rem); margin-bottom: 0.35rem; }
.pricing__terms {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pricing__card ul { list-style: none; margin: 0; padding: 0; }
.pricing__card li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--hairline);
  font-size: 0.95rem;
  color: var(--muted);
}
.pricing__note { margin: 2rem 0 0; font-size: 0.95rem; color: var(--muted); }

/* ================================================================
   12 · FAQ
   ================================================================ */
.faq { padding-block: var(--pad-y); }
.faq__list { border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq__q span {
  position: relative;
  flex: 0 0 18px;
  height: 18px;
}
.faq__q span::before, .faq__q span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s ease;
}
.faq__q span::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] span::after { transform: rotate(0deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__a p {
  margin: 0;
  padding: 0 0 1.5rem;
  color: var(--muted);
  max-width: 64ch;
}

/* ================================================================
   13 · CLOSING CTA
   ================================================================ */
.cta {
  padding-block: calc(var(--pad-y) * 1.2);
  text-align: center;
}
.cta__headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}
.cta__email {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}
.cta__email:hover { text-decoration: none; opacity: 0.7; }
.cta__phone { margin: 2rem 0 0; color: var(--muted); font-size: 0.98rem; }

/* ================================================================
   14 · FOOTER (multi-column)
   ================================================================ */
.footer {
  border-top: 1px solid var(--hairline);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
}
.footer__brand span { font-weight: 500; opacity: 0.7; margin-left: 0.3em; }
.footer__blurb {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 34ch;
}
.footer__addr {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.footer__addr a { color: var(--muted); }
.footer__addr a:hover { color: var(--accent); }
.footer__heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.9rem;
}
.footer__col > a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.footer__col > a:hover { color: var(--accent); text-decoration: none; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { color: var(--muted); display: grid; place-items: center; }
.footer__social a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--hairline);
  padding-block: 1.4rem;
}
.footer__bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ================================================================
   SUBPAGES (legal / policy pages)
   ================================================================ */
.nav--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
}
.nav--solid .nav__brand,
.nav--solid .nav__links a:not(.btn) { color: var(--ink); }
.nav--solid .btn--ghost { border-color: var(--ink); color: var(--ink); }
.nav--solid .btn--ghost:hover { background: rgba(10, 10, 10, 0.06); }

.page { padding: clamp(7.5rem, 14vw, 10rem) 0 var(--pad-y); }
.page__eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.page h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.page__updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--hairline);
}
.prose h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin: 2.25rem 0 0.75rem;
}
.prose p, .prose li { color: var(--muted); }
.prose p { margin: 0 0 1rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease;
}
.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover { background: var(--accent); }
.to-top:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .services__row { grid-template-columns: 1fr; gap: 0.75rem; }
  .founder__grid { grid-template-columns: 1fr; }
  .founder__portrait { max-width: 420px; }
  .work__grid { grid-template-columns: 1fr; }
  .also__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .values__grid { grid-template-columns: 1fr; }
  .hero__badges span { font-size: 0.78rem; padding: 0.4rem 0.8rem; }
  .nav__links { gap: 0.6rem; }
  .nav__links a:not(.btn) { display: none; }  /* pricing link folds into scroll on phones */
  .nav__inner { padding-block: 0.8rem; padding-inline: 1rem; }
  .nav__brand-full { display: none; }
  .nav__brand-short { display: inline; }
  .nav .btn { font-size: 0.8rem; padding: 0.55rem 0.9rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, [data-kinetic] .kword {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marquee__track { animation: none; }  /* clipped single row; full list is in the sr-only paragraph */
  .hero__scroll span { animation: none; }
}
