:root {
  --bg: #0b0b0b;
  --bg-soft: #101010;
  --card: #161616;
  --card-alt: #1c1c1c;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --muted: #8d8d8d;
  --muted-soft: #a9a9a9;
  --orange: #ff5a17;
  --amber: #f5b32b;
  --blue: #2f3df0;
  --blue-bright: #4a55ff;
  --ink: #0b0b0b;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius: 13px;
  --radius-sm: 9px;
  --container: 1240px;
  --gutter: 22px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-display: "Archivo", "Arial Narrow", Helvetica, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 88%;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.005em;
  margin: 0;
}

p { margin: 0; }

ul { list-style: none; margin: 0; padding: 0; }

button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 5vw, 52px);
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  will-change: opacity, transform;
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 88%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 20px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 8px 7px 20px;
  border-radius: 999px;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn > * { position: relative; z-index: 1; }

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: transform 0.45s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: scale(1); }

.btn__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn__icon { transform: translateX(3px); }

.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 10px 26px -14px rgba(47, 61, 240, 0.9); }
.btn--blue:hover { box-shadow: 0 16px 34px -14px rgba(47, 61, 240, 0.95); }
.btn--amber { background: var(--amber); color: var(--ink); }
.btn--dark { background: var(--card-alt); color: var(--white); border: 1px solid var(--line); }
.btn--dark .btn__icon { background: var(--white); color: var(--ink); }

.btn--sm {
  padding: 9px 18px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.round-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.round-btn:hover { transform: translateY(-2px); background: var(--card-alt); }
.round-btn--blue { background: var(--blue); border-color: var(--blue); }
.round-btn--blue:hover { background: var(--blue-bright); }

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-stuck {
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px -24px rgba(0, 0, 0, 0.9);
}

.header .logo { font-size: clamp(15px, 2.1vw, 19px); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  color: var(--muted-soft);
}

.nav__list a {
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__list a:hover { color: var(--white); }
.nav__list a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 40px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  padding: 9px 10px;
  flex-direction: column;
  justify-content: space-between;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  padding: 46px 0 0;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero__glow--a {
  width: 460px;
  height: 460px;
  top: -180px;
  left: -120px;
  background: rgba(255, 90, 23, 0.11);
  animation: float-a 18s ease-in-out infinite;
}

.hero__glow--b {
  width: 380px;
  height: 380px;
  top: 40px;
  right: -140px;
  background: rgba(47, 61, 240, 0.13);
  animation: float-b 22s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(40px, 34px, 0); }
}

@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-46px, 30px, 0); }
}

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

.hero__top {
  display: grid;
  gap: 30px;
  align-items: start;
  padding-bottom: 34px;
}

.hero__title {
  font-size: clamp(32px, 5.6vw, 60px);
  letter-spacing: -0.012em;
}

.hero__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

.hero__lead {
  color: var(--muted-soft);
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 40ch;
}

.socials { display: flex; gap: 8px; }

.socials a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.socials a:hover { transform: translateY(-3px); background: var(--blue-bright); }

.hero__media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--card);
}

.hero__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  animation: ken-burns 26s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1.5%, -1%, 0); }
}

.pillars {
  display: grid;
  gap: 26px;
  padding: 34px 0 66px;
}

.pillar__title {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.pillar p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
  max-width: 30ch;
}

.statement {
  position: relative;
  padding: 70px 0 90px;
  text-align: center;
  overflow: hidden;
}

.statement__text {
  font-size: clamp(19px, 2.6vw, 33px);
  line-height: 1.42;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.statement__arrow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.statement__arrow--ghost {
  top: 22px;
  right: 6%;
  width: 120px;
  color: rgba(255, 255, 255, 0.05);
}

.statement__arrow--solid {
  left: 6%;
  bottom: 24px;
  width: 130px;
  color: var(--blue);
  opacity: 0.9;
}

.statement .container { position: relative; z-index: 1; }

.services { padding: 20px 0 80px; }

.services__head {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.services__intro {
  color: var(--muted);
  font-size: 13px;
  max-width: 46ch;
}

.services__cta { justify-self: start; }

.cards {
  display: grid;
  gap: 14px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  min-height: 208px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  background: var(--card-alt);
  box-shadow: 0 26px 44px -30px rgba(0, 0, 0, 0.95);
}

.card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 88%;
  font-size: 30px;
  line-height: 1;
  color: var(--white);
}

.card__title {
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.card--featured {
  background: var(--orange);
  border-color: transparent;
  box-shadow: 0 26px 50px -30px rgba(255, 90, 23, 0.8);
}

.card--featured:hover { background: #ff6a2c; }
.card--featured .card__num { color: var(--ink); }
.card--featured .card__title { color: var(--white); }
.card--featured p { color: rgba(255, 255, 255, 0.88); }

.pricing { padding: 20px 0 80px; }

.pricing__head {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.pricing__intro {
  color: var(--muted);
  font-size: 13px;
  max-width: 62ch;
}

.tiers { display: grid; gap: 14px; }

.tier {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 26px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.tier:hover {
  transform: translateY(-6px);
  background: var(--card-alt);
  box-shadow: 0 26px 44px -30px rgba(0, 0, 0, 0.95);
}

.tier__label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.tier__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 88%;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.01em;
}

.tier__per {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.tier__note {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.tier__list {
  display: grid;
  gap: 9px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.tier__list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted-soft);
  font-size: 12.5px;
  line-height: 1.55;
}

.tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.tier--featured {
  background: var(--orange);
  border-color: transparent;
  box-shadow: 0 26px 50px -30px rgba(255, 90, 23, 0.8);
}

.tier--featured:hover { background: #ff6a2c; }
.tier--featured .tier__label { color: rgba(255, 255, 255, 0.85); }
.tier--featured .tier__note { color: rgba(255, 255, 255, 0.88); }
.tier--featured .tier__per { color: rgba(255, 255, 255, 0.85); }
.tier--featured .tier__list { border-top-color: rgba(255, 255, 255, 0.28); }
.tier--featured .tier__list li { color: rgba(255, 255, 255, 0.92); }
.tier--featured .tier__list li::before { background: var(--ink); }

.pricing__note {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
  max-width: 66ch;
  margin-top: 22px;
}

.why { padding: 20px 0 80px; }

.why__title { max-width: 32ch; margin-bottom: 16px; }

.why__intro {
  color: var(--muted);
  font-size: 13px;
  max-width: 62ch;
  margin-bottom: 34px;
}

.why__grid {
  display: grid;
  gap: 34px;
  align-items: start;
}

.why__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
}

.why__media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s var(--ease);
}

.why__badge {
  position: absolute;
  left: -8px;
  bottom: -8px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--blue);
  border: 8px solid var(--bg);
  display: grid;
  place-items: center;
  color: var(--white);
}

.why__badge > * { grid-area: 1 / 1; }

.why__badge-ring {
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}

.why__badge-ring text {
  font-family: var(--font-body);
  font-size: 9.4px;
  font-weight: 700;
  letter-spacing: 0.06em;
  fill: currentColor;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.reasons { display: grid; gap: 0; }

.reason {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}

.reason:first-child { border-top: 0; padding-top: 0; }
.reason:hover { transform: translateX(4px); }

.reason__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.reason p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.testimonials { padding: 20px 0 80px; }

.testimonials__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.testimonials__nav { display: flex; gap: 10px; }

.quotes {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.quotes::-webkit-scrollbar { display: none; }

.quote {
  position: relative;
  flex: 0 0 82%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 250px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}

.quote:hover { transform: translateY(-6px); background: var(--card-alt); }

.quote__tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.quote__mark {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.5;
  color: var(--white);
}

.quote__mark--end { align-self: flex-end; margin-top: auto; }

.quote__text {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.quote__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 88%;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
  margin-top: auto;
}

.cta { padding: 20px 0 80px; }

.cta__box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  background: var(--card);
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 0.9s var(--ease);
}

.cta__box:hover .cta__bg { transform: scale(1.07); }

.cta__box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.34) 0%, rgba(9, 9, 9, 0.74) 100%);
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 54px 24px 50px;
}

.cta__title {
  font-size: clamp(22px, 3.6vw, 38px);
  line-height: 1.12;
  max-width: 26ch;
  text-wrap: balance;
}

.cta__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.blog { padding: 20px 0 80px; }

.blog__head {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

.blog__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

.blog__aside p {
  color: var(--muted);
  font-size: 13px;
  max-width: 42ch;
}

.posts { display: grid; gap: 16px; }

.post {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.post:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -30px rgba(0, 0, 0, 0.95);
}

.post__media {
  margin: 0;
  overflow: hidden;
  flex: 1;
}

.post__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.post:hover .post__media img { transform: scale(1.06); }

.post__body { padding: 14px 16px 18px; }

.post__meta {
  display: flex;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.post__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: -0.01em;
}

.post--featured .post__body { background: var(--orange); }
.post--featured .post__meta { color: rgba(255, 255, 255, 0.85); }
.post--featured .post__title { color: var(--white); }

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding-top: 52px;
}

.footer__grid {
  display: grid;
  gap: 36px;
  padding-bottom: 44px;
}

.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

.footer__tagline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
}

.footer__text {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
  max-width: 38ch;
}

.footer__heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__col ul { display: grid; gap: 9px; }

.footer__col a,
.footer__col li {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.footer__col a { transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11.5px;
}

.footer__bottom a { transition: color 0.25s var(--ease); }
.footer__bottom a:hover { color: var(--amber); }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  z-index: 90;
}

.legal { padding: 44px 0 70px; }

.legal__head { margin-bottom: 34px; }

.legal__title { font-size: clamp(30px, 6vw, 58px); margin-bottom: 14px; }

.legal__updated {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal__lead {
  color: var(--muted-soft);
  font-size: 14px;
  line-height: 1.7;
  max-width: 68ch;
  margin-top: 16px;
}

.legal__layout { display: grid; gap: 34px; align-items: start; }

.toc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 20px;
}

.toc h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
}

.toc a { transition: color 0.25s var(--ease); }
.toc a:hover { color: var(--orange); }

.legal__body { display: grid; gap: 34px; max-width: 74ch; }

.legal__section { scroll-margin-top: 96px; }

.legal__section h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.legal__section h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  text-transform: none;
  letter-spacing: 0;
  margin: 18px 0 8px;
}

.legal__section p,
.legal__section li {
  color: var(--muted-soft);
  font-size: 13.5px;
  line-height: 1.72;
}

.legal__section p + p,
.legal__section ul + p,
.legal__section div + p { margin-top: 14px; }

.legal__section ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
  display: grid;
  gap: 7px;
}

.legal__section a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 13px;
}

.legal__table th,
.legal__table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--muted-soft);
}

.legal__table th { color: var(--white); font-weight: 700; }

.legal__scroll { overflow-x: auto; }

@media (min-width: 640px) {
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 26px 22px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .quote { flex: 0 0 52%; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  :root { --gutter: 30px; }

  .hero { padding-top: 58px; }
  .hero__top { grid-template-columns: 1.55fr 1fr; gap: 50px; padding-bottom: 42px; }
  .hero__aside { align-items: flex-start; padding-top: 10px; }
  .hero__media img { aspect-ratio: 2.4 / 1; }

  .pillars { grid-template-columns: repeat(4, 1fr); padding: 44px 0 80px; }

  .statement { padding: 96px 0 120px; }
  .statement__arrow--ghost { width: 190px; top: 40px; }
  .statement__arrow--solid { width: 175px; bottom: 40px; }

  .services__head {
    grid-template-columns: 1.35fr 1fr;
    grid-template-areas: "title cta" "intro cta";
    align-items: start;
    column-gap: 40px;
  }
  .services__head .section-title { grid-area: title; max-width: 16ch; }
  .services__intro { grid-area: intro; }
  .services__cta { grid-area: cta; justify-self: end; align-self: end; }

  .cards { grid-template-columns: repeat(3, 1fr); }
  .tiers { grid-template-columns: repeat(3, 1fr); gap: 18px; }

  .pricing__head {
    grid-template-columns: 1fr 1.25fr;
    align-items: end;
    column-gap: 40px;
  }

  .why__grid { grid-template-columns: 1fr 1.15fr; gap: 56px; }
  .why__media { position: sticky; top: 96px; }

  .quote { flex: 0 0 calc(25% - 11px); }

  .blog__head { grid-template-columns: 1.2fr 1fr; align-items: end; column-gap: 40px; }
  .blog__aside { align-items: flex-end; text-align: right; }

  .posts { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .post--featured .post__media img { aspect-ratio: 4 / 2.6; }

  .footer__grid { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }

  .legal__layout { grid-template-columns: 260px 1fr; gap: 56px; }
  .toc { position: sticky; top: 96px; }
}

@media (max-width: 899px) {
  .statement__arrow--solid {
    width: 92px;
    left: 2%;
    bottom: 10px;
    opacity: 0.5;
  }

  .statement__arrow--ghost { width: 96px; right: 3%; }

  .nav {
    position: fixed;
    inset: 66px 0 auto 0;
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0 var(--gutter);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }

  .nav.is-open { max-height: 70vh; }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 0 22px;
    font-size: 17px;
  }

  .nav__list a { display: block; padding: 10px 0; color: var(--white); }

  .burger { display: flex; }
}

@media (max-width: 540px) {
  .header__actions .btn--sm { display: none; }
}

@media (max-width: 460px) {
  .cta__inner { padding: 40px 18px 38px; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal { opacity: 1; transform: none; }
  .hero__media img,
  .why__badge-ring,
  .hero__glow { animation: none; }
}
