:root {
  --bg-paper: #F6F4EE;
  --bg-paper-card: #FFFFFF;
  --bg-paper-subtle: #EFECE3;
  --text-ink: #111111;
  --text-muted: #555555;
  --text-subtle: #888888;
  --border-ink: #111111;
  --border-pill: #111111;
  --border-light: #DDD9CE;
  --pill-bg: #FFFFFF;
  --pill-btn-bg: #111111;
  --pill-btn-text: #FFFFFF;

  --accent: #00C897;
  --accent-ink: #00795C;
  --accent-wash: rgba(0, 200, 151, 0.12);
  --focus-ring: #00795C;

  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs: 0.78rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: clamp(1.5rem, 2.2vw, 2.1rem);
  --fs-2xl: clamp(2.4rem, 3.8vw, 3.6rem);
  --fs-3xl: clamp(2.8rem, 4.5vw, 4.3rem);

  --radius-pill: 9999px;
  --radius-card: 24px;
  --radius-sm: 12px;

  --shadow-sketch: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-floating-device: 0 25px 60px -15px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.08);

  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-paper);
  color: var(--text-ink);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-paper);

  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

button,
input {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 300;
  padding: 0.7rem 1.2rem;
  background: var(--text-ink);
  color: var(--bg-paper);
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 1rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-paper);
  padding: 1.5rem 0;
  border-bottom: none;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-ink);
  text-decoration: none;
}

.logo-colon {
  color: var(--accent);
  font-weight: 800;
  margin: 0 0.04rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text-ink);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-pill-outline {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1.6px solid var(--text-ink);
  color: var(--text-ink);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-pill-outline:hover {
  background-color: var(--text-ink);
  color: var(--bg-paper);
}

.btn-pill-solid {
  padding: 0.52rem 1.45rem;
  border-radius: var(--radius-pill);
  background-color: #1c1c1c;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid #1c1c1c;
  transition: var(--transition-smooth);
}

.btn-pill-solid:hover {
  transform: scale(1.02);
  background-color: #222;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text-ink);
  color: var(--bg-paper);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--fs-md);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: var(--bg-paper);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease-out-back);
}

.mobile-drawer.active .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-md {
  font-size: 1.5rem;
}

.drawer-close {
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  color: var(--text-ink);
}

.mobile-drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: var(--fs-md);
  font-weight: 700;
}

.mobile-drawer-link {
  text-decoration: none;
  color: var(--text-ink);
}

.mobile-drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-drawer-actions a {
  text-align: center;
}

body.drawer-open {
  overflow: hidden;
}

.hero {
  padding: 4rem 0 1.5rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  z-index: 2;
}

.hero-name {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #3A3A3A;
  margin-bottom: -0.6rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  line-height: 1.08;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.025em;
}

.hero-subheadline {
  font-size: var(--fs-md);
  line-height: 1.55;
  color: #444444;
  font-weight: 500;
  max-width: 440px;
  letter-spacing: -0.005em;
}

.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 0.8rem 1.8rem;
  font-size: var(--fs-base);
  font-family: var(--font-sans);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
}

.hero-btn.btn-pill-solid {
  background-color: #1c1c1c;
  color: #ffffff;
  border: 1.6px solid #1c1c1c;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.hero-btn.btn-pill-solid:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: #222222;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.hero-btn.btn-pill-outline {
  border: 1.6px solid #1c1c1c;
  color: #111111;
  background: transparent;
}

.hero-btn.btn-pill-outline:hover {
  background-color: #1c1c1c;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-arrow-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.25s ease;
}

.hero-btn:hover .btn-arrow-icon {
  transform: translateX(3px);
}

.hand-drawn-arrow-wrap {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  position: relative;
}

.hand-drawn-arrow {
  width: 24px;
  height: 42px;
  stroke: #111111;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

.hero-visual-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.hero-illustration-video,
.hero-illustration-img {
  width: 125%;
  max-width: 780px;
  height: auto;
  transform: scale(1.32);
  transform-origin: center center;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.28) brightness(1.03);
}

.sub-hero-annotations {
  padding: 0.5rem 0 4rem 0;
  position: relative;
}

.annotations-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  align-items: center;
  position: relative;
  padding: 0.5rem 0.5rem;
  background: transparent;
  border: none;
}

.tech-tag {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #2F2F2F;
  background: var(--accent-wash);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.cluster-card {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 1.5rem 0.5rem;
}

.cluster-info p.cluster-title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: #111111;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.cluster-info p.cluster-desc {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: #4A4A4A;
  font-weight: 450;
  margin-top: 0.4rem;
  line-height: 1.55;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem auto;
}

.section-header--left {
  text-align: left;
  max-width: 32rem;
  margin: 0 0 2.75rem 0;
}

.section-eyebrow,
.cf-field label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A5A5A;
  display: block;
}

.section-eyebrow {
  color: var(--accent-ink);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111111;
}

.work-section {
  padding: 2rem 0 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: 2.5rem 3.5rem;
}

.work-item {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.work-num {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--accent-ink);
  display: block;
  margin-bottom: 0.75rem;
}

.work-title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #111111;
}

.work-desc {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 450;
  line-height: 1.6;
  color: #4A4A4A;
  margin-top: 0.7rem;
  max-width: 46ch;
}

.brands-section {
  padding: 3rem 0 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem 3.5rem;
}

.brand-row--center {
  justify-content: center;
}

.brand-logo {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.82;
}

.brand-logo--bold {
  height: 32px;
}

.how-i-work-section {
  padding: 4rem 0 4rem 0;
  background-color: var(--bg-paper);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hiw-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.hiw-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hiw-headline {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #111111;
  margin-bottom: 0.75rem;
}

.hiw-desc {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: #4A4A4A;
  line-height: 1.6;
  max-width: 100%;
  font-weight: 450;
}

.hiw-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.15) brightness(1.02);
}

.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  background: var(--bg-paper);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-sm {
  font-size: 1.4rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-ink);
}

.contact-section {
  padding: 6rem 0;
  background-color: var(--bg-paper);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-right {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.contact-headline {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111111;
  margin-bottom: 0.75rem;
  margin-top: 0.4rem;
}

.contact-sub {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 420px;
  font-weight: 450;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cf-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cf-optional {
  font-weight: 500;
  color: var(--text-subtle);
}

.cf-field input,
.cf-field textarea {
  background: var(--bg-paper-card, #ffffff);
  border: 1.6px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  padding: 0.78rem 1rem;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: #111111;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: #767676;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.cf-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.linkedin-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-direct {
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.contact-direct a {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-visual-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.contact-fire-video,
.contact-fire-img {
  width: 108%;
  max-width: 660px;
  height: auto;
  transform: scale(1.06);
  transform-origin: left center;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.28) brightness(1.03);
}

@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-visual-stage {
    display: flex;
    justify-content: center;
  }

  .hero-illustration-video,
  .hero-illustration-img,
  .contact-fire-video,
  .contact-fire-img {
    max-width: 580px;
    width: 100%;
    transform: none;
  }

  .hero-subheadline {
    margin-inline: auto;
  }

  .hand-drawn-arrow-wrap {
    margin-inline: auto;
    text-align: center;
  }

  .hero-action-buttons {
    justify-content: center;
  }

  .hiw-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4rem;
  }

  .contact-sub {
    max-width: 65ch;
  }

  .annotations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-tags {
    justify-content: center;
  }

  .cluster-card {
    justify-content: center;
  }

  .cluster-info {
    max-width: 60ch;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .logo {
    font-size: 1.25rem;
  }

  .hero {
    padding: 3rem 0 2rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    line-height: 1.1;
  }

  .hero-subheadline {
    font-size: var(--fs-base);
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-action-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hand-drawn-arrow-wrap {
    text-align: center;
    margin: 1.4rem auto 0 auto;
  }

  .hero-illustration-video,
  .hero-illustration-img {
    max-width: 100%;
    width: 100%;
  }

  .sub-hero-annotations {
    padding: 1.5rem 0 2.5rem 0;
  }

  .annotations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tech-tags {
    gap: 0.6rem 1rem;
    padding: 1rem 0;
  }

  .tech-tag {
    font-size: var(--fs-base);
  }

  .cluster-card {
    padding: 1rem 0;
  }

  .cluster-info p.cluster-title {
    font-size: 1.4rem;
  }

  .cluster-info p.cluster-desc {
    font-size: 0.88rem;
  }

  .work-section {
    padding: 1.5rem 0 2rem 0;
  }

  .work-grid {
    gap: 2rem;
  }

  .work-title {
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
  }

  .brands-section {
    padding: 2rem 0;
  }

  .brand-row {
    gap: 1.25rem 2rem;
  }

  .brand-logo {
    height: 32px;
  }

  .brand-logo--bold {
    height: 24px;
  }

  .how-i-work-section {
    padding: 3rem 0 2.5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header--left {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hiw-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hiw-col {
    gap: 1rem;
  }

  .hiw-headline {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .hiw-desc {
    font-size: var(--fs-base);
  }

  .hiw-img {
    max-width: 420px;
    margin: 0 auto;
    display: block;
  }

  .contact-section {
    min-height: auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 3.5rem;
  }

  .contact-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .contact-sub {
    max-width: 65ch;
    font-size: var(--fs-base);
  }

  .cf-actions .btn-pill-solid {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-brand {
    flex-wrap: wrap;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-subheadline {
    font-size: var(--fs-base);
  }

  .hiw-headline {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .tech-tag {
    font-size: var(--fs-sm);
  }

  .hiw-img {
    max-width: 100%;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .btn-pill-solid:hover,
  .hero-btn.btn-pill-solid:hover,
  .hero-btn.btn-pill-outline:hover,
  .hero-btn:hover .btn-arrow-icon {
    transform: none;
  }
}

.notfound {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.notfound-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.notfound .section-title,
.notfound .contact-sub {
  max-width: 40ch;
}

.notfound-code {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-ink);
  line-height: 1;
}

.notfound .contact-sub {
  margin-bottom: 0.5rem;
}
