.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: .8rem 1.2rem;
  border-radius: 0 0 14px 14px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  transition: top .3s var(--ease);
}

.skip-link:focus { top: 0; }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .1s linear;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
}

html.js .reveal.is-in { opacity: 1; transform: none; }

.display--xl {
  font-size: clamp(2.6rem, 7.6vw, 7rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 550;
}

.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background: var(--dark);
  color: var(--paper);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -10%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 104, 104, .2), transparent 62%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, transparent 30%, #000 100%);
  -webkit-mask-image: linear-gradient(120deg, transparent 30%, #000 100%);
  pointer-events: none;
}

.page-hero .wrap { position: relative; z-index: 1; }

.page-hero .display { margin-top: clamp(1.4rem, 3vw, 2.4rem); max-width: 22ch; }
.page-hero .display em { font-style: italic; color: var(--accent); }

.page-hero__eyebrow {
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-hero__eyebrow + .display { margin-top: .8rem; }

.page-hero__lead {
  margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
  max-width: 56ch;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.65;
  color: rgba(247, 245, 241, .76);
}

.page-hero__actions {
  display: flex;
  align-items: center;
  gap: .9rem 1.6rem;
  flex-wrap: wrap;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.page-hero--small { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.page-hero--full { min-height: 72vh; display: flex; align-items: center; }
.page-hero--full .wrap { width: 100%; }

.crumbs { position: relative; z-index: 1; }

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, .5);
}

.crumbs li { display: inline-flex; align-items: center; gap: .55rem; }
.crumbs li + li::before { content: "/"; color: rgba(247, 245, 241, .3); }
.crumbs a { color: rgba(247, 245, 241, .72); transition: color .3s ease; }
.crumbs a:hover { color: var(--accent); }

.hero-stage {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  background: var(--dark);
  color: var(--paper);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -12%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 104, 104, .18), transparent 64%);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(160deg, transparent 35%, #000 100%);
  -webkit-mask-image: linear-gradient(160deg, transparent 35%, #000 100%);
  pointer-events: none;
}

.hero-stage .wrap { position: relative; z-index: 1; }
.hero-stage .hero__meta { color: rgba(247, 245, 241, .6); border-top-color: rgba(255, 255, 255, .14); }
.hero-stage .hero__title { max-width: 20ch; }
.hero-stage .hero__title em { color: var(--accent); }
.hero-stage .hero__lead { color: rgba(247, 245, 241, .76); }
.hero-stage .hero__badge { background: rgba(255, 254, 252, .95); color: var(--ink); }
.hero-stage .hero__quote { background: rgba(255, 254, 252, .97); color: var(--ink); }
.hero-stage .marquee { border-color: rgba(255, 255, 255, .14); margin-bottom: 0; }
.hero-stage .marquee__group span { color: rgba(247, 245, 241, .6); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  border-color: rgba(255, 255, 255, .32);
}

.btn--outline-light:hover {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
  border-color: var(--paper);
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, .5);
}

.scroll-hint i {
  position: relative;
  flex: 0 0 60px;
  height: 1px;
  background: rgba(255, 255, 255, .25);
  overflow: hidden;
}

.scroll-hint i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: hint 2.4s var(--ease) infinite;
  transform: translateX(-100%);
}

@keyframes hint {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.section--dark {
  background: var(--dark);
  color: var(--paper);
}

.section--dark::selection,
.section--dark ::selection { background: var(--accent); color: var(--white); }

.section--dark .eyebrow { color: rgba(247, 245, 241, .55); }
.section--dark .eyebrow__rule { background: rgba(255, 255, 255, .14); }
.section--dark .section-head__lead { color: rgba(247, 245, 241, .68); }
.section--dark .display em { color: var(--accent); }

.section--tight { padding-block: clamp(48px, 7vw, 100px); }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-block: 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--muted);
  white-space: nowrap;
}

.section--dark .trust-strip { border-color: rgba(255, 255, 255, .12); }
.section--dark .trust-strip span { color: rgba(247, 245, 241, .6); }

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.index-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease, background .5s ease, color .5s ease;
}

.index-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 104, 104, .16), transparent 65%);
  opacity: 0;
  transition: opacity .5s ease;
}

.index-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 34px 60px -38px rgba(19, 19, 22, .4);
}

.index-card:hover::after { opacity: 1; }

.index-card__num {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
}

.index-card__title {
  margin-top: 1.2rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.index-card__text {
  margin-top: .8rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--muted);
  padding-right: 2.5rem;
}

.index-card__arrow {
  position: absolute;
  right: clamp(1.2rem, 2.2vw, 1.8rem);
  bottom: clamp(1.2rem, 2.2vw, 1.8rem);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .45s var(--ease), color .45s ease, border-color .45s ease, transform .45s var(--ease);
}

.index-card__arrow svg { width: 15px; height: 15px; }

.index-card:hover .index-card__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.section--dark .index-card {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .12);
  color: var(--paper);
}

.section--dark .index-card:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.section--dark .index-card__text { color: rgba(247, 245, 241, .66); }
.section--dark .index-card:hover .index-card__text { color: var(--muted); }
.section--dark .index-card__arrow { border-color: rgba(255, 255, 255, .18); }
.section--dark .index-card:hover .index-card__arrow { border-color: var(--accent); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split--reverse .split__media { order: 2; }

.split__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--soft);
}

.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body .eyebrow { margin-bottom: 1.4rem; }
.split__body .display { max-width: 18ch; }
.split__body p { margin-top: 1.2rem; max-width: 48ch; }
.split__body .check-list { margin-top: 1.8rem; }
.split__body .link-arrow { margin-top: 1.8rem; }

.section--dark .split__media { background: rgba(255, 255, 255, .06); }
.section--dark .split__body p { color: rgba(247, 245, 241, .72); }

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  font-size: .96rem;
  line-height: 1.55;
  color: var(--ink-2);
}

.check-list__mark {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-2px);
}

.check-list--dark li { color: rgba(247, 245, 241, .78); }

.feature-note {
  margin-top: 1.6rem;
  max-width: 70ch;
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(247, 245, 241, .62);
}

.integration-note {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  max-width: 78ch;
  font-size: .96rem;
  line-height: 1.7;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.intro-grid__text {
  font-size: clamp(1.08rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  letter-spacing: -.015em;
  color: var(--ink-2);
  max-width: 62ch;
}

.intro-grid__text + .intro-grid__text { margin-top: 1.2rem; }

.intro-grid__aside {
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.intro-grid__index {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
}

.intro-grid__label {
  margin-top: 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.intro-grid__title {
  margin-top: .3rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.03em;
}

.intro-grid__short {
  margin-top: .7rem;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--muted);
}

.process__grid {
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
}

.section--dark .step { border-top-color: rgba(255, 255, 255, .16); }
.section--dark .step__num { -webkit-text-stroke-color: rgba(255, 255, 255, .35); }
.section--dark .step__text { color: rgba(247, 245, 241, .68); }

.highlight-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
}

.highlight-band__value {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 550;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--accent);
  white-space: nowrap;
}

.highlight-band__label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.highlight-band__text {
  margin-top: .6rem;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 62ch;
  color: var(--ink-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  transition: background .5s var(--ease), color .5s var(--ease), transform .5s var(--ease);
}

.team-card:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-4px);
}

.team-card__index {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
}

.team-card__role {
  margin-top: 1.4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, .55);
  transition: color .5s ease;
}

.team-card:hover .team-card__role { color: var(--muted); }

.team-card__name {
  margin-top: .35rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -.035em;
}

.team-card__quote {
  margin-top: 1.1rem;
  font-size: .95rem;
  line-height: 1.62;
  color: rgba(247, 245, 241, .72);
  transition: color .5s ease;
}

.team-card:hover .team-card__quote { color: var(--ink-2); }

.wordmark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.wordmark {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  transition: background .5s var(--ease), color .5s var(--ease);
}

.wordmark:hover { background: var(--paper); color: var(--ink); }

.wordmark__index {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
}

.wordmark__name {
  margin-top: .9rem;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -.035em;
}

.wordmark__meta {
  margin-top: .3rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, .5);
  transition: color .5s ease;
}

.wordmark:hover .wordmark__meta { color: var(--muted); }

.wordmark__text {
  margin-top: .9rem;
  font-size: .93rem;
  line-height: 1.6;
  color: rgba(247, 245, 241, .72);
  transition: color .5s ease;
}

.wordmark:hover .wordmark__text { color: var(--ink-2); }

.wordmark__link {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  transition: background .45s var(--ease), color .45s ease, border-color .45s ease, transform .45s var(--ease);
}

.wordmark__link svg { width: 15px; height: 15px; }
.wordmark:hover .wordmark__link { background: var(--accent); border-color: var(--accent); color: var(--white); transform: rotate(45deg); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.package {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease;
}

.package:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 36px 70px -40px rgba(19, 19, 22, .42);
}

.package--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.package--featured .package__text,
.package--featured .package__list li { color: rgba(247, 245, 241, .78); }

.package__flag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.package__index {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
}

.package__name {
  margin-top: 1.1rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -.04em;
}

.package__text {
  margin-top: .8rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--muted);
  min-height: 4.8em;
}

.package__list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .6rem;
}

.package--featured .package__list { border-color: rgba(255, 255, 255, .14); }

.package__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .93rem;
  line-height: 1.55;
  color: var(--ink-2);
}

.package__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.package .btn { margin-top: 1.8rem; justify-content: center; }

.package-note {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: .96rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.field { display: grid; gap: .45rem; }

.field label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-size: .98rem;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.field textarea { resize: vertical; min-height: 130px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(19, 19, 22, .08);
}

.field input:user-invalid,
.field textarea:user-invalid { border-color: var(--accent); }

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.contact-form__hint {
  font-size: .82rem;
  color: var(--muted);
  max-width: 34ch;
}

.contact-form__hint a { text-decoration: underline; }

.contact-form__msg {
  font-size: .92rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transition: opacity .4s ease;
}

.contact-form__msg.is-visible { opacity: 1; }

.contact-aside { display: grid; gap: 1rem; }

.contact-card {
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  display: grid;
  gap: .55rem;
}

.contact-card__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 600;
  transition: color .3s ease, gap .35s var(--ease);
}

.contact-card__link svg { width: 15px; height: 15px; }
.contact-card__link:hover { color: var(--accent); gap: .85rem; }

.contact-card__address {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-2);
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .14);
  filter: grayscale(1) contrast(1.05);
}

.section--dark .map-frame { background: rgba(255, 255, 255, .04); }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.filter-chip {
  padding: .55rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

.filter-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.article {
  max-width: 72ch;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-2);
}

.article > p + p { margin-top: 1.2rem; }
.article > p { margin: 0; }

.article__h2 {
  margin: 2.6rem 0 1rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--ink);
}

.article__cover {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 7.5;
  background: var(--soft);
}

.article__cover img { width: 100%; height: 100%; object-fit: cover; }

.article__end {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.article__cta-text {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}

.article-aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.article--legal { max-width: 78ch; margin-inline: auto; }
.article--legal a { text-decoration: underline; }
.article--legal p { color: var(--ink-2); }

.post__meta--light { color: rgba(247, 245, 241, .62); }
.quote__text--light { color: var(--ink); max-width: 30ch; }
.quote__author--light span { color: var(--muted); }

.why__grid--inline { grid-template-columns: 1fr; margin-top: 2rem; }
.why__grid--inline .why__item { background: transparent; }

.why__grid--dark { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.why__item--dark {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .12);
  color: var(--paper);
}

.why__item--dark .why__text { color: rgba(247, 245, 241, .7); }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2.4rem;
}

.area-tags span {
  padding: .55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--paper-2);
}

.faq {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.faq__item { border-bottom: 1px solid var(--line); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -.015em;
  transition: color .3s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform .4s var(--ease);
}

.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0); }

.faq__body { padding: 0 0 1.5rem; max-width: 78ch; }
.faq__body p { color: var(--muted); line-height: 1.7; }

.section--dark .faq { border-color: rgba(255, 255, 255, .14); }
.section--dark .faq__item { border-color: rgba(255, 255, 255, .14); }
.section--dark .faq__body p { color: rgba(247, 245, 241, .68); }

.marquee--stage {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-color: rgba(255, 255, 255, .14);
}

.marquee--stage .marquee__group span { color: rgba(247, 245, 241, .55); }

.project__media--wordmark {
  display: grid;
  place-items: center;
  background: var(--soft);
}

.project__media--wordmark span {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.045em;
  color: rgba(19, 19, 22, .22);
  text-align: center;
  padding: 1rem;
}

@media (max-width: 1080px) {
  .index-grid,
  .why__grid--dark,
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

@media (max-width: 900px) {
  .index-grid,
  .package-grid,
  .wordmark-grid,
  .why__grid--dark { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .article-aside { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .highlight-band { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .page-hero .display { max-width: none; }
}

@media (max-width: 640px) {
  .display--xl { letter-spacing: -.03em; }
  .index-card { min-height: 0; }
  .article { font-size: 1rem; }
  .article__cover { aspect-ratio: 4 / 3; }
  .scroll-hint { display: none; }
}
