:root {
  --radius: .75rem;
  --background: oklch(0.99 0.003 240);
  --foreground: oklch(0.18 0.03 260);
  --surface: oklch(0.97 0.005 240);
  --surface-muted: oklch(0.94 0.008 240);
  --ink: oklch(0.18 0.04 260);
  --ink-foreground: oklch(0.98 0.005 240);
  --card: oklch(1 0 0);
  --primary: oklch(0.28 0.09 262);
  --muted-foreground: oklch(0.45 0.02 260);
  --accent: oklch(0.65 0.13 250);
  --border: oklch(0.9 0.012 250);
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --gradient-hero: radial-gradient(ellipse at top left, oklch(0.45 0.13 258 / 0.18), transparent 60%), radial-gradient(ellipse at bottom right, oklch(0.65 0.13 250 / 0.15), transparent 55%);
  --gradient-ink: linear-gradient(135deg, oklch(0.16 0.04 260), oklch(0.22 0.07 262));
  --shadow-luxe: 0 30px 60px -30px oklch(0.18 0.06 260 / 0.35);
  --shadow-card: 0 10px 30px -15px oklch(0.18 0.04 260 / 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
body.menu-is-open { overflow: hidden; }
::selection { background: var(--primary); color: white; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
svg { width: 1.1em; height: 1.1em; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; flex: none; }
.svg-sprite { display: none; }

.container {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section {
  position: relative;
  padding-block: 7rem;
}
.narrow { max-width: 1024px; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}
h2 {
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  line-height: 1.05;
}
em {
  color: var(--primary);
  font-style: italic;
}
.dark-section {
  background: var(--ink);
  color: var(--ink-foreground);
  overflow: hidden;
}
.dark-section h2, .mini-card h2, .footer h2 { color: var(--ink-foreground); }
.dark-section em, .mini-card em, .footer em { color: var(--accent); }
.surface-section { background: var(--surface); }
.gradient-hero { background-image: var(--gradient-hero); }
.gradient-ink { background-image: var(--gradient-ink); }
.muted { color: var(--muted-foreground); }
.paragraph { margin: 1.5rem 0 0; line-height: 1.75; }
.lead {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  font-weight: 300;
}
.lead strong { font-weight: 500; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--muted-foreground);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.eyebrow span {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: color-mix(in oklab, var(--foreground) 30%, transparent);
}
.eyebrow.light { color: color-mix(in oklab, var(--ink-foreground) 60%, transparent); }
.eyebrow.light span { background: color-mix(in oklab, var(--ink-foreground) 30%, transparent); }
.eyebrow.centered { justify-content: center; }
.section-head { max-width: 48rem; }
.section-head h2, .split-head h2, .form-intro h2 { margin-top: 1.5rem; }
.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.split-head > div { max-width: 42rem; }
.split-head > p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: .65rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  overflow: hidden;
  isolation: isolate;
}
.button-large { padding: 1rem 1.75rem; }
.button:hover { transform: scale(1.02); }
.button-dark { background: var(--ink); color: var(--ink-foreground); }
.button-dark:hover { background: var(--primary); }
.button-dark::before, .button-inverse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
  z-index: -1;
}
.button-dark:hover::before, .button-inverse:hover::before { transform: translateX(100%); }
.button-outline { border-color: color-mix(in oklab, var(--foreground) 20%, transparent); color: var(--foreground); background: transparent; }
.button-outline:hover { background: var(--foreground); color: var(--background); }
.button-light-outline { border-color: color-mix(in oklab, var(--ink-foreground) 25%, transparent); color: var(--ink-foreground); background: transparent; }
.button-light-outline:hover { background: var(--ink-foreground); color: var(--ink); }
.button-inverse { background: var(--ink-foreground); color: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.centered-row { justify-content: center; }
.link-underline { position: relative; }
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .5s ease, border-color .5s ease, backdrop-filter .5s ease;
}
.site-header.scrolled {
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.35rem);
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand span + span { color: color-mix(in oklab, var(--primary) 85%, transparent); transition: color .25s ease; }
.brand:hover span + span { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.menu-open { padding-inline: 1rem; }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
}
.menu-overlay.open { pointer-events: auto; opacity: 1; }
.menu-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in oklab, var(--ink) 95%, transparent);
  backdrop-filter: blur(18px);
  border: 0;
}
.menu-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.menu-top {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-brand {
  font-family: var(--font-display);
  color: var(--ink-foreground);
  font-size: clamp(1.25rem, 2vw, 1.35rem);
}
.menu-brand span { color: var(--accent); }
.menu-nav { flex: 1; overflow: auto; }
.menu-nav ul { list-style: none; margin: 0 auto; padding-block: 2rem; }
.menu-nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
  border-bottom: 1px solid color-mix(in oklab, var(--ink-foreground) 10%, transparent);
  transition: border-color .25s ease;
}
.menu-nav a:hover { border-color: var(--accent); }
.menu-nav a > span {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.3rem);
  color: var(--ink-foreground);
  transition: color .25s ease;
}
.menu-nav a small {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .75rem;
  color: color-mix(in oklab, var(--ink-foreground) 40%, transparent);
}
.menu-nav a svg { color: color-mix(in oklab, var(--ink-foreground) 40%, transparent); transition: transform .25s ease, color .25s ease; }
.menu-nav a:hover > span, .menu-nav a:hover svg { color: var(--accent); }
.menu-nav a:hover svg { transform: translate(.25rem, -.25rem); }
.menu-bottom { border-top: 1px solid color-mix(in oklab, var(--ink-foreground) 10%, transparent); }
.menu-bottom .container {
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: color-mix(in oklab, var(--ink-foreground) 70%, transparent);
  font-size: .875rem;
}

.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  overflow: hidden;
  isolation: isolate;
}
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: .6;
}
.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
  animation: blob 18s ease-in-out infinite;
  z-index: -1;
}
.hero-blob-one {
  top: -10rem;
  left: -8rem;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, oklch(0.55 0.18 258 / .35), transparent 70%);
}
.hero-blob-two {
  right: -8rem;
  bottom: -10rem;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, oklch(0.7 0.13 240 / .28), transparent 70%);
}
.hero-title {
  max-width: 64rem;
  margin-top: 1.5rem;
  color: var(--ink);
  font-size: clamp(2.6rem, 7.4vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.word-mark { position: relative; display: inline-block; }
.word-mark svg {
  position: absolute;
  left: 0;
  bottom: -.5rem;
  width: 100%;
  height: 14px;
  color: var(--accent);
}
.hero-text {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--muted-foreground);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.7;
}
.hero-sub { margin: .75rem 0 0; color: color-mix(in oklab, var(--foreground) 70%, transparent); font-size: .875rem; letter-spacing: .03em; }
.hero .button-row { margin-top: 2.5rem; }
.mockup-wrap {
  position: relative;
  max-width: 64rem;
  margin: 5rem auto 0;
}
.browser-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-luxe);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-muted);
}
.browser-bar i { width: .625rem; height: .625rem; border-radius: 999px; background: color-mix(in oklab, var(--foreground) 15%, transparent); }
.browser-bar span { margin-left: .75rem; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: .75rem; color: var(--muted-foreground); }
.browser-preview {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.browser-preview .gradient-hero { position: absolute; inset: 0; opacity: .8; }
.preview-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--ink-foreground);
  text-align: center;
  padding: 1.5rem;
}
.preview-copy span { text-transform: uppercase; letter-spacing: .3em; font-size: .75rem; opacity: .7; }
.preview-copy strong { margin-top: .75rem; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 600; }
.preview-orb { position: absolute; width: 10rem; height: 10rem; border-radius: 999px; filter: blur(42px); animation: float-slow 9s ease-in-out infinite; }
.preview-orb.one { left: -2.5rem; bottom: -2.5rem; background: color-mix(in oklab, var(--accent) 30%, transparent); }
.preview-orb.two { right: -2.5rem; top: -2.5rem; background: color-mix(in oklab, var(--primary) 40%, transparent); }
.available-pill, .custom-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}
.available-pill {
  left: -1.5rem;
  bottom: -1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  font-size: .875rem;
}
.available-pill i { width: .625rem; height: .625rem; border-radius: 999px; background: #10b981; animation: pulse 1.4s ease-in-out infinite; }
.custom-pill {
  right: -1rem;
  top: -1.5rem;
  display: block;
  background: var(--ink);
  color: var(--ink-foreground);
  padding: 1rem 1.25rem;
}
.custom-pill strong { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.custom-pill span { font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; opacity: .7; }
.marquee-wrap {
  margin: 6rem -1.5rem 0;
  overflow: hidden;
  border-block: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  padding-block: 1.5rem;
  background: color-mix(in oklab, var(--surface) 50%, transparent);
}
.marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: color-mix(in oklab, var(--foreground) 40%, transparent);
}
.marquee b { color: var(--accent); font-weight: 400; }

.two-col { display: grid; grid-template-columns: 5fr 7fr; gap: 3.5rem; }
.trait-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; margin-top: 2.5rem; }
.trait-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.trait-card:hover { border-color: color-mix(in oklab, var(--foreground) 30%, transparent); box-shadow: var(--shadow-card); }
.trait-card span, .service-card span, .mini-list span, .form-success span {
  display: grid;
  place-items: center;
  flex: none;
}
.trait-card span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  background: var(--ink);
  color: var(--ink-foreground);
  transition: background .25s ease;
}
.trait-card:hover span { background: var(--primary); }
.tools { margin: 2.5rem 0 0; color: var(--muted-foreground); font-size: .875rem; }
.tools strong { color: var(--foreground); font-weight: 500; }

.dark-glow {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: radial-gradient(ellipse at 20% 0%, oklch(0.45 0.16 258 / .5), transparent 50%), radial-gradient(ellipse at 80% 100%, oklch(0.5 0.13 240 / .35), transparent 55%);
}
.why .container, .request .container { position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 1px;
  margin-top: 4rem;
  border: 1px solid color-mix(in oklab, var(--ink-foreground) 10%, transparent);
  border-radius: 1.5rem;
  overflow: hidden;
  background: color-mix(in oklab, var(--ink-foreground) 10%, transparent);
}
.why-card {
  min-height: 14rem;
  background: var(--ink);
  padding: 1.75rem;
  transition: background .5s ease;
}
.why-card:hover { background: var(--primary); }
.why-card > svg { width: 1.75rem; height: 1.75rem; color: var(--accent); transition: color .25s ease; }
.why-card:hover > svg { color: var(--ink-foreground); }
.why-card h3 { margin-top: 1.25rem; color: var(--ink-foreground); font-size: 1.25rem; }
.why-card p { margin: .5rem 0 0; color: color-mix(in oklab, var(--ink-foreground) 65%, transparent); font-size: .875rem; line-height: 1.6; }

.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2.25rem; margin-top: 4rem; }
.project-card { display: block; }
.project-card > div:first-child, .project-card { border-radius: 1.5rem; }
.project-card { overflow: hidden; border: 1px solid var(--border); background: var(--surface-muted); box-shadow: var(--shadow-card); transition: transform .3s ease, box-shadow .3s ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-luxe); }
.project-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-image: var(--gradient-ink);
}
.project-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.project-card:hover img { transform: scale(1.06); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in oklab, var(--ink) 70%, transparent), transparent 55%); opacity: 0; transition: opacity .5s ease; }
.project-card:hover .project-overlay { opacity: 1; }
.project-top { position: absolute; top: 1rem; left: 1rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.project-top span { border-radius: 999px; background: color-mix(in oklab, var(--background) 85%, transparent); backdrop-filter: blur(8px); padding: .35rem .65rem; font-size: .625rem; text-transform: uppercase; letter-spacing: .12em; }
.project-arrow { position: absolute; right: 1rem; bottom: 1rem; display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 999px; background: var(--background); color: var(--foreground); transform: translateY(.75rem); opacity: 0; transition: transform .5s ease, opacity .5s ease; }
.project-card:hover .project-arrow { transform: translateY(0); opacity: 1; }
.project-content { background: var(--card); padding: 1.75rem; }
.project-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.project-title-row h3 { color: var(--ink); font-size: clamp(1.5rem, 3vw, 2rem); }
.project-title-row small { color: var(--muted-foreground); font-size: .75rem; white-space: nowrap; }
.project-content p { margin: .75rem 0 0; color: var(--muted-foreground); line-height: 1.65; font-size: .95rem; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.tags span { border: 1px solid var(--border); border-radius: 999px; padding: .35rem .75rem; color: color-mix(in oklab, var(--foreground) 70%, transparent); font-size: .75rem; }
.project-content strong { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-size: .875rem; font-weight: 500; }
.projects-note { max-width: 48rem; margin: 4rem 0 0; color: var(--muted-foreground); line-height: 1.7; font-size: clamp(1rem, 2vw, 1.125rem); }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.35rem; margin-top: 4rem; }
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 1.75rem;
  transition: box-shadow .5s ease, transform .35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 0%, transparent);
  filter: blur(32px);
  transition: background .7s ease;
}
.service-card:hover { box-shadow: var(--shadow-luxe); transform: translateY(-3px); }
.service-card:hover::before { background: color-mix(in oklab, var(--accent) 10%, transparent); }
.service-card span { width: 2.75rem; height: 2.75rem; border-radius: .75rem; background: var(--ink); color: var(--ink-foreground); }
.service-card h3 { margin-top: 1.25rem; color: var(--ink); font-size: 1.25rem; }
.service-card p { margin: .5rem 0 0; color: var(--muted-foreground); font-size: .875rem; line-height: 1.65; }

.mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  color: var(--ink-foreground);
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-luxe);
}
.mini-orb { position: absolute; width: 400px; height: 400px; border-radius: 999px; filter: blur(64px); animation: blob 18s ease-in-out infinite; }
.mini-orb-one { top: -8rem; right: -5rem; background: radial-gradient(circle, oklch(0.65 0.16 250), transparent 70%); opacity: .4; }
.mini-orb-two { bottom: -8rem; left: -5rem; background: radial-gradient(circle, oklch(0.55 0.18 258), transparent 70%); opacity: .3; }
.mini-grid { position: relative; display: grid; grid-template-columns: 7fr 5fr; gap: 3rem; align-items: center; }
.mini-grid h2 { margin-top: 1.5rem; }
.mini-grid p { max-width: 42rem; margin: 1.5rem 0 0; color: color-mix(in oklab, var(--ink-foreground) 75%, transparent); line-height: 1.75; }
.mini-grid .button { margin-top: 2.5rem; }
.mini-list { display: grid; gap: .75rem; list-style: none; margin: 0; padding: 0; }
.mini-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: 1rem;
  border: 1px solid color-mix(in oklab, var(--ink-foreground) 10%, transparent);
  background: color-mix(in oklab, var(--ink-foreground) 5%, transparent);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
}
.mini-list span { width: 2rem; height: 2rem; border-radius: 999px; background: var(--accent); color: var(--ink); }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 3rem; align-items: center; }
.pricing-grid .button { margin-top: 2rem; }
.price-card {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card);
  padding: clamp(2rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-luxe);
}
.price-card > p { margin: 0; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .22em; font-size: .75rem; }
.price-card > strong { display: block; margin-top: 1rem; color: var(--ink); font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 4.5rem); line-height: .98; font-weight: 600; }
.price-card ul { display: grid; gap: 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.price-card li { display: flex; gap: .75rem; line-height: 1.55; color: color-mix(in oklab, var(--foreground) 80%, transparent); }
.price-card li span { width: .4rem; height: .4rem; border-radius: 999px; background: var(--accent); margin-top: .65rem; flex: none; }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; margin-top: 4rem; }
.step-card {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card);
  padding: 2rem;
  transition: background .5s ease, color .5s ease;
}
.step-card:hover { background: var(--ink); color: var(--ink-foreground); }
.step-card > span { font-family: var(--font-display); font-size: 3rem; color: color-mix(in oklab, var(--foreground) 15%, transparent); transition: color .25s ease; }
.step-card:hover > span { color: color-mix(in oklab, var(--ink-foreground) 20%, transparent); }
.step-card h3 { margin-top: 1.5rem; font-size: 1.25rem; }
.step-card p { margin: .75rem 0 0; color: var(--muted-foreground); font-size: .875rem; line-height: 1.65; transition: color .25s ease; }
.step-card:hover p { color: color-mix(in oklab, var(--ink-foreground) 70%, transparent); }

.form-glow { opacity: .5; }
.form-intro { text-align: center; max-width: 48rem; margin-inline: auto; }
.form-intro p { margin: 1rem 0 0; color: color-mix(in oklab, var(--ink-foreground) 70%, transparent); }
.faq .form-intro p { color: var(--muted-foreground); }
.request-form {
  margin-top: 3.5rem;
  border-radius: 1.5rem;
  background: var(--ink-foreground);
  color: var(--foreground);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-luxe);
  display: grid;
  gap: 2rem;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; }
.request-form label, .function-field { display: grid; gap: .5rem; }
.request-form label > span, .function-field > span {
  display: block;
  color: var(--muted-foreground);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.request-form input, .request-form select, .request-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: .75rem;
  background: var(--background);
  color: var(--foreground);
  padding: .8rem 1rem;
  font-size: .875rem;
  outline: none;
  transition: border-color .25s ease;
}
.request-form textarea { resize: vertical; min-height: 5.5rem; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--foreground); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-row button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--background);
  color: var(--foreground);
  padding: .55rem 1rem;
  font-size: .875rem;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.chip-row button:hover { border-color: color-mix(in oklab, var(--foreground) 40%, transparent); }
.chip-row button.active { background: var(--ink); color: var(--ink-foreground); border-color: var(--ink); }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: .5rem; }
.form-footer p { max-width: 28rem; margin: 0; color: var(--muted-foreground); font-size: .75rem; line-height: 1.6; }
.form-success {
  margin-top: 3.5rem;
  text-align: center;
  color: var(--ink-foreground);
}
.form-success span {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  margin-inline: auto;
}
.form-success h2 { margin-top: 2rem; font-size: clamp(2.5rem, 5vw, 3.2rem); }
.form-success p { margin: 1rem 0 0; color: color-mix(in oklab, var(--ink-foreground) 75%, transparent); font-size: 1.125rem; }

.faq-list { margin-top: 3.5rem; border-block: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 1.75rem 0;
  text-align: left;
}
.faq-item button > span { font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.55rem); transition: color .25s ease; }
.faq-item button:hover > span { color: var(--primary); }
.faq-item button i {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.faq-item button:hover i { background: var(--ink); color: var(--ink-foreground); border-color: var(--ink); }
.faq-item .minus { display: none; }
.faq-item.open .minus { display: block; }
.faq-item.open .plus { display: none; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s ease;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 4rem 0 0;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
}
.faq-item.open .faq-answer p { padding-bottom: 1.75rem; }

.contact { overflow: hidden; padding-block: 7rem 9rem; }
.contact-bg { position: absolute; inset: 0; z-index: -1; opacity: .6; }
.contact-inner { text-align: center; }
.contact-inner h2 { font-size: clamp(3rem, 8vw, 6rem); line-height: .95; }
.contact-inner p { max-width: 42rem; margin: 2rem auto 0; color: var(--muted-foreground); font-size: clamp(1.1rem, 2vw, 1.25rem); }
.contact-inner .button-row { margin-top: 3rem; }

.footer { padding-top: 6rem; padding-bottom: 2.5rem; }
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, color-mix(in oklab, var(--ink-foreground) 30%, transparent), transparent);
}
.footer-grid { display: grid; grid-template-columns: 6fr 3fr 3fr; gap: 3rem; }
.footer-brand { margin: 0; font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.75rem); line-height: 1.05; }
.footer-sub { max-width: 28rem; margin: 1rem 0 0; color: color-mix(in oklab, var(--ink-foreground) 70%, transparent); font-size: 1.1rem; }
.footer-mail { display: inline-block; margin-top: 2rem; font-size: 1.1rem; }
.footer-title { margin: 0; color: color-mix(in oklab, var(--ink-foreground) 50%, transparent); text-transform: uppercase; letter-spacing: .22em; font-size: .75rem; }
.footer ul { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .75rem; }
.footer li a { color: color-mix(in oklab, var(--ink-foreground) 85%, transparent); transition: color .25s ease; }
.footer li a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in oklab, var(--ink-foreground) 10%, transparent);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: color-mix(in oklab, var(--ink-foreground) 55%, transparent);
  font-size: .75rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.25rem; }
.footer-bottom a:hover { color: var(--ink-foreground); }
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--ink-foreground) 10%, transparent);
  background: var(--ink);
  color: var(--ink-foreground);
  box-shadow: var(--shadow-luxe);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity .5s ease, transform .5s ease, background .25s ease;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--primary); transform: translateY(0) scale(1.1); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float-slow { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-12px,0); } }
@keyframes blob { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(20px,-30px) scale(1.05); } 66% { transform: translate(-25px,15px) scale(.97); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }

@media (min-width: 768px) {
  .header-inner, .menu-top { height: 5rem; }
}
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .section { padding-block: 5.5rem; }
  .two-col, .mini-grid, .pricing-grid { grid-template-columns: 1fr; }
  .split-head { display: grid; align-items: start; }
  .project-grid, .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .container { padding-inline: 1.25rem; }
  .header-cta { display: none; }
  .hero { padding-top: 7rem; }
  .hero-title br { display: none; }
  .available-pill, .custom-pill { display: none; }
  .marquee-wrap { margin-inline: -1.25rem; }
  .trait-grid, .form-grid, .why-grid, .process-grid { grid-template-columns: 1fr; }
  .why-card { min-height: auto; }
  .project-title-row { display: grid; }
  .mini-card { padding: 2rem; border-radius: 1.5rem; }
  .form-footer { display: grid; }
  .request-form { border-radius: 1.25rem; }
  .faq-answer p { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .menu-bottom .container { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Aanpassing: de verwarrende preview bovenaan is vervangen door duidelijke USP-kaarten. */
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}
.hero-points article {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: color-mix(in oklab, var(--card) 82%, transparent);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
}
.hero-points strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.hero-points span {
  display: block;
  margin-top: .5rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: .9rem;
}
.form-error {
  margin-top: 2rem;
  border: 1px solid color-mix(in oklab, red 30%, transparent);
  border-radius: 1rem;
  background: color-mix(in oklab, red 10%, transparent);
  color: var(--ink-foreground);
  padding: 1rem 1.25rem;
  text-align: center;
}
.button.is-loading {
  pointer-events: none;
  opacity: .7;
}
@media (max-width: 900px) {
  .hero-points { grid-template-columns: 1fr; margin-top: 3rem; }
}


/* Extra mobiele afwerking: knoppen, formulieren en kaarten blijven netjes op kleine schermen. */
@media (max-width: 700px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  body { font-size: 16px; }
  .section { padding-block: 4.5rem; }
  .container { padding-inline: 1rem; }
  .header-inner { height: 4.25rem; }
  .brand { font-size: 1.15rem; }
  .menu-open { padding: .65rem .9rem; }
  .menu-nav ul { padding-block: 1rem 2rem; }
  .menu-nav a { padding-block: .9rem; }
  .menu-nav a > span { font-size: clamp(1.65rem, 9vw, 2.35rem); gap: .75rem; }
  .menu-nav a small { font-size: .65rem; }
  .menu-bottom .container { gap: .65rem; }

  .hero { padding-top: 7.25rem; padding-bottom: 4.25rem; }
  .hero-title { font-size: clamp(2.35rem, 12vw, 3.7rem); line-height: 1.04; }
  .hero-text { margin-top: 1.5rem; font-size: 1rem; }
  .hero .button-row,
  .contact-inner .button-row { align-items: stretch; flex-direction: column; width: 100%; }
  .button-row .button,
  .form-footer .button { width: 100%; min-height: 3.25rem; }
  .marquee-wrap { margin-top: 3.5rem; }

  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .lead { font-size: 1.08rem; }
  .two-col { gap: 2rem; }
  .split-head { gap: 1rem; }

  .why-grid,
  .project-grid,
  .service-grid,
  .process-grid { margin-top: 2.5rem; }
  .project-card { border-radius: 1.1rem; }
  .project-card > div:first-child { border-radius: 1.1rem 1.1rem 0 0; }
  .project-image { aspect-ratio: 4 / 3; }
  .project-content { padding: 1.15rem; }
  .project-title-row small { white-space: normal; }
  .project-top { top: .75rem; left: .75rem; right: .75rem; }
  .project-arrow { opacity: 1; transform: none; width: 2.65rem; height: 2.65rem; }

  .mini-card { padding: 1.5rem; }
  .mini-list li { padding: .85rem 1rem; }
  .price-card > strong { font-size: clamp(2.75rem, 15vw, 3.75rem); }

  .request-form { margin-top: 2.25rem; padding: 1.15rem; gap: 1.35rem; }
  .request-form input,
  .request-form select,
  .request-form textarea { font-size: 16px; }
  .chip-row { display: grid; grid-template-columns: 1fr; }
  .chip-row button { width: 100%; text-align: center; }
  .form-footer { gap: 1rem; }
  .form-footer p { max-width: none; }

  .faq-list { margin-top: 2.25rem; }
  .faq-item button { padding-block: 1.25rem; }
  .faq-item button i { width: 2.2rem; height: 2.2rem; }
  .contact { padding-block: 4.75rem 5.5rem; }
  .footer { padding-top: 4rem; }
  .footer-bottom div { display: grid; gap: .75rem; }
  .scroll-top { right: 1rem; bottom: 1rem; width: 2.75rem; height: 2.75rem; }
}

@media (max-width: 420px) {
  .brand { flex-direction: column; align-items: flex-start; gap: 0; line-height: 1; }
  .menu-open span { display: none; }
  .hero-title { font-size: clamp(2.1rem, 13vw, 3.2rem); }
  .eyebrow { letter-spacing: .14em; font-size: .68rem; }
  .eyebrow span { width: 1.75rem; }
  .trait-card,
  .service-card,
  .step-card,
  .why-card { padding: 1rem; }
}
