@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #182327;
  --ink-soft: #5f6c6e;
  --muted: #899596;
  --paper: #f4f8f6;
  --white: #ffffff;
  --green: #1d9e75;
  --green-deep: #117657;
  --blue: #378add;
  --blue-deep: #1766b3;
  --aqua: #e6f4ee;
  --ice: #eaf2fb;
  --warm: #f4b06d;
  --line: #dce7e2;
  --line-dark: #c4d2cc;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.56);
  --surface-card: rgba(255, 255, 255, 0.47);
  --surface-plan: rgba(255, 255, 255, 0.62);
  --surface-icon: rgba(255, 255, 255, 0.7);
  --surface-control: #e9efec;
  --deep-surface: #182327;
  --shadow: 0 24px 65px rgba(31, 52, 47, 0.11);
  --display: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  --body: 'Manrope', 'Segoe UI', sans-serif;
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --ink: #edf7f3;
  --ink-soft: #b2c5be;
  --muted: #839a94;
  --paper: #10191c;
  --aqua: #153c31;
  --ice: #1b324e;
  --line: #2b4440;
  --line-dark: #49635d;
  --surface: #1b292c;
  --surface-soft: rgba(28, 47, 47, 0.82);
  --surface-card: rgba(25, 43, 44, 0.8);
  --surface-plan: rgba(27, 46, 46, 0.94);
  --surface-icon: rgba(67, 101, 94, 0.34);
  --surface-control: #203735;
  --deep-surface: #080f12;
  --shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: color 220ms ease, background-color 220ms ease;
}

body::selection {
  color: var(--white);
  background: var(--green);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

.page-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 48, 41, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

:root[data-theme='dark'] .page-noise {
  opacity: 0.1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(130, 210, 184, 0.035) 1px, transparent 1px);
}

.section-shell,
.site-header {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 40px;
  border-bottom: 1px solid rgba(196, 210, 204, 0.68);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 216px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-dark {
  display: none;
  width: 190px;
  height: 58px;
}

:root[data-theme='dark'] .brand-logo-light {
  display: none;
}

:root[data-theme='dark'] .brand-logo-dark {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.main-nav a,
.footer-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: '';
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.main-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot,
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(29, 158, 117, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg,
.text-link svg,
.card-link svg,
.footer-links svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.button:hover,
.text-link:hover,
.card-link:hover {
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg,
.card-link:hover svg {
  transform: translate(2px, -2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 9px 20px rgba(29, 158, 117, 0.2);
}

.button-primary:hover {
  background: var(--green-deep);
  box-shadow: 0 12px 25px rgba(29, 158, 117, 0.28);
}

.button-dark {
  color: var(--white);
  background: var(--deep-surface);
}

.button-dark:hover {
  background: #2b383b;
}

.button-outline {
  color: var(--ink);
  border-color: var(--line-dark);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--green);
  background: var(--surface);
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 11px;
}

.icon-button {
  display: inline-grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.icon-button svg {
  width: 17px;
  height: 17px;
}

.theme-toggle {
  color: var(--ink-soft);
}

.theme-toggle:hover {
  color: var(--green);
  border-color: var(--green);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: 715px;
  grid-template-columns: minmax(0, 0.9fr) minmax(490px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 105px);
  padding-top: 76px;
  padding-bottom: 88px;
}

.hero-copy {
  padding-bottom: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.process-intro h2,
.contact-copy h2 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -1.9px;
  line-height: 0.99;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(48px, 6.1vw, 78px);
}

h1 em,
h2 em {
  color: var(--green);
  font-style: normal;
}

.hero-lede {
  max-width: 445px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 31px;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 55px;
}

.avatar-stack {
  display: flex;
  padding-left: 5px;
}

.avatar {
  display: grid;
  width: 30px;
  height: 30px;
  margin-left: -5px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
}

.avatar-one { background: #1d9e75; }
.avatar-two { background: #2f739d; }
.avatar-three { background: #eea45e; }

.trust-stars {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.trust-stars span {
  color: var(--green);
  letter-spacing: 1px;
}

.hero-trust p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.hero-metrics {
  display: flex;
  gap: 26px;
  margin-top: 37px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-metrics div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-metrics strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.hero-demo {
  position: relative;
  padding-top: 29px;
}

.demo-label {
  position: absolute;
  top: 0;
  right: 11px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 6px;
  height: 6px;
}

.pulse-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(29, 158, 117, 0.4);
  border-radius: inherit;
  content: '';
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.85; transform: scale(0.75); }
  70%, 100% { opacity: 0; transform: scale(1.8); }
}

.browser-frame {
  padding: 8px;
  border: 1px solid #d7e1dd;
  border-radius: 11px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(0.8deg);
  transition: transform 250ms ease;
}

.browser-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}

.browser-bar {
  display: flex;
  align-items: center;
  height: 29px;
  padding: 0 10px;
  color: #97a4a1;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7dfdc;
}

.browser-dots span:first-child { background: #efa981; }
.browser-dots span:nth-child(2) { background: #e7c776; }
.browser-dots span:nth-child(3) { background: #8bc4a6; }

.browser-address {
  width: 154px;
  margin: 0 auto;
  padding: 4px 0;
  border-radius: 4px;
  background: #f1f5f3;
  font-size: 9px;
  text-align: center;
}

.browser-bar > svg {
  width: 15px;
  height: 15px;
}

.site-preview {
  --preview-bg: #e7f2e8;
  --preview-ink: #244134;
  --preview-accent: #1d9e75;
  overflow: hidden;
  min-height: 430px;
  border-radius: 5px;
  background: var(--preview-bg);
  color: var(--preview-ink);
  transition: background 320ms ease, color 320ms ease;
}

.site-preview[data-theme='estudio'] {
  --preview-bg: #edf1f8;
  --preview-ink: #1f2b43;
  --preview-accent: #378add;
}

.site-preview[data-theme='clinica'] {
  --preview-bg: #fbf0e9;
  --preview-ink: #3d2b27;
  --preview-accent: #db795b;
}

.preview-topline,
.preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 25px;
}

.preview-topline {
  border-bottom: 1px solid color-mix(in srgb, var(--preview-ink) 13%, transparent);
}

.preview-mini-logo {
  color: var(--preview-ink);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.preview-mini-logo::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  content: '';
  background: var(--preview-accent);
  vertical-align: 2px;
}

.preview-links {
  display: flex;
  gap: 21px;
  color: color-mix(in srgb, var(--preview-ink) 66%, transparent);
  font-size: 9px;
  font-weight: 700;
}

.preview-menu-icon {
  display: none;
}

.preview-menu-icon svg {
  width: 17px;
  height: 17px;
}

.preview-body {
  display: grid;
  min-height: 330px;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 20px;
  padding: 35px 25px 29px;
}

.preview-copy {
  position: relative;
  z-index: 1;
}

.preview-tag {
  display: inline-block;
  color: var(--preview-accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-copy h2 {
  margin: 13px 0 11px;
  color: var(--preview-ink);
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -2.5px;
  line-height: 0.93;
}

.preview-copy h2 em {
  color: var(--preview-accent);
  font-style: normal;
}

.preview-copy p {
  max-width: 190px;
  margin: 0;
  color: color-mix(in srgb, var(--preview-ink) 68%, transparent);
  font-size: 10px;
  line-height: 1.55;
}

.preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 23px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--preview-accent);
  color: var(--preview-ink);
  font-size: 10px;
  font-weight: 800;
}

.preview-cta svg {
  width: 13px;
  height: 13px;
}

.preview-visual {
  position: relative;
  overflow: hidden;
  min-height: 267px;
  border-radius: 4px;
  background: var(--preview-accent);
  box-shadow: 14px 16px 0 color-mix(in srgb, var(--preview-accent) 18%, transparent);
}

.preview-visual::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(135deg, transparent 40%, rgba(0, 0, 0, 0.18));
  mix-blend-mode: multiply;
}

.preview-visual img {
  width: 100%;
  height: 100%;
  min-height: 267px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.83) contrast(0.95);
  transition: transform 500ms ease, opacity 220ms ease;
}

.site-preview[data-theme='estudio'] .preview-visual img { object-position: 46% center; }
.site-preview[data-theme='clinica'] .preview-visual img { object-position: 58% center; }

.preview-stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  width: 68px;
  height: 68px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--white);
  font-size: 7px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-13deg);
}

.preview-stamp strong {
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.1;
}

.preview-foot {
  gap: 15px;
  border-top: 1px solid color-mix(in srgb, var(--preview-ink) 13%, transparent);
  color: color-mix(in srgb, var(--preview-ink) 64%, transparent);
  font-size: 8px;
  font-weight: 700;
}

.preview-foot span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.preview-foot svg {
  width: 11px;
  height: 11px;
  color: var(--preview-accent);
}

.demo-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 23px;
  padding: 14px 15px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
}

.demo-control-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.demo-control-copy span {
  font-size: 11px;
  font-weight: 800;
}

.demo-control-copy small {
  color: var(--muted);
  font-size: 9px;
}

.business-tabs {
  display: flex;
  gap: 3px;
  padding: 3px;
  border-radius: 5px;
  background: var(--surface-control);
}

.business-tab {
  padding: 7px 10px;
  border: 0;
  border-radius: 3px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.business-tab:hover,
.business-tab.is-active {
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 2px 5px rgba(28, 48, 42, 0.08);
}

.client-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px 23px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.client-types {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 12px;
}

.client-types i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.section-block {
  padding-top: 128px;
}

.section-heading h2 {
  max-width: 630px;
  font-size: clamp(39px, 4.1vw, 59px);
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.split-heading > p {
  max-width: 330px;
  margin: 0 0 3px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 53px;
}

.feature-card {
  position: relative;
  min-height: 318px;
  padding: 25px 25px 23px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-card);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(31, 52, 47, 0.07);
  transform: translateY(-4px);
}

.feature-card-featured {
  border-color: rgba(29, 158, 117, 0.33);
  background: var(--aqua);
}

.feature-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 5px;
  color: var(--green-deep);
  background: var(--surface-icon);
}

.feature-icon-blue { color: var(--blue-deep); background: var(--ice); }
.feature-icon-warm { color: #ad6034; background: #fff0df; }
.feature-icon svg { width: 18px; height: 18px; }

.card-number {
  position: absolute;
  top: 30px;
  right: 25px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
}

.feature-card h3 {
  max-width: 220px;
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.08;
}

.feature-card p {
  max-width: 255px;
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.card-link {
  position: absolute;
  bottom: 23px;
  left: 25px;
  font-size: 10px;
}

.card-link svg {
  width: 13px;
  height: 13px;
}

.showcase-heading {
  align-items: flex-end;
}

.showcase-heading .text-link {
  margin-bottom: 5px;
  white-space: nowrap;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  gap: 23px;
  margin-top: 49px;
}

.work-card h3 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.08;
}

.work-image {
  position: relative;
  overflow: hidden;
  background: var(--deep-surface);
}

.work-image::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(125deg, transparent 45%, rgba(18, 35, 33, 0.26));
  pointer-events: none;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.work-card:hover .work-image img {
  transform: scale(1.04);
}

.work-image-bakery { height: 393px; background: #b98255; }
.work-image-bakery img { object-position: 50% 57%; }
.work-image-studio { height: 200px; background: #85a2b1; }
.work-image-studio img { object-position: 50% 38%; }

.work-badge {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 1;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  color: var(--white);
  background: rgba(19, 37, 35, 0.25);
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(7px);
}

.work-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  transition: transform 180ms ease;
}

.work-card:hover .work-arrow {
  transform: translate(2px, -2px);
}

.work-arrow svg {
  width: 15px;
  height: 15px;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-meta span:last-child {
  color: var(--green-deep);
}

.showcase-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 35px;
}

.quote-card {
  display: flex;
  min-height: 185px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 7px;
  color: var(--white);
  background: var(--deep-surface);
}

.quote-mark {
  height: 24px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.8;
}

.quote-card blockquote {
  max-width: 350px;
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
}

.quote-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--warm);
  font-size: 8px;
  font-weight: 800;
}

.quote-person span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.quote-person strong {
  font-size: 10px;
}

.quote-person small {
  color: #98a7a5;
  font-size: 9px;
}

.showcase-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 43px;
  padding: 15px 17px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showcase-toolbar-copy {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.showcase-toolbar-copy strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}

.showcase-toolbar-copy span {
  color: var(--muted);
  font-size: 11px;
}

.project-filters {
  display: flex;
  gap: 3px;
  padding: 3px;
  border-radius: 5px;
  background: var(--surface-control);
}

.project-filter {
  min-width: 72px;
  padding: 8px 11px;
  border: 0;
  border-radius: 3px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.project-filter:hover,
.project-filter.is-active {
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 2px 5px rgba(28, 48, 42, 0.08);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px 16px;
  margin-top: 29px;
}

.project-card {
  min-width: 0;
}

.project-card-trigger {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.45;
  border-radius: 6px;
  background: var(--deep-surface);
}

.project-image::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(135deg, transparent 45%, rgba(18, 35, 33, 0.28));
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 220ms ease;
}

.project-card-trigger:hover .project-image img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.project-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  color: var(--white);
  background: rgba(19, 37, 35, 0.3);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(7px);
}

.project-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  transition: transform 180ms ease;
}

.project-card-trigger:hover .project-open {
  transform: translate(2px, -2px);
}

.project-open svg,
.project-card-link svg {
  width: 14px;
  height: 14px;
}

.project-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.project-card-meta span:last-child {
  color: var(--green-deep);
  text-align: right;
}

.project-card-title {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.7px;
  line-height: 1.12;
}

.project-card-summary {
  display: block;
  min-height: 38px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.project-card-link svg {
  transition: transform 180ms ease;
}

.project-card-trigger:hover .project-card-link svg {
  transform: translate(2px, -2px);
}

.showcase-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  margin-top: 36px;
}

.showcase-note {
  display: flex;
  min-height: 218px;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-card);
}

.showcase-note-number {
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-note h3 {
  max-width: 330px;
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.9px;
  line-height: 1.08;
}

.showcase-note p {
  max-width: 375px;
  margin: 11px 0 18px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.showcase-note .text-link {
  margin-top: auto;
  font-size: 11px;
}

.project-dialog {
  width: min(910px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.project-dialog::backdrop {
  background: rgba(8, 15, 18, 0.7);
  backdrop-filter: blur(6px);
}

.dialog-card {
  position: relative;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  color: var(--ink-soft);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.dialog-close:hover {
  color: var(--ink);
  border-color: var(--green);
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  align-items: stretch;
  gap: 37px;
}

.dialog-image {
  width: 100%;
  height: 100%;
  min-height: 425px;
  object-fit: cover;
  border-radius: 5px;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 32px 42px 5px;
}

.dialog-copy h2 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 55px);
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 0.98;
}

.dialog-lede {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.dialog-features {
  display: grid;
  gap: 11px;
  width: 100%;
  margin: 25px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.dialog-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
}

.dialog-features svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--green);
  stroke-width: 2.5;
}

.dialog-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.dialog-actions .button {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 11px;
}

.dialog-actions .text-link {
  font-size: 11px;
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 10vw, 140px);
  padding-bottom: 128px;
}

.process-intro h2 {
  font-size: clamp(40px, 4.5vw, 61px);
}

.process-intro > p {
  max-width: 280px;
  margin: 22px 0 28px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.process-intro .button {
  min-height: 42px;
  padding-inline: 15px;
  font-size: 10px;
}

.process-list {
  padding-top: 6px;
}

.process-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: start;
  gap: 22px;
  padding: 24px 0 27px;
  border-top: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step.is-current .step-number {
  color: var(--green);
}

.step-number {
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
}

.process-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.process-step p {
  max-width: 435px;
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.step-status {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.plans {
  padding-bottom: 127px;
  background: linear-gradient(180deg, transparent 0%, rgba(228, 242, 236, 0.34) 22%, rgba(228, 242, 236, 0.34) 100%);
}

:root[data-theme='dark'] .plans {
  background: linear-gradient(180deg, transparent 0%, rgba(21, 60, 49, 0.28) 22%, rgba(21, 60, 49, 0.28) 100%);
}

.plans-heading {
  align-items: flex-end;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 51px;
}

.plan-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-plan);
}

.plan-card-featured {
  border-color: var(--green);
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(29, 158, 117, 0.1);
}

.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-label {
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-index {
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
}

.plan-card h3 {
  margin: 36px 0 7px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -1px;
}

.plan-card > p {
  min-height: 58px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.plan-price strong {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.8px;
}

.plan-price span {
  color: var(--muted);
  font-size: 10px;
}

.plan-features {
  display: grid;
  gap: 11px;
  margin: 20px 0 25px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 11px;
}

.plan-features svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  stroke-width: 2.5;
}

.plan-button {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding-inline: 12px;
  font-size: 10px;
}

.plan-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.plan-note svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.contact {
  padding-bottom: 128px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.82fr);
  gap: clamp(42px, 8vw, 120px);
  padding: 66px 7.5%;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep-surface);
  box-shadow: 0 22px 52px rgba(24, 35, 39, 0.14);
}

.eyebrow-light {
  color: #83d8bc;
}

.contact-copy h2 {
  margin-top: 20px;
  color: var(--white);
  font-size: clamp(40px, 4.2vw, 58px);
}

.contact-copy h2 br + * {
  color: var(--green);
}

.contact-copy p {
  max-width: 360px;
  margin: 23px 0 42px;
  color: #a7b5b4;
  font-size: 13px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
}

.detail-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #3d5150;
  border-radius: 4px;
  color: #83d8bc;
}

.detail-icon svg {
  width: 14px;
  height: 14px;
}

.contact-detail span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-detail small {
  color: #849595;
  font-size: 9px;
}

.contact-detail strong {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.brief-form {
  padding: 25px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
}

.form-progress {
  color: var(--green);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
}

.brief-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 19px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
  resize: vertical;
  transition: border-color 180ms ease;
}

.brief-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 7px) 50%, calc(100% - 2px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--green);
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: #aab4b3;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-feedback {
  min-height: 0;
  margin-top: 0;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 200ms ease, transform 200ms ease, margin 200ms ease;
}

.form-feedback.is-visible {
  min-height: 32px;
  margin-top: 13px;
  opacity: 1;
  transform: translateY(0);
}

.form-legal {
  display: block;
  margin-top: 16px;
  color: #9ba8a6;
  font-size: 9px;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding-top: 27px;
  padding-bottom: 38px;
  border-top: 1px solid var(--line);
}

.footer-brand .brand-logo-light {
  width: 200px;
  height: 38px;
}

.footer-brand .brand-logo-dark {
  width: 178px;
  height: 54px;
}

.site-footer > p,
.footer-copy {
  color: var(--muted);
  font-size: 10px;
}

.site-footer > p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 19px;
}

.footer-links a {
  font-size: 10px;
}

.footer-links svg {
  width: 12px;
  height: 12px;
  vertical-align: -3px;
}

.footer-copy {
  grid-column: 3;
  grid-row: 2;
}

@media (max-width: 1000px) {
  .section-shell,
  .site-header {
    width: min(920px, calc(100% - 38px));
  }

  .site-header {
    gap: 22px;
  }

  .main-nav {
    gap: 17px;
  }

  .header-status {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 67px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-demo {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .feature-grid,
  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card {
    padding-inline: 18px;
  }

  .card-link {
    left: 18px;
  }

  .contact-panel {
    padding-inline: 7%;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 560px);
  }

  .site-header {
    position: relative;
    min-height: 72px;
  }

  .header-actions .button {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    z-index: 5;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    box-shadow: 0 18px 35px rgba(31, 52, 47, 0.1);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 11px;
    font-size: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    gap: 52px;
    padding-top: 54px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .hero-lede {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .hero-trust {
    margin-top: 40px;
  }

  .hero-metrics {
    justify-content: space-between;
    gap: 10px;
  }

  .hero-metrics span {
    font-size: 9px;
  }

  .demo-label {
    right: 0;
    font-size: 9px;
  }

  .site-preview {
    min-height: 445px;
  }

  .preview-links {
    display: none;
  }

  .preview-menu-icon {
    display: inline-block;
  }

  .preview-body {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 30px;
  }

  .preview-copy h2 {
    font-size: 40px;
  }

  .preview-copy p {
    max-width: 250px;
  }

  .preview-visual {
    min-height: 190px;
  }

  .preview-visual img {
    min-height: 190px;
  }

  .preview-foot {
    padding-inline: 17px;
    font-size: 7px;
  }

  .preview-foot span:last-child {
    display: none;
  }

  .demo-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-tabs {
    width: 100%;
  }

  .business-tab {
    flex: 1;
  }

  .client-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding-block: 18px;
  }

  .client-types {
    justify-content: flex-start;
    gap: 8px;
    font-size: 11px;
  }

  .section-block {
    padding-top: 85px;
  }

  .split-heading,
  .showcase-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading h2 {
    font-size: clamp(38px, 11vw, 53px);
  }

  .feature-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 10px;
    margin-top: 33px;
  }

  .feature-card {
    min-height: 255px;
  }

  .feature-icon {
    margin-bottom: 22px;
  }

  .showcase-heading .text-link {
    margin-bottom: 0;
  }

  .showcase-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 31px;
  }

  .showcase-toolbar-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .project-filters {
    width: 100%;
  }

  .project-filter {
    min-width: 0;
    flex: 1;
    padding-inline: 7px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .project-image {
    aspect-ratio: 1.48;
  }

  .showcase-bottom {
    grid-template-columns: 1fr;
  }

  .project-dialog {
    width: calc(100% - 20px);
    max-height: calc(100% - 20px);
  }

  .dialog-card {
    padding: 8px;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dialog-image {
    min-height: 235px;
    aspect-ratio: 1.35;
  }

  .dialog-copy {
    padding: 36px 17px 25px;
  }

  .dialog-close {
    top: 20px;
    right: 20px;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .dialog-actions .button,
  .dialog-actions .text-link {
    width: 100%;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 34px;
  }

  .work-image-bakery {
    height: 310px;
  }

  .showcase-side {
    gap: 31px;
  }

  .work-image-studio {
    height: 220px;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-bottom: 85px;
  }

  .process-intro h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .process-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .step-status {
    grid-column: 2;
    width: max-content;
    margin-top: 2px;
  }

  .plans {
    padding-bottom: 85px;
  }

  .plan-grid {
    gap: 10px;
    margin-top: 32px;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-card > p {
    min-height: auto;
  }

  .plan-note {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .contact {
    padding-bottom: 85px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 39px 23px 23px;
  }

  .contact-copy h2 {
    font-size: clamp(40px, 11.5vw, 55px);
  }

  .brief-form {
    padding: 21px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding-bottom: 29px;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-wrap: wrap;
    gap: 13px 18px;
  }

  .footer-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.main-nav a,
.footer-links a {
  font-size: 13px;
}

.header-status,
.eyebrow,
.demo-label,
.strip-label,
.plan-label {
  font-size: 11px;
}

.hero-trust p,
.hero-metrics span,
.browser-address,
.preview-links,
.preview-tag,
.preview-copy p,
.preview-cta,
.preview-foot,
.demo-control-copy small,
.business-tab,
.work-badge,
.work-meta,
.step-status,
.plan-price span,
.plan-note,
.contact-detail small,
.brief-form label,
.form-legal,
.footer-copy,
.site-footer > p,
.quote-person small {
  font-size: 10px;
}

.card-link,
.quote-person strong,
.footer-links a,
.form-progress {
  font-size: 11px;
}

.plan-features li,
.dialog-features li {
  font-size: 12px;
}

.preview-stamp {
  font-size: 8px;
}

.preview-stamp strong {
  font-size: 16px;
}

.quote-avatar {
  font-size: 9px;
}
