/* ============================================================
   BEVEL — Design tokens
   ============================================================ */
:root {
  /* Palette */
  --paper: #F7F5F0;
  --paper-2: #EFEDE6;
  --ink: #0E0E0C;
  --ink-2: #1F1F1D;
  --muted: #6B6A63;
  --muted-2: #9A9890;
  --line: rgba(14, 14, 12, 0.12);
  --line-strong: rgba(14, 14, 12, 0.22);

  /* Brand gradient (from logo — use sparingly) */
  --grad-a: #C5006A;
  --grad-b: #0B62B1;

  /* Type */
  --f-display: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-body: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Rhythm */
  --container-max: 1240px;
  --gutter: clamp(20px, 3vw, 40px);
  --section-y: clamp(80px, 9vw, 140px);
  --radius: 2px;
}

/* Dark/light theme hooks for Tweaks */
[data-theme="ink"] {
  --paper: #0E0E0C;
  --paper-2: #171714;
  --ink: #F7F5F0;
  --ink-2: #E4E1D7;
  --muted: #8F8D84;
  --muted-2: #6B6A63;
  --line: rgba(247, 245, 240, 0.14);
  --line-strong: rgba(247, 245, 240, 0.26);
}

/* ============================================================
   Reset-ish
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, p, ol, ul, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ol, ul { list-style: none; }
em { font-style: italic; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
@media (max-width: 880px) {
  .col-4, .col-5, .col-7, .col-8 { grid-column: span 12; }
}

/* Why-us photo */
.why-us__photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
}
.why-us__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.section--bordered {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head {
  margin-bottom: clamp(48px, 6vw, 88px);
  align-items: start;
}
.section__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 22ch;
}

/* ============================================================
   Eyebrow label
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow--light { color: rgba(247, 245, 240, 0.7); }
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  display: inline-block;
}
.eyebrow__sep { color: var(--line-strong); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn__arrow { transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #000; }
[data-theme="ink"] .btn--ink:hover { background: var(--ink-2); color: var(--paper); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--paper {
  background: var(--paper);
  color: var(--ink);
}
.btn--paper:hover { background: #fff; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 19px;
}
.nav__mark { display: none; }
.nav__mark-img {
  width: 26px; height: 26px;
  border-radius: 4px;
}
.nav__wordmark { color: var(--ink); }
.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 15px;
  color: var(--muted);
}
.nav__links a { transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__cta { padding: 10px 16px; font-size: 14px; }
@media (max-width: 640px) {
  .nav__links { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(64px, 8vw, 108px);
}
.hero .eyebrow { margin-bottom: 40px; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(44px, 8.2vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 15ch;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.grad {
  background: linear-gradient(105deg, var(--grad-a) 0%, var(--grad-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
  padding-right: 0.05em;
}
.hero__lede {
  max-width: 52ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: clamp(36px, 4vw, 52px);
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-bottom: clamp(72px, 9vw, 120px);
  flex-wrap: wrap;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}
.hero__stats > div {
  background: var(--paper);
  padding: 24px 0 24px 0;
  padding-right: 24px;
}
.hero__stats > div + div { padding-left: 24px; }
.hero__stats dt {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.hero__stats dd {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
@media (max-width: 760px) {
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats > div + div { padding-left: 0; padding-top: 24px; }
  .hero__stats > div { padding-right: 0; }
}

/* ============================================================
   Logos row
   ============================================================ */
.logos {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.logos__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.logos__label--second { margin-top: 44px; }
.logos__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.logos__row span {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  opacity: 0.72;
}
.logos__row--customers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  justify-items: center;
}
.logos__row--customers .logo-img {
  height: 16px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.82;
  filter: saturate(0.92);
}
.logo-img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.82;
}
.logo-img--tall,
.logo-img--wide { height: 20px; max-width: 120px; }
@media (max-width: 760px) {
  .logos__row--customers { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}

/* ============================================================
   Thesis
   ============================================================ */
.thesis__lede {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 32ch;
}
.thesis__body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 58ch;
}

/* ============================================================
   Principles
   ============================================================ */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.principle {
  background: var(--paper);
  padding: clamp(28px, 3.2vw, 44px);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.principle__num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: auto;
}
.principle__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 80px;
}
.principle__body {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 0; padding: 32px; }
  .principle__title { margin-top: 56px; }
}

/* ============================================================
   Offer grid
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 64px;
  row-gap: 48px;
}
.offer {
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}
.offer__kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.offer__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 18ch;
}
.offer__body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 48ch;
}
@media (max-width: 880px) {
  .offer-grid { grid-template-columns: 1fr; row-gap: 36px; }
}

/* ============================================================
   Manifesto quote
   ============================================================ */
.manifesto {
  padding: clamp(100px, 12vw, 180px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto blockquote {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 22ch;
  color: var(--ink);
}
.manifesto blockquote em {
  background: linear-gradient(105deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.manifesto figcaption {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.manifesto__rule {
  flex: 0 0 60px;
  height: 1px;
  background: var(--line-strong);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  transition: color .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--muted); }
.faq__toggle {
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--ink);
  transition: transform .25s ease;
}
.faq__toggle::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__toggle::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq details[open] .faq__toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__body {
  padding: 0 4px 32px;
  max-width: 68ch;
}
.faq__body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
}
.cta__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-top: 24px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--paper);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 32ch;
}
.footer__mark {
  width: 32px; height: 32px;
  border-radius: 4px;
}
.footer__brand p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__heading {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__nav a {
  display: block;
  font-size: 15px;
  color: var(--ink);
  padding: 4px 0;
  opacity: 0.82;
  transition: opacity .15s ease;
}
.footer__nav a:hover { opacity: 1; }
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   About page
   ============================================================ */
.page-hero {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(48px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
}
.page-hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-top: 28px;
  max-width: 16ch;
}
.page-hero__lede {
  margin-top: 32px;
  max-width: 56ch;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--muted);
}

.prose {
  max-width: 62ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.prose p + p { margin-top: 1.1em; }
.prose strong {
  color: var(--ink);
  font-weight: 500;
}

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value {
  background: var(--paper);
  padding: clamp(28px, 3vw, 44px);
}
.value__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.value__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.value__body {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 46ch;
}
@media (max-width: 760px) {
  .values { grid-template-columns: 1fr; }
}

.timeline {
  border-top: 1px solid var(--line);
}
.timeline__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.timeline__year {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding-top: 6px;
}
.timeline__title {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.012em;
  margin-bottom: 6px;
}
.timeline__body {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 58ch;
}
@media (max-width: 640px) {
  .timeline__row { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   Team (About page)
   ============================================================ */
.team-section {
  padding: clamp(48px, 6vw, 96px) 0;
}
.team-card {
  display: grid;
  grid-template-columns: 300px 1px 1fr;
  column-gap: clamp(32px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 5vw, 72px) 0;
}
.team-photo {
  aspect-ratio: 2085 / 2400;
  width: 100%;
  background: transparent;
  margin: 0;
  overflow: visible;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.team-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}
.team-caption {
  padding: 0;
  max-width: 52ch;
}
.team-caption__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink);
  margin-top: 20px;
  margin-bottom: 24px;
}
.team-caption__body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.team-caption__body p + p { margin-top: 1em; }
@media (max-width: 880px) {
  .team-card {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .team-divider { display: none; }
  .team-photo { max-width: 300px; }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
.contact__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 24px;
  margin-bottom: 28px;
}
.contact__lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 40px;
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.channel {
  background: var(--paper);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  align-items: center;
}
.channel__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.channel__value {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.channel__arrow {
  color: var(--muted);
  transition: transform .2s ease, color .15s ease;
}
.channel:hover .channel__arrow { transform: translateX(4px); color: var(--ink); }

.form {
  background: var(--paper-2);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ink) 10%, transparent);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form__submit {
  align-self: flex-start;
  margin-top: 8px;
}
.form__fineprint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   Utility
   ============================================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   link-pill — slightly emphasised inline link
   ============================================================ */
.link-pill {
  color: var(--grad-b);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s ease;
}
.link-pill:hover,
.link-pill:focus-visible {
  color: var(--ink);
}

/* ============================================================
   Scheduler embed (NeetoCal iframe on contact page)
   ============================================================ */
.scheduler-wrap {
  width: 100%;
  max-width: 1440px;
  margin: 32px auto 0;
  padding: 0 var(--gutter);
}
.scheduler { display: flex; flex-direction: column; gap: 16px; }
.scheduler__frame {
  position: relative;
  width: 100%;
  min-height: 820px;
  overflow: hidden;
}
.scheduler__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 900px) {
  .scheduler__frame { min-height: 1180px; }
}
.scheduler__fallback {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.scheduler__fallback a { color: var(--ink); }
.scheduler__email {
  margin: 18px 0 0;
  font-family: var(--f-body);
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
}
.scheduler__email a {
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 760px) {
  .scheduler__frame { min-height: 640px; }
}

/* ============================================================
   Ticker — moving names strip (replaces the logo row)
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.ticker__label {
  margin: 0 0 12px;
  padding: 0 var(--gutter);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
  will-change: transform;
}
.ticker__track--fast { animation-duration: 40s; }
.ticker__track--slow { animation-duration: 35s; }
.ticker + .ticker { border-top: none; }
.ticker__set {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-right: clamp(28px, 4vw, 56px);
  flex-shrink: 0;
}
.ticker__set > span {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.ticker__dot { color: var(--muted); font-weight: 400; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ============================================================
   Promise — standalone value-prop pull-quote section
   ============================================================ */
.promise {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promise__statement {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(26px, 3.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 1200px;
}
.promise__statement em {
  font-style: normal;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Steps list (Find · Build · Operate)
   ============================================================ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
}
.steps > li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: baseline;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid var(--line);
}
.steps > li:first-child { border-top: none; padding-top: 0; }
.steps__num {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.steps__title {
  margin: 0 0 8px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
}
.steps__body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--muted);
  text-wrap: pretty;
}
