:root {
  --paper: #f2f0e7;
  --paper-deep: #e8e4d8;
  --ink: #141414;
  --muted: #66645e;
  --blue: #3956a6;
  --cyan: #39a6d7;
  --acid: #d7ff55;
  --line: rgba(20, 20, 20, 0.62);
  --page: min(100% - 40px, 1480px);
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.site-progress {
  position: fixed;
  z-index: 250;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.site-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.motion-cursor {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0) scale(0.5);
  transition: opacity 180ms ease;
  will-change: transform;
}

.motion-cursor.is-visible {
  opacity: 1;
}

.motion-cursor span {
  max-width: 62px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.service-preview {
  position: fixed;
  z-index: 210;
  top: 0;
  left: 0;
  width: 260px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100vw, -100vh, 0) rotate(-3deg) scale(0.86);
  transition: opacity 180ms ease;
  will-change: transform;
}

.service-preview.is-visible {
  opacity: 1;
}

.service-preview img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.service-preview span {
  display: block;
  padding: 9px 4px 2px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

::selection {
  background: var(--cyan);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 max(20px, calc((100vw - 1480px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(242, 240, 231, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  width: 164px;
}

.brand img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav > a,
.dropdown-trigger {
  position: relative;
}

.site-nav > a::after,
.dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.dropdown-trigger:hover::after,
.dropdown-trigger:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav > a[aria-current="page"]::after,
.dropdown-trigger[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-menu a::after,
.submenu-flyout a::after {
  display: none !important;
}

/* Vertical Dropdown Navigation */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px 0;
}

.dropdown-caret {
  font-size: 8px;
  transition: transform 220ms ease;
}

.nav-dropdown:hover .dropdown-caret,
.nav-dropdown:focus-within .dropdown-caret,
.nav-dropdown.is-open .dropdown-caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 500;
  width: 250px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms var(--ease), visibility 220ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.dropdown-menu li:hover > .dropdown-item,
.dropdown-menu li:focus-within > .dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:focus-visible {
  background: var(--paper-deep);
  color: var(--blue);
  text-decoration: none !important;
  border: none !important;
  outline: none;
}

.dropdown-menu li:hover > .dropdown-item .item-text::before {
  content: "• ";
  color: #2e7d32;
  font-weight: bold;
  margin-right: 4px;
}

.submenu-arrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* Right-side Flyout Sub-menu */
.submenu-flyout {
  position: absolute;
  top: -10px;
  left: 100%;
  z-index: 510;
  width: 290px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 200ms ease, transform 200ms var(--ease), visibility 200ms ease;
}

.has-submenu:hover > .submenu-flyout,
.has-submenu:focus-within > .submenu-flyout,
.has-submenu.is-open > .submenu-flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.submenu-flyout li a {
  display: block;
  padding: 9px 18px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none !important;
  transition: background 150ms ease, color 150ms ease;
}

.submenu-flyout li a:hover,
.submenu-flyout li a:focus,
.submenu-flyout li a:focus-visible {
  background: var(--paper-deep);
  color: var(--blue);
  text-decoration: none !important;
  border: none !important;
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  justify-self: end;
  padding: 13px 15px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.header-cta:hover {
  background: var(--cyan);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 250ms ease;
}

.hero {
  padding-top: 38px;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-heading-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 50px;
  align-items: end;
  padding-bottom: 38px;
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(64px, 8.6vw, 142px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line-inner {
  display: block;
}

.hero-line-accent .hero-line-inner {
  padding-left: 11vw;
  color: var(--blue);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.12em;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
}

.motion-capable .hero-line-inner {
  transform: translateY(112%) rotate(1.5deg);
  transform-origin: left bottom;
  transition: transform 1.05s var(--ease);
}

.motion-capable body.is-loaded .hero-line:nth-child(1) .hero-line-inner {
  transition-delay: 90ms;
  transform: translateY(0) rotate(0);
}

.motion-capable body.is-loaded .hero-line:nth-child(2) .hero-line-inner {
  transition-delay: 180ms;
  transform: translateY(0) rotate(0);
}

.motion-capable body.is-loaded .hero-line:nth-child(3) .hero-line-inner {
  transition-delay: 270ms;
  transform: translateY(0) rotate(0);
}

.motion-capable .hero-kicker,
.motion-capable .hero-load {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.motion-capable body.is-loaded .hero-kicker {
  opacity: 1;
  transform: translateY(0);
}

.motion-capable body.is-loaded .hero-intro {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 430ms;
}

.motion-capable body.is-loaded .hero-visual {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 520ms;
}

.hero-intro {
  display: grid;
  gap: 26px;
  padding-bottom: 7px;
  font-size: 14px;
  line-height: 1.55;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-visual {
  position: relative;
  height: min(69vw, 830px);
  min-height: 560px;
  overflow: hidden;
  border-radius: 14px;
  background: #8f8b80;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  transition: transform 1.2s var(--ease);
  will-change: transform;
}

.hero-visual:hover > img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.115);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.62), transparent 55%),
    linear-gradient(0deg, rgba(8, 10, 14, 0.48), transparent 48%);
}

.hero-caption {
  position: absolute;
  color: white;
}

.hero-caption-main {
  bottom: 38px;
  left: 36px;
}

.caption-index {
  display: block;
  margin-bottom: 16px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-caption-main p {
  max-width: 700px;
  font-size: clamp(44px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-caption-side {
  top: 24px;
  right: 26px;
  display: flex;
  gap: 7px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.hero-caption-side span,
.tag-row span {
  padding: 7px 9px;
  background: rgba(13, 13, 13, 0.78);
  color: white;
  backdrop-filter: blur(8px);
}

.round-link {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  width: 120px;
  height: 120px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 50%;
  background: var(--acid);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 280ms var(--ease),
    background 280ms ease;
}

.round-link span {
  align-self: flex-end;
}

.round-link:hover {
  background: white;
  transform: rotate(7deg) scale(1.06);
}

.section-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(150px, calc((100vw - 1480px) / 2 + 210px)) 1fr;
  border-bottom: 1px solid var(--line);
}

.section-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.manifesto {
  margin-top: 74px;
  border-top: 1px solid var(--line);
}

.manifesto > .section-label {
  padding: 20px max(20px, calc((100vw - 1480px) / 2));
  border-right: 1px solid var(--line);
}

.manifesto-copy {
  padding: 76px max(20px, calc((100vw - 1480px) / 2)) 76px 7vw;
}

.manifesto-copy h2 {
  max-width: 1120px;
  font-size: clamp(44px, 5.7vw, 90px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-transform: uppercase;
}

.manifesto-copy h2 em,
.proof-intro h2 em,
.process-heading h2 em,
.contact-inner h2 em {
  color: var(--blue);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.manifesto-details {
  display: grid;
  max-width: 840px;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
  margin-left: auto;
  font-size: 14px;
  line-height: 1.65;
}

.work-section {
  padding: 96px 0 110px;
}

.section-topline {
  display: grid;
  grid-template-columns: 170px 1fr 220px;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}

.section-topline h2 {
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-note {
  font-size: 13px;
  line-height: 1.5;
}

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

.work-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

/* Sleek Top-Border Laser Trace Hover Animation */
.work-card::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--acid), transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease);
}

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

/* Staggered cascade entrance animation for rate cards */
.work-grid .work-card.reveal {
  transition: opacity 800ms var(--ease), filter 800ms var(--ease), transform 800ms var(--ease);
}

.work-grid .work-card:nth-child(1) { transition-delay: 0ms; }
.work-grid .work-card:nth-child(2) { transition-delay: 140ms; }
.work-grid .work-card:nth-child(3) { transition-delay: 280ms; }
.work-grid .work-card:nth-child(4) { transition-delay: 420ms; }
.work-grid .work-card:nth-child(5) { transition-delay: 560ms; }
.work-grid .work-card:nth-child(6) { transition-delay: 700ms; }
.work-grid .work-card:nth-child(7) { transition-delay: 840ms; }
.work-grid .work-card:nth-child(8) { transition-delay: 980ms; }

/* Single-Line Separate Row Rate Cards */
.filer-rate-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filer-rate-row {
  position: relative;
  overflow: hidden;
  padding: 32px 36px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms ease, opacity 800ms var(--ease);
}

.filer-rate-row::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--acid), transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease);
}

.filer-rate-row:hover::before {
  transform: scaleX(1);
}

.filer-rate-row:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(57, 86, 166, 0.1);
}

.filer-rate-list .filer-rate-row:nth-child(1) { transition-delay: 0ms; }
.filer-rate-list .filer-rate-row:nth-child(2) { transition-delay: 120ms; }
.filer-rate-list .filer-rate-row:nth-child(3) { transition-delay: 240ms; }
.filer-rate-list .filer-rate-row:nth-child(4) { transition-delay: 360ms; }
.filer-rate-list .filer-rate-row:nth-child(5) { transition-delay: 480ms; }
.filer-rate-list .filer-rate-row:nth-child(6) { transition-delay: 600ms; }
.filer-rate-list .filer-rate-row:nth-child(7) { transition-delay: 720ms; }
.filer-rate-list .filer-rate-row:nth-child(8) { transition-delay: 840ms; }

.filer-rate-grid {
  display: grid;
  grid-template-columns: 60px 1.2fr 1.5fr 240px;
  align-items: center;
  gap: 30px;
}

.filer-rate-number {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.filer-rate-title-box h3 {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-top: 4px;
  line-height: 1.15;
}

.filer-rate-desc-box p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
}

.filer-rate-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.filer-rate-price-box .price-tag-glow {
  font-family: "DM Mono", monospace;
  font-size: 26px;
  font-weight: 700;
}

.filer-rate-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.filer-rate-row:hover .filer-rate-cta {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--ink);
}

@media (max-width: 1040px) {
  .filer-rate-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .filer-rate-price-box {
    align-items: flex-start;
    text-align: left;
  }
}

.work-card a {
  display: block;
}

.work-card-wide .work-image {
  aspect-ratio: 1.72 / 1;
}

.work-card-tall .work-image {
  aspect-ratio: 1 / 1.1;
}

.work-card:nth-child(2) {
  padding-top: 170px;
}

.work-card:nth-child(3) {
  margin-top: -115px;
}

.work-image {
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper-deep);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(1.055);
  transition:
    transform 800ms var(--ease),
    filter 500ms ease;
  will-change: transform;
}

.work-card:hover .work-image img {
  filter: saturate(1);
  transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(1.1);
}

.work-card:nth-child(1) .work-image img {
  object-position: center 69%;
}

.work-card-copy {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--ink);
}

.work-number,
.eyebrow,
.work-arrow {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-card-copy h3 {
  margin-top: 5px;
  font-size: clamp(25px, 2.8vw, 43px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.work-arrow {
  font-size: 18px;
  transition: transform 220ms var(--ease);
}

.work-card:hover .work-arrow {
  transform: translate(4px, -4px);
}

.tag-row {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.work-card:nth-child(2) .tag-row {
  top: 184px;
}

.tag-pill {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(20, 20, 20, 0.25);
  border-radius: 4px;
  background: var(--paper-deep);
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 200ms ease;
}

.work-card:hover .tag-pill {
  background: rgba(20, 20, 20, 0.08);
}

.platform-strip {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--cyan);
}

.platform-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 34s linear infinite;
}

.platform-track span {
  padding: 28px 38px;
  font-size: clamp(25px, 3vw, 46px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.platform-track i {
  font-size: 20px;
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* Animated Rate Marquee Banner & Interactive Rate Showcase */
.rate-banner-strip {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  position: relative;
  box-shadow: 0 4px 20px rgba(215, 255, 85, 0.25);
}

.rate-banner-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: rateTicker 26s linear infinite;
  white-space: nowrap;
}

.rate-banner-track:hover {
  animation-play-state: paused;
}

.rate-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rate-banner-item .price-badge {
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--acid);
  font-size: 11px;
}

@keyframes rateTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Rate Filter Pills Bar */
.rate-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 45px;
}

.rate-filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--ink);
  border-radius: 30px;
  background: transparent;
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 220ms ease;
}

.rate-filter-btn:hover,
.rate-filter-btn.is-active {
  background: var(--ink);
  color: var(--acid);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Live Status Pulse Dot */
.live-status-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(20, 20, 20, 0.2);
  border-radius: 20px;
  background: rgba(215, 255, 85, 0.3);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e7d32;
  box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(46, 125, 50, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
  }
}

/* Card Hover Micro-Animation & Shimmer */
.work-card {
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms ease;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 18px 40px rgba(57, 86, 166, 0.12);
}

.price-tag-glow {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--paper-deep);
  color: var(--blue);
  transition: all 200ms ease;
}

.work-card:hover .price-tag-glow {
  background: var(--acid);
  color: var(--ink);
  transform: scale(1.04);
}

.proof-section {
  padding: 112px 0;
}

.proof-intro {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
}

.proof-intro h2 {
  font-size: clamp(48px, 6.6vw, 105px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 104px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 210px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-value {
  display: block;
  font-size: clamp(60px, 7vw, 108px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.stat-value sup {
  color: var(--blue);
  font-size: 0.42em;
  vertical-align: top;
}

.stat p {
  margin-top: 34px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-section {
  border-top: 1px solid var(--line);
}

.services-section > .section-label {
  padding: 20px max(20px, calc((100vw - 1480px) / 2));
  border-right: 1px solid var(--line);
}

.services-main {
  padding: 80px max(20px, calc((100vw - 1480px) / 2)) 100px 7vw;
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 60px;
  align-items: end;
  padding-bottom: 62px;
}

.services-heading h2,
.process-heading h2 {
  font-size: clamp(52px, 6.6vw, 100px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.86;
  text-transform: uppercase;
}

.services-heading p {
  font-size: 14px;
  line-height: 1.6;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: start;
  min-height: 168px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 250ms var(--ease),
    background 200ms ease;
}

.service-index,
.service-arrow {
  padding-top: 7px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.service-row h3 {
  font-size: clamp(27px, 3vw, 45px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.service-row p {
  max-width: 680px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 920px;
  margin-top: 22px;
}

.service-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(20, 20, 20, 0.48);
  border-radius: 999px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.service-row:hover .service-tags span {
  border-color: rgba(20, 20, 20, 0.7);
  background: rgba(255, 255, 255, 0.48);
}

.service-arrow {
  font-size: 20px;
  transition: transform 220ms var(--ease);
}

.service-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--acid);
}

.service-row:hover .service-arrow {
  transform: translate(4px, -4px);
}

.process-section {
  padding: 105px 0 0;
  overflow: hidden;
  background: #dbe7f4;
  color: var(--ink);
}

.process-heading {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  padding-bottom: 76px;
}

.process-heading h2 em {
  color: var(--blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 27px 32px 46px 0;
  border-right: 1px solid var(--line);
  transition:
    color 350ms ease,
    padding 420ms var(--ease);
}

.process-card::before {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  transform: scale(0);
  transition: transform 650ms var(--ease);
}

.process-card:hover::before {
  transform: scale(3.6);
}

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

.process-card + .process-card {
  padding-left: 32px;
}

.process-card:last-child {
  border-right: 0;
}

.process-card > span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.process-card h3 {
  margin-top: 148px;
  font-size: clamp(27px, 2.9vw, 42px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.process-card p {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(20, 20, 20, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.quote-section {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 45px;
  padding-top: 130px;
  padding-bottom: 140px;
}

.quote-mark {
  color: var(--blue);
  font-family: "Newsreader", Georgia, serif;
  font-size: 150px;
  line-height: 0.65;
}

.quote-slider {
  max-width: 1160px;
  min-width: 0;
}

.quote-track {
  display: grid;
}

.quote-slide {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition:
    opacity 500ms var(--ease),
    transform 650ms var(--ease);
}

.quote-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.quote-slide > p {
  font-size: clamp(40px, 5.2vw, 79px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.quote-slide footer {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quote-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.quote-count {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.quote-controls > div {
  display: flex;
  gap: 8px;
}

.quote-controls button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.quote-controls button:hover {
  background: var(--blue);
  color: white;
}

.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 730px;
  background: var(--blue);
  color: white;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(57, 166, 215, 0.95), transparent 35%),
    linear-gradient(132deg, transparent 50%, rgba(0, 0, 0, 0.13));
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 2;
  padding-top: 112px;
  padding-bottom: 100px;
}

.contact-inner h2 {
  max-width: 1250px;
  margin-top: 42px;
  font-size: clamp(58px, 9vw, 142px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-inner h2 em {
  color: var(--acid);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.contact-form-card {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 200ms ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--acid);
}

.form-select option {
  background: var(--ink);
  color: #fff;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  margin-top: 12px;
  border: none;
  background: var(--acid);
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
}

.form-submit-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--acid);
}

.info-card p,
.info-card a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.contact-button {
  display: flex;
  width: 340px;
  align-items: center;
  justify-content: space-between;
  margin-top: 68px;
  padding: 21px 24px;
  border: 1px solid white;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  transition:
    background 200ms ease,
    color 200ms ease;
}

.contact-button:hover {
  background: white;
  color: var(--blue);
}

.contact-orbit {
  position: absolute;
  top: 42px;
  right: -30px;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.contact-orbit span {
  width: 120px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
}

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

.site-footer {
  background: #29458e;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  padding-top: 85px;
  padding-bottom: 80px;
}

.footer-brand img {
  width: 180px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
}

.footer-label {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-column p:not(.footer-label) {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.52);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(38px);
  transition:
    opacity 900ms var(--ease),
    filter 900ms var(--ease),
    transform 900ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.magnetic {
  will-change: transform;
}

@media (max-width: 1040px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 50px 20px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition:
      opacity 240ms ease,
      transform 240ms var(--ease);
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 34px;
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 34px;
    letter-spacing: -0.04em;
    text-transform: none;
    font-weight: 700;
  }

  .dropdown-trigger::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 0;
    padding: 0 0 10px 10px;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(20,20,20,0.15);
  }

  .submenu-flyout {
    position: static;
    display: none;
    width: 100%;
    margin: 0;
    padding: 4px 0 8px 15px;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
  }

  .has-submenu.is-open > .submenu-flyout {
    display: block;
  }

  .submenu-flyout li a {
    font-size: 13px;
    padding: 6px 0;
    color: var(--muted);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-heading-wrap {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    max-width: 420px;
    grid-template-columns: 1fr;
  }

  .section-grid {
    grid-template-columns: 140px 1fr;
  }

  .section-topline {
    grid-template-columns: 140px 1fr;
  }

  .section-note {
    display: none;
  }

  .work-card:nth-child(2) {
    padding-top: 100px;
  }

  .work-card:nth-child(3) {
    margin-top: -60px;
  }

  .work-card:nth-child(2) .tag-row {
    top: 114px;
  }

  .services-heading {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 24px, 1480px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand {
    width: 122px;
  }

  .brand img {
    height: 46px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-kicker span:last-child {
    display: none;
  }

  .hero-heading-wrap {
    gap: 28px;
    padding-bottom: 26px;
  }

  .hero h1 {
    font-size: clamp(52px, 16.2vw, 90px);
    line-height: 0.83;
  }

  .hero h1 span {
    padding-left: 0;
  }

  .hero-line-accent .hero-line-inner {
    padding-left: 0;
  }

  .hero-visual {
    height: 76vh;
    min-height: 540px;
    border-radius: 8px;
  }

  .hero-visual > img {
    object-position: 57% center;
  }

  .hero-caption-main {
    right: 18px;
    bottom: 26px;
    left: 18px;
  }

  .hero-caption-main p {
    font-size: 47px;
  }

  .hero-caption-side {
    right: auto;
    left: 14px;
  }

  .round-link {
    display: none;
  }

  .section-grid {
    display: block;
  }

  .manifesto {
    margin-top: 40px;
  }

  .manifesto > .section-label,
  .services-section > .section-label {
    padding: 16px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manifesto-copy,
  .services-main {
    padding: 52px 12px 64px;
  }

  .manifesto-copy h2 {
    font-size: 43px;
  }

  .manifesto-details {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
  }

  .work-section {
    padding: 70px 0;
  }

  .section-topline {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .section-topline h2 {
    font-size: 43px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .work-card:nth-child(2) {
    padding-top: 0;
  }

  .work-card:nth-child(3) {
    margin-top: 0;
  }

  .work-card:nth-child(2) .tag-row {
    top: 14px;
  }

  .work-card-wide .work-image,
  .work-card-tall .work-image {
    aspect-ratio: 1 / 1.08;
  }

  .work-card-copy {
    grid-template-columns: 32px 1fr auto;
  }

  .work-card-copy h3 {
    font-size: 29px;
  }

  .tag-row {
    max-width: calc(100% - 28px);
  }

  .proof-section {
    padding: 76px 0;
  }

  .proof-intro {
    grid-template-columns: 1fr;
  }

  .proof-intro h2 {
    font-size: 47px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 56px;
  }

  .stat {
    min-height: 170px;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: 0;
  }

  .services-heading {
    padding-bottom: 40px;
  }

  .services-heading h2,
  .process-heading h2 {
    font-size: 49px;
  }

  .service-row {
    grid-template-columns: 28px 1fr auto;
    padding: 23px 0;
  }

  .service-row p {
    font-size: 12px;
  }

  .service-tags {
    gap: 5px;
    margin-top: 18px;
  }

  .service-tags span {
    padding: 6px 8px;
    font-size: 7px;
  }

  .process-section {
    padding-top: 74px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }

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

  .process-card,
  .process-card + .process-card {
    min-height: 310px;
    padding: 25px 0 40px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card h3 {
    margin-top: 90px;
  }

  .quote-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .quote-mark {
    font-size: 100px;
  }

  .quote-slide > p {
    font-size: 37px;
  }

  .quote-slide footer {
    flex-direction: column;
    gap: 10px;
  }

  .contact-section {
    min-height: 650px;
  }

  .contact-inner {
    padding-top: 92px;
  }

  .contact-inner h2 {
    margin-top: 90px;
    font-size: 55px;
  }

  .contact-button {
    width: 100%;
  }

  .contact-orbit {
    top: 20px;
    right: -55px;
    transform: scale(0.7);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .motion-capable .hero-line-inner,
  .motion-capable .hero-kicker,
  .motion-capable .hero-load {
    opacity: 1;
    transform: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .motion-cursor,
  .service-preview {
    display: none;
  }
}
