:root {
  color-scheme: dark;
  --surface: oklch(14% 0.012 260);
  --surface-muted: oklch(17% 0.015 260);
  --surface-raised: oklch(19% 0.018 260);
  --surface-soft: oklch(23% 0.02 260);
  --surface-elevated: oklch(18% 0.018 260 / 78%);
  --surface-strong: oklch(23% 0.02 260);
  --ink: oklch(94% 0.008 255);
  --ink-muted: oklch(72% 0.018 255);
  --accent: oklch(66% 0.21 306);
  --accent-strong: oklch(78% 0.18 306);
  --accent-soft: oklch(25% 0.095 306);
  --accent-glow: oklch(67% 0.22 306 / 16%);
  --headline-glow: oklch(68% 0.22 306 / 24%);
  --border: oklch(94% 0.008 255 / 14%);
  --success: oklch(73% 0.14 150);
  --error: oklch(72% 0.18 25);
  --radius-field: 0.7rem;
  --radius-surface: 1rem;
  --shadow-float: 0 18px 50px oklch(4% 0.02 260 / 38%);
  --shadow-visual: 0 30px 80px oklch(4% 0.03 260 / 48%);
  --shell: min(80rem, calc(100% - 3rem));
  --section-space: clamp(5.5rem, 10vw, 9rem);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.35rem;
  max-width: min(100%, 23ch);
  font-size: clamp(3.25rem, 5.5vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-shadow:
    0 0 2.4rem var(--headline-glow),
    0 1px 0 oklch(100% 0 0 / 8%);
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-mask:nth-child(2) .title-line {
  color: var(--accent-strong);
  text-shadow:
    0 0 2.6rem var(--headline-glow),
    0 0 0.9rem oklch(80% 0.18 306 / 18%);
}

h2 {
  margin-bottom: 1rem;
  max-width: 15ch;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  text-shadow: 0 0 1.8rem oklch(68% 0.2 306 / 14%);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  text-wrap: pretty;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 5.5rem;
  padding-top: 0.75rem;
  pointer-events: none;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 4rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  pointer-events: auto;
}

.legal-nav {
  grid-template-columns: 1fr auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 680;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.wordmark-symbol {
  display: inline-grid;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1;
  place-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav-links a {
  position: relative;
  color: var(--ink-muted);
  font-size: 0.89rem;
  font-weight: 540;
  text-decoration: none;
  transition: color 180ms ease-out;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.22rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

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

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease-out,
    border-color 180ms ease-out,
    color 180ms ease-out,
    transform 100ms ease-out;
}

.button:active,
.nav-toggle:active,
.faq-question:active {
  transform: scale(0.98);
}

.button-primary {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 12px 35px oklch(50% 0.19 306 / 24%);
}

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

.button-secondary {
  border-color: var(--border);
  background: oklch(94% 0.008 255 / 6%);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: oklch(94% 0.008 255 / 30%);
  background: oklch(94% 0.008 255 / 10%);
}

.nav-cta {
  min-height: 2.85rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(58rem, calc(100svh - 1.5rem));
  padding-block: clamp(8rem, 16vh, 11rem) clamp(5rem, 10vh, 7rem);
  overflow: clip;
  isolation: isolate;
  place-items: center;
}

.studio-noir::before {
  --concrete-base: oklch(18% 0.012 280);
  --concrete-light: oklch(34% 0.014 285 / 24%);
  --concrete-mid: oklch(25% 0.014 285 / 34%);
  --concrete-shadow: oklch(8% 0.012 285 / 46%);
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 9% 17%, oklch(72% 0.01 285 / 16%) 0 0.07rem, transparent 0.12rem),
    radial-gradient(circle at 17% 43%, oklch(5% 0.01 285 / 42%) 0 0.09rem, transparent 0.15rem),
    radial-gradient(circle at 25% 78%, oklch(63% 0.01 285 / 11%) 0 0.06rem, transparent 0.11rem),
    radial-gradient(circle at 37% 29%, oklch(7% 0.01 285 / 38%) 0 0.08rem, transparent 0.14rem),
    radial-gradient(circle at 44% 67%, oklch(68% 0.01 285 / 12%) 0 0.07rem, transparent 0.13rem),
    radial-gradient(circle at 53% 12%, oklch(6% 0.01 285 / 34%) 0 0.06rem, transparent 0.11rem),
    radial-gradient(circle at 61% 48%, oklch(70% 0.01 285 / 12%) 0 0.08rem, transparent 0.14rem),
    radial-gradient(circle at 69% 83%, oklch(5% 0.01 285 / 40%) 0 0.1rem, transparent 0.16rem),
    radial-gradient(circle at 78% 31%, oklch(72% 0.01 285 / 14%) 0 0.07rem, transparent 0.12rem),
    radial-gradient(circle at 88% 62%, oklch(6% 0.01 285 / 42%) 0 0.08rem, transparent 0.14rem),
    radial-gradient(circle at 94% 21%, oklch(66% 0.01 285 / 10%) 0 0.06rem, transparent 0.11rem),
    radial-gradient(ellipse at 14% 26%, var(--concrete-light), transparent 33%),
    radial-gradient(ellipse at 84% 18%, oklch(38% 0.012 285 / 20%), transparent 30%),
    radial-gradient(ellipse at 73% 72%, var(--concrete-mid), transparent 38%),
    radial-gradient(ellipse at 28% 86%, var(--concrete-shadow), transparent 42%),
    linear-gradient(118deg, oklch(31% 0.012 285 / 28%), transparent 36%),
    linear-gradient(302deg, var(--concrete-shadow), transparent 48%),
    var(--concrete-base);
  box-shadow:
    inset 0 0 0 1px oklch(72% 0.01 285 / 6%),
    inset 0 -8rem 10rem oklch(6% 0.012 285 / 48%),
    inset 0 6rem 9rem oklch(35% 0.014 285 / 10%);
  content: "";
  pointer-events: none;
}

.studio-noir::after {
  position: fixed;
  z-index: -1;
  inset: -8%;
  background:
    radial-gradient(ellipse at 50% 38%, oklch(63% 0.22 306 / 17%), transparent 31rem),
    radial-gradient(ellipse at 4% 78%, oklch(52% 0.17 306 / 10%), transparent 27rem),
    radial-gradient(ellipse at 96% 68%, oklch(44% 0.14 298 / 9%), transparent 30rem);
  content: "";
  filter: blur(2rem);
  pointer-events: none;
}

.hero-copy {
  z-index: 1;
  display: grid;
  width: min(100%, 66rem);
  justify-items: center;
  text-align: center;
}

.hero-brand {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  margin-bottom: 1.6rem;
}

.hero-brand-mark {
  display: grid;
  width: clamp(4.5rem, 8vw, 6.5rem);
  aspect-ratio: 1;
  border: 1px solid oklch(78% 0.18 306 / 50%);
  border-radius: 50%;
  background: oklch(18% 0.03 300 / 72%);
  box-shadow: inset 0 0 0 1px oklch(94% 0.008 255 / 10%);
  color: var(--accent-strong);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 760;
  place-items: center;
}

.hero-brand-name {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 680;
  text-shadow: 0 0 1.35rem var(--headline-glow);
}

.hero-intro {
  max-width: 64ch;
  margin: 1.5rem auto 0;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .button-row {
  justify-content: center;
}

.section {
  padding-block: var(--section-space);
}

.section-heading {
  display: grid;
  gap: 0.15rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  position: relative;
  width: fit-content;
  max-width: min(15ch, 100%);
  padding-bottom: 0.42rem;
}

.section-heading h2::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.16rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 1.2rem var(--headline-glow);
  content: "";
  transform: scaleX(0.36);
  transform-origin: left;
}

.section-heading p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.benefits {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.benefits-heading {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.52fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 0;
}

.benefits-heading p {
  justify-self: end;
  max-width: 44ch;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--border);
  list-style: none;
}

.benefit-list li {
  display: grid;
  min-height: 16rem;
  align-content: space-between;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--border);
}

.benefit-list li:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--border);
}

.benefit-list li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.benefit-list span {
  color: var(--accent-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.benefit-list strong {
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.benefit-list p {
  max-width: 34ch;
  margin: 0;
  color: var(--ink-muted);
}

.services {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(15rem, auto) minmax(18rem, auto) minmax(14rem, auto);
  gap: 1rem;
}

.service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  border-radius: var(--radius-surface);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px oklch(94% 0.008 255 / 4%),
    0 18px 42px oklch(5% 0.02 260 / 18%);
}

.service-featured {
  grid-column: 1 / 8;
  grid-row: 1 / span 2;
  min-height: 35rem;
  background:
    radial-gradient(circle at 78% 16%, oklch(52% 0.17 306 / 22%), transparent 15rem),
    var(--accent-soft);
}

.service:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
}

.service-image {
  position: relative;
  grid-column: 8 / 13;
  grid-row: 2;
  color: var(--ink);
  background: var(--surface-muted);
  isolation: isolate;
}

.service-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, oklch(15% 0.035 286 / 94%) 0%, oklch(15% 0.035 286 / 20%) 72%),
    linear-gradient(145deg, oklch(94% 0.008 306 / 8%), transparent 42%);
  content: "";
  pointer-events: none;
}

.service-image-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  filter: saturate(0.9) brightness(0.72) contrast(1.1);
}

.service-personal {
  display: grid;
  grid-column: 2 / 12;
  grid-row: 3;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 7rem);
  min-height: 14rem;
  background:
    radial-gradient(circle at 9% 50%, var(--accent-glow), transparent 15rem),
    linear-gradient(120deg, var(--surface-muted), var(--surface-raised));
}

.service-personal > div {
  width: min(100%, 42rem);
  justify-self: end;
}

.service-image .service-mark,
.service-image > div {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.service-image .service-mark {
  margin-top: 0;
}

.service p {
  max-width: 32rem;
  margin-bottom: 0;
  color: var(--ink-muted);
}

.service-image p {
  color: oklch(93% 0.012 306);
}

.service-mark {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--surface-elevated);
  color: var(--accent-strong);
  font-weight: 680;
  place-items: center;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.deliverable {
  min-height: 16rem;
  padding: clamp(1.4rem, 3vw, 2.35rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-surface);
  background: linear-gradient(145deg, var(--surface-raised), var(--surface-muted));
}

.deliverable:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.deliverable:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
}

.deliverable:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2;
}

.deliverable:nth-child(4) {
  grid-column: 1 / 7;
  grid-row: 3;
}

.deliverable:nth-child(5) {
  grid-column: 7 / 13;
  grid-row: 3;
}

.deliverable p {
  max-width: 30rem;
  margin-bottom: 0;
  color: var(--ink-muted);
}

.service h3,
.deliverable h3,
.startup-special h2 {
  text-shadow: 0 0 1.4rem oklch(69% 0.2 306 / 18%);
}

.process-section {
  padding-top: 3rem;
}

.process-visual {
  position: relative;
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-surface);
  aspect-ratio: 21 / 9;
  background: var(--surface-strong);
  box-shadow: inset 0 1px oklch(94% 0.008 255 / 5%);
  isolation: isolate;
}

.process-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(8% 0.025 260 / 8%), oklch(8% 0.025 260 / 44%)),
    linear-gradient(135deg, oklch(94% 0.008 306 / 7%), transparent 38%);
  content: "";
  pointer-events: none;
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.76) contrast(1.08);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  position: relative;
  padding: 1.4rem clamp(1rem, 2.4vw, 2rem) 0 0;
  border-top: 2px solid var(--border);
}

.process li::before {
  position: absolute;
  top: -0.35rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent-strong);
  content: "";
}

.process li + li {
  padding-left: clamp(1rem, 2.4vw, 2rem);
}

.process li + li::before {
  left: clamp(1rem, 2.4vw, 2rem);
}

.process-number {
  display: block;
  margin-bottom: 2.75rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 680;
}

.process p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.startup-special {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: clip;
  border: 1px solid var(--border);
  border-radius: var(--radius-surface);
  background:
    radial-gradient(circle at 88% 18%, var(--accent-glow), transparent 34%),
    var(--surface-elevated);
}

.section-eyebrow,
.special-offer > span {
  margin: 0 0 0.85rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.special-copy > p:not(.section-eyebrow) {
  max-width: 58ch;
}

.special-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.25rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.special-features li::before {
  margin-right: 0.55rem;
  color: var(--accent-strong);
  content: "•";
}

.special-offer {
  display: grid;
  justify-items: start;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-left: 1px solid var(--border);
}

.special-offer strong {
  color: var(--ink);
  font-size: clamp(4rem, 9vw, 7.5rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.special-offer p {
  max-width: 24ch;
  margin: 1rem 0 1.75rem;
}

.special-offer .special-timing {
  margin-top: -0.75rem;
  color: var(--ink);
  font-size: 0.9rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 8vw, 8rem);
}

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

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 4.7rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 620;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease-out, transform 100ms ease-out;
}

.faq-question:hover {
  color: var(--accent-strong);
}

.faq-question span:last-child {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--surface-muted);
  line-height: 1;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  place-items: center;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  opacity: 1;
}

.faq-answer p {
  max-width: 42rem;
  margin-bottom: 1.5rem;
  color: var(--ink-muted);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 160ms ease-out,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer[data-state="closed"] p {
  opacity: 0;
  transform: translate3d(0, -0.25rem, 0);
}

.faq-answer[hidden] {
  display: none;
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
  margin-bottom: var(--section-space);
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: var(--radius-surface);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 8%, oklch(52% 0.18 306 / 20%), transparent 23rem),
    var(--accent-soft);
}

.contact-copy {
  position: sticky;
  top: 7rem;
}

.contact-copy p {
  max-width: 33rem;
  color: var(--ink-muted);
}

.contact-mail {
  color: var(--accent-strong);
  font-weight: 650;
}

.contact-panel {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-surface);
  border: 1px solid var(--border);
  background: var(--surface-elevated);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 620;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  background: oklch(12% 0.012 260 / 70%);
  color: var(--ink);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: oklch(48% 0.012 255);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: 0;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  min-height: 1.2em;
  margin: 0;
  color: var(--error);
  font-size: 0.82rem;
}

.budget-fieldset {
  margin: 0 0 1.2rem;
  padding: 0;
  border: 0;
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.budget-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: oklch(12% 0.012 260 / 70%);
  font-size: 0.84rem;
  cursor: pointer;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 1.2rem 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.consent-row input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.18rem;
  accent-color: var(--accent-strong);
}

.submit-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-status {
  margin-top: 1rem;
  color: var(--ink-muted);
}

.contact-status[data-state="success"] {
  color: var(--success);
}

.contact-status[data-state="error"] {
  color: var(--error);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 3rem;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0.8rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.is-enhanced .reveal {
  opacity: 1;
}

.motion-ready [data-reveal] {
  --reveal-x: 0;
  --reveal-y: 2.75rem;
  opacity: 0.001;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
}

.motion-ready [data-reveal-from="left"] {
  --reveal-x: -3.5rem;
  --reveal-y: 0;
}

.motion-ready [data-reveal-from="right"] {
  --reveal-x: 3.5rem;
  --reveal-y: 0;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 700ms ease-out,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready [data-reveal][data-tilt].is-visible {
  transform: perspective(65rem) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.motion-ready .title-line {
  opacity: 0.001;
  transform: translateY(105%);
}

.title-mask {
  display: block;
  overflow: hidden;
  padding-block: 0.16em;
}

.hero-ready .title-line {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 500ms ease-out,
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-ready .title-mask:nth-child(2) .title-line {
  transition-delay: 90ms;
}

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(65rem) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease-out;
}

[data-tilt]:hover {
  border-color: oklch(78% 0.18 306 / 34%);
}

[data-magnetic] {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition:
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 180ms ease-out,
    border-color 180ms ease-out,
    color 180ms ease-out;
}

[data-tilt].is-pointer-active,
[data-magnetic].is-pointer-active {
  will-change: transform;
}

.legal-main {
  padding-block: 4rem var(--section-space);
}

.legal-hero {
  padding-block: clamp(3rem, 8vw, 7rem);
}

.legal-hero h1 {
  max-width: none;
}

.legal-hero p {
  max-width: 42rem;
  color: var(--ink-muted);
}

.legal-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem 6rem;
}

.legal-section {
  grid-column: 2;
  padding-block: 1.75rem;
  border-top: 1px solid var(--border);
}

.legal-section h2 {
  max-width: 28rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.025em;
}

.legal-section p {
  max-width: 50rem;
  color: var(--ink-muted);
}

@media (min-width: 64.01rem) {
  .process-section {
    display: grid;
    grid-template-columns: minmax(18rem, 0.64fr) minmax(0, 1.36fr);
    gap: clamp(3.5rem, 7vw, 7rem);
    align-items: start;
  }

  .process-intro {
    position: sticky;
    top: 7rem;
    grid-column: 1;
    grid-row: 1;
    display: grid;
    gap: clamp(1.75rem, 3vw, 2.75rem);
  }

  .process-section .section-heading,
  .process-intro .process-visual {
    margin-bottom: 0;
  }

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

  .process li,
  .process li + li {
    min-height: 17rem;
    padding: 2.15rem 0 4.25rem;
  }

  .process li h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    letter-spacing: -0.025em;
    line-height: 1.08;
  }

  .process li p {
    max-width: 58ch;
    font-size: 1.05rem;
  }

  .process li::before {
    transition:
      background-color 320ms ease-out,
      box-shadow 420ms ease-out,
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .process li + li::before {
    left: 0;
  }

  .process-enhanced .process li {
    border-top-color: oklch(94% 0.008 255 / 10%);
    opacity: 0.38;
    transform: scale(0.95);
    transform-origin: left center;
    transition:
      border-color 420ms ease-out,
      opacity 450ms ease-out,
      transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .process-enhanced .process li.is-process-active {
    border-top-color: oklch(78% 0.18 306 / 54%);
    opacity: 1;
    transform: scale(1.06);
  }

  .process-enhanced .process li.is-process-active::before {
    background: var(--accent-strong);
    box-shadow: 0 0 1.1rem oklch(78% 0.18 306 / 46%);
    transform: scale(1.35);
  }

  .process-enhanced .process li.is-process-past {
    opacity: 0.22;
    transform: scale(0.92);
  }
}

@media (max-width: 64rem) {
  .title-line {
    white-space: normal;
  }

  :root {
    --shell: min(80rem, calc(100% - 2rem));
  }

  .hero {
    min-height: 48rem;
  }

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

  .benefits-heading p {
    justify-self: start;
  }

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

  .faq-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .faq-section .section-heading {
    margin-bottom: 1rem;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 48rem) {
  :root {
    --shell: min(100% - 1.25rem, 80rem);
    --section-space: 5.5rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .site-header {
    height: 5rem;
    padding-top: 0.5rem;
  }

  .nav {
    position: relative;
    grid-template-columns: 1fr auto;
    min-height: 3.85rem;
    padding: 0.45rem 0.5rem 0.45rem 0.85rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 0.9rem;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: var(--surface);
    font-size: 0.88rem;
    font-weight: 650;
    cursor: pointer;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-surface);
    background: var(--surface);
    box-shadow: var(--shadow-float);
    opacity: 1;
    transform: translateY(0) scale(1);
    transform-origin: top right;
    pointer-events: auto;
    transition: opacity 180ms ease-out, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-enhanced .nav-links {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.6rem) scale(0.98);
    pointer-events: none;
  }

  .nav-enhanced .nav-links[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.8rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 7rem 5rem;
  }

  .studio-noir::before {
    --concrete-light: oklch(34% 0.014 285 / 17%);
    --concrete-mid: oklch(25% 0.014 285 / 25%);
  }

  .studio-noir::after {
    inset: -4%;
    opacity: 0.68;
  }

  .hero-copy {
    padding-inline: 0.35rem;
  }

  .hero-brand-name {
    letter-spacing: 0.08em;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.05rem, 9.4vw, 3.1rem);
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .process-visual {
    aspect-ratio: 20 / 9;
  }

  .process-visual img {
    object-fit: contain;
  }

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

  .benefit-list li {
    min-height: 13rem;
    border-bottom: 1px solid var(--border);
    border-left: 0;
  }

  .benefit-list li:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .benefit-list li:last-child {
    border-bottom: 0;
  }

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

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

  .deliverable,
  .deliverable:nth-child(1),
  .deliverable:nth-child(2),
  .deliverable:nth-child(3),
  .deliverable:nth-child(4),
  .deliverable:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    min-height: 13rem;
  }

  .service,
  .service-featured,
  .service:nth-child(2) {
    grid-column: auto;
    min-height: 20rem;
    grid-row: auto;
  }

  .service-personal {
    display: flex;
  }

  .service-personal > div {
    width: auto;
    justify-self: auto;
  }

  .startup-special {
    grid-template-columns: 1fr;
  }

  .special-features {
    grid-template-columns: 1fr;
  }

  .special-offer {
    padding-inline: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .contact {
    width: calc(100% - 1.25rem);
    padding: 1rem;
  }

  .contact-copy {
    padding: 1.25rem 0.5rem 0;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-section {
    grid-column: 1;
  }
}

@media (max-width: 30rem) {
  .site-header .wordmark span:last-child {
    max-width: 8.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

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

  .process li,
  .process li + li {
    padding-left: 0;
  }

  .process li + li::before {
    left: 0;
  }

  .process-number {
    margin-bottom: 1.5rem;
  }
}

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

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

  .is-enhanced .reveal {
    opacity: 1;
    transform: none;
  }

  .motion-ready [data-reveal],
  .motion-ready .title-line,
  [data-tilt],
  [data-magnetic] {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav {
    border-color: var(--border);
    background: var(--surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .studio-noir::after {
    background:
      radial-gradient(ellipse at 50% 38%, oklch(58% 0.16 306 / 9%), transparent 31rem),
      radial-gradient(ellipse at 8% 76%, oklch(48% 0.13 306 / 6%), transparent 27rem),
      radial-gradient(ellipse at 92% 70%, oklch(42% 0.11 298 / 5%), transparent 29rem);
    filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --ink-muted: oklch(84% 0.014 255);
    --border: oklch(94% 0.008 255 / 38%);
  }

  .nav,
  .button-secondary,
  .field input,
  .field textarea {
    border-width: 2px;
  }
}
