:root {
  color-scheme: dark;
  --ink: #f7f6ef;
  --ink-soft: #bbb8ae;
  --paper: #080808;
  --paper-strong: #111111;
  --panel: #171717;
  --panel-soft: #202020;
  --line: #2c2c2c;
  --green: #a7d5e7;
  --green-dark: #8bc8de;
  --mint: #77d0b1;
  --coral: #ff815c;
  --gold: #f4d35e;
  --blue: #a7d5e7;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

html[data-theme='light'] {
  color-scheme: light;
  --ink: #121819;
  --ink-soft: #59666a;
  --paper: #f4f8f9;
  --paper-strong: #ffffff;
  --panel: #ffffff;
  --panel-soft: #edf6f8;
  --line: #d7e4e8;
  --green-dark: #8dcbe0;
  --shadow: 0 24px 70px rgba(18, 42, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  padding-top: 76px;
}

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

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

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: 14px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--green);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.site-nav a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 13px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 12px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
  white-space: nowrap;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 213, 231, 0.58);
  background: rgba(167, 213, 231, 0.12);
}

.theme-toggle__icon {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.theme-toggle__icon::after {
  content: '';
  position: absolute;
  inset: 2px 0 0 6px;
  width: 7px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
}

html[data-theme='light'] .theme-toggle__icon::after {
  opacity: 0;
}

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: var(--green);
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 11px 18px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 14px 30px rgba(167, 213, 231, 0.22);
}

.header-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.header-cta:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero,
.page-hero,
.case-hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  background:
    radial-gradient(ellipse at 74% 18%, rgba(167, 213, 231, 0.2), transparent 34%),
    radial-gradient(ellipse at 24% 94%, rgba(119, 208, 177, 0.16), transparent 38%),
    linear-gradient(150deg, #080808 0%, #111111 38%, #142125 72%, #080808 100%);
}

.hero-home::before,
.page-hero::before,
.case-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(167, 213, 231, 0.055) 24% 25%, transparent 25% 52%, rgba(119, 208, 177, 0.035) 52% 53%, transparent 53%),
    radial-gradient(circle at 78% 48%, transparent 0 122px, rgba(167, 213, 231, 0.04) 123px 132px, transparent 133px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  opacity: 0.2;
  pointer-events: none;
}

.pattern-panel {
  min-height: 100%;
  background-size: 140px 140px;
}

.pattern-panel--one {
  background-color: transparent;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
}

.pattern-panel--two {
  background-color: transparent;
  background-image:
    linear-gradient(90deg, rgba(167, 213, 231, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(167, 213, 231, 0.08) 1px, transparent 1px);
}

.pattern-panel--three {
  background-color: transparent;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
}

.hero-home__inner {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 48px;
  align-items: center;
  padding-block: 70px 54px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  font-size: 3.1rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.hero-copy p,
.page-hero p,
.case-hero p {
  max-width: 780px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  padding: 11px 18px;
  text-decoration: none;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--green);
  color: var(--black);
}

.button--primary:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 30px rgba(167, 213, 231, 0.22);
}

.button--secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
}

.button--secondary-light {
  border-color: var(--white);
  color: var(--white);
}

.button--secondary-light:hover {
  background: var(--white);
  color: var(--black);
}

.button--text {
  min-height: auto;
  border: 0;
  border-radius: 0;
  color: var(--green);
  padding: 0;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.button--text:hover,
.button--text:active,
.button--text:focus-visible {
  box-shadow: none;
}

.hero-preview {
  position: relative;
  min-height: 540px;
}

.hero-proof {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 430px);
  justify-self: end;
}

.hero-review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(167, 213, 231, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 30px;
}

.hero-review-card::before {
  content: '';
  position: absolute;
  right: -54px;
  top: -54px;
  width: 180px;
  height: 180px;
  border: 10px solid rgba(167, 213, 231, 0.1);
  border-radius: 50%;
}

.hero-review-card__top,
.hero-review-card__score {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.google-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 11px;
}

.hero-review-card .stars {
  display: inline-flex;
  flex-shrink: 0;
  gap: 4px;
  color: var(--gold);
}

.hero-review-card .stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-review-card__score {
  align-items: end;
  margin-top: 34px;
}

.hero-review-card__score strong {
  color: var(--white);
  font-size: clamp(4rem, 9vw, 6rem);
  line-height: 0.82;
}

.hero-review-card__score span {
  max-width: 190px;
  color: var(--ink-soft);
  font-weight: 500;
  text-align: right;
}

.hero-review-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.hero-review-list blockquote {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 0;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 14px;
}

.hero-preview-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-preview-card > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 14px;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.42));
}

.hero-preview-card > div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.82);
  padding: 12px 14px;
  backdrop-filter: blur(12px);
}

.hero-preview-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-preview-card span img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.hero-preview-card strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-preview-card--1 {
  inset: 12px 34px auto 86px;
  height: 280px;
  z-index: 2;
}

.hero-preview-card--2 {
  left: 0;
  bottom: 42px;
  width: 47%;
  height: 250px;
  z-index: 3;
}

.hero-preview-card--3 {
  right: 0;
  bottom: 0;
  width: 56%;
  height: 310px;
  z-index: 1;
}

.hero-workbench {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  border-radius: 28px;
  background: transparent;
  padding: 0 0 64px;
}

.hero-workbench > img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.review-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.review-badge strong {
  grid-row: span 2;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
}

.review-badge span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.review-badge .stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
  letter-spacing: 0;
}

.review-badge .stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.trust-strip,
.hero-trust {
  position: relative;
  color: var(--ink);
}

.trust-strip {
  background: var(--black);
  padding-block: 18px;
}

.hero-trust {
  padding-block: 0 26px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip article,
.hero-trust article {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 20%, rgba(167, 213, 231, 0.13), transparent 34%),
    rgba(0, 0, 0, 0.28);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.trust-strip strong,
.hero-trust strong {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
}

.trust-strip span,
.hero-trust span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.section {
  padding-block: 100px;
}

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

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

.section--ink h2,
.section--ink h3,
.section--ink .eyebrow {
  color: var(--white);
}

.section--ink p {
  color: rgba(255, 255, 255, 0.75);
}

.section--ink .button--secondary,
.hero-home .button--secondary,
.page-hero .button--secondary,
.case-hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.section--ink .button--secondary:hover,
.hero-home .button--secondary:hover,
.page-hero .button--secondary:hover,
.case-hero .button--secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.section--cta {
  padding-block: 72px;
}

.section--product {
  background:
    radial-gradient(circle at 82% 10%, rgba(167, 213, 231, 0.12), transparent 30%),
    #101010;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.product-showcase p {
  max-width: 760px;
  margin-top: 16px;
  color: var(--ink-soft);
}

.owned-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.owned-project-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  padding: 18px;
}

.owned-project-card a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.owned-project-card__logo {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #151d2b;
  color: var(--white);
}

.owned-project-card__logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 58%);
}

.owned-project-card__logo::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--owned-accent, var(--green));
}

.owned-project-card__logo span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.owned-project-card__logo--1 {
  --owned-accent: var(--coral);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 129, 92, 0.18), transparent 42%),
    #2b211d;
}

.owned-project-card__logo--2 {
  --owned-accent: var(--mint);
  background:
    radial-gradient(circle at 78% 24%, rgba(119, 208, 177, 0.18), transparent 42%),
    #17251f;
}

.owned-project-card__logo--3 {
  --owned-accent: var(--green);
  background:
    radial-gradient(circle at 78% 24%, rgba(167, 213, 231, 0.2), transparent 42%),
    #151d2b;
}

.owned-project-card__logo--4 {
  --owned-accent: var(--gold);
  background:
    radial-gradient(circle at 78% 24%, rgba(244, 211, 94, 0.18), transparent 42%),
    #282414;
}

.owned-project-card__logo--5 {
  --owned-accent: var(--ink);
  background:
    radial-gradient(circle at 78% 24%, rgba(247, 246, 239, 0.16), transparent 42%),
    #1d1d1d;
}

.owned-project-card__logo--6 {
  --owned-accent: #57a095;
  background:
    radial-gradient(circle at 78% 24%, rgba(87, 160, 149, 0.18), transparent 42%),
    #152423;
}

.owned-project-card strong,
.owned-project-card small {
  display: block;
}

.owned-project-card strong {
  color: var(--ink);
  line-height: 1.15;
}

.owned-project-card small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.owned-project-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: start;
}

.about-profile {
  display: grid;
  gap: 20px;
  align-content: start;
}

.about-profile__figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 74% 20%, rgba(167, 213, 231, 0.12), rgba(167, 213, 231, 0.04) 28%, transparent 46%),
    radial-gradient(circle at 16% 92%, rgba(119, 208, 177, 0.08), transparent 38%),
    var(--panel);
  padding: 12px;
  box-shadow: var(--shadow);
}

.about-profile__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: #101010;
  object-fit: cover;
  object-position: center;
}

.about-profile__figure figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 14px;
  padding: 14px 4px 2px;
}

.about-profile__figure strong,
.about-profile__figure span {
  display: block;
}

.about-profile__figure strong {
  font-size: 1rem;
  line-height: 1.2;
}

.about-profile__figure span,
.about-profile__bio {
  color: var(--ink-soft);
}

.about-profile__figure span {
  font-size: 0.86rem;
  font-weight: 700;
}

.about-profile__bio {
  margin-top: -4px;
}

.prose > * + * {
  margin-top: 18px;
}

.prose--narrow {
  max-width: 760px;
}

.prose h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-grid article,
.case-aside,
.contact-aside,
.principle-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 24%, rgba(167, 213, 231, 0.075), rgba(167, 213, 231, 0.028) 25%, transparent 45%),
    radial-gradient(circle at 14% 96%, rgba(119, 208, 177, 0.038), transparent 36%),
    var(--panel);
  padding: 28px;
}

.service-card > *,
.feature-grid article > *,
.case-aside > *,
.contact-aside > *,
.principle-grid article > * {
  position: relative;
}

.service-card p,
.feature-grid p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.check-list--large {
  gap: 12px;
  font-size: 1.05rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  min-width: 0;
}

.project-card[hidden] {
  display: none;
}

.project-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
}

.project-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.project-card__body {
  padding: 24px;
}

.section--ink .project-card h3 {
  color: var(--white);
}

.project-card p {
  margin-top: 16px;
  color: var(--ink-soft);
}

.section--ink .project-card p {
  color: rgba(255, 255, 255, 0.68);
}

.project-visual {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 16px;
  background: #242424;
}

.project-visual--screenshot {
  position: relative;
  min-height: 250px;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #202020;
}

.project-visual--device {
  position: relative;
  min-height: 300px;
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(167, 213, 231, 0.16), transparent 38%),
    #1b1b1b;
}

.project-visual--placeholder {
  position: relative;
  min-height: 250px;
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: end start;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(167, 213, 231, 0.16), transparent 24%),
    radial-gradient(circle at 22% 74%, rgba(119, 208, 177, 0.14), transparent 32%),
    #172024;
}

.project-device-image {
  width: auto;
  max-width: 88%;
  max-height: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.45));
}

.project-screenshot {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: top center;
  opacity: 0.9;
}

.project-card__domain {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(167, 213, 231, 0.08);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 5px 9px;
  overflow-wrap: anywhere;
}

.section--ink .project-card__domain {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.project-visual--1 {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 129, 92, 0.14), transparent 24%),
    #2b211d;
}

.project-visual--2 {
  background:
    radial-gradient(circle at 78% 24%, rgba(119, 208, 177, 0.15), transparent 24%),
    #17251f;
}

.project-visual--3 {
  background:
    radial-gradient(circle at 78% 24%, rgba(167, 213, 231, 0.16), transparent 24%),
    #151d2b;
}

.project-visual--4 {
  background:
    radial-gradient(circle at 78% 24%, rgba(244, 211, 94, 0.14), transparent 24%),
    #282414;
}

.project-visual--5 {
  background:
    radial-gradient(circle at 78% 24%, rgba(247, 246, 239, 0.12), transparent 24%),
    #1d1d1d;
}

.project-visual--6 {
  background:
    radial-gradient(circle at 78% 24%, rgba(87, 160, 149, 0.14), transparent 24%),
    #152423;
}

.project-placeholder-copy {
  position: relative;
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding: 22px;
  min-width: 0;
}

.project-placeholder-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.project-placeholder-copy strong {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  letter-spacing: 0;
}

.project-card .project-placeholder-copy strong {
  font-size: clamp(0.98rem, 1.6vw, 1.3rem);
}

.tag-row,
.tag-column {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.project-card__body .tag-row {
  margin-bottom: 22px;
}

.case-hero .tag-row {
  margin-top: 22px;
}

.tag-column {
  margin-block: 12px 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(167, 213, 231, 0.08);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
}

.section--ink .project-card .tag {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.section-action {
  margin-top: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.testimonial-list {
  display: grid;
  gap: 12px;
}

blockquote {
  margin: 0;
  border-left: 5px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
  padding: 18px 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  padding: 0 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  padding: 18px 0;
}

details p {
  padding-bottom: 20px;
  color: var(--ink-soft);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  padding: 34px;
}

.cta-band .button {
  flex-shrink: 0;
  min-width: 190px;
}

.cta-band p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--ink-soft);
}

.page-hero,
.case-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(167, 213, 231, 0.18), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(119, 208, 177, 0.12), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(167, 213, 231, 0.14), transparent 32%),
    #0b0b0b;
  border-bottom: 1px solid var(--line);
}

html[data-theme='light'] .hero-home {
  background:
    radial-gradient(ellipse at 72% 18%, rgba(167, 213, 231, 0.52), transparent 34%),
    radial-gradient(ellipse at 20% 92%, rgba(119, 208, 177, 0.24), transparent 40%),
    linear-gradient(150deg, #f7fbfc 0%, #edf6f8 44%, #dbeef4 76%, #ffffff 100%);
}

html[data-theme='light'] .hero-home::before,
html[data-theme='light'] .page-hero::before,
html[data-theme='light'] .case-hero::before {
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(167, 213, 231, 0.24) 24% 25%, transparent 25% 52%, rgba(119, 208, 177, 0.12) 52% 53%, transparent 53%),
    radial-gradient(circle at 78% 48%, transparent 0 122px, rgba(167, 213, 231, 0.14) 123px 132px, transparent 133px);
  opacity: 0.64;
}

html[data-theme='light'] .page-hero,
html[data-theme='light'] .case-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(167, 213, 231, 0.44), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(119, 208, 177, 0.18), transparent 34%),
    linear-gradient(150deg, #f8fbfc 0%, #edf6f8 58%, #ffffff 100%);
}

html[data-theme='light'] .hero-home .button--secondary,
html[data-theme='light'] .page-hero .button--secondary,
html[data-theme='light'] .case-hero .button--secondary {
  border-color: rgba(18, 42, 48, 0.28);
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
}

html[data-theme='light'] .hero-home .button--secondary:hover,
html[data-theme='light'] .page-hero .button--secondary:hover,
html[data-theme='light'] .case-hero .button--secondary:hover {
  border-color: var(--green-dark);
  background: var(--green);
  color: var(--black);
}

.page-hero__inner,
.case-hero__inner {
  position: relative;
}

.page-hero__inner {
  padding-block: 86px;
}

.page-hero h1,
.case-hero h1 {
  max-width: 860px;
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.service-detail p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.detail-columns h3 {
  font-size: 1rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 500;
  min-height: 42px;
  padding: 10px 16px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.filter-button:hover {
  border-color: var(--green);
  background: rgba(167, 213, 231, 0.12);
  color: var(--ink);
}

.filter-button[aria-pressed='true'] {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(167, 213, 231, 0.18);
}

.filter-button[aria-pressed='true']:hover {
  background: var(--green-dark);
  color: var(--black);
}

.case-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 54px;
  align-items: center;
  padding-block: 86px;
}

.case-hero .project-visual {
  min-height: 330px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-hero .project-visual--bare {
  min-height: 0;
  overflow: visible;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.case-hero .project-visual--bare .project-device-image {
  max-width: min(100%, 400px);
  max-height: 400px;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.34));
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: start;
}

.case-main {
  max-width: 760px;
}

.case-main h2 + * {
  margin-top: 16px;
}

.case-main h2:not(:first-child) {
  margin-top: 36px;
}

.case-main p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.case-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
}

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

.value-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  font-weight: 800;
  padding: 16px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.principle-grid article {
  border-color: rgba(167, 213, 231, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 26px;
}

.principle-grid p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(167, 213, 231, 0.08), transparent 36%),
    var(--panel);
  padding: 28px;
}

.contact-form label {
  display: block;
  min-width: 0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #0d0d0d;
  color: var(--ink);
  padding: 15px 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 246, 239, 0.46);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(167, 213, 231, 0.16);
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

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

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 700 !important;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.consent span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.form-note {
  border-radius: 6px;
  background: rgba(167, 213, 231, 0.1);
  color: var(--green);
  padding: 12px;
}

.form-note[data-status='error'] {
  background: rgba(255, 129, 92, 0.12);
  color: var(--coral);
}

.contact-aside {
  display: grid;
  gap: 18px;
}

address {
  color: var(--ink-soft);
  font-style: normal;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding-block: 56px;
}

html[data-theme='light'] .hero-review-card {
  border-color: rgba(18, 42, 48, 0.1);
  background:
    radial-gradient(circle at 86% 18%, rgba(167, 213, 231, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    var(--panel);
}

html[data-theme='light'] .hero-review-card::before {
  border-color: rgba(167, 213, 231, 0.22);
}

html[data-theme='light'] .google-pill,
html[data-theme='light'] .hero-review-list blockquote {
  border-color: rgba(18, 42, 48, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

html[data-theme='light'] .hero-review-card__score strong,
html[data-theme='light'] .hero-review-card__score span {
  color: var(--ink);
}

html[data-theme='light'] .hero-trust article {
  border-color: rgba(18, 42, 48, 0.1);
  background:
    radial-gradient(circle at 80% 20%, rgba(167, 213, 231, 0.28), transparent 36%),
    rgba(255, 255, 255, 0.66);
}

html[data-theme='light'] .section--product {
  background:
    radial-gradient(circle at 82% 10%, rgba(167, 213, 231, 0.28), transparent 30%),
    #f1f8fa;
}

html[data-theme='light'] .section--ink .project-card a {
  border-color: rgba(255, 255, 255, 0.14);
  background: #171717;
}

html[data-theme='light'] .section--ink .project-card h3 {
  color: var(--white);
}

html[data-theme='light'] .contact-form input,
html[data-theme='light'] .contact-form select,
html[data-theme='light'] .contact-form textarea {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

html[data-theme='light'] .contact-form input::placeholder,
html[data-theme='light'] .contact-form textarea::placeholder {
  color: rgba(18, 24, 25, 0.46);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer p,
.site-footer address {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-cta {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.footer-cta:hover {
  color: var(--white);
  text-decoration: underline;
}

.small-text {
  margin-top: 16px;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-home__inner,
  .split-section,
  .service-detail,
  .case-hero__inner,
  .case-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-workbench {
    justify-self: start;
  }

  .about-profile {
    max-width: 440px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner,
  .card-grid--services,
  .project-grid,
  .feature-grid,
  .value-grid,
  .principle-grid,
  .owned-project-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    padding-top: 74px;
  }

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

  .site-header__inner {
    min-height: 74px;
  }

  .site-logo img {
    width: 100px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #111111;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-home__inner,
  .page-hero__inner,
  .case-hero__inner {
    padding-block: 52px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-copy p,
  .page-hero p,
  .case-hero p {
    font-size: 1rem;
  }

  .hero-pattern {
    grid-template-columns: 1fr;
  }

  .pattern-panel--two,
  .pattern-panel--three {
    display: none;
  }

  .section {
    padding-block: 58px;
  }

  .trust-strip__inner,
  .card-grid--services,
  .project-grid,
  .feature-grid,
  .value-grid,
  .principle-grid,
  .owned-project-grid,
  .detail-columns,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-strip article,
  .hero-trust article {
    min-height: auto;
  }

  .cta-band {
    display: grid;
    padding: 24px;
  }

  .cta-band .button {
    width: 100%;
    min-width: 0;
  }

  .project-visual {
    min-height: 160px;
  }

  .project-visual--screenshot,
  .project-screenshot,
  .project-visual--device {
    min-height: 190px;
  }

  .project-device-image {
    max-height: 170px;
  }

  .hero-preview {
    min-height: 420px;
  }

  .hero-proof {
    justify-self: stretch;
    width: 100%;
  }

  .hero-review-card {
    padding: 22px;
  }

  .hero-review-card__top,
  .hero-review-card__score {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-review-card__score {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-review-card__score span {
    max-width: none;
    text-align: left;
  }

  .hero-preview-card--1 {
    inset: 0 0 auto 28px;
    height: 220px;
  }

  .hero-preview-card--2 {
    width: 54%;
    height: 190px;
  }

  .hero-preview-card--3 {
    width: 62%;
    height: 230px;
  }

  .review-badge {
    left: 12px;
    right: 12px;
    bottom: 8px;
  }

  .case-hero .project-visual {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .button,
  .theme-toggle {
    transition: none;
  }

  .header-cta:hover,
  .header-cta:active,
  .header-cta:focus-visible,
  .button:hover,
  .button:active,
  .button:focus-visible,
  .theme-toggle:hover {
    transform: none;
  }
}
