:root {
  --paper: #f8f9fa;
  --surface: #f8f9fa;
  --surface-soft: #e9ecef;
  --ink: #212529;
  --muted: #6c757d;
  --sage: #495057;
  --sage-dark: #343a40;
  --blue: #495057;
  --clay: #6c757d;
  --line: #dee2e6;
  --line-strong: #ced4da;
  --shadow: 0 18px 50px rgba(33, 37, 41, 0.08);
  --radius: 8px;
  --font: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

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

code {
  background: rgba(33, 37, 41, 0.06);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.08rem 0.28rem;
}

.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor input,
.has-custom-cursor select,
.has-custom-cursor textarea {
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor-dot {
  background: var(--paper);
  border-radius: 50%;
  height: 8px;
  mix-blend-mode: difference;
  width: 8px;
}

.cursor-ring {
  background: rgba(248, 249, 250, 0.06);
  border: 1.5px solid var(--paper);
  border-radius: 999px;
  height: 42px;
  mix-blend-mode: difference;
  transition: height 180ms ease, opacity 180ms ease, width 180ms ease, background 180ms ease;
  width: 42px;
}

.cursor-ready .cursor-dot,
.cursor-ready .cursor-ring {
  opacity: 1;
}

.cursor-hover .cursor-ring {
  background: rgba(248, 249, 250, 0.14);
  height: 68px;
  width: 68px;
}

.reveal {
  opacity: 0;
  -webkit-transform: translateY(34px);
  transform: translateY(34px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.motion-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.7em);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--word-index, 0) * 42ms);
  /* Safari: promote each word to its own compositing layer to prevent flicker */
  -webkit-transform: translateY(0.7em);
  will-change: opacity, transform, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.is-visible .motion-title .word,
.motion-title.is-visible .word,
.hero.is-visible .motion-title .word {
  -webkit-animation: textWordLoop 4.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation: textWordLoop 4.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  -webkit-animation-delay: calc(var(--loop-offset, 0ms) + (var(--word-index, 0) * 46ms));
  animation-delay: calc(var(--loop-offset, 0ms) + (var(--word-index, 0) * 46ms));
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.site-header {
  align-items: center;
  background: rgba(248, 249, 250, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 0 48px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 30;
  /* Safari: prevent sticky header from triggering full-page repaints on scroll */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  height: 42px;
  width: 42px;
}

.brand span {
  font-size: 1.05rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav .nav-cta,
.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.site-nav .nav-cta,
.btn.primary {
  background: var(--sage-dark);
  color: var(--paper);
}

.site-nav .nav-cta:hover,
.btn.primary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn.secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--sage-dark);
}

.btn.secondary:hover {
  border-color: var(--sage-dark);
  color: var(--ink);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 22px;
}

.hero {
  border-bottom: 1px solid var(--line);
  padding: 86px 48px 72px;
}

.hero-inner,
.section-grid,
.contact-section,
.image-band {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 0.88fr;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.hero-copy {
  align-self: center;
}

.hero-copy,
.hero-media,
.section-grid > *,
.contact-section > *,
.image-band > * {
  min-width: 0;
}

.eyebrow {
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero h1,
.section h2,
.contact-copy h2 {
  color: var(--ink);
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero-text {
  color: var(--muted);
  font-size: 1.16rem;
  margin-top: 24px;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-media {
  align-self: stretch;
}

.hero-media img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.metric-strip {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-strip div {
  border-right: 1px solid var(--line);
  min-height: 128px;
  padding: 30px 36px;
}

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

.metric-strip strong {
  color: var(--sage-dark);
  display: block;
  font-size: 1.9rem;
  line-height: 1.15;
  margin-bottom: 8px;
}

.metric-strip span {
  color: var(--muted);
  display: block;
}

.section {
  padding: 92px 48px;
}

.section-heading {
  margin: 0 auto 40px;
  max-width: 780px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  text-align: left;
}

.section-heading h2,
.section-grid h2,
.contact-copy h2,
.image-band h2,
.number-heading h2,
.proof-numbers h2 {
  font-size: 2.55rem;
  line-height: 1.16;
}

.section-heading p,
.intro-copy p,
.image-band p,
.contact-copy p,
.section-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.about-section {
  background: url("assets/1 background.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(248, 249, 250, 0.12);
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.intro-section {
  background: url("assets/2 background.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(248, 249, 250, 0.12);
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.about-section::before,
.intro-section::before {
  background: rgba(0, 0, 0, 0.48);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.about-section > *,
.intro-section > * {
  position: relative;
  z-index: 1;
}

.about-section .eyebrow,
.intro-section .eyebrow,
.about-section h2,
.intro-section h2 {
  color: var(--paper);
}

.about-section .section-heading p,
.about-section .section-copy p,
.intro-section .intro-copy p {
  color: rgba(248, 249, 250, 0.88);
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.services-section,
.process-section {
  background: var(--paper);
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 1180px;
}

.service-card {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto auto;
  min-height: 156px;
  padding: 28px;
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.featured-service {
  background: var(--surface-soft);
  border-color: var(--line-strong);
}

.service-number {
  color: var(--clay);
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.service-card p {
  color: var(--muted);
  max-width: 720px;
}

.pricing-dropdown {
  margin-top: 14px;
  max-width: 760px;
}

.pricing-dropdown summary {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--sage-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 12px;
  list-style: none;
  padding: 8px 12px;
  user-select: none;
}

.pricing-dropdown summary::-webkit-details-marker {
  display: none;
}

.pricing-dropdown summary:hover {
  background: var(--surface-soft);
}

.pricing-toggle {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.pricing-toggle::before {
  content: "+";
  line-height: 1;
}

.pricing-dropdown[open] .pricing-toggle::before {
  content: "-";
}

.pricing-tier-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.pricing-tier-list article {
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  padding: 14px;
}

.pricing-tier-list h4 {
  font-size: 0.98rem;
  line-height: 1.25;
  margin-bottom: 4px;
}

.pricing-tier-list p {
  font-size: 0.9rem;
}

.pricing-tier-list strong {
  min-width: 190px;
}

.service-card strong {
  color: var(--sage-dark);
  font-size: 1rem;
  min-width: 150px;
  text-align: right;
}

.service-card a {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--sage-dark);
  font-weight: 800;
  min-width: 104px;
  padding: 12px 16px;
  text-align: center;
}

.service-card a:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--paper);
}

.projects-section {
  background: var(--surface);
}

.project-grid,
.logo-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.project-card,
.logo-option,
.process-list article,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 486px;
  overflow: hidden;
}

.project-card img,
.project-card > video,
.project-video-thumb,
.project-visual {
  aspect-ratio: 16 / 10;
  display: block;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.project-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.project-type,
.option-label {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.project-card h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.project-card p {
  color: var(--muted);
}

.project-card p:not(.project-type) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.text-link {
  color: var(--sage-dark);
  display: inline-flex;
  font-weight: 800;
  margin-top: auto;
  padding-top: 16px;
}

.text-link:hover {
  color: var(--ink);
}

.project-visual {
  background: var(--surface-soft);
  padding: 24px;
}

.quote-workstation-preview {
  align-content: center;
  background: #212529;
  display: grid;
  gap: 12px;
  grid-template-columns: 0.72fr 1fr;
}

.quote-workstation-preview span {
  background: rgba(248, 249, 250, 0.16);
  border: 1px solid rgba(248, 249, 250, 0.18);
  border-radius: 6px;
  min-height: 34px;
}

.quote-workstation-preview span:first-child {
  background: #f8f9fa;
  grid-column: 1 / -1;
  min-height: 42px;
}

.quote-workstation-preview span:nth-child(2),
.quote-workstation-preview span:nth-child(4) {
  background: #ced4da;
}

.quote-workstation-preview span:nth-child(3) {
  grid-row: span 2;
}

.whatsapp-preview {
  align-content: center;
  display: grid;
  gap: 12px;
}

.chat-line {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: block;
  height: 28px;
  width: 78%;
}

.chat-line.short {
  width: 52%;
}

.chat-line.reply {
  background: var(--line-strong);
  justify-self: end;
}

.dashboard-preview {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.dashboard-preview span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 64px;
}

.dashboard-preview span:nth-child(4),
.dashboard-preview span:nth-child(5),
.dashboard-preview span:nth-child(6) {
  background: var(--line);
}

.number-showcase {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 44px;
  grid-template-columns: 0.74fr 1fr;
}

.number-heading,
.number-grid,
.proof-numbers,
.proof-number-grid {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.number-showcase > *,
.proof-numbers > * {
  min-width: 0;
}

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

.number-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 220px;
  padding: 26px;
}

.number-grid strong,
.proof-number-grid strong {
  color: var(--ink);
  display: block;
  font-size: 4rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 22px;
}

.number-grid p,
.proof-number-grid span {
  color: var(--muted);
  font-size: 1.02rem;
}

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

.logo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.logo-option {
  min-height: 292px;
  padding: 22px;
}

.logo-option.recommended {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #ffffff;
}

.logo-option.recommended p,
.logo-option.recommended .option-label {
  color: rgba(255, 255, 255, 0.78);
}

.logo-sample {
  align-items: center;
  display: grid;
  gap: 14px;
  justify-items: start;
  margin: 12px 0 24px;
}

.logo-sample svg,
.wordmark-sample span,
.monogram-sample span {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--sage-dark);
  height: 64px;
  padding: 12px;
  width: 64px;
}

.recommended .logo-sample svg {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.logo-sample strong {
  font-size: 1.22rem;
}

.wordmark-sample span,
.monogram-sample span {
  align-items: center;
  display: flex;
  font-size: 1.35rem;
  font-weight: 800;
  justify-content: center;
  padding: 0;
}

.monogram-sample span {
  font-size: 1rem;
}

.logo-option p {
  color: var(--muted);
}

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

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  gap: 12px;
  grid-template-columns: 56px 1fr;
  padding: 22px;
}

.process-list article span {
  color: var(--clay);
  font-weight: 800;
}

.process-list article h3 {
  font-size: 1.15rem;
}

.process-list article p {
  color: var(--muted);
  grid-column: 2;
}

.proof-numbers {
  align-items: end;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 50px;
  grid-template-columns: 0.78fr 1fr;
  max-width: none;
  padding-bottom: 86px;
  padding-top: 86px;
}

.proof-numbers > div {
  max-width: 1180px;
}

.proof-numbers .eyebrow,
.proof-numbers h2 {
  color: var(--paper);
}

.proof-number-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-number-grid article {
  background: #343a40;
  border: 1px solid rgba(248, 249, 250, 0.12);
  border-radius: var(--radius);
  padding: 30px;
}

.proof-number-grid strong {
  color: var(--paper);
}

.proof-number-grid span {
  color: #ced4da;
}

.image-band {
  align-items: center;
  background: var(--surface);
  max-width: none;
  padding: 0;
}

.image-band img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  width: 100%;
}

.image-band div {
  max-width: 580px;
  padding: 76px 48px;
}

.image-band h2 {
  margin-bottom: 20px;
}

.contact-section {
  align-items: start;
  padding: 92px 48px;
}

.founder-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.founder-list span {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--sage-dark);
  font-weight: 800;
  padding: 10px 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  color: var(--ink);
  display: grid;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(73, 80, 87, 0.16);
}

.full-width {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--ink);
  color: #ced4da;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 48px 30px;
}

.footer-contact {
  display: grid;
  gap: 56px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1180px;
}

.site-footer .eyebrow,
.site-footer h2 {
  color: var(--paper);
}

.site-footer h2 {
  font-size: 3.1rem;
  line-height: 1.08;
  max-width: 620px;
}

.footer-headline {
  overflow: hidden;
}

.footer-action-line,
.footer-line {
  color: var(--paper);
  display: block;
  opacity: 0;
  -webkit-transform: translateY(1em);
  transform: translateY(1em);
  transition: color 300ms ease, opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.footer-action-line {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.28em;
}

.footer-verb {
  display: inline-block;
  height: 1.08em;
  min-width: 3.35em;
  overflow: hidden;
  position: relative;
  vertical-align: bottom;
}

.footer-verb span {
  -webkit-animation: footerVerbRise 4.35s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation: footerVerbRise 4.35s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  -webkit-animation-delay: var(--verb-delay);
  animation-delay: var(--verb-delay);
  -webkit-filter: blur(8px);
  filter: blur(8px);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(96%);
  transform: translateY(96%);
  will-change: opacity, transform, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.footer-line.muted {
  color: #adb5bd;
}

.site-footer.is-visible .footer-action-line,
.site-footer.is-visible .footer-line {
  opacity: 1;
  transform: translateY(0);
}

.site-footer.is-visible .footer-action-line {
  animation: footerLineFloat 7s ease-in-out 1200ms infinite alternate;
  transition-delay: 100ms;
}

.site-footer.is-visible .footer-line.muted {
  animation: footerLineFloat 7s ease-in-out 1500ms infinite alternate-reverse;
  transition-delay: 220ms;
}

.footer-links {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.footer-links div {
  border-top: 1px solid rgba(248, 249, 250, 0.16);
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.footer-links span {
  color: #adb5bd;
  font-size: 0.85rem;
  font-weight: 800;
}

.footer-links a {
  color: var(--paper);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: #adb5bd;
}

.footer-small {
  border-top: 1px solid rgba(248, 249, 250, 0.12);
  color: #adb5bd;
  margin: 70px auto 28px;
  max-width: 1180px;
  padding-top: 22px;
}

.footer-wordmark-wrap {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  margin: 38px auto -30px;
  max-width: 1180px;
  min-height: clamp(118px, 13vw, 190px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.footer-wordmark {
  color: var(--paper);
  display: inline-block;
  filter: none;
  font-size: clamp(2.5rem, 10.4vw, 9.6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
  opacity: 0.98;
  position: relative;
  text-align: center;
  transform: none;
  transform-origin: center bottom;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

@keyframes footerLineFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-0.12em);
  }
}

@-webkit-keyframes textWordLoop {
  0% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  58% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  70% {
    -webkit-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
    -webkit-transform: translateY(-0.58em);
    transform: translateY(-0.58em);
  }

  72% {
    opacity: 0;
    -webkit-transform: translateY(0.62em);
    transform: translateY(0.62em);
  }

  84% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes textWordLoop {
  0% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }

  58% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }

  70% {
    filter: blur(6px);
    opacity: 0;
    transform: translateY(-0.58em);
  }

  72% {
    opacity: 0;
    transform: translateY(0.62em);
  }

  84% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes footerVerbRise {
  0% {
    -webkit-filter: blur(8px);
    filter: blur(8px);
    opacity: 0;
    -webkit-transform: translateY(98%);
    transform: translateY(98%);
  }

  14% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  30% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  42% {
    -webkit-filter: blur(8px);
    filter: blur(8px);
    opacity: 0;
    -webkit-transform: translateY(-98%);
    transform: translateY(-98%);
  }

  100% {
    -webkit-filter: blur(8px);
    filter: blur(8px);
    opacity: 0;
    -webkit-transform: translateY(-98%);
    transform: translateY(-98%);
  }
}

@keyframes footerVerbRise {
  0% {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(98%);
  }

  14% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }

  42% {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(-98%);
  }

  100% {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(-98%);
  }
}

@media (max-width: 1060px) {
  .hero-inner,
  .section-grid,
  .contact-section,
  .image-band {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .metric-strip,
  .project-grid,
  .logo-grid,
  .number-grid,
  .proof-number-grid,
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-showcase,
  .proof-numbers,
  .footer-contact {
    grid-template-columns: 1fr;
  }

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

  .service-card strong {
    text-align: left;
  }

  .pricing-tier-list article {
    grid-template-columns: 1fr;
  }

  .pricing-tier-list strong {
    min-width: 0;
    text-align: left;
  }

  .service-card a {
    width: fit-content;
  }

  .image-band img {
    min-height: 340px;
  }

}

@media (max-width: 760px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 14px 20px 20px;
    position: absolute;
    right: 0;
    top: 75px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .site-nav .nav-cta {
    margin-top: 14px;
  }

  .hero,
  .section,
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-section,
  .intro-section {
    background-position: center;
  }

  .about-section::before,
  .intro-section::before {
    background: rgba(0, 0, 0, 0.54);
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .section-heading h2,
  .section-grid h2,
  .contact-copy h2,
  .image-band h2,
  .number-heading h2,
  .proof-numbers h2 {
    font-size: 2rem;
  }

  .metric-strip,
  .project-grid,
  .logo-grid,
  .number-grid,
  .proof-number-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 0;
    padding: 24px 22px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .image-band div {
    padding: 56px 22px;
  }

  .number-showcase,
  .proof-numbers {
    padding-left: 22px;
    padding-right: 22px;
  }

  .number-grid strong,
  .proof-number-grid strong {
    font-size: 3rem;
  }

  .site-footer {
    padding: 68px 22px 24px;
  }

  .site-footer h2 {
    font-size: 2.2rem;
  }

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

  .process-list article p {
    grid-column: 1;
  }
}

@media (max-width: 440px) {
  .brand span {
    font-size: 0.95rem;
  }

  .brand-mark {
    height: 36px;
    width: 36px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-text {
    font-size: 1rem;
  }

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

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

  .project-card img,
  .project-card > video,
  .project-video-thumb,
  .project-visual {
    height: 200px;
  }

  .service-card,
  .project-content,
  .logo-option,
  .contact-form,
  .number-grid article,
  .proof-number-grid article {
    padding: 20px;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .has-custom-cursor,
  .has-custom-cursor a,
  .has-custom-cursor button,
  .has-custom-cursor input,
  .has-custom-cursor select,
  .has-custom-cursor textarea {
    cursor: auto;
  }
}

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

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

  .reveal,
  .motion-title .word {
    opacity: 1;
    transform: none;
  }

  .footer-verb span {
    animation: none;
    filter: none;
    opacity: 0;
    transform: translateY(0);
  }

  .footer-verb span:first-child {
    opacity: 1;
  }
}
