/* Shelldon Linhares — editorial dark / design tokens */
:root {
  color-scheme: dark;
  --bg: #0c0d10;
  --surface: #121318;
  --surface-raised: #18191f;
  --text: #f2f1f5;
  --muted: #a5a6b0;
  --line: #2b2c34;
  --accent: #b3a9ff;
  --blue: #b7caff;
  --max: 1240px;
  --radius: 16px;
  --header: 86px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.08;
}
p + p {
  margin-top: 20px;
}
button,
a,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 4px;
}
::selection {
  background: #aba0f5;
  color: #0c0d10;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 110px;
}
.accent {
  color: var(--accent);
}
.mono,
.eyebrow,
.section-label,
.cover-bottom {
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.4px;
}
.eyebrow {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.small-line {
  display: inline-block;
  background: var(--accent);
  width: 28px;
  height: 1px;
  flex: none;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  margin-bottom: 48px;
}
.section-rule {
  height: 1px;
  background: var(--line);
  flex: 1;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 16px;
}
h2 {
  font-size: clamp(34px, 3.7vw, 52px);
  letter-spacing: -2px;
}
h2 em {
  font-style: normal;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 14px 23px;
  min-height: 50px;
  border-radius: 7px;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--text);
  color: var(--bg);
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
/* Navigation */
.menu-toggle {
  display: none;
}
.easter-egg {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: left;
}
.header {
  height: var(--header);
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0c0d10e8;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #ffffff0b;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.8px;
  min-height: 44px;
}
.brand-dot {
  color: var(--accent);
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav a {
  font-size: 14px;
  color: var(--muted);
  padding-block: 10px;
}
nav a:hover {
  color: var(--text);
}
nav .nav-contact {
  color: var(--text);
  margin-left: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 13px;
  border-radius: 6px;
  min-height: 44px;
}
/* Hero: the portrait stays intact; masks only blend its edges. */
.hero {
  position: relative;
  min-height: 765px;
  padding-top: 66px;
  display: flex;
  flex-direction: column;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 60%;
  pointer-events: none;
}
.hero-content a {
  pointer-events: auto;
}
.hero h1 {
  font-size: clamp(76px, 8.9vw, 124px);
  line-height: 0.97;
  letter-spacing: -7px;
  margin: 32px 0 28px;
}
.hero h1 > span {
  color: #c7c7d0;
}
.hero-lead {
  font-size: 27px;
  line-height: 1.3;
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}
.hero-description {
  color: var(--muted);
  max-width: 395px;
  line-height: 1.7;
  margin-top: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
}
.hero-portrait {
  position: absolute;
  width: 64%;
  height: 700px;
  right: -30px;
  top: 0;
  pointer-events: none;
}
.hero-portrait picture {
  height: 100%;
  display: block;
  mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
}
.hero-portrait img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.68) brightness(0.78);
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--bg) 0%,
      #0c0d10ed 9%,
      #0c0d1080 24%,
      transparent 52%
    ),
    linear-gradient(270deg, #0c0d1080, transparent 15%);
  pointer-events: none;
}
.portrait-caption {
  position: absolute;
  bottom: 124px;
  right: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Consolas, monospace;
  font-size: 10px;
  letter-spacing: 1.8px;
  line-height: 1.6;
  color: #e2e0e4;
}
.caption-cross {
  font-size: 26px;
  color: var(--accent);
}
.hero-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 25px;
  margin-top: auto;
  border-bottom: 1px solid var(--line);
}
.hero-bottom p {
  font-size: 14px;
  letter-spacing: 3px;
}
.hero-bottom p span {
  color: var(--accent);
}
.hero-bottom a {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 20px;
  padding: 10px 0;
}
/* Narrative */
.about {
  padding-top: 96px;
  padding-bottom: 70px;
}
.about-grid,
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.about-grid > div,
.founder-grid > div:last-child {
  color: var(--muted);
}
.large-copy {
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 26px;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
}
.expertise {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.expertise:hover {
  border-color: #625d87;
  transform: translateY(-3px);
}
.expertise.quality {
  background:
    radial-gradient(ellipse at 100% 0, #35305250, transparent 70%),
    var(--surface);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 38px;
}
.card-top .mono {
  color: var(--muted);
  font-size: 11px;
}
.card-symbol {
  font-size: 27px;
  line-height: 1;
  color: var(--accent);
  font-family: Consolas, monospace;
}
.expertise h3 {
  font-size: 32px;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.expertise p {
  color: var(--muted);
  max-width: 445px;
  font-size: 16px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}
.tags span {
  font-size: 12px;
  color: #c5c4cf;
  padding: 4px 10px;
  border: 1px solid #383840;
  border-radius: 5px;
  line-height: 1.6;
}
.quality-trace {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  font-family: Consolas, monospace;
  font-size: 12px;
  color: var(--muted);
}
.quality-trace i {
  flex: 1;
  max-width: 44px;
  height: 1px;
  background: #4b465f;
}
.business-card {
  background: linear-gradient(115deg, #14151a, #191820);
}
/* Project covers are editorial identifiers, not product screenshots. */
.projects {
  padding-top: 55px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 28px;
}
.project {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #101115;
}
.project-art {
  height: 310px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.project-cover {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.project-cover > .mono {
  font-size: 10px;
  letter-spacing: 2px;
}
.project-cover strong {
  font-weight: 500;
  font-size: 55px;
  line-height: 1;
  letter-spacing: -2px;
}
.cover-bottom {
  font-size: 10px;
  letter-spacing: 1.6px;
}
.caracois-art {
  color: #e7e5d9;
  background:
    radial-gradient(ellipse at 95% 90%, #77775065, transparent 65%), #30382a;
}
.caracois-art strong {
  font-family: Georgia, serif;
  margin-left: 20px;
  font-weight: 400;
}
.caracois-art strong i {
  font-weight: 400;
}
.cover-dot {
  color: #b0b788;
}
.bee-art {
  background: linear-gradient(125deg, #e9ddab, #c2b277);
  color: #343b29;
}
.bee-art .project-cover {
  align-items: center;
}
.bee-art strong {
  font-size: 120px;
  letter-spacing: -10px;
  line-height: 0.8;
}
.bee-art strong small {
  display: block;
  font-size: 11px;
  letter-spacing: 7px;
  text-align: center;
  margin-top: 21px;
  line-height: 1;
}
.bee-period {
  color: #65734c;
}
.inkure-art {
  background: #c7bfc4;
  color: #28282d;
}
.inkure-art strong {
  font-family: Georgia, serif;
  font-size: 85px;
  letter-spacing: -5px;
  align-self: center;
}
.inkure-mark {
  font-family: Arial, sans-serif;
  font-size: 23px;
  vertical-align: top;
  letter-spacing: 0;
}
.qa-art {
  background:
    radial-gradient(ellipse at 90% 30%, #3b426950, transparent 70%), #171b27;
  color: #e1e3fa;
}
.qa-art strong {
  font-size: 72px;
  letter-spacing: -4px;
}
.qa-slash {
  color: #9eabf1;
}
.lab-cursor {
  color: var(--accent);
}
.lab-lines {
  font-family: Consolas, monospace;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #a7aec4;
  gap: 3px;
}
.project-body {
  padding: 27px;
}
.project-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}
.project-title h3 {
  font-size: 23px;
  letter-spacing: -0.7px;
}
.project-state {
  font-family: Consolas, monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
  text-align: right;
}
.project-body > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  min-height: 81px;
}
.project-body .tags {
  margin-top: 20px;
  margin-bottom: 24px;
}
.project details {
  border-top: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  cursor: pointer;
  min-height: 52px;
  padding: 12px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  color: var(--accent);
  font-size: 20px;
  transition: transform 0.2s;
}
details[open] summary > span {
  transform: rotate(45deg);
}
.case-detail {
  padding: 4px 0 22px;
  color: var(--muted);
  font-size: 14px;
}
.case-detail strong {
  color: var(--text);
  font-weight: 500;
}
.project-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 45px;
  align-items: center;
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.project-link:hover {
  color: var(--accent);
}
/* Method */
.method-section {
  background: #101116;
  border-block: 1px solid var(--line);
}
.method {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  list-style: none;
  margin: 60px 0 0;
}
.method li {
  padding: 0 22px 0 0;
  position: relative;
}
.method li + li {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.step-number {
  font-size: 44px;
  font-weight: 400;
  color: #8f87bd;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 24px;
}
.method h3 {
  font-size: 23px;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}
.method p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 26px;
}
.method .mono {
  color: #8e8f9d;
  font-size: 10px;
}
.method-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.method-note > span {
  color: var(--accent);
  margin-right: 8px;
}
.toolbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.toolbox h2 {
  font-size: 39px;
}
.toolbox-grid > div > p {
  color: var(--muted);
  margin-top: 28px;
}
.tool-list {
  margin: 0;
}
.tool-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.tool-list > div:first-child {
  padding-top: 0;
}
.tool-list dt {
  font-size: 10px;
  font-family: Consolas, monospace;
  letter-spacing: 1.1px;
  color: var(--accent);
}
.tool-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.founder {
  padding-top: 20px;
}
.founder .eyebrow {
  font-size: 10px;
  margin-bottom: 30px;
}
.human {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 65px;
  border-block: 1px solid var(--line);
  padding: 32px 0;
}
.human-symbol {
  font-size: 38px;
  color: var(--accent);
}
.human h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.human p {
  font-size: 14px;
  color: var(--muted);
  max-width: 565px;
}
.human-tags {
  margin-left: auto;
  flex: none;
  font-family: Consolas, monospace;
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
.company-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 38px;
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, #1b1926, #121318 70%);
}
.company-panel .eyebrow {
  margin-bottom: 22px;
}
.company-intro h3 {
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -1.3px;
  margin-bottom: 20px;
}
.company-intro h3 span {
  color: var(--accent);
}
.company-intro > p:last-child {
  color: var(--muted);
  font-size: 15px;
  max-width: 440px;
}
.company-note {
  font-size: 16px;
  color: var(--text);
}
.company-services ul {
  padding: 0;
  margin: 20px 0;
  list-style: none;
}
.company-services li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.company-services .text-link {
  border-bottom: 0;
  color: var(--accent);
}
.footer .company-legal {
  flex-basis: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.company-legal strong {
  font-size: 13px;
  font-weight: 500;
}
.footer .company-legal p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.company-legal > p {
  text-align: right;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .company-panel {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 28px;
    margin-top: 34px;
  }
  .footer .company-legal {
    order: 5;
    flex-direction: column;
    gap: 12px;
  }
  .company-legal > p {
    text-align: left;
  }
}
/* Contact & preferences */
.contact-section {
  padding-block: 72px 88px;
  background:
    radial-gradient(ellipse at 10% 110%, #39314c45, transparent 70%), #131319;
  border-block: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 65px;
}
.contact-grid h2 {
  font-size: clamp(34px, 4vw, 55px);
}
.contact-grid > div > p {
  color: var(--muted);
  font-size: 15px;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}
.footer {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 110px;
  flex-wrap: wrap;
  padding-block: 24px;
}
.footer p {
  color: var(--muted);
  font-size: 12px;
  margin-right: auto;
}
.easter-egg {
  font-family: Consolas, monospace;
  font-size: 10px;
  background: none;
  border: 0;
  color: var(--muted);
  padding: 12px 0;
  min-height: 44px;
}
.back-top {
  font-size: 12px;
  padding-block: 12px;
}
.analytics-consent {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 420px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  z-index: 40;
  box-shadow: 0 16px 60px #0008;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.analytics-consent p {
  font-size: 14px;
  flex-basis: 100%;
}
.privacy-settings {
  font-size: 12px;
  display: block;
  margin: 0 auto 20px;
  background: transparent;
  border: 0;
  text-decoration: underline;
  min-height: 44px;
}
.reveal-in {
  animation: reveal 0.65s ease-out both;
}
@keyframes reveal {
  from {
    opacity: 0.25;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero-portrait {
    width: 65%;
    right: -40px;
  }
  .hero {
    min-height: 800px;
  }
  .hero h1 {
    font-size: 132px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  nav {
    gap: 22px;
  }
  nav .nav-contact {
    margin-left: 0;
  }
  .hero h1 {
    letter-spacing: -5px;
  }
  .hero {
    min-height: 740px;
  }
  .hero-portrait {
    right: -20px;
    width: 67%;
    height: 670px;
  }
  .hero-content {
    width: 64%;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .portrait-caption {
    right: 10px;
    font-size: 9px;
    bottom: 90px;
  }
  .about-grid,
  .toolbox-grid,
  .founder-grid {
    gap: 50px;
  }
  .tool-list > div {
    grid-template-columns: 110px 1fr;
    gap: 15px;
  }
  .expertise {
    padding: 27px;
  }
  .project-art {
    height: 275px;
  }
  .project-title {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .project-state {
    text-align: left;
  }
  .human-tags {
    font-size: 10px;
  }
  .method li {
    padding-right: 14px;
  }
  .method li + li {
    padding-left: 14px;
  }
  .method h3 {
    font-size: 20px;
  }
  .contact-grid {
    gap: 35px;
  }
}
@media (max-width: 800px) {
  :root {
    --header: 74px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .brand {
    font-size: 18px;
  }
  .header-inner {
    gap: 12px;
  }
  nav {
    gap: 15px;
  }
  nav a {
    font-size: 12px;
  }
  nav .nav-contact {
    gap: 10px;
  }
  .hero {
    min-height: 720px;
  }
  .hero h1 {
    font-size: 84px;
    letter-spacing: -5px;
  }
  .hero-content {
    width: 70%;
  }
  .hero-lead {
    font-size: 24px;
  }
  .hero-description {
    max-width: 310px;
    font-size: 15px;
  }
  .hero-portrait {
    width: 78%;
    right: -20px;
    opacity: 0.85;
  }
  .portrait-caption {
    display: none;
  }
  .section {
    padding-block: 75px;
  }
  .about-grid,
  .founder-grid,
  .toolbox-grid {
    gap: 35px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .large-copy {
    font-size: 21px;
  }
  .section-heading {
    gap: 25px;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .expertise h3 {
    font-size: 27px;
  }
  .card-top .mono {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  .expertise {
    padding: 24px;
  }
  .quality-trace {
    font-size: 10px;
  }
  .project-art {
    height: 245px;
    padding: 22px;
  }
  .project-cover strong {
    font-size: 44px;
  }
  .bee-art strong {
    font-size: 100px;
  }
  .inkure-art strong {
    font-size: 67px;
  }
  .qa-art strong {
    font-size: 54px;
  }
  .cover-bottom {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .project-body {
    padding: 22px;
  }
  .toolbox h2 {
    font-size: 33px;
  }
  .tool-list > div {
    display: block;
  }
  .tool-list dt {
    margin-bottom: 8px;
  }
  .human {
    gap: 20px;
  }
  .human-tags {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer {
    gap: 20px;
  }
  .easter-egg {
    order: 4;
  }
  .method {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 0;
  }
  .method li:nth-child(4) {
    border: 0;
    padding-left: 0;
  }
  .method p {
    min-height: 44px;
  }
}
@media (max-width: 700px) {
  .header {
    height: auto;
    min-height: var(--header);
  }
  .header-inner {
    flex-wrap: wrap;
    padding-block: 15px;
  }
  .menu-toggle:not([hidden]) {
    display: inline-flex;
    gap: 18px;
    align-items: center;
  }
  .header nav {
    width: 100%;
    flex-wrap: wrap;
    padding-block: 6px 12px;
    gap: 10px 24px;
  }
  .header nav a {
    font-size: 14px;
  }
  .header nav .nav-contact {
    margin-left: auto;
  }
  .js .header nav:not(.is-open) {
    display: none;
  }
  .hero {
    padding-top: 36px;
    min-height: 990px;
  }
  .hero-content {
    width: 100%;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .hero h1 {
    font-size: clamp(67px, 14vw, 94px);
    letter-spacing: -4.5px;
    margin-top: 24px;
    margin-bottom: 23px;
  }
  .hero-lead {
    font-size: 25px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 410px;
  }
  .hero-actions {
    gap: 25px;
    margin-top: 25px;
  }
  .hero-portrait {
    width: calc(100% + 48px);
    right: -24px;
    top: 460px;
    height: 470px;
    opacity: 1;
  }
  .hero-portrait img {
    object-position: center 23%;
    filter: saturate(0.65) brightness(0.78);
  }
  .hero-portrait picture {
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 14%,
      #000 76%,
      transparent 100%
    );
  }
  .hero-portrait::after {
    background: linear-gradient(
      90deg,
      #0c0d1030,
      transparent 30%,
      transparent 70%,
      #0c0d1030
    );
  }
  .hero-bottom {
    align-items: start;
    gap: 18px;
    padding-block: 16px;
  }
  .hero-bottom p {
    font-size: 10px;
    letter-spacing: 1.4px;
    padding-top: 12px;
  }
  .hero-bottom a {
    font-size: 10px;
    gap: 12px;
  }
  .section {
    padding-block: 62px;
  }
  .section-label {
    margin-bottom: 32px;
    font-size: 10px;
    gap: 18px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 37px;
  }
  .about-grid,
  .founder-grid,
  .toolbox-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .large-copy {
    font-size: 22px;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise {
    padding: 28px;
  }
  .expertise h3 {
    font-size: 32px;
  }
  .card-top .mono {
    font-size: 11px;
  }
  .card-top {
    margin-bottom: 28px;
  }
  .quality-trace {
    font-size: 12px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .project-art {
    height: 280px;
    padding: 26px;
  }
  .project-cover strong {
    font-size: 54px;
  }
  .bee-art strong {
    font-size: 118px;
  }
  .inkure-art strong {
    font-size: 80px;
  }
  .qa-art strong {
    font-size: 64px;
  }
  .project-cover > .mono {
    font-size: 9px;
  }
  .cover-bottom {
    font-size: 9px;
  }
  .project-body {
    padding: 25px;
  }
  .project-title {
    flex-direction: row;
    align-items: center;
  }
  .project-title h3 {
    font-size: 22px;
  }
  .project-state {
    font-size: 9px;
    max-width: 95px;
    text-align: right;
  }
  .project-body > p {
    min-height: 0;
  }
  .method {
    grid-template-columns: 1fr;
    margin-top: 36px;
    gap: 0;
  }
  .method li,
  .method li + li,
  .method li:nth-child(4) {
    border-left: 1px solid #484155;
    padding: 0 0 32px 30px;
    margin-left: 12px;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 7px 18px;
  }
  .method li:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
  }
  .method li::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
  }
  .step-number {
    grid-row: 1/4;
    line-height: 1.1;
    font-size: 29px;
    margin: 0;
    letter-spacing: -1px;
  }
  .method h3 {
    font-size: 23px;
    margin: 0;
  }
  .method p {
    margin: 0;
    min-height: 0;
  }
  .method p br {
    display: none;
  }
  .method .mono {
    grid-column: 2;
    font-size: 9px;
  }
  .method-note {
    margin-top: 28px;
  }
  .toolbox h2 {
    font-size: 35px;
  }
  .toolbox-grid > div > p {
    margin-top: 20px;
  }
  .tool-list > div {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 18px;
  }
  .tool-list dt {
    font-size: 9px;
  }
  .tool-list dd {
    font-size: 14px;
  }
  .human {
    margin-top: 38px;
    align-items: start;
    gap: 16px;
  }
  .human-symbol {
    font-size: 26px;
  }
  .contact-section {
    padding-block: 55px;
  }
  .contact-grid h2 {
    font-size: 37px;
  }
  .footer {
    gap: 12px 20px;
  }
  .footer .brand {
    font-size: 16px;
  }
  .footer p {
    font-size: 10px;
    margin-right: 0;
    margin-left: auto;
  }
  .easter-egg {
    order: 3;
    margin-right: auto;
  }
  .back-top {
    order: 4;
    font-size: 11px;
  }
  .analytics-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 36px);
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero h1 {
    font-size: 65px;
    letter-spacing: -4px;
  }
  .hero-lead {
    font-size: 23px;
  }
  .hero-actions {
    gap: 17px;
  }
  .button {
    padding: 13px 17px;
    gap: 18px;
    font-size: 13px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-portrait {
    width: calc(100% + 36px);
    right: -18px;
    top: 465px;
  }
  .hero-bottom {
    gap: 8px;
  }
  .hero-bottom p {
    font-size: 9px;
    letter-spacing: 0.8px;
  }
  .hero-bottom a {
    font-size: 9px;
  }
  .hero {
    min-height: 985px;
  }
  h2,
  .toolbox h2,
  .contact-grid h2 {
    font-size: 32px;
  }
  .project-body,
  .expertise {
    padding: 22px;
  }
  .project-title {
    align-items: start;
    flex-direction: column;
  }
  .project-state {
    text-align: left;
    max-width: none;
  }
  .project-art {
    height: 255px;
  }
  .cover-bottom {
    font-size: 8px;
  }
  .tool-list > div {
    grid-template-columns: 85px 1fr;
    gap: 15px;
  }
  .header nav .nav-contact {
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .expertise:hover,
  .button:hover {
    transform: none;
  }
}
