:root {
  --bg: #0b1020;
  --bg-2: #0e142a;
  --bg-3: #141b34;
  --surface: #141b34;
  --surface-2: #1a2342;
  --ink: #e8ebf7;
  --muted: #9aa3c7;
  --muted-2: #6f7aa3;
  --line: rgba(150, 165, 220, 0.12);
  --line-2: rgba(150, 165, 220, 0.22);
  --accent: #7c6cff;
  --accent-2: #21d4fd;
  --accent-3: #ff7eb3;
  --live: #38e8a0;
  --grad: linear-gradient(110deg, #7c6cff 0%, #8a7bff 35%, #21d4fd 100%);
  --nav-h: 72px;
  --max: 1280px;
  --radius: 20px;
  --radius-sm: 12px;
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
html.lenis,
html.lenis.lenis-smooth {
  scroll-behavior: auto;
}
html.lenis,
html.lenis body {
  height: auto;
}
html.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
html.lenis.lenis-stopped {
  overflow: clip;
}
html.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.is-nav-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--grad);
  color: #0b1020;
  padding: 0.5rem 0.8rem;
  z-index: 100;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

h1, h2, h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.6rem, 6.8vw, 5.8rem); }
h2 { font-size: clamp(2.05rem, 4.8vw, 3.7rem); }
h3 { font-size: 1.45rem; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(124, 108, 255, 0.1), transparent 60%),
    radial-gradient(1000px 700px at -10% 110%, rgba(33, 212, 253, 0.08), transparent 60%),
    var(--bg);
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 28%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 28%, #000 0%, transparent 72%);
  opacity: 0.45;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1000;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow b {
  color: var(--accent);
  font-weight: 600;
}
.eyebrow i {
  width: 22px;
  height: 1px;
  background: var(--accent-2);
  font-style: normal;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(56, 232, 160, 0.6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px transparent; }
}

.lede,
.section-head__sub,
.about__body p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
}

.section-head__sub {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 500;
  border: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.js-magnetic { will-change: transform; }
.btn.js-magnetic:hover { transform: none; }
.btn--primary {
  background: var(--grad);
  color: #0b1020;
  box-shadow: 0 16px 40px -14px var(--accent);
}
.btn--primary:hover { box-shadow: 0 22px 50px -12px var(--accent); }
.btn--ghost {
  border-color: var(--line-2);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
  color: var(--accent-2);
  font-size: 0.92rem;
}
.text-link span { transition: transform 0.3s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cta.nav__cta--mobile { display: none; }
.nav.is-scrolled {
  height: 60px;
  background: rgba(11, 16, 32, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  font-family: "Instrument Serif", serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: baseline;
}
.nav__logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__links { display: flex; gap: 1.8rem; }
.nav__links a {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.9rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--surface-2);
  border-color: transparent;
}
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 7px 4px;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}
.hero__glow {
  position: absolute;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
  border-radius: 50%;
  z-index: 0;
}
.ambient .hero__glow {
  position: absolute;
}
.hero__glow--a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(124, 108, 255, 0.5), transparent 70%);
  top: -80px;
  left: -60px;
}
.hero__glow--b {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(33, 212, 253, 0.32), transparent 70%);
  bottom: 10%;
  right: -80px;
}
.hero__copy {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  text-align: left;
}
.hero__visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-height: 0;
  z-index: 1;
  perspective: 1200px;
}
.hero__proof {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.6rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: left;
}
.split-line {
  display: block;
  overflow: hidden;
}
.split-line > span {
  display: block;
}
.accent-line {
  font-style: italic;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 1.5rem; }
.hero__proof strong { display: block; color: var(--ink); font-size: 0.95rem; font-weight: 500; }
.hero .lede { font-size: clamp(1rem, 1.5vw, 1.16rem); max-width: 46ch; margin-top: 0.35rem; }
.hero .eyebrow {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(20, 27, 52, 0.62);
  backdrop-filter: blur(8px);
  margin-bottom: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
  font-size: 0.82rem;
}

.browser {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20, 27, 52, 0.94), rgba(14, 20, 42, 0.94));
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(124, 108, 255, 0.08);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
  will-change: transform;
  backdrop-filter: blur(10px);
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.8rem 1.05rem;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 32, 0.5);
}
.browser__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2a2a31;
}
.browser__bar span:nth-child(1) { background: #ff5f57; }
.browser__bar span:nth-child(2) { background: #febc2e; }
.browser__bar span:nth-child(3) { background: #28c840; }
.browser__url {
  margin-left: 0.6rem;
  font-size: 0.72rem;
  color: var(--muted-2);
  background: rgba(11, 16, 32, 0.7);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.browser__viewport {
  position: relative;
  background: #f4dce4;
}
.browser__viewport img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 46%;
}

.float-chip {
  position: absolute;
  z-index: 3;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-2);
  background: rgba(20, 27, 52, 0.86);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  animation: float 7s var(--ease) infinite;
  backdrop-filter: blur(8px);
}
.float-chip--1 { top: 8%; left: -4%; color: var(--accent); }
.float-chip--2 { top: 22%; right: -2%; animation-delay: -1.2s; color: var(--accent-2); }
.float-chip--3 { bottom: 28%; left: -8%; animation-delay: -2s; }
.float-chip--4 { bottom: 12%; right: 4%; animation-delay: -3.1s; color: var(--accent-3); }
.float-chip--5 { top: 48%; right: -10%; animation-delay: -4s; color: var(--accent-2); }
.float-chip--6 { bottom: 42%; left: 8%; animation-delay: -5s; }

@keyframes float {
  50% { transform: translateY(-8px); }
}

.trust {
  border-block: 1px solid var(--line);
  padding: 1.6rem 1.5rem 0;
  text-align: left;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 22, 46, 0.75), rgba(11, 16, 32, 0.35));
}
.trust p {
  max-width: var(--max);
  margin: 0 auto 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0 0.25rem;
}
.trust ul {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.7rem 1.6rem;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.about, .work, .services, .process, .why, .stack, .quotes, .talk, .footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) 1.5rem 0;
  scroll-margin-top: 72px;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  text-align: left;
}
.about__intro { max-width: none; }
.about__intro h2 { max-width: 16ch; }
.about__body { max-width: none; width: auto; }

.about__think {
  margin: 1.4rem 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-style: italic;
  color: var(--ink) !important;
  line-height: 1.35;
}

.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 1.5rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.about__list li {
  display: flex;
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  align-items: center;
  transition: padding-left 0.3s var(--ease);
}
.about__list li:hover { padding-left: 0.35rem; }
.about__list li::before {
  content: "—";
  color: var(--accent-2);
  flex: 0 0 auto;
}

.section-head {
  margin: 0 auto 3rem;
  max-width: 42rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head__sub { margin-top: 1.15rem; }

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.project-card:hover,
.project-card:focus-within {
  border-color: var(--line-2);
  transform: translateY(-4px);
  box-shadow: 0 44px 100px -56px rgba(124, 108, 255, 0.85);
}
.project-card__media { display: block; overflow: hidden; }
.project-card__shot {
  aspect-ratio: 16 / 10;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.project-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.9s var(--ease);
}
.project-card:hover .project-card__shot img,
.project-card:focus-within .project-card__shot img {
  transform: scale(1.04);
}
.project-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.3rem 1.4rem 1.45rem;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.project-card__tags li {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  background: rgba(33, 212, 253, 0.06);
}
.project-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.55rem;
}
.project-card p {
  color: var(--muted);
  font-size: 0.95rem;
}
.project-card .text-link {
  margin-top: auto;
  padding-top: 1.05rem;
}
.work__more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.work__more[hidden],
.project-card[hidden] { display: none; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  background: none;
  border: 0;
}
.services__grid article {
  position: relative;
  background: var(--surface);
  padding: 2rem 1.6rem 2.1rem;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.services__grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at 0% 0%, rgba(124, 108, 255, 0.14), transparent 58%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.services__grid article:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
}
.services__grid article:hover::before { opacity: 1; }
.services__grid span {
  position: relative;
  color: var(--muted-2);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.services__grid h3 { position: relative; margin: 0.9rem 0 0.7rem; font-size: 1.32rem; }
.services__grid p { position: relative; color: var(--muted); font-size: 0.95rem; }

.process__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: left;
  position: relative;
}
.process__list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--accent-2);
  font-size: 0.88rem;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.process__list li:hover span {
  transform: translateY(-3px);
  background: var(--grad);
  color: #0b1020;
  border-color: transparent;
  box-shadow: 0 16px 34px -16px var(--accent);
}
.process__list h3 { margin: 0.7rem 0 0.5rem; }
.process__list p { color: var(--muted); font-size: 0.92rem; }

.why {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
  text-align: left;
}
.why__copy { max-width: none; }
.why__copy p { max-width: 32rem; color: var(--muted); }
.why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.4rem;
}
.why__list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}
.why__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.stack__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
  border-top: 0;
  padding-top: 0;
  text-align: left;
}
.below { content-visibility: visible; }

.stack__grid > div {
  padding: 1.5rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(20, 27, 52, 0.35));
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.stack__grid > div:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.stack__grid h3 {
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.7rem;
}
.stack__grid p { color: var(--muted); font-size: 1.02rem; }

.metrics {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  border-top: 0;
  text-align: left;
}
.metrics > div {
  position: relative;
  overflow: hidden;
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(20, 27, 52, 0.3));
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.metrics > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.metrics > div:hover {
  border-color: var(--line-2);
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.7);
}
.metrics > div:hover::before { transform: scaleX(1); }
.metrics strong {
  display: block;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  margin-bottom: 0.7rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metrics span { color: var(--muted); font-size: 0.9rem; }

.quotes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  background: linear-gradient(180deg, var(--surface), rgba(20, 27, 52, 0.35));
}
blockquote p {
  font-family: "Instrument Serif", serif;
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 1.4rem;
}
blockquote cite { display: block; font-style: normal; }
blockquote span { color: var(--muted); font-size: 0.88rem; }

.talk {
  position: relative;
  text-align: left;
  padding-bottom: var(--section-y);
}
.talk__stars {
  position: absolute;
  inset: -6% -8%;
  width: 116%;
  height: 112%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}
.talk__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.2rem, 5vw, 4.6rem);
  align-items: start;
}
.talk__kicker {
  color: var(--accent-2);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.15rem;
}
.talk h2 {
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-size: clamp(2.35rem, 4.8vw, 3.7rem);
}
.talk__sub {
  color: var(--muted);
  margin: 1rem 0 1.7rem;
  max-width: 34rem;
  font-size: 1.02rem;
}
.talk-cards {
  display: grid;
  gap: 0.75rem;
}
.talk-card {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-height: 72px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: rgba(14, 20, 42, 0.55);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.talk-card:hover {
  border-color: rgba(33, 212, 253, 0.35);
  background: rgba(20, 27, 52, 0.72);
  transform: translateY(-1px);
}
.talk-card__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(20, 27, 52, 0.9);
}
.talk-card__icon svg { width: 20px; height: 20px; }
.talk-card__icon--mail { color: var(--accent-2); background: rgba(33, 212, 253, 0.1); }
.talk-card__icon--phone { color: #6ea8ff; background: rgba(110, 168, 255, 0.1); }
.talk-card__icon--wa { color: #25d366; background: rgba(37, 211, 102, 0.1); }
.talk-card small {
  display: block;
  color: var(--muted-2);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.18rem;
}
.talk-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}
.talk-checks {
  margin-top: 1.55rem;
  display: grid;
  gap: 0.72rem;
}
.talk-checks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.talk-checks span {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--accent-2);
}
.talk-checks svg { display: block; width: 20px; height: 20px; }
.talk__panel {
  background: rgba(12, 17, 34, 0.78);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 1.75rem 1.65rem 1.55rem;
  backdrop-filter: blur(10px);
}
.talk-form {
  position: relative;
  display: grid;
  gap: 0.95rem;
}
.talk-form label {
  display: grid;
  gap: 0.42rem;
}
.talk-form label > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}
.talk-form input,
.talk-form select,
.talk-form textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(11, 16, 32, 0.88);
  border: 1px solid rgba(150, 165, 220, 0.16);
  border-radius: 12px;
  padding: 0.82rem 0.95rem;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  color-scheme: dark;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.talk-form input,
.talk-form select {
  min-height: 48px;
}
.talk-form textarea {
  min-height: 122px;
  resize: vertical;
}
.talk-form input::placeholder,
.talk-form textarea::placeholder {
  color: var(--muted-2);
}
.talk-form input:focus,
.talk-form select:focus,
.talk-form textarea:focus {
  border-color: rgba(33, 212, 253, 0.55);
  box-shadow: 0 0 0 3px rgba(33, 212, 253, 0.12);
}
.talk-form input.is-invalid,
.talk-form textarea.is-invalid {
  border-color: #ff7eb3;
}
.talk-form__select { position: relative; }
.talk-form__select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.4rem;
  cursor: pointer;
}
.talk-form__select::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(45deg);
  pointer-events: none;
}
.talk-form__hp,
.talk-form .talk-form__hp input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.talk-form__status {
  margin: 0;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}
.talk-form__status.is-ok {
  color: #9ef0c8;
  background: rgba(56, 232, 160, 0.1);
}
.talk-form__status.is-err {
  color: #ffc2d8;
  background: rgba(255, 126, 179, 0.1);
}
.talk-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 52px;
  margin-top: 0.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 16px 40px -12px rgba(124, 108, 255, 0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.3s var(--ease);
}
.talk-form__submit svg { width: 18px; height: 18px; }
.talk-form__submit:hover { box-shadow: 0 20px 46px -12px rgba(33, 212, 253, 0.45); }
.talk-form__submit:disabled { opacity: 0.7; cursor: wait; }

.footer {
  padding-top: var(--section-y);
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(14, 20, 42, 0.55));
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer__name { font-family: "Instrument Serif", serif; font-size: 1.5rem; }
.footer nav, .footer__social { display: flex; flex-wrap: wrap; gap: 0.9rem 1.2rem; }
.footer nav a, .footer__social a { min-height: 44px; display: inline-flex; align-items: center; }
.footer a, .footer p { color: var(--muted); font-size: 0.92rem; }
.footer a:hover { color: var(--ink); }
.footer__copy { padding: 1.4rem 0 0; font-size: 0.8rem; color: var(--muted-2); }

.wa-fab {
  position: fixed;
  z-index: 900;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.65), 0 4px 12px rgba(11, 16, 32, 0.35);
  transition: box-shadow 0.3s var(--ease);
}
.wa-fab svg {
  width: 1.7rem;
  height: 1.7rem;
  display: block;
}
.wa-fab:hover {
  box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.75), 0 6px 14px rgba(11, 16, 32, 0.4);
}
.wa-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.cursor {
  display: none;
  pointer-events: none;
}
.marquee {
  margin-top: 1.15rem;
  border-top: 1px solid var(--line);
  padding: 1.15rem 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
}
.marquee__track span:nth-child(even) {
  color: var(--accent);
  font-style: italic;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (hover: hover) and (pointer: fine) {
  body.has-cursor,
  body.has-cursor * { cursor: none; }
  body.has-cursor.is-cursor-field,
  body.has-cursor.is-cursor-field * { cursor: auto; }
  body.has-cursor.is-cursor-field input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
  body.has-cursor.is-cursor-field textarea,
  body.has-cursor.is-cursor-field select { cursor: text; }

  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 10000;
    mix-blend-mode: difference;
    opacity: 0;
    overflow: visible;
    transition: opacity 0.28s var(--ease);
  }
  .cursor.is-on { opacity: 1; }
  .cursor.is-field { opacity: 0; }
  .cursor__dot,
  .cursor__ring {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    will-change: transform;
    pointer-events: none;
  }
  .cursor__dot {
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: #fff;
  }
  .cursor__ring {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 1.5px solid #fff;
    transition: width 0.38s var(--ease), height 0.38s var(--ease), margin 0.38s var(--ease), opacity 0.28s var(--ease);
  }
  .cursor.is-hover .cursor__dot {
    width: 5px;
    height: 5px;
    margin: -2.5px 0 0 -2.5px;
  }
  .cursor.is-hover .cursor__ring {
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
  }
  .cursor.is-down .cursor__ring {
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
  }
}

@media (pointer: coarse) {
  .cursor { display: none !important; }
  body.has-cursor,
  body.has-cursor * { cursor: auto; }
}

.reveal { opacity: 1; transform: none; }

@media (min-width: 1025px) {
  .hero {
    min-height: calc(100svh - var(--nav-h));
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
  .process__list::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 4%;
    right: 4%;
    height: 1px;
    z-index: 0;
    background: repeating-linear-gradient(90deg, var(--line-2) 0 7px, transparent 7px 15px);
  }
  .process__list span { position: relative; z-index: 1; }
}

@media (max-width: 1024px) {
  .hero, .about, .why, .footer__top {
    grid-template-columns: 1fr;
  }
  .hero__copy, .hero__visual, .hero__proof {
    grid-column: auto;
    grid-row: auto;
  }
  .hero__proof { grid-template-columns: 1fr 1fr; }
  .services__grid, .process__list, .metrics, .stack__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__visual {
    min-height: 0;
    max-width: 28rem;
    justify-self: start;
  }
  .browser { transform: none; }
  .float-chip--6 { display: none; }
}

@media (max-width: 900px) {
  .talk__grid { grid-template-columns: 1fr; }
}

@media (min-width: 721px) {
  .trust ul {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

@media (max-width: 720px) {
  .trust p { margin-bottom: 1rem; }
  .marquee { display: none; }
  .nav__links, .nav__cta--desk { display: none; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(11, 16, 32, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 1.5rem 1.6rem;
    gap: 0;
    backdrop-filter: blur(16px);
  }
  .nav.is-open .nav__links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
  }
  .nav.is-open .nav__links a::after { display: none; }
  .nav.is-open .nav__cta.nav__cta--mobile { display: inline-flex; color: var(--ink); }
  .nav__toggle { display: block; }
  .hero { padding: 1.75rem 1.15rem 2rem; gap: 1.25rem; }
  .hero__visual {
    max-width: 20rem;
    justify-self: start;
    padding: 0.75rem 0.55rem;
  }
  .float-chip {
    font-size: 0.62rem;
    padding: 0.28rem 0.5rem;
  }
  .float-chip--1 { top: 4%; left: 0; }
  .float-chip--2 { top: 16%; right: 0; }
  .float-chip--3 { bottom: 20%; left: 0; }
  .float-chip--4 { bottom: 6%; right: 2%; }
  .float-chip--5 { top: 44%; right: 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .about, .work, .services, .process, .why, .stack, .quotes, .talk, .footer, .metrics {
    padding-inline: 1.15rem;
    padding-block: 3.5rem 0;
  }
  .talk { padding-bottom: 5.5rem; }
  .wa-fab {
    bottom: max(5.75rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem));
  }
  .talk-form__submit {
    width: calc(100% - 4.5rem);
    justify-self: start;
  }
  .talk h2 { max-width: none; }
  .footer { padding-top: 3.5rem; padding-bottom: 2rem; }
  .services__grid, .process__list, .metrics, .stack__grid, .quotes__grid, .why__list, .about__list, .work__grid {
    grid-template-columns: 1fr;
  }
  .project-card h3 { font-size: 1.4rem; }
  blockquote p { font-size: 1.25rem; }
  .about__intro h2 { max-width: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero__proof { gap: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab::after { display: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cursor { display: none !important; }
  .hero__glow { display: none; }
  .ambient__grid { opacity: 0.2; }
  .browser { transform: none; }
}
