:root {
  --ink: #121212;
  --ink-soft: #1a1a1a;
  --ink-lighter: #2a2a2a;
  --paper: #e9e7e2;
  --paper-deep: #dedbd4;
  --white: #f9f7f2;
  --accent: #d6ff3a;
  --accent-deep: #bde622;
  --orange: #ff5a3c;
  --blue: #9fd4ff;
  --muted: #8a8a8a;
  --line: rgba(17, 17, 15, 0.16);
  --line-light: rgba(255, 255, 255, 0.14);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
  --container: 1320px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

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

img,
svg {
  display: block;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

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

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  transform: translateY(-160%);
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
}

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

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: 140px 0;
}

.section-label,
.section-number {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2,
.intro-copy h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.4vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.section-heading h2 span,
.intro-copy h2 span {
  color: var(--muted);
}

.section-heading-copy {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translate(3px, -3px);
}

.button-small {
  min-height: 45px;
  padding: 0 17px;
  font-size: 0.72rem;
}

.button-large {
  min-height: 62px;
  padding: 0 28px;
}

.button-accent {
  background: var(--accent);
  color: var(--ink);
}

.button-accent:hover {
  background: var(--accent-deep);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--ink-lighter);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition:
    height 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(17, 17, 15, 0.92);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 45px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.brand-logo-full {
  display: block;
}

.brand-logo-icon {
  display: none;
  width: 48px;
  height: 42px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.desktop-nav a {
  position: relative;
  padding: 27px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
}

.availability-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(216, 255, 62, 0.12);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 24px;
  height: 1px;
  display: block;
  margin: 3px auto;
  background: currentColor;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transition:
    opacity 300ms ease,
    visibility 300ms ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 160;
  width: min(470px, 94vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 30px;
  visibility: hidden;
  transform: translateX(100%);
  background: var(--accent);
  color: var(--ink);
  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 350ms ease;
}

.menu-open .menu-overlay {
  visibility: visible;
  opacity: 1;
}

.menu-open .mobile-menu {
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.22);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mobile-menu-top img {
  width: 205px;
  height: auto;
  filter: brightness(0);
}

.mobile-menu-top button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-top svg {
  width: 23px;
}

.mobile-menu nav {
  display: grid;
  margin-top: 28px;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.18);
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.mobile-menu nav strong {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.mobile-menu-footer {
  margin-top: auto;
}

.mobile-menu-footer p {
  max-width: 270px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.mobile-menu-footer .button {
  width: 100%;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 35%, rgba(216, 255, 62, 0.09), transparent 25%),
    var(--ink);
  color: var(--white);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-orbit-one {
  top: -430px;
  right: -300px;
  width: 1050px;
  height: 1050px;
}

.hero-orbit-two {
  right: -90px;
  bottom: -530px;
  width: 920px;
  height: 920px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(480px, 0.8fr);
  gap: clamp(60px, 7vw, 120px);
  align-items: center;
  padding-top: 148px;
  padding-bottom: 118px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 27px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow strong {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(4.25rem, 6.65vw, 7.15rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.88;
}

.hero-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.hero-note-divider {
  width: 1px;
  height: 14px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-stage {
  position: relative;
  min-height: 610px;
  transform: perspective(1200px) rotateY(-4deg);
}

.stage-browser {
  position: absolute;
  top: 72px;
  right: 0;
  width: min(100%, 550px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #dedbd1;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.browser-bar {
  height: 44px;
  display: grid;
  grid-template-columns: 80px 1fr 20px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.14);
  color: var(--ink);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.28);
}

.browser-address {
  justify-self: center;
  padding: 4px 28px;
  background: rgba(17, 17, 15, 0.07);
  font-size: 0.56rem;
}

.browser-bar svg {
  width: 16px;
}

.browser-page {
  min-height: 440px;
  padding: 23px;
  background:
    linear-gradient(115deg, rgba(216, 255, 62, 0.85) 0 44%, transparent 44%),
    linear-gradient(135deg, #292925 0 74%, #ff6038 74%);
  color: var(--white);
}

.browser-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-logo {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
}

.mini-logo span {
  color: var(--orange);
}

.mini-links {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.48rem;
}

.browser-hero {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 43%;
}

.browser-tag {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.44rem;
  letter-spacing: 0.15em;
}

.browser-hero strong {
  font-family: var(--display);
  font-size: 2.7rem;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.browser-cta {
  margin-top: 22px;
  padding: 8px 11px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.56rem;
  font-weight: 700;
}

.browser-cta b {
  margin-left: 14px;
}

.browser-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.browser-metrics span {
  display: grid;
  padding: 12px;
  background: #292925;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.43rem;
}

.browser-metrics b {
  margin-bottom: 2px;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.82rem;
}

.stage-card {
  position: absolute;
  z-index: 3;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.stage-card-google {
  right: -28px;
  bottom: 5px;
  width: 330px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  align-items: center;
  padding: 17px;
  background: var(--white);
  color: var(--ink);
}

.stage-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--accent);
}

.stage-card-icon svg {
  width: 18px;
}

.stage-card-google div {
  display: grid;
}

.stage-card-google small {
  color: var(--muted);
  font-size: 0.52rem;
}

.stage-card-google strong {
  font-size: 0.68rem;
}

.google-rating {
  grid-column: 2;
  color: #c49300;
  font-size: 0.58rem;
  font-weight: 700;
}

.stage-card-print {
  bottom: 62px;
  left: -62px;
  width: 230px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  transform: rotate(-7deg);
  background: var(--orange);
  color: var(--ink);
}

.print-mark {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
}

.print-mark span {
  color: var(--white);
}

.stage-card-print small {
  display: block;
  font-size: 0.46rem;
  letter-spacing: 0.12em;
}

.stage-card-print strong {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.05;
}

.stage-sticker {
  position: absolute;
  top: 13px;
  right: 5px;
  z-index: 4;
  width: 116px;
  height: 116px;
  display: grid;
  place-content: center;
  transform: rotate(9deg);
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  text-align: center;
}

.stage-sticker span {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.stage-sticker strong {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-index span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-index span:last-child {
  border-right: 0;
}

.ticker {
  width: 100%;
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ticker-track i {
  font-size: 0.75rem;
  font-style: normal;
}

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

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

.intro-grid {
  display: grid;
  grid-template-columns: 0.35fr 1.25fr 0.4fr;
  gap: 70px;
  align-items: start;
}

.intro-copy h2 {
  margin-top: 0;
}

.intro-copy > p {
  max-width: 750px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.intro-badge {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--orange);
}

.intro-badge > span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.intro-badge svg {
  width: 38px;
  height: 38px;
  align-self: flex-end;
}

.intro-badge strong {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
}

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

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

.service-card {
  position: relative;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card-featured {
  grid-column: span 2;
  min-height: 620px;
}

.service-card-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.service-card-accent {
  background: var(--accent);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-index {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.service-card-dark .service-index {
  color: rgba(255, 255, 255, 0.42);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.service-card-dark .service-icon {
  border-color: var(--line-light);
}

.service-icon svg {
  width: 21px;
}

.service-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.service-card-featured .service-copy {
  max-width: 48%;
}

.service-copy h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.service-copy > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.service-card-dark .service-copy > p {
  color: rgba(255, 255, 255, 0.52);
}

.service-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-copy li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card-dark .service-copy li {
  border-color: var(--line-light);
  color: rgba(255, 255, 255, 0.58);
}

.service-card-accent .service-copy li {
  border-color: rgba(17, 17, 15, 0.24);
  color: var(--ink);
}

.service-visual {
  position: absolute;
  top: 92px;
  right: 5%;
  width: 43%;
  height: 400px;
}

.website-frame {
  position: absolute;
  inset: 12px 0 35px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
  transform: rotate(3deg);
  background:
    linear-gradient(145deg, transparent 58%, var(--orange) 58%),
    var(--ink);
  color: var(--white);
  box-shadow: 0 25px 50px rgba(17, 17, 15, 0.25);
}

.website-frame-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.website-frame strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.website-frame i {
  margin-top: 24px;
  color: var(--accent);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.code-chip {
  position: absolute;
  right: -15px;
  bottom: 5px;
  z-index: 2;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
}

.identity-shapes {
  position: absolute;
  top: 115px;
  right: -26px;
  display: flex;
  transform: rotate(-7deg);
}

.identity-shapes span {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  margin-left: -12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 800;
}

.identity-shapes span:nth-child(2) {
  border-radius: 0;
  background: var(--orange);
}

.identity-shapes span:nth-child(3) {
  background: var(--accent);
}

.map-pin-visual {
  position: absolute;
  top: 104px;
  right: 28px;
  left: 28px;
  height: 170px;
  overflow: hidden;
  opacity: 0.9;
}

.map-pin-visual > span {
  position: absolute;
  top: 25px;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  color: var(--ink);
}

.map-pin-visual-light .map-line {
  background: rgba(17, 17, 15, 0.13);
}

.map-pin-visual-light > span {
  background: var(--orange);
}

.map-pin-visual > span svg {
  width: 27px;
  transform: rotate(45deg);
}

.map-pin-visual > span {
  transform: translateX(-50%) rotate(-45deg);
}

.map-line {
  position: absolute;
  width: 150%;
  height: 1px;
  transform: rotate(-12deg);
  background: rgba(255, 255, 255, 0.18);
}

.map-line-one {
  top: 25px;
  left: -20%;
}

.map-line-two {
  top: 85px;
  left: -25%;
}

.map-line-three {
  top: 145px;
  left: -18%;
}

.social-stack {
  position: absolute;
  top: 118px;
  right: 20px;
  left: 50px;
  height: 170px;
}

.social-stack span {
  position: absolute;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  font-family: var(--display);
  font-weight: 800;
}

.social-stack span:nth-child(1) {
  left: 0;
  transform: rotate(-9deg);
  background: var(--orange);
}

.social-stack span:nth-child(2) {
  left: 30%;
  transform: rotate(4deg);
  background: var(--accent);
}

.social-stack span:nth-child(3) {
  right: 0;
  transform: rotate(11deg);
  background: var(--blue);
}

.print-stack {
  position: absolute;
  top: 110px;
  right: 30px;
  left: 30px;
  height: 180px;
}

.print-stack span {
  position: absolute;
  width: 180px;
  height: 112px;
  display: grid;
  align-content: end;
  padding: 16px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 0.9;
}

.print-stack span:nth-child(1) {
  top: 0;
  left: 12px;
  transform: rotate(-6deg);
}

.print-stack span:nth-child(2) {
  right: 10px;
  bottom: 0;
  transform: rotate(7deg);
  background: var(--orange);
  color: var(--ink);
}

.service-card-dark .print-stack span:first-child {
  background: var(--accent);
  color: var(--ink);
}

.car-visual {
  position: absolute;
  top: 115px;
  right: 30px;
  left: 30px;
  height: 160px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 15, 0.22);
  background: rgba(255, 255, 255, 0.3);
}

.car-visual svg {
  width: 140px;
  height: 85px;
  stroke-width: 1.2;
}

.car-visual span {
  position: absolute;
  bottom: 15px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.work-section {
  background: var(--ink);
  color: var(--white);
}

.section-heading-light .section-label,
.work-section .project-number {
  color: rgba(255, 255, 255, 0.4);
}

.section-heading-light h2 span {
  color: var(--accent);
}

.section-heading-light .section-heading-copy {
  color: rgba(255, 255, 255, 0.5);
}

.project {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  overflow: hidden;
  background: #132b44;
}

.project-info {
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: #f1f5f7;
  color: #102a43;
}

.project-number {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.project-info .project-number {
  color: #6b8296;
}

.project-info h3 {
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.3vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.project-description {
  max-width: 410px;
  color: #63798d;
  font-size: 0.88rem;
  line-height: 1.75;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 38px;
}

.project-meta span {
  padding: 7px 9px;
  border: 1px solid rgba(16, 42, 67, 0.22);
  font-size: 0.55rem;
  font-weight: 700;
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 42, 67, 0.2);
  font-size: 0.76rem;
  font-weight: 700;
}

.project-link svg {
  width: 18px;
  transition: transform 180ms ease;
}

.project-link:hover svg {
  transform: translate(4px, -4px);
}

.project-showcase {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.climate-showcase {
  background:
    linear-gradient(135deg, rgba(34, 193, 195, 0.18), transparent 48%),
    #102a43;
}

.climate-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34, 193, 195, 0.28);
}

.climate-circle-one {
  top: -280px;
  right: -120px;
  width: 700px;
  height: 700px;
}

.climate-circle-two {
  bottom: -380px;
  left: -150px;
  width: 730px;
  height: 730px;
}

.mock-browser {
  position: absolute;
  top: 90px;
  right: 8%;
  left: 7%;
  min-height: 500px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-4deg) rotateZ(1deg);
  background: #f5f7fa;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.32);
}

.mock-browser-top {
  height: 38px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid rgba(16, 42, 67, 0.12);
}

.mock-browser-top > span {
  display: flex;
  gap: 5px;
}

.mock-browser-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5df;
}

.mock-browser-top small {
  justify-self: center;
  color: #789;
  font-size: 0.5rem;
}

.climate-page {
  position: relative;
  min-height: 462px;
  padding: 27px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 56%, rgba(34, 193, 195, 0.2), transparent 21%),
    #f5f7fa;
  color: #102a43;
}

.climate-page nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(16, 42, 67, 0.12);
}

.climate-page nav strong {
  font-family: var(--display);
  font-size: 0.66rem;
  line-height: 0.95;
}

.climate-page nav strong span {
  color: #22a7aa;
}

.climate-page nav small {
  color: #789;
  font-size: 0.43rem;
}

.climate-page > div {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.climate-page p {
  margin-bottom: 12px;
  color: #22a7aa;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.climate-page h4 {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.climate-page h4 span {
  color: #22a7aa;
}

.climate-page b {
  display: inline-block;
  padding: 10px 14px;
  background: #22c1c3;
  color: #102a43;
  font-size: 0.5rem;
}

.air-conditioner {
  position: absolute;
  top: 145px;
  right: -6px;
  width: 42%;
  height: 130px;
  border-radius: 7px 7px 16px 16px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(16, 42, 67, 0.18);
}

.air-conditioner::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 21px;
  left: 18px;
  height: 8px;
  border-top: 1px solid #ccd6de;
  border-bottom: 1px solid #e2e9ee;
}

.air-conditioner span {
  position: absolute;
  top: 24px;
  right: 25px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c1c3;
}

.air-conditioner small {
  position: absolute;
  top: 19px;
  right: 43px;
  color: #789;
  font-size: 0.52rem;
}

.climate-phone {
  position: absolute;
  right: 3%;
  bottom: -105px;
  z-index: 4;
  width: 165px;
  height: 340px;
  padding: 43px 17px 20px;
  transform: rotate(5deg);
  border: 7px solid #071c2e;
  border-radius: 26px;
  background: linear-gradient(160deg, #f5f7fa 0 55%, #22c1c3 55%);
  color: #102a43;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 50px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: #243d52;
}

.climate-phone > span {
  font-family: var(--display);
  font-size: 0.45rem;
  line-height: 0.95;
}

.climate-phone > span b {
  color: #1a9da0;
}

.climate-phone > strong {
  display: block;
  margin-top: 55px;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.climate-phone svg {
  width: 42px;
  height: 42px;
  margin: 55px auto 0;
  color: #102a43;
}

.climate-swatch {
  position: absolute;
  bottom: 28px;
  left: 25px;
  z-index: 3;
  display: flex;
  gap: 7px;
}

.climate-swatch span {
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.45rem;
}

.screenshot-showcase {
  display: grid;
  place-items: center;
  padding: 62px 54px;
}

.screenshot-showcase-climate {
  background:
    radial-gradient(circle at 80% 20%, rgba(85, 204, 237, 0.28), transparent 28%),
    #102a43;
}

.project-screen {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateZ(0.7deg);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #fff;
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.35);
}

.project-screen-bar {
  height: 38px;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.12);
  background: #f3f2ef;
  color: var(--ink);
}

.project-screen-bar > span {
  display: flex;
  gap: 5px;
}

.project-screen-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.28);
}

.project-screen-bar small {
  justify-self: center;
  padding: 4px 24px;
  background: rgba(17, 17, 15, 0.06);
  color: var(--muted);
  font-size: 0.5rem;
}

.project-screen img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.project-stamp {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  transform: rotate(8deg);
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.project-small {
  background: var(--white);
  color: var(--ink);
}

.project-small-visual {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.project-screenshot-card {
  display: block;
  background: var(--ink-lighter);
}

.project-screenshot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.project-screenshot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-screenshot-card:hover img {
  transform: scale(1.035);
}

.project-open {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
}

.project-open svg {
  width: 19px;
  transition: transform 180ms ease;
}

.project-screenshot-card:hover .project-open svg {
  transform: translate(3px, -3px);
}

.project-small-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.project-small-info p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.project-small-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.045em;
}

.project-small-info > span {
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 700;
  text-align: right;
}

.sport-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 255, 255, 0.16) 50%, transparent 50.3%),
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    #e53b35;
  background-size: auto, 100% 82px, auto;
  color: var(--white);
}

.sport-visual::before,
.sport-visual::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.sport-visual::after {
  width: 600px;
  height: 600px;
}

.sport-year {
  position: absolute;
  top: 25px;
  right: 28px;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
}

.sport-ball {
  position: absolute;
  top: 38px;
  left: 34px;
  width: 55px;
  height: 55px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.sport-ball::before,
.sport-ball::after {
  content: "";
  position: absolute;
  inset: 14px;
  transform: rotate(45deg);
  border: 1px solid var(--white);
}

.sport-visual > p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-align: center;
}

.sport-visual > p strong {
  color: var(--accent);
  font-weight: 800;
}

.sport-score {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.62rem;
  font-weight: 700;
}

.sport-score span:last-child {
  text-align: right;
}

.sport-score b {
  color: var(--accent);
  font-size: 0.52rem;
}

.estate-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: #153b2f;
  color: var(--white);
}

.estate-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 80px 80px;
}

.estate-visual > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #e4c758;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.estate-visual > p strong {
  color: var(--white);
}

.estate-visual > small {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.34em;
}

.estate-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: 150px;
  padding: 18px;
  background: #e4c758;
  color: #153b2f;
}

.estate-card span {
  display: block;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.estate-card small {
  font-size: 0.5rem;
  line-height: 1.3;
}

.portfolio-library {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr auto;
  gap: 45px;
  align-items: center;
  margin-top: 16px;
  padding: 40px;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(120deg, rgba(216, 255, 58, 0.08), transparent 42%),
    var(--ink-soft);
}

.portfolio-library .section-label {
  margin-bottom: 12px;
  color: var(--accent);
}

.portfolio-library h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.portfolio-library p:not(.section-label) {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.portfolio-library-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.portfolio-library-tags span {
  padding: 7px 9px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.54rem;
  font-weight: 700;
}

.portfolio-library .button {
  white-space: nowrap;
}

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

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  align-items: stretch;
}

.package-card {
  position: relative;
  min-height: 830px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.package-card-featured {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(17, 17, 15, 0.17);
}

.package-recommended {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 11px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.package-top {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.package-top span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.56rem;
  font-weight: 700;
}

.package-card-featured .package-top span {
  border-color: var(--line-light);
}

.package-top p {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.package-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.package-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin: 48px 0 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.package-card-featured .package-title-row {
  border-color: var(--line-light);
}

.package-price {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.package-price small {
  font-size: 0.45em;
  letter-spacing: 0;
}

.package-for {
  max-width: 520px;
  min-height: 78px;
  color: var(--muted);
  font-size: 0.82rem;
}

.package-time {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 8px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.package-time span {
  display: grid;
  padding: 13px 15px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.package-time strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.package-time-dark {
  border-color: var(--line-light);
  background: var(--line-light);
}

.package-time-dark span {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.48);
}

.package-time-dark strong {
  color: var(--accent);
}

.package-card-featured .package-for {
  color: rgba(255, 255, 255, 0.48);
}

.package-card ul {
  display: grid;
  gap: 13px;
  margin: 34px 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.package-scope-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 25px;
}

.package-card-featured ul {
  border-color: var(--line-light);
}

.package-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 0.76rem;
}

.package-card-featured li {
  color: rgba(255, 255, 255, 0.65);
}

.package-card li svg {
  width: 15px;
  color: #6f9900;
}

.package-card-featured li svg {
  color: var(--accent);
}

.package-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 700;
}

.package-card-featured > a {
  border-color: var(--line-light);
  color: var(--accent);
}

.package-card > a svg {
  width: 17px;
  transition: transform 180ms ease;
}

.package-card > a:hover svg {
  transform: translateX(4px);
}

.package-flex-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  margin: 5px 0 28px;
  padding: 17px;
  border: 1px solid rgba(214, 255, 58, 0.28);
  background: rgba(214, 255, 58, 0.07);
}

.package-flex-note svg {
  width: 20px;
  color: var(--accent);
}

.package-flex-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  line-height: 1.65;
}

.pricing-disclaimer {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 23px;
  margin-top: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.pricing-note-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--accent);
}

.pricing-note-icon svg {
  width: 21px;
}

.pricing-disclaimer h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.15rem;
}

.pricing-disclaimer p {
  max-width: 1050px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.75;
}

.audience-section {
  background: var(--ink);
  color: var(--white);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
  align-items: start;
}

.audience-copy {
  position: sticky;
  top: 120px;
}

.audience-copy .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.audience-copy h2 {
  margin: 18px 0 30px;
  font-family: var(--display);
  font-size: clamp(3.1rem, 4.8vw, 5.1rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.audience-copy h2 span {
  color: var(--accent);
}

.audience-copy > p:not(.section-label) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.85;
}

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

.audience-list article {
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  gap: 20px;
  align-items: center;
  min-height: 102px;
  border-bottom: 1px solid var(--line-light);
}

.audience-list span {
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 700;
}

.audience-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.audience-list svg {
  width: 19px;
  color: rgba(255, 255, 255, 0.35);
}

.process-section {
  background: var(--accent);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.65fr) minmax(0, 1.35fr);
  gap: 110px;
}

.process-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.process-heading h2 {
  margin: 17px 0 28px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 5.5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.process-heading h2 span {
  color: rgba(17, 17, 15, 0.42);
}

.process-heading > p:not(.section-label) {
  max-width: 460px;
  margin-bottom: 30px;
  color: rgba(17, 17, 15, 0.62);
  font-size: 0.9rem;
  line-height: 1.8;
}

.process-list {
  border-top: 1px solid rgba(17, 17, 15, 0.24);
}

.process-step {
  display: grid;
  grid-template-columns: 55px 1fr 55px;
  gap: 25px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.24);
}

.process-step > span {
  font-size: 0.65rem;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.process-step p {
  max-width: 580px;
  margin: 0;
  color: rgba(17, 17, 15, 0.58);
  font-size: 0.82rem;
}

.process-step > svg {
  width: 29px;
  height: 29px;
  justify-self: end;
  transition: transform 180ms ease;
}

.process-step:hover > svg {
  transform: rotate(-8deg) scale(1.08);
}

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

.studio-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1fr);
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
}

.studio-visual {
  position: relative;
  min-height: 700px;
}

.studio-poster {
  position: absolute;
  inset: 0 50px 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 45px;
  background:
    linear-gradient(135deg, transparent 58%, rgba(255, 96, 56, 0.92) 58%),
    var(--ink);
  color: var(--white);
}

.studio-poster > span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.studio-poster strong {
  font-family: var(--display);
  font-size: clamp(4rem, 6.2vw, 7rem);
  letter-spacing: -0.09em;
  line-height: 0.77;
}

.studio-poster strong i {
  color: var(--accent);
  font-style: normal;
}

.studio-poster small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
}

.studio-label {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--accent);
}

.studio-label span {
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.studio-label p {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.25;
}

.studio-cross {
  position: absolute;
  top: -35px;
  right: 15px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 500;
  line-height: 1;
}

.studio-copy h2 {
  margin: 17px 0 30px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 5.2vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.studio-copy h2 span {
  color: var(--muted);
}

.studio-lead {
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: 1.2rem !important;
  font-weight: 600;
  line-height: 1.55 !important;
}

.studio-copy > p:not(.section-label) {
  max-width: 660px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.studio-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.studio-values > div {
  min-height: 175px;
  padding: 20px;
  background: var(--paper);
}

.studio-values strong {
  color: var(--muted);
  font-size: 0.56rem;
}

.studio-values span {
  display: block;
  margin: 24px 0 8px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}

.studio-values p {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.55;
}

.faq-section {
  background: var(--ink);
  color: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.65fr) minmax(0, 1.35fr);
  gap: 120px;
}

.faq-heading h2 {
  margin: 17px 0 25px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.3vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.faq-heading h2 span {
  color: var(--accent);
}

.faq-heading > p:not(.section-label) {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.85rem;
}

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

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 27px 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.faq-item button svg {
  flex: 0 0 auto;
  width: 20px;
  color: var(--accent);
  transition: transform 220ms ease;
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-answer p {
  max-width: 720px;
  margin: -3px 0 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.8;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--orange);
  color: var(--ink);
}

.contact-marquee {
  position: absolute;
  top: 12px;
  left: -30px;
  width: max-content;
  opacity: 0.12;
  font-family: var(--display);
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.contact-copy {
  padding-top: 70px;
}

.contact-copy .section-label {
  color: rgba(17, 17, 15, 0.58);
}

.contact-copy h2 {
  margin: 17px 0 30px;
  font-family: var(--display);
  font-size: clamp(4rem, 6.5vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.87;
}

.contact-copy h2 span {
  color: rgba(17, 17, 15, 0.42);
}

.contact-copy > p:not(.section-label) {
  max-width: 600px;
  margin: 0;
  color: rgba(17, 17, 15, 0.64);
}

.contact-actions {
  border-top: 1px solid rgba(17, 17, 15, 0.25);
}

.contact-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.25);
}

.contact-main span {
  display: grid;
}

.contact-main small {
  margin-bottom: 4px;
  color: rgba(17, 17, 15, 0.54);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-main strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.contact-main > svg {
  width: 25px;
  height: 25px;
  transition: transform 180ms ease;
}

.contact-main:hover > svg {
  transform: rotate(-8deg) scale(1.08);
}

.contact-main-accent {
  margin-top: 18px;
  padding: 21px;
  border: 0;
  background: var(--ink);
  color: var(--white);
}

.contact-main-accent small {
  color: var(--accent);
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}

.footer-top > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.footer-top-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-top-link svg {
  width: 16px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 23px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.6rem;
}

.footer-bottom > p:last-child {
  text-align: right;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 150ms;
}

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

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

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

  .menu-button {
    display: grid;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 450px;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(4rem, 6.6vw, 5.8rem);
  }

  .hero-stage {
    transform: scale(0.92);
    transform-origin: right center;
  }

  .section {
    padding: 115px 0;
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .faq-layout,
  .process-layout {
    gap: 75px;
  }

  .contact-layout {
    gap: 70px;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 145px;
    padding-bottom: 130px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 10vw, 6.5rem);
  }

  .hero-stage {
    width: min(100%, 680px);
    min-height: 650px;
    margin-left: auto;
    transform: none;
  }

  .hero-index {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .intro-badge {
    grid-column: 2;
    width: 230px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading-copy {
    max-width: 650px;
  }

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

  .project-info {
    min-height: 530px;
  }

  .project-showcase {
    min-height: 650px;
  }

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

  .portfolio-library {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-library .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

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

  .package-for {
    min-height: 0;
  }

  .process-layout,
  .faq-layout,
  .audience-layout {
    grid-template-columns: 1fr;
  }

  .process-heading,
  .audience-copy {
    position: relative;
    top: auto;
  }

  .studio-layout {
    grid-template-columns: 1fr;
  }

  .studio-visual {
    width: min(100%, 680px);
  }

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

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

  .footer-top-link {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 82px 0;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .site-header .brand-logo-full {
    display: none;
  }

  .site-header .brand-logo-icon {
    display: block;
  }

  .brand-logo-icon {
    width: 42px;
    height: 38px;
  }

  .mobile-menu-top img {
    width: 182px;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .mobile-menu {
    padding: 24px;
  }

  .mobile-menu nav a {
    font-size: 1.5rem;
  }

  .hero-layout {
    gap: 38px;
    padding-top: 115px;
    padding-bottom: 105px;
  }

  .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16.5vw, 5rem);
    line-height: 0.89;
  }

  .hero-outline {
    -webkit-text-stroke-width: 1px;
  }

  .hero-lead {
    font-size: 0.91rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 0.61rem;
  }

  .hero-note-divider {
    display: none;
  }

  .hero-stage {
    min-height: 500px;
  }

  .stage-browser {
    top: 45px;
    width: 95%;
  }

  .browser-page {
    min-height: 350px;
    padding: 15px;
  }

  .browser-nav {
    padding-bottom: 14px;
  }

  .mini-links {
    display: none;
  }

  .browser-hero {
    min-height: 225px;
    padding-left: 38%;
  }

  .browser-hero strong {
    font-size: 2.15rem;
  }

  .browser-metrics span:nth-child(2) {
    display: none;
  }

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

  .stage-card-print {
    bottom: 0;
    left: -5px;
    width: 185px;
    min-height: 110px;
  }

  .stage-card-google {
    right: -5px;
    bottom: -20px;
    width: 250px;
    padding: 12px;
  }

  .stage-card-google strong {
    font-size: 0.58rem;
  }

  .stage-sticker {
    top: 0;
    width: 85px;
    height: 85px;
  }

  .stage-sticker strong {
    font-size: 1.25rem;
  }

  .hero-index {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-index span {
    min-height: 52px;
    font-size: 0.48rem;
  }

  .hero-index span:nth-child(n + 4) {
    display: none;
  }

  .ticker-track {
    padding: 14px 0;
  }

  .section-heading h2,
  .intro-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-badge {
    grid-column: auto;
    width: 100%;
    min-height: 180px;
  }

  .intro-copy > p {
    margin-top: 28px;
    font-size: 0.92rem;
  }

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

  .service-card,
  .service-card-featured {
    grid-column: auto;
    min-height: 520px;
    padding: 24px;
  }

  .service-card-featured {
    min-height: 650px;
  }

  .service-card-featured .service-copy {
    max-width: none;
  }

  .service-visual {
    top: 85px;
    right: 10%;
    width: 80%;
    height: 310px;
  }

  .website-frame {
    inset: 10px 0 28px;
    padding: 27px;
  }

  .website-frame strong {
    font-size: 2.7rem;
  }

  .service-copy h3 {
    font-size: 1.5rem;
  }

  .identity-shapes {
    top: 110px;
  }

  .identity-shapes span {
    width: 88px;
    height: 88px;
  }

  .project-info {
    min-height: 550px;
    padding: 30px 24px;
  }

  .project-info h3 {
    font-size: 3.2rem;
  }

  .project-showcase {
    min-height: 530px;
  }

  .screenshot-showcase {
    padding: 35px 18px;
  }

  .project-screen {
    transform: none;
  }

  .project-screen-bar {
    grid-template-columns: 55px 1fr 55px;
  }

  .project-screen-bar small {
    padding: 4px 10px;
  }

  .project-stamp {
    right: 22px;
    bottom: 20px;
    width: 82px;
    height: 82px;
    font-size: 0.52rem;
  }

  .mock-browser {
    top: 55px;
    right: -13%;
    left: 4%;
    min-height: 415px;
  }

  .climate-page {
    min-height: 377px;
    padding: 20px;
  }

  .climate-page > div {
    padding-top: 55px;
  }

  .climate-page h4 {
    font-size: 2.55rem;
  }

  .air-conditioner {
    top: 145px;
    width: 39%;
    height: 95px;
  }

  .climate-phone {
    right: -20px;
    bottom: -80px;
    width: 130px;
    height: 275px;
  }

  .climate-phone > strong {
    margin-top: 35px;
    font-size: 1.35rem;
  }

  .climate-phone svg {
    margin-top: 38px;
  }

  .climate-swatch {
    display: none;
  }

  .project-small-visual {
    height: 400px;
  }

  .project-small-info {
    align-items: flex-start;
    flex-direction: column;
    padding: 23px;
  }

  .project-small-info > span {
    text-align: left;
  }

  .portfolio-library {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 26px 22px;
  }

  .portfolio-library .button {
    grid-column: auto;
    width: 100%;
  }

  .portfolio-library h3 {
    font-size: 1.65rem;
  }

  .sport-visual > p {
    font-size: 3.3rem;
  }

  .estate-visual {
    padding: 35px;
  }

  .estate-visual > p {
    font-size: 4.5rem;
  }

  .package-card {
    padding: 27px 23px;
  }

  .package-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 42px;
  }

  .package-price {
    font-size: 3rem;
  }

  .package-time {
    grid-template-columns: 1fr;
  }

  .package-scope-wide {
    grid-template-columns: 1fr;
  }

  .pricing-disclaimer {
    grid-template-columns: 1fr;
    padding: 23px;
  }

  .audience-copy h2 {
    font-size: clamp(3rem, 13.5vw, 4.2rem);
  }

  .audience-list article {
    grid-template-columns: 32px 1fr 20px;
    gap: 12px;
    min-height: 90px;
  }

  .audience-list h3 {
    font-size: 1.08rem;
  }

  .process-heading h2,
  .faq-heading h2,
  .studio-copy h2 {
    font-size: clamp(3rem, 13.5vw, 4.2rem);
  }

  .process-step {
    grid-template-columns: 35px 1fr;
    gap: 13px;
    padding: 28px 0;
  }

  .process-step > svg {
    display: none;
  }

  .process-step h3 {
    font-size: 1.45rem;
  }

  .studio-visual {
    min-height: 560px;
  }

  .studio-poster {
    inset: 0 25px 55px 0;
    padding: 28px;
  }

  .studio-poster strong {
    font-size: 4rem;
  }

  .studio-label {
    width: 165px;
    height: 165px;
  }

  .studio-label span {
    font-size: 3.4rem;
  }

  .studio-values {
    grid-template-columns: 1fr;
  }

  .studio-values > div {
    min-height: 135px;
  }

  .faq-item button span {
    font-size: 1.08rem;
  }

  .contact-section {
    padding: 85px 0;
  }

  .contact-marquee {
    font-size: 3.5rem;
  }

  .contact-copy {
    padding-top: 50px;
  }

  .contact-copy h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .contact-main strong {
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }

  .contact-main-accent {
    padding: 18px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 30px;
  }

  .footer-top-link {
    grid-column: auto;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .footer-bottom > p:last-child {
    text-align: left;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 0.76rem;
    font-weight: 700;
  }

  .mobile-contact-bar a + a {
    background: var(--accent);
    color: var(--ink);
  }

  .mobile-contact-bar svg {
    width: 17px;
  }
}

@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;
    transform: none;
  }
}
