:root {
  --ink: #17161d;
  --muted: #68656f;
  --paper: #ffffff;
  --white: #ffffff;
  --line: rgba(20, 18, 28, 0.12);
  --line-soft: rgba(20, 18, 28, 0.07);
  --violet: #0b2a78;
  --violet-2: #174ea6;
  --accent: #2459d6;
  --accent-dark: #061844;
  --accent-hot: #5d96ff;
  --teal: #4dbbaa;
  --blue: #4f8dff;
  --rose: #b9d1ff;
  --night: #020817;
  --night-2: #061844;
  --shadow: 0 18px 45px rgba(8, 6, 22, 0.18);
  --font-display: "Big Shoulders Display", Impact, "Arial Narrow", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 96px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }

  html.has-custom-cursor input,
  html.has-custom-cursor textarea,
  html.has-custom-cursor select {
    cursor: text !important;
  }

  .custom-cursor {
    align-items: center;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(36, 89, 214, 0.72);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    height: 28px;
    justify-content: center;
    left: 0;
    mix-blend-mode: normal;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate3d(-50%, -50%, 0);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease,
      height 180ms ease, opacity 180ms ease, width 180ms ease;
    width: 28px;
    z-index: 120;
  }

  .custom-cursor::before {
    display: none;
  }

  .custom-cursor span {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    opacity: 0;
    text-transform: uppercase;
    transform: scale(0.8);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  html.has-custom-cursor body.cursor-ready .custom-cursor {
    opacity: 1;
  }

  body.cursor-hover .custom-cursor {
    background: rgba(36, 89, 214, 0.1);
    border-color: rgba(36, 89, 214, 0.9);
    box-shadow: 0 0 0 7px rgba(36, 89, 214, 0.07), 0 14px 32px rgba(36, 89, 214, 0.16);
    height: 48px;
    width: 48px;
  }

  body.cursor-label .custom-cursor {
    background: linear-gradient(135deg, var(--blue), var(--accent-dark));
    border-color: rgba(36, 89, 214, 0.2);
    box-shadow: 0 18px 42px rgba(36, 89, 214, 0.28);
    height: 76px;
    width: 76px;
  }

  body.cursor-label .custom-cursor::before {
    opacity: 0;
  }

  body.cursor-label .custom-cursor span {
    opacity: 1;
    transform: scale(1);
  }
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  background: var(--paper);
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(70px, 1fr) auto minmax(120px, 1fr);
  height: 84px;
  left: 0;
  padding: 0 20px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.site-header::before {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 18, 28, 0.05);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease,
    opacity 280ms ease;
}

.site-header.is-scrolled::before,
body.menu-open .site-header::before {
  opacity: 1;
}

body.menu-open .site-header::before {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(36, 89, 214, 0.18);
  box-shadow: 0 18px 55px rgba(2, 8, 23, 0.12);
}

.brand,
.local-time,
.menu-button {
  position: relative;
  z-index: 1;
}

.brand {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  width: clamp(230px, 28vw, 410px);
}

.brand img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.local-time {
  justify-self: end;
  text-align: right;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .local-time {
    transform: none;
  }
}

.local-time span {
  display: block;
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  height: 48px;
  justify-content: center;
  padding: 0;
  transition: background 220ms ease, box-shadow 220ms ease;
  width: 60px;
}

.menu-button:focus-visible {
  outline: 2px solid rgba(36, 89, 214, 0.42);
  outline-offset: 5px;
}

.menu-button span {
  background: var(--accent-dark);
  display: block;
  height: 3px;
  transform-origin: center;
  transition: background 260ms ease, transform 260ms ease, width 260ms ease;
  width: 58px;
}

body.menu-open .menu-button {
  background: rgba(36, 89, 214, 0.08);
  box-shadow: inset 0 0 0 1px rgba(36, 89, 214, 0.22);
}

body.menu-open .menu-button span:first-child {
  transform: translateY(7.5px) rotate(18deg);
}

body.menu-open .menu-button span:last-child {
  transform: translateY(-7.5px) rotate(-18deg);
}

.menu-panel {
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(93, 150, 255, 0.12) 1px, transparent 1px) 0 0 / 82px 82px,
    linear-gradient(180deg, #061844 0%, #020817 70%);
  color: var(--white);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  overflow-y: auto;
  padding: 108px clamp(18px, 4vw, 64px) 34px;
  pointer-events: none;
  position: fixed;
  transform: translateY(-14px);
  transition: opacity 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 360ms;
  visibility: hidden;
  z-index: 20;
}

.menu-panel::before {
  background:
    linear-gradient(135deg, rgba(93, 150, 255, 0.22), transparent 34%),
    linear-gradient(315deg, rgba(77, 187, 170, 0.16), transparent 30%);
  content: "";
  inset: 84px 0 0;
  opacity: 0.74;
  pointer-events: none;
  position: absolute;
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s;
  visibility: visible;
}

.menu-panel-inner {
  align-content: start;
  align-items: start;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  padding-top: clamp(28px, 6vh, 72px);
  position: relative;
  width: min(820px, 100%);
  z-index: 1;
}

.menu-link-stack {
  display: grid;
  gap: clamp(0.22rem, 1.2vh, 0.78rem);
  justify-items: start;
}

.menu-link-stack a {
  color: rgba(255, 255, 255, 0.96);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, min(8.4vw, 10vh), 8.4rem);
  font-weight: 900;
  line-height: 0.76;
  opacity: 0;
  position: relative;
  transform: translateY(22px);
  text-transform: uppercase;
  transition: color 220ms ease, opacity 320ms ease, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-link-stack a::after {
  background: currentColor;
  bottom: 0.04em;
  content: "";
  height: 0.08em;
  left: 0;
  opacity: 0.42;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
  width: 100%;
}

.menu-panel.is-open .menu-link-stack a {
  opacity: 1;
  transform: translateY(0);
}

.menu-panel.is-open .menu-link-stack a:nth-child(1) {
  transition-delay: 80ms;
}

.menu-panel.is-open .menu-link-stack a:nth-child(2) {
  transition-delay: 120ms;
}

.menu-panel.is-open .menu-link-stack a:nth-child(3) {
  transition-delay: 160ms;
}

.menu-panel.is-open .menu-link-stack a:nth-child(4) {
  transition-delay: 200ms;
}

.menu-panel.is-open .menu-link-stack a:nth-child(5) {
  transition-delay: 240ms;
}

.menu-panel.is-open .menu-link-stack a:nth-child(6) {
  transition-delay: 280ms;
}

.menu-panel.is-open .menu-link-stack a:nth-child(7) {
  transition-delay: 320ms;
}

.menu-link-stack a:hover {
  color: #9fbdff;
  transform: translateX(8px);
}

.menu-link-stack a:hover::after {
  transform: scaleX(1);
}

.hero {
  height: 238vh;
  position: relative;
}

.hero-stage {
  align-items: center;
  display: flex;
  height: 100svh;
  justify-content: center;
  min-height: 680px;
  overflow: hidden;
  position: sticky;
  top: 0;
}

.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  max-width: 1060px;
  min-width: 0;
  padding: 118px 20px 72px;
  position: relative;
  text-align: center;
  transition: opacity 160ms ease-out, transform 160ms ease-out;
  width: min(100%, 1080px);
  z-index: 3;
}

.hero h1,
.section h2,
.horizontal-copy h2,
.site-footer h2,
.team-body h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(5.4rem, 8.55vw, 8rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 1050px;
  width: 100%;
}

.hero h1 span {
  display: block;
}

.hero p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  margin: 28px auto 28px;
  max-width: 700px;
  width: 100%;
}

.primary-button,
.ghost-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  max-width: 100%;
  min-height: 58px;
  overflow: hidden;
  padding: 0 28px 0 32px;
  position: relative;
  text-align: center;
  transition: box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
  white-space: nowrap;
}

.primary-button {
  background: linear-gradient(145deg, var(--accent-hot), var(--accent) 45%, var(--accent-dark));
  box-shadow: 0 16px 34px rgba(36, 89, 214, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.primary-button::before {
  display: none;
}

.primary-button span,
.primary-button svg,
.ghost-button span,
.ghost-button svg {
  position: relative;
  z-index: 1;
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-3px);
}

.primary-button:hover {
  box-shadow: 0 20px 44px rgba(36, 89, 214, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.primary-button svg,
.ghost-button svg {
  flex: 0 0 auto;
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 24px;
}

.primary-button svg {
  animation: ctaArrow 1.35s ease-in-out infinite;
}

.ghost-button {
  border: 1px solid rgba(23, 22, 29, 0.18);
  color: var(--ink);
}

.float-card {
  background: #061844;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(36, 89, 214, 0.18), 0 18px 46px rgba(6, 24, 68, 0.12);
  left: 50%;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.88);
  transform-origin: center;
  transition: opacity 180ms ease-out, transform 180ms ease-out;
  width: clamp(120px, 16vw, 230px);
  z-index: 2;
}

.float-card img {
  aspect-ratio: 1.18;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.float-card-b img {
  object-position: center top;
}

.float-card-e img {
  object-position: 42% center;
}

.float-card-b,
.float-card-d {
  width: clamp(150px, 20vw, 300px);
}

.float-card-c,
.float-card-e {
  width: clamp(96px, 10vw, 150px);
}

.section,
.horizontal-stage,
.site-footer {
  position: relative;
}

main > section,
.site-footer {
  scroll-margin-top: 96px;
}

.section {
  display: grid;
  gap: clamp(24px, 4vw, 60px);
  grid-template-columns: clamp(170px, 25vw, 320px) minmax(0, 1fr);
  padding: clamp(92px, 12vw, 168px) 20px;
}

.section > *,
.horizontal-stage > *,
.footer-top > *,
.footer-links > * {
  min-width: 0;
}

.section-label {
  align-items: center;
  align-self: start;
  color: var(--ink);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 10px;
  position: sticky;
  top: 132px;
  z-index: 3;
}

.label-icon {
  background: var(--ink);
  border-radius: 50%;
  display: inline-block;
  height: 32px;
  position: relative;
  width: 32px;
}

.label-icon::before,
.label-icon::after {
  background: var(--white);
  border-radius: 999px;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.label-icon::before {
  height: 15px;
  width: 3px;
}

.label-icon::after {
  height: 3px;
  width: 15px;
}

.light-label {
  color: rgba(255, 255, 255, 0.86);
}

.light-label .label-icon {
  background: var(--white);
}

.light-label .label-icon::before,
.light-label .label-icon::after {
  background: var(--night);
}

.section-body {
  max-width: 880px;
  width: min(100%, 880px);
}

.section-body h2,
.testimonial-stage h2,
.pricing-body h2,
.seo-body h2,
.systems-body h2,
.team-body h2 {
  font-size: clamp(4rem, 8.5vw, 8rem);
}

.about-section {
  padding-top: clamp(120px, 16vw, 230px);
}

.metric-row {
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
}

.metric-row div {
  border-right: 1px solid var(--line-soft);
  padding: 34px 40px 30px 0;
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 7vw, 7.5rem);
  line-height: 0.9;
}

.metric-row span,
.logo-cloud span,
.section-body p {
  color: var(--muted);
}

.logo-cloud {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 38px;
}

.logo-cloud span {
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  display: flex;
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
  min-height: 74px;
  opacity: 0.62;
  text-transform: lowercase;
}

.horizontal-section {
  min-height: 100svh;
  position: relative;
}

.horizontal-stage {
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  padding: 96px 0 72px;
  position: sticky;
  top: 0;
}

.horizontal-label {
  left: 20px;
  position: absolute;
  top: 132px;
}

.horizontal-copy {
  --horizontal-copy-left: clamp(250px, 33vw, 420px);
  margin-left: var(--horizontal-copy-left);
  max-width: min(820px, calc(100vw - var(--horizontal-copy-left) - 40px));
  padding-right: 20px;
  width: auto;
}

.horizontal-copy h2 {
  color: rgba(23, 22, 29, 0.52);
  font-size: clamp(4.4rem, 9vw, 8.8rem);
}

.h-track {
  backface-visibility: hidden;
  display: flex;
  gap: 20px;
  margin-top: clamp(60px, 9vh, 86px);
  padding-left: 20px;
  padding-right: 20px;
  transform-style: preserve-3d;
  transform: translate3d(var(--track-x, 0), 0, 0);
  transition: transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.projects-section .horizontal-stage {
  padding-bottom: clamp(38px, 6vh, 60px);
  padding-top: clamp(78px, 8vh, 94px);
}

.projects-section .horizontal-copy h2 {
  font-size: clamp(3.8rem, 7.5vw, 7.2rem);
}

.projects-section .horizontal-copy {
  max-width: min(1540px, calc(100vw - var(--horizontal-copy-left) - 40px));
}

.projects-section .h-track {
  margin-top: clamp(24px, 4vh, 42px);
}

@media (min-width: 1500px) {
  .projects-section .h-track,
  .insights-section .h-track {
    padding-left: clamp(36px, 3vw, 64px);
    padding-right: clamp(36px, 3vw, 64px);
  }
}

.project-card,
.insight-card {
  flex: 0 0 clamp(320px, 35vw, 470px);
}

.projects-section .project-card {
  flex-basis: clamp(300px, 31vw, 430px);
}

.project-card {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  min-width: 0;
  padding: 0;
  position: relative;
  text-align: left;
}

.project-card img,
.insight-card img {
  aspect-ratio: 1 / 0.9;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  transition: filter 250ms ease, transform 250ms ease;
  width: 100%;
}

.project-card img {
  aspect-ratio: 1440 / 980;
  background: #f1f4f9;
  border: 1px solid rgba(20, 18, 28, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  max-height: none;
  object-fit: contain;
  object-position: top center;
}

.project-card:hover img,
.insight-card:hover img,
.team-grid article:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: translateY(-5px);
}

.project-card h3,
.insight-card h3,
.price-card h3,
.why-grid h3,
.team-grid h3,
.accordion-item button {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.project-card h3 {
  display: block;
  font-size: clamp(2.35rem, 3.3vw, 3.5rem);
  margin-top: 18px;
}

.project-card p {
  color: var(--muted);
  display: block;
  font-size: 1.1rem;
  margin: 6px 0 0;
}

.project-card-action {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 40px;
  opacity: 0;
  padding: 0 14px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 14px;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.project-card:hover .project-card-action,
.project-card:focus-visible .project-card-action {
  opacity: 1;
  transform: translateY(0);
}

.project-card:focus-visible {
  outline: 3px solid rgba(36, 89, 214, 0.52);
  outline-offset: 8px;
}

.project-modal[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.project-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: clamp(14px, 2.4vw, 30px);
  position: fixed;
  z-index: 80;
}

.project-modal-backdrop {
  background: rgba(2, 8, 23, 0.64);
  backdrop-filter: blur(16px);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 260ms ease;
}

.project-modal-dialog {
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.96) 0%, #ffffff 36%),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  box-shadow: 0 34px 90px rgba(2, 8, 23, 0.34);
  color: var(--ink);
  display: block;
  gap: 0;
  grid-template-columns: 1fr;
  max-height: min(760px, calc(100svh - 48px));
  max-width: 760px;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform: translateY(22px) scale(0.985);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  width: min(100%, 760px);
  z-index: 1;
}

.project-modal-dialog::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
  z-index: 2;
}

.project-modal.is-open .project-modal-backdrop {
  opacity: 1;
}

.project-modal.is-open .project-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-modal-close {
  align-items: center;
  background: var(--night);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  width: 42px;
  z-index: 3;
}

.project-modal-close:hover {
  background: var(--accent);
  box-shadow: 0 16px 32px rgba(36, 89, 214, 0.22);
  transform: translateY(-2px);
}

.project-modal-close svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
  width: 24px;
}

.project-modal-content {
  display: flex;
  flex-direction: column;
  max-height: min(760px, calc(100svh - 48px));
  min-width: 0;
  overflow-y: auto;
  padding: clamp(26px, 4vw, 48px);
  padding-right: clamp(64px, 6vw, 78px);
}

.project-modal-topline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.project-modal-kicker {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-modal-domain {
  background: rgba(36, 89, 214, 0.08);
  border: 1px solid rgba(36, 89, 214, 0.14);
  border-radius: 999px;
  color: rgba(23, 22, 29, 0.72);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 850;
  padding: 7px 10px;
}

.project-modal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8.2vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.78;
  margin: 0 0 18px;
  max-width: 620px;
  text-transform: uppercase;
}

.project-modal-summary {
  color: rgba(23, 22, 29, 0.66);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.55;
  margin: 0;
  max-width: 650px;
}

.project-modal-focus {
  border-bottom: 1px solid rgba(23, 22, 29, 0.1);
  border-top: 1px solid rgba(23, 22, 29, 0.1);
  margin: 24px 0 22px;
  padding: 18px 0;
}

.project-modal-focus span,
.project-modal-features > span {
  color: rgba(23, 22, 29, 0.54);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.project-modal-focus p {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.35;
  margin: 0;
}

.project-modal-features > span {
  margin-bottom: 12px;
}

.project-modal-features ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.project-modal-features li {
  border-top: 1px solid rgba(23, 22, 29, 0.08);
  color: rgba(23, 22, 29, 0.76);
  font-weight: 760;
  line-height: 1.45;
  padding: 13px 0 13px 28px;
  position: relative;
}

.project-modal-features li:last-child {
  border-bottom: 1px solid rgba(23, 22, 29, 0.08);
}

.project-modal-features li::before {
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(36, 89, 214, 0.09);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 19px;
  width: 7px;
}

.project-modal-link {
  margin: 0 0 24px;
  width: fit-content;
}

.services-section {
  background: var(--night);
  border-radius: 34px 34px 0 0;
  color: var(--white);
  margin-top: 32px;
  padding-bottom: clamp(120px, 14vw, 190px);
  padding-top: clamp(70px, 7.5vw, 112px);
}

.service-panel {
  max-width: 100%;
  width: 100%;
}

.service-heading {
  display: block;
  margin-bottom: clamp(34px, 4.2vw, 58px);
}

.service-heading h2 {
  font-size: clamp(4.8rem, 8.4vw, 8.3rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  text-align: center;
}

.service-heading p {
  display: none;
  align-self: end;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}

.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.accordion-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  display: flex;
  font-size: clamp(3.2rem, 5.2vw, 6rem);
  justify-content: space-between;
  padding: 28px 0 20px;
  text-align: left;
  width: 100%;
}

.accordion-item i {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  display: block;
  height: 60px;
  position: relative;
  width: 60px;
}

.accordion-item i::before,
.accordion-item i::after {
  background: var(--white);
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 22px;
}

.accordion-item i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.active i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-content {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1180ms cubic-bezier(0.16, 1, 0.3, 1), padding 1180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-content {
  max-height: 720px;
  padding-bottom: 44px;
}

.accordion-content p,
.accordion-content li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.6;
}

.accordion-content p {
  display: none;
}

.accordion-content ul {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.accordion-content li {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 18px;
}

.accordion-content li::after {
  background: rgba(255, 255, 255, 0.18);
  content: "";
  flex: 1;
  height: 1px;
  min-width: 24px;
}

.accordion-content img {
  aspect-ratio: 16 / 4.8;
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
}

.testimonials-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  padding-bottom: clamp(76px, 8vw, 112px);
  padding-top: clamp(104px, 9vw, 126px);
}

.testimonial-stage {
  max-width: 1040px;
  position: relative;
  text-align: left;
}

.testimonial-stage h2 {
  font-size: clamp(3.9rem, 6.4vw, 6.5rem);
  max-width: 1000px;
}

.testimonial-carousel {
  margin-top: clamp(26px, 3vw, 42px);
  outline: 0;
  position: relative;
}

.testimonial-viewport {
  overflow: hidden;
  padding: 4px;
  touch-action: pan-y;
}

.testimonial-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 680ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 18, 28, 0.09);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(6, 24, 68, 0.1);
  display: grid;
  flex: 0 0 100%;
  gap: clamp(20px, 3.6vw, 38px);
  grid-template-columns: 142px minmax(0, 1fr);
  grid-template-areas:
    "photo quote"
    "photo author";
  min-height: 348px;
  min-width: 0;
  opacity: 0.28;
  padding: clamp(26px, 4vw, 46px);
  transform: translateY(22px) scale(0.985);
  transition: opacity 520ms ease, transform 680ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonial-card img {
  aspect-ratio: 1;
  border: 1px solid rgba(36, 89, 214, 0.16);
  border-radius: 24px;
  grid-area: photo;
  height: 142px;
  object-fit: cover;
  transition: transform 680ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 520ms ease;
  width: 142px;
}

.testimonial-card.is-active img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
}

.testimonial-card p {
  color: #26242d;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 1.85vw, 1.95rem);
  font-weight: 760;
  grid-area: quote;
  line-height: 1.24;
  margin: 0;
  max-width: 760px;
}

.testimonial-card div {
  align-self: end;
  border-top: 1px solid rgba(20, 18, 28, 0.1);
  grid-area: author;
  padding-top: 18px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  font-size: 1.06rem;
  margin-bottom: 7px;
}

.testimonial-card span {
  color: var(--muted);
}

.testimonial-status {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  margin-top: 18px;
}

.testimonial-dots {
  display: inline-flex;
  gap: 9px;
}

.testimonial-dots button {
  background: rgba(23, 22, 29, 0.18);
  border: 0;
  border-radius: 999px;
  height: 8px;
  padding: 0;
  transition: background 260ms ease, transform 260ms ease, width 260ms ease;
  width: 8px;
}

.testimonial-dots button.is-active {
  background: var(--accent);
  transform: translateY(-1px);
  width: 34px;
}

.testimonial-progress {
  background: rgba(23, 22, 29, 0.12);
  border-radius: 999px;
  height: 2px;
  overflow: hidden;
  width: min(180px, 26vw);
}

.testimonial-progress span {
  animation: testimonialProgress 6.5s linear infinite;
  background: var(--accent);
  display: block;
  height: 100%;
  transform-origin: left center;
  width: 100%;
}

.testimonial-carousel.is-paused .testimonial-progress span {
  animation-play-state: paused;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  right: 4px;
  position: absolute;
  top: -66px;
}

.carousel-controls button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
  width: 52px;
}

.carousel-controls button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.carousel-controls svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 25px;
}

.why-section {
  padding-top: 56px;
}

.why-grid {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 0 0 30px 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.why-grid article {
  min-height: 280px;
  padding: clamp(30px, 5vw, 60px);
}

.why-grid article:nth-child(odd) {
  border-right: 1px dashed var(--line);
}

.why-grid article:nth-child(-n + 2) {
  border-bottom: 1px dashed var(--line);
}

.why-grid svg {
  fill: none;
  height: 56px;
  margin-bottom: 42px;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 56px;
}

.why-grid h3 {
  font-size: clamp(2.3rem, 3.7vw, 4rem);
}

.why-grid p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 430px;
}

.systems-section {
  background: var(--paper);
  padding-top: clamp(84px, 10vw, 132px);
}

.systems-body {
  max-width: 1100px;
}

.systems-intro {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 780px;
}

.systems-grid {
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
}

.systems-grid article {
  min-height: 285px;
  padding: clamp(26px, 3.5vw, 38px) clamp(20px, 2.6vw, 32px);
}

.systems-grid article + article {
  border-left: 1px dashed var(--line);
}

.systems-grid span {
  color: var(--accent);
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 48px;
}

.systems-grid h3 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.systems-grid p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 18px 0 0;
}

.systems-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.systems-flow span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(23, 22, 29, 0.72);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  min-height: 42px;
  padding: 0 16px;
}

.seo-section {
  padding-top: 72px;
}

.seo-body {
  max-width: 1040px;
}

.seo-intro {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 760px;
}

.seo-points {
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
}

.seo-points article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 42px) clamp(22px, 3vw, 36px);
}

.seo-points article + article {
  border-left: 1px dashed var(--line);
}

.seo-points h3,
.faq-list summary {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.seo-points p,
.faq-list p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
  margin: 18px 0 0;
}

.faq-list {
  border-bottom: 1px solid var(--line-soft);
  display: grid;
}

.faq-list details {
  border-top: 1px solid var(--line-soft);
  padding: 26px 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding-right: 52px;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  content: "+";
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.pricing-section {
  background: #020817;
  border-radius: 34px 34px 0 0;
  color: var(--white);
  margin-top: 64px;
  overflow: hidden;
  padding-bottom: clamp(110px, 14vw, 180px);
  position: relative;
}

.pricing-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(36, 89, 214, 0.2), transparent 38%);
  background-size: 92px 92px, 92px 92px, 100% 100%;
  content: "";
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
}

.pricing-section::after {
  color: rgba(255, 255, 255, 0.035);
  content: "SELIT MEDIA";
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 17rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.76;
  pointer-events: none;
  position: absolute;
  right: -3vw;
  text-transform: uppercase;
  top: 70px;
  white-space: nowrap;
}

.pricing-body {
  display: grid;
  gap: 28px;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.pricing-body h2 {
  margin-bottom: 10px;
  max-width: 980px;
}

.pricing-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.55;
  margin: -4px 0 8px;
  max-width: 760px;
}

.tier-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 10px;
}

.tier-includes span {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  min-height: 40px;
  padding: 0 14px;
}

.pricing-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 6px;
}

.tier-card {
  min-width: 0;
  transform-origin: center top;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease,
    transform 220ms ease;
}

.tier-card:hover {
  transform: translateY(-4px);
}

.featured-tier {
  background: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 30px;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.32);
  color: var(--ink);
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  overflow: hidden;
  padding: clamp(22px, 3vw, 36px);
  position: relative;
}

.featured-tier::before {
  background: linear-gradient(90deg, var(--accent), rgba(36, 89, 214, 0));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.tier-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.tier-topline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.tier-media {
  align-self: stretch;
  background: rgba(23, 22, 29, 0.08);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(23, 22, 29, 0.08);
  margin: 0;
  overflow: hidden;
}

.tier-media img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease;
  width: 100%;
}

.tier-card:hover .tier-media img {
  transform: scale(1.04);
}

.tier-kicker {
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tier-timeline {
  align-items: center;
  border: 1px solid rgba(23, 22, 29, 0.14);
  border-radius: 999px;
  color: rgba(23, 22, 29, 0.68);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 4vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  margin: 8px 0 14px;
  text-transform: uppercase;
}

.featured-tier h3 {
  font-size: clamp(4rem, 6.3vw, 6.8rem);
  max-width: 720px;
}

.tier-price {
  align-items: flex-end;
  display: flex;
  gap: 8px;
  margin: 0;
}

.tier-price strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.4vw, 5rem);
  font-weight: 900;
  line-height: 0.86;
}

.featured-tier .tier-price strong {
  font-size: clamp(4.4rem, 7vw, 7rem);
}

.tier-price span {
  color: rgba(23, 22, 29, 0.64);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-copy {
  color: rgba(23, 22, 29, 0.72);
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 660px;
}

.tier-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.tier-list li {
  color: rgba(23, 22, 29, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  padding-left: 24px;
  position: relative;
}

.tier-list li::before {
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(36, 89, 214, 0.11);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 8px;
}

.tier-proof {
  border-bottom: 1px solid rgba(23, 22, 29, 0.1);
  border-top: 1px solid rgba(23, 22, 29, 0.1);
  display: grid;
  gap: 8px;
  margin: 2px 0 24px;
  padding: 18px 0;
}

.tier-proof span {
  color: rgba(23, 22, 29, 0.64);
  font-size: 0.9rem;
  font-weight: 700;
}

.tier-proof strong {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.2;
}

.tier-stack {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tier-stack .tier-card {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
  min-height: 410px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.tier-stack .tier-card::before {
  background: linear-gradient(90deg, var(--accent), rgba(36, 89, 214, 0));
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 260ms ease;
}

.tier-stack .tier-card:hover {
  background: rgba(255, 255, 255, 0.105);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
}

.tier-stack .tier-card:hover::before {
  transform: scaleX(1);
}

.tier-row-main,
.tier-row-side {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.tier-row-side {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
  text-align: left;
}

.tier-stack .tier-kicker {
  color: #b9d1ff;
}

.tier-stack .tier-timeline {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
}

.tier-stack .tier-card h3 {
  font-size: clamp(2.7rem, 4vw, 4rem);
  margin-bottom: 0;
}

.tier-stack .tier-copy {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  margin-top: 12px;
}

.tier-stack .tier-price {
  justify-content: flex-start;
}

.tier-stack .tier-price span {
  color: rgba(255, 255, 255, 0.58);
}

.tier-stack .ghost-button {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  min-height: 54px;
  padding: 0 16px 0 18px;
  width: 100%;
}

.tier-card .primary-button,
.tier-card .ghost-button {
  margin-top: auto;
}

.featured-tier .primary-button {
  width: fit-content;
}

.pricing-section-v2 {
  background:
    linear-gradient(180deg, rgba(12, 39, 102, 0.98), rgba(5, 17, 48, 0.99)),
    #071944;
  padding-bottom: clamp(92px, 9vw, 132px);
  padding-top: clamp(74px, 7vw, 108px);
}

.pricing-section-v2::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.34;
}

.pricing-section-v2::after {
  display: none;
}

.pricing-section-v2 .pricing-body {
  gap: 0;
  max-width: 1080px;
}

.pricing-section-v2 .pricing-body h2 {
  color: var(--white);
  font-size: clamp(4.25rem, 6.5vw, 7.2rem);
  max-width: 920px;
}

.pricing-section-v2 .pricing-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.5;
  margin: 22px 0 0;
  max-width: 700px;
}

.plan-stack {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: clamp(42px, 5vw, 70px);
  position: relative;
}

.plan-card {
  align-items: stretch;
  background: #fbfbfb;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  color: var(--ink);
  display: grid;
  gap: clamp(26px, 4vw, 46px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  min-width: 0;
  opacity: 0;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 38px);
  transform: translateY(34px);
}

.pricing-body.is-visible .plan-card {
  animation: planFloatIn 820ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.pricing-body.is-visible .plan-card:nth-child(2) {
  animation-delay: 100ms;
}

.pricing-body.is-visible .plan-card:nth-child(3) {
  animation-delay: 180ms;
}

.pricing-body.is-visible .plan-card:nth-child(4) {
  animation-delay: 260ms;
}

.pricing-body.is-visible .plan-card:nth-child(5) {
  animation-delay: 340ms;
}

.pricing-body.is-visible .plan-card:nth-child(6) {
  animation-delay: 420ms;
}

.plan-card:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.plan-card-featured {
  background: #ffffff;
  border-color: rgba(123, 164, 255, 0.72);
  box-shadow: 0 28px 64px rgba(18, 55, 148, 0.24), 0 18px 42px rgba(0, 0, 0, 0.2);
}

.plan-card.is-boosted {
  border-color: rgba(36, 89, 214, 0.32);
  box-shadow: 0 36px 90px rgba(36, 89, 214, 0.18), 0 30px 72px rgba(0, 0, 0, 0.28);
}

.plan-main,
.plan-included {
  min-width: 0;
}

.plan-main {
  display: flex;
  flex-direction: column;
}

.plan-included {
  border-left: 1px solid rgba(23, 22, 29, 0.14);
  display: flex;
  flex-direction: column;
  padding-left: clamp(24px, 3.2vw, 38px);
}

.plan-title-row {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 52px 1fr;
}

.plan-icon {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(23, 22, 29, 0.1);
  border-radius: 15px;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.plan-icon svg {
  fill: none;
  height: 24px;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 24px;
}

.plan-kicker {
  color: var(--accent);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.plan-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 3.5vw, 4.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.plan-price {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: clamp(26px, 3vw, 36px) 0 0;
  text-align: left;
}

.plan-price strong {
  font-family: var(--font-display);
  font-size: clamp(4rem, 6.2vw, 6.3rem);
  font-weight: 900;
  line-height: 0.82;
}

.plan-price span {
  color: rgba(23, 22, 29, 0.58);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-copy {
  color: rgba(23, 22, 29, 0.65);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.45;
  margin: 20px 0 0;
  max-width: 430px;
}

.plan-included > span {
  color: rgba(23, 22, 29, 0.6);
  display: block;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 16px;
  text-transform: none;
}

.plan-included ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.plan-included li {
  color: var(--ink);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  font-weight: 760;
  line-height: 1.35;
  padding-left: 34px;
  position: relative;
}

.plan-included li::before {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(23, 22, 29, 0.38);
  border-radius: 50%;
  color: var(--accent);
  content: "";
  display: inline-flex;
  height: 21px;
  left: 0;
  position: absolute;
  top: 1px;
  width: 21px;
}

.plan-included li::after {
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  content: "";
  height: 8px;
  left: 8px;
  position: absolute;
  top: 5px;
  transform: rotate(42deg);
  width: 5px;
}

.plan-included .primary-button,
.plan-included .ghost-button {
  min-height: 58px;
  margin-top: auto;
  width: 100%;
}

.plan-included .ghost-button {
  border-color: rgba(23, 22, 29, 0.12);
  color: var(--ink);
}

.plan-included .ghost-button:hover {
  background: var(--ink);
  color: var(--white);
}

.pricing-body.is-visible .featured-tier,
.pricing-body.is-visible .tier-stack .tier-card {
  animation: pricingCardIn 720ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.pricing-body.is-visible .tier-stack .tier-card:nth-child(1) {
  animation-delay: 90ms;
}

.pricing-body.is-visible .tier-stack .tier-card:nth-child(2) {
  animation-delay: 160ms;
}

.pricing-body.is-visible .tier-stack .tier-card:nth-child(3) {
  animation-delay: 230ms;
}

.price-card {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  color: var(--ink);
  display: grid;
  gap: 34px;
  grid-template-columns: 0.88fr 1fr;
  padding: clamp(28px, 4vw, 44px);
}

.price-card.featured {
  background: rgba(255, 255, 255, 0.74);
}

.price-icon {
  align-items: center;
  border: 1px solid rgba(20, 18, 28, 0.1);
  border-radius: 16px;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  width: 58px;
}

.price-icon::before {
  background: var(--night);
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}

.price-icon-diamond::before {
  transform: rotate(45deg);
}

.price-icon-hex::before {
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.price-card h3 {
  display: inline-block;
  font-size: clamp(2.7rem, 4vw, 4rem);
  margin-left: 16px;
  vertical-align: top;
}

.price-card p {
  margin: 12px 0 18px;
}

.price-card strong {
  font-family: var(--font-display);
  font-size: clamp(4rem, 5.8vw, 6rem);
  line-height: 0.9;
}

.price-card p span {
  color: rgba(23, 22, 29, 0.66);
  font-size: 1rem;
  margin-left: 4px;
}

.small-copy,
.price-list > span {
  color: rgba(23, 22, 29, 0.7);
  display: block;
  line-height: 1.5;
}

.toggle {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 0.96rem;
  font-weight: 700;
  gap: 12px;
  margin-top: 32px;
}

.toggle input {
  position: absolute;
  opacity: 0;
}

.toggle span {
  background: rgba(23, 22, 29, 0.22);
  border-radius: 999px;
  display: inline-block;
  height: 24px;
  position: relative;
  transition: background 200ms ease;
  width: 46px;
}

.toggle span::after {
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  content: "";
  height: 20px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 200ms ease;
  width: 20px;
}

.toggle input:checked + span {
  background: var(--violet);
}

.toggle input:checked + span::after {
  transform: translateX(22px);
}

.price-list {
  border-left: 1px solid rgba(23, 22, 29, 0.11);
  padding-left: clamp(24px, 3.5vw, 48px);
}

.price-list ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 20px 0 32px;
  padding: 0;
}

.price-list li {
  font-weight: 700;
  padding-left: 30px;
  position: relative;
}

.price-list li::before {
  border: 2px solid var(--violet);
  border-radius: 50%;
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 14px;
}

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

.insights-section .horizontal-stage {
  padding-bottom: clamp(54px, 6vh, 72px);
  padding-top: clamp(74px, 8vh, 96px);
}

.insights-section .horizontal-copy h2 {
  font-size: clamp(3.6rem, 6.4vw, 6.35rem);
}

.insights-section .h-track {
  margin-top: clamp(24px, 4vh, 42px);
}

.insight-card {
  flex-basis: clamp(330px, 37vw, 520px);
}

.insight-card img {
  aspect-ratio: 16 / 7.6;
}

.insight-card h3 {
  font-size: clamp(2rem, 2.75vw, 2.9rem);
  margin-top: 18px;
}

@media (min-width: 1500px) {
  .insight-card h3 {
    font-size: clamp(2rem, 2.15vw, 2.75rem);
  }
}

.insight-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 8px 0 0;
  max-width: 520px;
}

@media (min-width: 1500px) {
  .projects-section .project-card,
  .insights-section .insight-card {
    flex: 0 0 clamp(380px, 20vw, 430px);
  }
}

@media (min-width: 1500px) and (max-height: 700px) {
  .projects-section .horizontal-stage {
    padding-bottom: 28px;
    padding-top: 62px;
  }

  .projects-section .horizontal-copy h2 {
    font-size: clamp(3.5rem, 6vw, 6.15rem);
  }

  .projects-section .h-track {
    margin-top: 16px;
  }

  .project-card img {
    max-height: clamp(190px, 34vh, 225px);
  }

  .project-card h3 {
    font-size: clamp(2.1rem, 2.8vw, 3.05rem);
    line-height: 0.9;
    margin-top: 14px;
  }

  .project-card p {
    font-size: 1rem;
    margin-top: 4px;
  }
}

@media (min-width: 761px) and (max-height: 820px) {
  .projects-section .horizontal-stage {
    min-height: 560px;
    padding-bottom: 34px;
    padding-top: 58px;
  }

  .projects-section .horizontal-copy h2 {
    font-size: clamp(3.35rem, 5.8vw, 5.9rem);
    line-height: 0.88;
  }

  .projects-section .h-track {
    margin-top: 18px;
  }

  .projects-section .project-card {
    flex-basis: clamp(280px, 28vw, 380px);
  }

  .projects-section .project-card img {
    height: clamp(190px, 31vh, 245px);
  }

  .projects-section .project-card h3 {
    font-size: clamp(2.05rem, 2.75vw, 3rem);
    line-height: 0.9;
    margin-top: 12px;
  }

  .projects-section .project-card p {
    font-size: 1rem;
    margin-top: 3px;
  }
}

.team-section {
  background: #eeeeec;
}

.team-body {
  max-width: 1040px;
}

.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
}

.team-grid article {
  background: var(--white);
  border-radius: 26px;
  min-width: 0;
  padding: 20px 20px 24px;
  position: relative;
}

.team-grid img {
  aspect-ratio: 1.08;
  border-radius: 18px;
  object-fit: cover;
  transition: filter 250ms ease, transform 250ms ease;
  width: 100%;
}

.team-grid h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 28px;
  text-transform: none;
}

.team-grid p {
  color: var(--muted);
  margin: 8px 0 0;
}

.team-grid a {
  align-items: center;
  background: var(--accent-dark);
  border-radius: 50%;
  bottom: 26px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  position: absolute;
  right: 22px;
  width: 46px;
}

.site-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 62%, #ffffff 100%);
  border-top: 1px solid rgba(20, 18, 28, 0.06);
  overflow: hidden;
  padding: clamp(70px, 9vw, 110px) 20px clamp(18px, 3vw, 34px);
  position: relative;
}

.footer-top {
  align-items: start;
  display: grid;
  gap: clamp(30px, 4vw, 70px);
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.76fr);
  margin: 0 auto;
  max-width: 1400px;
}

.contact-shell {
  align-items: stretch;
}

.contact-copy {
  align-self: start;
  padding-top: clamp(18px, 3.5vw, 52px);
}

.contact-kicker {
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.site-footer h2 {
  font-size: clamp(3.4rem, 5.8vw, 5.9rem);
  max-width: 720px;
}

.contact-copy p {
  color: rgba(23, 22, 29, 0.62);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.58;
  margin: 24px 0 0;
  max-width: 560px;
}

.contact-highlights {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-highlights span {
  border-top: 1px solid rgba(20, 18, 28, 0.1);
  color: rgba(23, 22, 29, 0.74);
  font-size: 0.94rem;
  font-weight: 800;
  padding-top: 12px;
}

.contact-form {
  background: #ffffff;
  border: 1px solid rgba(20, 18, 28, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(6, 24, 68, 0.1);
  color: var(--ink);
  overflow: hidden;
  padding: clamp(20px, 2.3vw, 30px);
  position: relative;
  scroll-margin-top: 92px;
}

.contact-form::before {
  display: none;
}

.contact-form-head {
  align-items: flex-start;
  border-bottom: 1px solid rgba(20, 18, 28, 0.1);
  display: block;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.contact-form-head span {
  color: var(--accent-dark);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-form-head h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.contact-form-head p {
  color: rgba(23, 22, 29, 0.6);
  line-height: 1.45;
  margin: 12px 0 0;
  max-width: 480px;
}

.contact-mail {
  align-items: center;
  background: rgba(36, 89, 214, 0.08);
  border: 1px solid rgba(36, 89, 214, 0.16);
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0;
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.contact-plan-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.plan-choice {
  cursor: pointer;
  display: block;
  min-width: 0;
  position: relative;
}

.plan-choice input {
  cursor: pointer;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.plan-choice span,
.plan-choice small {
  display: block;
  position: relative;
  z-index: 1;
}

.plan-choice span {
  font-weight: 900;
  line-height: 1.2;
}

.plan-choice small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.35;
  margin-top: 5px;
}

.plan-choice {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 16px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.plan-choice::after {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
  height: 14px;
  position: absolute;
  right: 14px;
  top: 16px;
  width: 14px;
}

.plan-choice:has(input:checked) {
  background: rgba(93, 150, 255, 0.2);
  border-color: rgba(93, 150, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 34px rgba(2, 8, 23, 0.2);
}

.plan-choice:has(input:checked)::after {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  box-shadow: 0 0 0 4px rgba(93, 150, 255, 0.18);
}

.plan-choice:has(input:focus-visible) {
  border-color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 4px rgba(93, 150, 255, 0.18);
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-hidden {
  display: none;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  color: rgba(23, 22, 29, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  appearance: none;
  background: #fbfcff;
  border: 1px solid rgba(20, 18, 28, 0.13);
  border-radius: 12px;
  color: var(--ink);
  min-height: 50px;
  outline: 0;
  padding: 0 14px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  background: var(--white);
  border-color: rgba(36, 89, 214, 0.34);
}

.field textarea {
  line-height: 1.45;
  min-height: 112px;
  padding-bottom: 13px;
  padding-top: 13px;
  resize: vertical;
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(23, 22, 29, 0.72) 50%),
    linear-gradient(135deg, rgba(23, 22, 29, 0.72) 50%, transparent 50%);
  background-position: calc(100% - 19px) 50%, calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 38px;
}

.field select option {
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(23, 22, 29, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: rgba(36, 89, 214, 0.62);
  box-shadow: 0 0 0 4px rgba(36, 89, 214, 0.12);
}

.form-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.form-assurance span {
  background: rgba(36, 89, 214, 0.07);
  border: 1px solid rgba(36, 89, 214, 0.12);
  border-radius: 999px;
  color: rgba(23, 22, 29, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 8px 12px;
}

.form-submit-row {
  align-items: center;
  border-top: 1px solid rgba(20, 18, 28, 0.1);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
}

.form-submit-row p {
  color: rgba(23, 22, 29, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  max-width: 260px;
}

.form-submit-row strong {
  color: var(--ink);
  display: block;
  font-size: 0.94rem;
}

.contact-form .primary-button {
  flex: 0 0 auto;
  min-height: 54px;
  min-width: 198px;
}

.footer-links {
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(56px, 7vw, 86px) auto 0;
  max-width: 1400px;
  padding: 38px 0;
}

.footer-links div {
  display: grid;
  gap: 24px;
}

.footer-links a,
.footer-bottom span {
  color: rgba(23, 22, 29, 0.54);
}

.footer-link-title {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-badges {
  align-content: start;
  display: flex !important;
  gap: 10px;
  justify-content: end;
  flex-wrap: wrap;
}

.footer-badges span {
  align-items: center;
  background: rgba(36, 89, 214, 0.08);
  border: 1px solid rgba(36, 89, 214, 0.16);
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  min-height: 42px;
  justify-content: center;
  padding: 0 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  padding: 26px 0 22px;
}

.footer-wordmark {
  display: block;
  height: auto;
  margin: clamp(46px, 7vw, 86px) auto 0;
  max-width: 1120px;
  opacity: 0.84;
  width: min(92vw, 1120px);
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.section-body.reveal .metric-row > div,
.section-body.reveal .logo-cloud span,
.service-heading.reveal h2,
.accordion.reveal .accordion-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--stagger-delay, 0ms);
}

.services-section .service-heading.reveal h2,
.services-section .accordion.reveal .accordion-item {
  transform: translateY(38px);
  transition-duration: 1420ms;
}

.section-body.reveal.is-visible .metric-row > div,
.section-body.reveal.is-visible .logo-cloud span,
.service-heading.reveal.is-visible h2,
.accordion.reveal.is-visible .accordion-item {
  opacity: 1;
  transform: translateY(0);
}

.section-body.reveal.is-visible .metric-row > div:nth-child(1),
.section-body.reveal.is-visible .logo-cloud span:nth-child(1),
.accordion.reveal.is-visible .accordion-item:nth-child(1) {
  --stagger-delay: 170ms;
}

.section-body.reveal.is-visible .metric-row > div:nth-child(2),
.section-body.reveal.is-visible .logo-cloud span:nth-child(2),
.accordion.reveal.is-visible .accordion-item:nth-child(2) {
  --stagger-delay: 320ms;
}

.section-body.reveal.is-visible .metric-row > div:nth-child(3),
.section-body.reveal.is-visible .logo-cloud span:nth-child(3),
.accordion.reveal.is-visible .accordion-item:nth-child(3) {
  --stagger-delay: 470ms;
}

.section-body.reveal.is-visible .logo-cloud span:nth-child(4),
.accordion.reveal.is-visible .accordion-item:nth-child(4) {
  --stagger-delay: 620ms;
}

.section-body.reveal.is-visible .logo-cloud span:nth-child(5),
.accordion.reveal.is-visible .accordion-item:nth-child(5) {
  --stagger-delay: 770ms;
}

@keyframes ctaArrow {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

@keyframes pricingCardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes planFloatIn {
  from {
    opacity: 0;
    transform: translateY(58px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pricingOrbit {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) scale(0.9);
  }

  50% {
    opacity: 1;
    transform: translate3d(0, -18px, 0) scale(1.12);
  }
}

@keyframes testimonialProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .section {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-label,
  .horizontal-label {
    position: relative;
    top: auto;
    left: auto;
  }

  .section-body h2,
  .testimonial-stage h2,
  .pricing-body h2,
  .seo-body h2,
  .systems-body h2,
  .team-body h2 {
    font-size: clamp(4rem, 13vw, 6.6rem);
  }

  .service-heading,
  .price-card,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .price-list {
    border-left: 0;
    border-top: 1px solid rgba(23, 22, 29, 0.11);
    padding-left: 0;
    padding-top: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section-v2 .pricing-body h2 {
    font-size: clamp(4.1rem, 12vw, 6.8rem);
  }

  .plan-card {
    grid-template-columns: 1fr;
  }

  .plan-stack {
    grid-template-columns: 1fr;
  }

  .plan-included {
    border-left: 0;
    border-top: 1px solid rgba(23, 22, 29, 0.13);
    padding-left: 0;
    padding-top: 22px;
  }

  .project-modal-dialog {
    max-height: calc(100svh - 28px);
  }

  .pricing-layout,
  .featured-tier {
    grid-template-columns: 1fr;
  }

  .tier-card {
    min-height: 0;
  }

  .tier-media img {
    aspect-ratio: 1.45;
    min-height: 340px;
  }

  .tier-stack {
    grid-template-columns: 1fr;
  }

  .tier-stack .tier-card {
    min-height: 0;
  }

  .systems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .systems-grid article:nth-child(odd) {
    border-left: 0;
  }

  .systems-grid article:nth-child(n + 3) {
    border-top: 1px dashed var(--line);
  }

  .seo-points {
    grid-template-columns: 1fr;
  }

  .seo-points article + article {
    border-left: 0;
    border-top: 1px dashed var(--line);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-badges {
    justify-content: start;
  }
}

@media (max-width: 900px) {
  .menu-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .menu-panel-inner {
    gap: 28px;
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .menu-link-stack a {
    font-size: clamp(3rem, 12vw, 6.5rem);
  }
}

@media (max-height: 650px) and (min-width: 761px) {
  .menu-panel {
    padding-top: 96px;
  }

  .menu-panel-inner {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .menu-link-stack a {
    font-size: clamp(2.65rem, 11vh, 5.1rem);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  main > section,
  .site-footer {
    scroll-margin-top: 78px;
  }

  .site-header {
    height: 72px;
    padding: 0 14px;
  }

  .menu-button {
    width: 42px;
  }

  .menu-button span {
    width: 40px;
  }

  .menu-panel {
    padding: 86px 16px 22px;
  }

  .menu-panel::before {
    inset: 72px 0 0;
  }

  .menu-panel-inner {
    gap: 24px;
    padding-top: 20px;
  }

  .menu-link-stack {
    gap: 0.3rem;
    order: 1;
  }

  .menu-link-stack a {
    font-size: clamp(3rem, 16vw, 5.25rem);
  }

  .brand {
    width: min(230px, 100%);
  }

  .local-time {
    font-size: 0.68rem;
    max-width: 110px;
    transform: none;
  }

  .hero {
    height: auto;
  }

  .hero-stage {
    align-items: center;
    background:
      linear-gradient(180deg, rgba(245, 249, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 52%, #ffffff 100%),
      linear-gradient(135deg, rgba(36, 89, 214, 0.12), rgba(77, 187, 170, 0.08));
    min-height: 100svh;
    position: relative;
  }

  .hero-stage::before {
    background:
      linear-gradient(90deg, rgba(36, 89, 214, 0.1) 1px, transparent 1px) 0 0 / 54px 54px,
      linear-gradient(135deg, rgba(93, 150, 255, 0.12), rgba(255, 255, 255, 0));
    content: "";
    height: 34svh;
    inset: 72px 0 auto;
    pointer-events: none;
    position: absolute;
    z-index: 0;
  }

  .hero-content {
    color: #11131a;
    padding-top: clamp(230px, 35svh, 280px);
  }

  .hero h1 {
    color: #11131a;
    font-size: clamp(3rem, 12vw, 5rem);
    max-width: 100%;
  }

  .hero p {
    color: #5d5b66;
    font-size: 0.98rem;
    font-weight: 500;
  }

  .float-card {
    border-color: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(36, 89, 214, 0.18), 0 10px 28px rgba(6, 24, 68, 0.1);
    display: block;
    opacity: 1;
    top: 0;
    transition: none;
    z-index: 1;
  }

  .float-card-a {
    left: 16px;
    top: 96px;
    transform: rotate(-3deg);
    width: clamp(128px, 40vw, 176px);
  }

  .float-card-b {
    left: auto;
    right: 10px;
    top: 108px;
    transform: rotate(4deg);
    width: clamp(144px, 43vw, 190px);
  }

  .float-card-c {
    left: 50%;
    top: 176px;
    transform: translateX(-50%) rotate(1deg);
    width: clamp(108px, 31vw, 140px);
  }

  .float-card-d,
  .float-card-e {
    display: none;
  }

  .float-card img {
    aspect-ratio: 1.3;
  }

  .primary-button,
  .ghost-button {
    min-height: 54px;
    padding: 0 20px 0 22px;
    white-space: normal;
  }

  .section {
    padding-bottom: 86px;
    padding-top: 86px;
  }

  .metric-row,
  .logo-cloud,
  .systems-grid,
  .why-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .metric-row div,
  .why-grid article:nth-child(odd),
  .why-grid article:nth-child(-n + 2) {
    border-right: 0;
  }

  .metric-row div {
    border-bottom: 1px solid var(--line-soft);
    padding-right: 0;
  }

  .metric-row div:last-child {
    border-bottom: 0;
  }

  .systems-grid article + article {
    border-left: 0;
    border-top: 1px dashed var(--line);
  }

  .systems-grid span {
    margin-bottom: 34px;
  }

  .horizontal-section {
    height: auto !important;
  }

  .horizontal-stage {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 86px 0 86px;
    position: relative;
  }

  .projects-section .horizontal-stage {
    padding-bottom: 62px;
    padding-top: 56px;
  }

  .horizontal-copy {
    margin-left: 18px;
    max-width: calc(100% - 36px);
    padding-right: 18px;
    width: auto;
  }

  .projects-section .horizontal-copy h2 {
    font-size: clamp(2.6rem, 10.5vw, 3rem);
    line-height: 0.86;
    max-width: min(390px, calc(100vw - 36px));
  }

  .projects-section .h-track {
    margin-top: 22px;
  }

  .h-track {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 8px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    transform: none !important;
  }

  .h-track::-webkit-scrollbar {
    display: none;
  }

  .project-card,
  .insight-card {
    flex-basis: min(calc(100vw - 36px), 380px);
    scroll-snap-align: start;
  }

  .project-modal {
    align-items: end;
    padding: 12px;
  }

  .project-modal-dialog {
    border-radius: 24px;
    max-height: calc(100svh - 24px);
  }

  .project-modal-content {
    padding: 28px 18px 22px;
    padding-right: 18px;
  }

  .project-modal-topline {
    padding-right: 50px;
  }

  .project-modal-content h2 {
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .project-modal-link {
    width: 100%;
  }

  .project-card h3,
  .insight-card h3 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .projects-section .project-card h3 {
    font-size: clamp(2.15rem, 9vw, 2.85rem);
    line-height: 0.9;
    margin-top: 12px;
  }

  .projects-section .project-card p {
    font-size: 1rem;
    margin-top: 3px;
  }

  .projects-section .project-card img {
    height: clamp(182px, 25vh, 210px);
  }

  .services-section,
  .pricing-section {
    border-radius: 24px 24px 0 0;
  }

  .pricing-section-v2 {
    padding-bottom: 82px;
    padding-top: 78px;
  }

  .pricing-section-v2 .pricing-body h2 {
    font-size: clamp(3.25rem, 13vw, 5rem);
  }

  .pricing-orbit {
    display: none;
  }

  .plan-stack {
    gap: 16px;
    margin-top: 34px;
  }

  .plan-card {
    border-radius: 22px;
    padding: 22px;
  }

  .plan-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "price"
      "copy";
  }

  .plan-price {
    justify-self: start;
    text-align: left;
  }

  .plan-title-row {
    gap: 14px;
    grid-template-columns: 48px 1fr;
  }

  .plan-icon {
    border-radius: 14px;
    height: 46px;
    width: 46px;
  }

  .plan-icon svg {
    height: 23px;
    width: 23px;
  }

  .plan-card h3 {
    font-size: clamp(2rem, 9.2vw, 2.8rem);
  }

  .plan-price strong {
    font-size: clamp(3.4rem, 15vw, 4.7rem);
  }

  .pricing-section::after {
    display: none;
  }

  .pricing-layout {
    gap: 14px;
  }

  .featured-tier {
    border-radius: 24px;
    padding: 18px;
  }

  .featured-tier h3 {
    font-size: clamp(3.4rem, 15vw, 5.2rem);
  }

  .tier-topline {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .tier-media {
    border-radius: 18px;
  }

  .tier-media img {
    min-height: 250px;
  }

  .tier-stack .tier-card {
    border-radius: 20px;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .tier-row-side {
    align-items: flex-start;
    text-align: left;
  }

  .tier-stack .tier-price {
    justify-content: flex-start;
  }

  .featured-tier .primary-button,
  .tier-stack .ghost-button {
    width: 100%;
  }

  .accordion-item button {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .service-heading h2 {
    font-size: clamp(3.15rem, 11.6vw, 5rem);
  }

  .section h2,
  .service-heading h2,
  .accordion-item button span,
  .testimonial-card p,
  .tier-card h3,
  .site-footer h2 {
    overflow-wrap: anywhere;
  }

  .accordion-content,
  .accordion-item.active .accordion-content {
    grid-template-columns: 1fr;
  }

  .accordion-item.active .accordion-content {
    max-height: 980px;
  }

  .accordion-content ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accordion-content li {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .accordion-content li::after {
    flex: none;
    width: 100%;
  }

  .accordion-content img {
    aspect-ratio: 1.2;
  }

  .testimonial-card p {
    font-size: clamp(1.08rem, 4.55vw, 1.32rem);
    line-height: 1.3;
  }

  .testimonial-status {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    margin-top: 14px;
  }

  .carousel-controls {
    justify-content: center;
    margin-top: 16px;
    position: static;
    transform: none;
  }

  .carousel-controls button {
    height: 48px;
    width: 48px;
  }

  .testimonial-stage {
    text-align: center;
  }

  .testimonials-section {
    padding-bottom: 74px;
    padding-top: 66px;
  }

  .testimonial-stage h2 {
    font-size: clamp(2.75rem, 11vw, 4.5rem);
    max-width: 100%;
  }

  .testimonial-carousel {
    margin-top: 22px;
  }

  .testimonial-card {
    border-radius: 22px;
    gap: 14px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "quote"
      "author";
    justify-items: center;
    min-height: 0;
    padding: 20px;
    text-align: center;
  }

  .testimonial-card img {
    border-radius: 22px;
    height: 104px;
    width: 104px;
  }

  .testimonial-card div {
    align-self: auto;
    padding-top: 14px;
    width: 100%;
  }

  .testimonial-card strong {
    font-size: 1rem;
  }

  .testimonial-card span {
    font-size: 0.96rem;
  }

  .testimonial-progress {
    width: min(170px, 44vw);
  }

  .contact-form {
    border-radius: 24px;
    order: -1;
    padding: 20px;
    scroll-margin-top: 84px;
  }

  .contact-copy {
    order: 1;
    padding-top: 10px;
  }

  .contact-copy p {
    margin-top: 16px;
  }

  .contact-highlights {
    display: none;
  }

  .contact-form-head {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-mail {
    justify-content: center;
    width: 100%;
  }

  .contact-plan-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form .primary-button {
    min-width: 0;
    width: 100%;
  }

  .site-footer h2 {
    font-size: clamp(3.35rem, 10.8vw, 5.6rem);
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .site-header {
    grid-template-columns: 52px 1fr 52px;
  }

  .brand {
    justify-self: center;
    width: min(210px, 100%);
  }

  .local-time {
    display: none;
  }

  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 10.8vw, 3.2rem);
  }

  .section-body h2,
  .testimonial-stage h2,
  .pricing-body h2,
  .seo-body h2,
  .systems-body h2,
  .team-body h2,
  .service-heading h2 {
    font-size: clamp(2.65rem, 11.2vw, 3.55rem);
  }

  .featured-tier h3,
  .tier-stack .tier-card h3 {
    font-size: clamp(2.7rem, 13vw, 3.7rem);
  }

  .featured-tier .tier-price strong,
  .tier-price strong {
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .tier-includes span,
  .tier-timeline {
    font-size: 0.72rem;
  }

  .pricing-section-v2 .pricing-body h2 {
    font-size: clamp(2.85rem, 12.6vw, 4rem);
  }

  .plan-card {
    padding: 20px;
  }

  .plan-card h3 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
  }

  .projects-section .horizontal-copy h2 {
    font-size: clamp(2.45rem, 10.5vw, 2.85rem);
    max-width: min(350px, calc(100vw - 36px));
  }

  .projects-section .project-card h3 {
    font-size: clamp(2rem, 8.5vw, 2.5rem);
  }

  .plan-price strong {
    font-size: clamp(3.15rem, 14vw, 4.1rem);
  }

  .plan-included li {
    font-size: 0.98rem;
  }

  .hero .primary-button {
    gap: 10px;
    max-width: 256px;
    min-height: 64px;
    padding: 0 18px;
    width: 100%;
  }

  .hero .primary-button span {
    line-height: 1.15;
  }

  .hero .primary-button svg {
    flex: 0 0 22px;
  }

  .site-footer h2 {
    font-size: clamp(3.05rem, 13vw, 4.15rem);
  }
}

@media (max-width: 340px) {
  .hero-stage {
    background:
      linear-gradient(180deg, rgba(245, 249, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 58%, #ffffff 100%),
      linear-gradient(135deg, rgba(36, 89, 214, 0.12), rgba(77, 187, 170, 0.08));
  }

  .hero-stage::before {
    height: 28svh;
  }

  .float-card {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .h-track,
  .float-card,
  .primary-button,
  .primary-button::before,
  .primary-button svg,
  .testimonial-track,
  .testimonial-card,
  .testimonial-progress span {
    animation: none !important;
    transform: none !important;
  }
}
