@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/dm-mono-400-latin-ext.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/dm-mono-500-latin-ext.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif-400-latin-ext.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif-italic-latin-ext.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
}

:root {
  --ink: #101917;
  --ink-soft: #1b2926;
  --paper: #f2f0e9;
  --paper-soft: #e9e6dd;
  --white: #fffef9;
  --muted: #67716c;
  --line: rgba(16, 25, 23, 0.15);
  --line-light: rgba(255, 255, 255, 0.15);
  --accent: #d8ff3e;
  --accent-dark: #bddf32;
  --coral: #ff755d;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --shell: min(1440px, calc(100vw - 72px));
  --section-gap: clamp(96px, 11vw, 176px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(216, 255, 62, 0.12);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  height: 94px;
  margin: 0 auto;
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  transition:
    top 220ms ease,
    width 220ms ease,
    height 220ms ease,
    padding 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  width: min(1440px, calc(100vw - 32px));
  height: 72px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 25, 23, 0.91);
  box-shadow: 0 16px 36px rgba(5, 11, 10, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.08em;
  transform: rotate(-5deg);
  transition:
    width 220ms ease,
    height 220ms ease;
}

.site-header.is-scrolled .brand-mark {
  width: 34px;
  height: 34px;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 44px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

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

.main-nav .nav-contact {
  display: none;
}

.header-cta,
.problem-card a,
.project-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.header-cta {
  padding: 11px 0;
  color: var(--accent);
}

svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  position: absolute;
  right: -150px;
  bottom: -210px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(216, 255, 62, 0.09);
  content: "";
  filter: blur(1px);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.43;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: var(--shell);
  margin: 0 auto;
  padding-top: 196px;
}

.eyebrow,
.mono {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(216, 255, 62, 0.12);
}

h1 {
  max-width: 930px;
  margin: 25px 0 0;
  font-size: clamp(78px, 8.3vw, 124px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.86;
}

h1 span {
  display: block;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.15em;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 620px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 17px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition:
    background 180ms ease,
    border 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-accent {
  color: var(--ink);
  background: var(--accent);
}

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

.button-ghost {
  padding-right: 0;
  padding-left: 0;
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.38);
}

.button-ghost:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 68px;
}

.proof-number {
  color: var(--accent);
  font-size: 53px;
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 1;
}

.proof-number span {
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.85em;
  font-weight: 400;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-proof strong {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 500;
}

.hero-system {
  position: absolute;
  z-index: 3;
  top: 155px;
  left: calc(50% + 260px);
  width: 590px;
  height: 590px;
}

.system-orbit,
.visual-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.orbit-one {
  inset: 95px;
}

.orbit-two {
  inset: 37px;
  border-color: rgba(216, 255, 62, 0.25);
  border-style: dashed;
  animation: rotate 32s linear infinite;
}

.orbit-three {
  inset: -12px;
  opacity: 0.5;
}

.system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  border: 1px solid rgba(216, 255, 62, 0.65);
  border-radius: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.system-core::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(216, 255, 62, 0.12);
  border-radius: inherit;
  content: "";
}

.system-core span,
.system-core small {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.system-core strong {
  margin: 4px 0;
  color: var(--accent);
  font-size: 29px;
  letter-spacing: -0.08em;
}

.orbit-label {
  position: absolute;
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(16, 25, 23, 0.92);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
}

.label-web {
  top: 66px;
  right: 108px;
}

.label-seo {
  top: 230px;
  right: -13px;
}

.label-ppc {
  right: 91px;
  bottom: 53px;
}

.label-data {
  bottom: 90px;
  left: 18px;
}

.label-sales {
  top: 135px;
  left: -5px;
  width: 73px;
  height: 73px;
  color: var(--ink);
  background: var(--accent);
}

.system-note {
  position: absolute;
  color: rgba(255, 255, 255, 0.69);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.65;
  text-transform: uppercase;
}

.system-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
}

.note-top {
  top: 24px;
  left: 108px;
}

.note-bottom {
  right: 8px;
  bottom: 21px;
}

.signal {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(216, 255, 62, 0.1);
  animation: pulse 2.6s ease-in-out infinite;
}

.signal-one {
  top: 89px;
  left: 128px;
}

.signal-two {
  top: 309px;
  right: 88px;
  animation-delay: 1s;
}

.signal-three {
  bottom: 122px;
  left: 130px;
  animation-delay: 1.7s;
}

.hero-bottom {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  height: 72px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.availability,
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
}

.availability .status-dot {
  width: 6px;
  height: 6px;
}

.scroll-hint {
  color: var(--accent);
}

.scroll-hint svg {
  width: 18px;
  height: 18px;
}

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  height: 47px;
  animation: ticker var(--ticker-duration, 34s) linear infinite;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

.ticker span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.ticker i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.section-shell {
  width: var(--shell);
  margin-right: auto;
  margin-left: auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.section-label span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
  line-height: 1;
}

.section-label p {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label-light {
  border-top-color: var(--line-light);
  color: var(--white);
}

.intro {
  display: grid;
  grid-template-columns: 18% minmax(0, 1fr) 260px;
  gap: 4%;
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.intro-content {
  max-width: 780px;
}

.display-title {
  margin: 17px 0 0;
  font-size: clamp(50px, 5.7vw, 91px);
  font-weight: 800;
  letter-spacing: -0.095em;
  line-height: 0.92;
}

.display-title em {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.13em;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.intro-text {
  max-width: 650px;
  margin: 34px 0 0;
  color: #59625e;
  font-size: 17px;
  line-height: 1.76;
}

.intro-aside {
  align-self: end;
  padding: 19px 0 5px;
  border-top: 1px solid var(--ink);
}

.intro-aside .mono {
  color: var(--coral);
}

blockquote {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.14;
}

.problems {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  background: var(--paper-soft);
}

.section-heading,
.reference-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 40px;
  align-items: end;
  margin-top: 76px;
}

.heading-note {
  margin: 0 0 7px;
  color: #606a66;
  font-size: 14px;
  line-height: 1.72;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 63px;
  background: rgba(16, 25, 23, 0.13);
}

.problem-card {
  display: flex;
  min-height: 375px;
  flex-direction: column;
  justify-content: space-between;
  padding: 31px;
  background: var(--paper);
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.problem-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-8px);
}

.problem-card-dark {
  color: var(--white);
  background: var(--ink);
}

.problem-card-accent {
  background: var(--accent);
}

.card-index {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 35px;
  font-style: italic;
}

.problem-card-accent .card-index {
  color: var(--ink);
}

.problem-card h3 {
  max-width: 340px;
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.problem-card p {
  margin: 17px 0 0;
  color: #6c7571;
  font-size: 13px;
  line-height: 1.72;
}

.problem-card-dark p {
  color: rgba(255, 255, 255, 0.58);
}

.problem-card-accent p {
  color: rgba(16, 25, 23, 0.72);
}

.problem-card a {
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.problem-card-dark a {
  border-top-color: var(--line-light);
}

.services {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.services-heading {
  margin-top: 75px;
}

.services-board {
  display: grid;
  grid-template-columns: 38% minmax(0, 1fr);
  min-height: 565px;
  margin-top: 61px;
  color: var(--white);
  background: var(--ink);
}

.services-visual {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  background:
    radial-gradient(circle at center, rgba(216, 255, 62, 0.07), transparent 48%),
    var(--ink);
}

.visual-axis {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
}

.axis-x {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.axis-y {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.ring-large {
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
}

.ring-small {
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-style: dashed;
  border-color: rgba(216, 255, 62, 0.32);
  transform: translate(-50%, -50%);
  animation: rotate-centered 24s linear infinite;
}

.visual-node {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.node-center {
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
}

.node-a,
.node-b,
.node-c,
.node-d {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 7px rgba(216, 255, 62, 0.12);
}

.node-a {
  top: 24%;
  left: 22%;
}

.node-b {
  top: 37%;
  right: 14%;
}

.node-c {
  bottom: 19%;
  left: 31%;
}

.node-d {
  right: 29%;
  bottom: 28%;
}

.visual-caption {
  position: absolute;
  bottom: 29px;
  left: 31px;
  color: rgba(255, 255, 255, 0.4);
}

.service-row {
  display: grid;
  grid-template-columns: 46px minmax(180px, 0.9fr) minmax(180px, 1.1fr);
  gap: 9px;
  align-items: center;
  min-height: 113px;
  padding: 17px 28px;
  border-bottom: 1px solid var(--line-light);
  transition: background 180ms ease;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row:hover {
  background: rgba(216, 255, 62, 0.07);
}

.service-row span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
}

.service-row h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.service-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.65;
}

.cooperation {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  background: #dedbd2;
}

.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 61px;
}

.cooperation-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(16, 25, 23, 0.16);
  background: rgba(242, 240, 233, 0.7);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cooperation-card:hover {
  box-shadow: 0 18px 34px rgba(16, 25, 23, 0.09);
  transform: translateY(-6px);
}

.cooperation-featured {
  color: var(--white);
  background: var(--ink);
}

.featured-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--accent);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cooperation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.cooperation-featured .cooperation-top {
  padding-top: 26px;
  border-bottom-color: var(--line-light);
}

.cooperation-top .mono {
  color: var(--coral);
  font-size: 8px;
}

.price {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  white-space: nowrap;
}

.cooperation-featured .price {
  color: var(--accent);
}

.cooperation-card h3 {
  margin: 27px 0 0;
  font-size: 27px;
  letter-spacing: -0.06em;
}

.cooperation-card p {
  margin: 15px 0 0;
  color: #68716d;
  font-size: 13px;
  line-height: 1.73;
}

.cooperation-featured p {
  color: rgba(255, 255, 255, 0.57);
}

.cooperation-card a {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
}

.cooperation-featured a {
  color: var(--accent);
  border-top-color: var(--line-light);
}

.pricing-note {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 24px 0 0;
  color: #66706b;
  font-size: 12px;
  line-height: 1.7;
}

.pricing-note .mono {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 8px;
}

.references {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  color: var(--white);
  background: var(--ink);
}

.reference-heading .heading-note {
  color: rgba(255, 255, 255, 0.56);
}

.references .eyebrow {
  color: var(--accent);
}

.references .display-title em {
  color: var(--accent);
}

.featured-project {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 555px;
  margin-top: 65px;
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.project-copy {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-right: 1px solid var(--line-light);
}

.project-copy .mono {
  color: var(--coral);
}

.project-copy h3 {
  margin: 38px 0 0;
  font-size: clamp(68px, 7vw, 108px);
  letter-spacing: -0.1em;
  line-height: 0.76;
}

.project-copy h3 em {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.16em;
  font-weight: 400;
}

.project-description {
  max-width: 410px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.76;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.tag-list span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.69);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-copy a {
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid var(--line-light);
  color: var(--accent);
}

.project-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(216, 255, 62, 0.16), rgba(255, 117, 93, 0.05)),
    #253531;
}

.project-visual::before,
.project-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.project-visual::before {
  width: 630px;
  height: 630px;
}

.project-visual::after {
  width: 420px;
  height: 420px;
}

.project-window {
  position: relative;
  z-index: 2;
  width: 73%;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #ebe7dc;
  box-shadow: 24px 28px 0 rgba(9, 16, 15, 0.18);
  color: var(--ink);
  transform: rotate(-4deg);
  transition: transform 350ms ease;
}

.featured-project:hover .project-window {
  transform: rotate(-1.5deg) translateY(-6px);
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(16, 25, 23, 0.14);
}

.window-top div {
  display: flex;
  gap: 5px;
}

.window-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(16, 25, 23, 0.28);
}

.window-top small {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-window-image {
  display: block;
  width: 100%;
  height: 306px;
  object-fit: cover;
  object-position: top;
}

.window-content {
  padding: 47px 37px 27px;
}

.window-content p,
.window-bottom {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.window-content h4 {
  margin: 22px 0 0;
  font-size: 50px;
  letter-spacing: -0.095em;
  line-height: 0.85;
}

.window-content h4 em {
  color: #eb634f;
  font-family: var(--serif);
  font-size: 1.16em;
  font-weight: 400;
}

.window-line {
  height: 1px;
  margin-top: 49px;
  background: rgba(16, 25, 23, 0.19);
}

.window-bottom {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}

.project-stamp {
  position: absolute;
  right: 23px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.41);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line-light);
}

.reference-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.reference-card:hover {
  color: var(--ink);
  background: var(--accent);
}

.reference-card-media,
.reference-card-placeholder {
  display: grid;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line-light);
  background: #1d302c;
}

.reference-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.88;
  transition:
    opacity 180ms ease,
    transform 300ms ease;
}

.reference-card:hover .reference-card-media img {
  opacity: 1;
  transform: scale(1.035);
}

.reference-card-placeholder {
  color: rgba(216, 255, 62, 0.67);
  background:
    linear-gradient(145deg, rgba(216, 255, 62, 0.1), rgba(255, 117, 93, 0.06)),
    #1d302c;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.2em;
}

.reference-card-copy {
  min-height: 153px;
  padding: 23px 25px;
}

.reference-card .mono {
  color: var(--coral);
  font-size: 8px;
}

.reference-card:hover .mono {
  color: var(--ink);
}

.reference-card h3 {
  margin: 19px 0 0;
  font-size: 28px;
  letter-spacing: -0.065em;
}

.reference-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.49);
  font-size: 11px;
}

.reference-card:hover p {
  color: rgba(16, 25, 23, 0.66);
}

.reference-card b {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
}

.reference-card b span {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-card:hover b {
  color: var(--ink);
}

.about {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 8%;
  margin-top: 75px;
}

.about-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 870px;
  margin-top: 40px;
}

.about-text p {
  margin: 0;
  color: #68716d;
  font-size: 14px;
  line-height: 1.8;
}

.about-card {
  position: relative;
  display: flex;
  min-height: 440px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.about-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 54px 24px 22px;
  background: linear-gradient(transparent, rgba(9, 16, 15, 0.94));
}

.about-meta .mono {
  color: var(--accent);
  font-size: 8px;
}

.about-meta p:last-child {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.digitality-block {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  margin-top: 72px;
  color: var(--white);
  background: var(--ink);
}

.digitality-block-home {
  grid-template-columns: 1fr;
  margin-top: 56px;
}

.digitality-block-home .digitality-intro {
  padding: 30px 34px;
  border-right: 0;
}

.digitality-block-home .digitality-intro h3 {
  margin-top: 22px;
  font-size: clamp(36px, 3.7vw, 54px);
}

.digitality-block-home .digitality-intro > p:not(.mono) {
  max-width: 780px;
  margin-top: 18px;
}

.digitality-block-home .digitality-link {
  margin-top: 22px;
}

.digitality-intro {
  padding: 34px;
  border-right: 1px solid var(--line-light);
  background:
    linear-gradient(135deg, rgba(216, 255, 62, 0.09), transparent 58%),
    var(--ink);
}

.digitality-block .mono {
  color: var(--accent);
  font-size: 8px;
}

.digitality-intro h3 {
  margin: 28px 0 0;
  font-size: clamp(39px, 4.1vw, 62px);
  letter-spacing: -0.085em;
  line-height: 0.93;
}

.digitality-intro h3 em {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.12em;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.digitality-intro > p:not(.mono) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.75;
}

.digitality-intro > p a {
  color: var(--white);
  font-weight: 700;
}

.digitality-intro > p a:hover {
  color: var(--accent);
}

.digitality-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.digitality-team {
  padding: 34px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.team-member:last-child {
  border-bottom: 0;
}

.member-mark {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: -0.08em;
}

.member-mark-lana {
  color: var(--white);
  background: var(--coral);
}

.team-member h4 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.team-member h4 span {
  color: var(--accent);
  font-weight: 400;
}

.team-member p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.6;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  color: var(--white);
  background: #192825;
}

.contact::after {
  position: absolute;
  right: -200px;
  bottom: -330px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(216, 255, 62, 0.21);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  opacity: 0.31;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.contact-shell {
  position: relative;
  z-index: 2;
}

.contact-heading {
  margin-top: 76px;
}

.contact-heading .eyebrow {
  color: var(--accent);
}

.contact-heading .display-title em {
  color: var(--accent);
}

.contact-heading > p:last-child {
  max-width: 560px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 15px;
  line-height: 1.72;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 18px;
  max-width: 850px;
  margin-top: 55px;
}

.contact-form label {
  display: block;
}

.contact-form label span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  transition: border-color 180ms ease;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom-color: var(--accent);
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 7px;
}

.form-footer p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.65;
}

.form-status {
  display: none;
  margin: 0;
  padding: 15px;
  border: 1px solid rgba(216, 255, 62, 0.4);
  color: var(--accent);
  font-size: 13px;
  line-height: 1.6;
}

.form-status.is-visible {
  display: block;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.65;
}

.form-privacy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy a:hover {
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 92px;
  padding: 0 max(36px, calc((100vw - 1440px) / 2));
  color: rgba(255, 255, 255, 0.57);
  background: var(--ink);
  font-size: 11px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.site-footer a:hover {
  color: var(--accent);
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin: 48px 0 0;
  font-size: 26px;
  letter-spacing: -0.055em;
}

.legal-content h3 {
  margin: 28px 0 0;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: #616b67;
  font-size: 14px;
  line-height: 1.8;
}

.legal-content p {
  margin: 13px 0 0;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 3px;
}

.thank-you-box {
  max-width: 830px;
  margin-top: 63px;
  padding: 33px;
  border: 1px solid var(--line);
  background: var(--white);
}

.thank-you-box p {
  margin: 0;
  color: #616b67;
  font-size: 15px;
  line-height: 1.8;
}

.thank-you-box .button {
  margin-top: 25px;
  color: var(--white);
  background: var(--ink);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-centered {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(216, 255, 62, 0.04);
    transform: scale(0.78);
  }
}

@keyframes ticker {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1120px);
  }

  .hero-system {
    top: 205px;
    left: calc(50% + 245px);
    width: 500px;
    height: 500px;
  }

  .system-note {
    display: none;
  }

  .project-copy {
    padding: 30px;
  }
}

@media (max-width: 980px) {
  .main-nav {
    gap: 21px;
    margin-right: 28px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-system {
    top: 470px;
    right: -50px;
    left: auto;
    width: 420px;
    height: 420px;
    opacity: 0.94;
  }

  .orbit-label {
    width: 54px;
    height: 54px;
    font-size: 7px;
  }

  .label-sales {
    width: 62px;
    height: 62px;
  }

  .system-core {
    width: 150px;
    height: 150px;
  }

  .system-core strong {
    font-size: 23px;
  }

  .intro {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .intro-aside {
    grid-column: 2;
    max-width: 400px;
    margin-top: 22px;
  }

  .problem-grid,
  .cooperation-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 270px;
  }

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

  .services-visual {
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .featured-project {
    grid-template-columns: 1fr;
  }

  .project-copy {
    min-height: 470px;
    border-right: 0;
  }

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

  .about-grid {
    grid-template-columns: 1fr 300px;
    gap: 5%;
  }
}

@media (max-width: 740px) {
  :root {
    --shell: calc(100% - 32px);
    --section-gap: 88px;
  }

  .site-header {
    height: 75px;
  }

  .site-header.is-scrolled {
    top: 8px;
    width: calc(100% - 16px);
    height: 60px;
    padding: 0 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .site-header.is-scrolled .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 11px;
  }

  .menu-toggle {
    z-index: 2;
    display: grid;
    width: 33px;
    gap: 5px;
    padding: 7px 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(16, 25, 23, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 15px;
    font-size: 11px;
  }

  .main-nav .nav-contact {
    display: block;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(216, 255, 62, 0.24);
    color: var(--accent);
  }

  .main-nav a::after,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 870px;
  }

  .hero-grid {
    background-size: 45px 45px;
  }

  .hero-copy {
    padding-top: 143px;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(61px, 18.5vw, 82px);
  }

  .hero-lead {
    max-width: 500px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
    gap: 4px;
    margin-top: 27px;
  }

  .button {
    padding: 15px 18px;
  }

  .button-ghost {
    padding-left: 0;
  }

  .hero-proof {
    margin-top: 26px;
  }

  .proof-number {
    font-size: 43px;
  }

  .hero-system {
    top: auto;
    right: -99px;
    bottom: 43px;
    width: 330px;
    height: 330px;
  }

  .orbit-one {
    inset: 71px;
  }

  .orbit-two {
    inset: 25px;
  }

  .orbit-three {
    inset: -5px;
  }

  .system-core {
    width: 116px;
    height: 116px;
  }

  .system-core strong {
    font-size: 18px;
  }

  .system-core span,
  .system-core small {
    font-size: 6px;
  }

  .label-web {
    top: 32px;
    right: 54px;
  }

  .label-seo {
    top: 129px;
    right: -5px;
  }

  .label-ppc {
    right: 49px;
    bottom: 23px;
  }

  .label-data {
    bottom: 45px;
    left: 5px;
  }

  .label-sales {
    top: 72px;
    left: -1px;
  }

  .hero-bottom {
    height: 58px;
  }

  .availability {
    max-width: 230px;
    font-size: 8px;
    line-height: 1.5;
  }

  .scroll-hint {
    display: none;
  }

  .intro {
    display: block;
  }

  .intro-content,
  .intro-aside {
    margin-top: 51px;
  }

  .display-title {
    font-size: clamp(50px, 14vw, 75px);
  }

  .intro-text {
    margin-top: 25px;
    font-size: 15px;
  }

  blockquote {
    font-size: 22px;
  }

  .section-heading,
  .reference-heading {
    display: block;
    margin-top: 54px;
  }

  .heading-note {
    max-width: 460px;
    margin-top: 24px;
  }

  .problem-grid,
  .cooperation-grid {
    margin-top: 41px;
  }

  .problem-card {
    min-height: 290px;
    padding: 25px;
  }

  .services-heading {
    margin-top: 52px;
  }

  .services-board {
    margin-top: 41px;
  }

  .services-visual {
    min-height: 260px;
  }

  .ring-large {
    width: 280px;
    height: 280px;
  }

  .ring-small {
    width: 170px;
    height: 170px;
  }

  .service-row {
    display: grid;
    grid-template-columns: 35px 1fr;
    min-height: 105px;
    padding: 15px 18px;
  }

  .service-row p {
    grid-column: 2;
  }

  .pricing-note {
    display: block;
  }

  .pricing-note .mono {
    display: block;
    margin-bottom: 9px;
  }

  .featured-project {
    min-height: 0;
    margin-top: 43px;
  }

  .project-copy {
    min-height: 455px;
    padding: 25px;
  }

  .project-copy h3 {
    font-size: 82px;
  }

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

  .project-window {
    width: 84%;
    min-height: 260px;
  }

  .project-window-image {
    height: 226px;
  }

  .window-content {
    padding: 33px 25px 22px;
  }

  .window-content h4 {
    font-size: 39px;
  }

  .window-line {
    margin-top: 36px;
  }

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

  .reference-card {
    min-height: 0;
  }

  .reference-card-copy {
    min-height: 136px;
  }

  .about-grid {
    display: block;
    margin-top: 54px;
  }

  .about-text {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 30px;
  }

  .about-card {
    min-height: 330px;
    margin-top: 40px;
  }

  .digitality-block {
    grid-template-columns: 1fr;
    margin-top: 41px;
  }

  .digitality-intro {
    padding: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .digitality-block-home .digitality-intro {
    border-bottom: 0;
  }

  .digitality-intro h3 {
    font-size: 45px;
  }

  .digitality-team {
    padding: 25px;
  }

  .contact-heading {
    margin-top: 53px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .form-wide {
    grid-column: auto;
  }

  .form-footer {
    display: block;
  }

  .form-footer p {
    margin-top: 15px;
  }

  .site-footer {
    display: grid;
    gap: 13px;
    padding: 24px 16px;
  }

  .site-footer > div {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Subpages */

.main-nav a[aria-current="page"] {
  color: var(--accent);
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.subpage-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.subpage-hero::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(216, 255, 62, 0.18);
  border-radius: 50%;
  content: "";
}

.subpage-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 8%;
  width: var(--shell);
  margin: 0 auto;
  padding-top: 188px;
  padding-bottom: 122px;
}

.subpage-hero-copy {
  max-width: 950px;
}

.subpage-hero .eyebrow {
  color: var(--accent);
}

.subpage-hero h1 {
  max-width: 1000px;
  margin-top: 20px;
  font-size: clamp(75px, 7.6vw, 121px);
}

.subpage-hero h1 em {
  display: block;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.subpage-hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.75;
}

.subpage-hero-lead + .button {
  margin-top: 28px;
}

.subpage-aside {
  align-self: end;
  padding: 22px 0 4px;
  border-top: 1px solid var(--accent);
}

.subpage-aside .mono {
  color: var(--accent);
}

.subpage-aside p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
}

.subpage-aside em {
  color: var(--accent);
}

.subpage-hero-foot {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  width: var(--shell);
  height: 63px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

.subpage-hero-foot span {
  display: inline-flex;
  height: 100%;
  align-items: center;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-hero .subpage-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: end;
}

.case-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.case-hero-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(216, 255, 62, 0.25);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-hero-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.case-hero-card img {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: top;
  opacity: 0.9;
}

.case-hero-card div {
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.case-hero-card strong,
.case-hero-card span {
  display: block;
}

.case-hero-card strong {
  margin-top: 10px;
  color: var(--white);
  font-size: 30px;
  letter-spacing: -0.06em;
}

.case-hero-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.case-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-kpi {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 249, 0.54);
}

.case-kpi span {
  display: block;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-kpi strong {
  display: block;
  margin-top: 46px;
  font-size: clamp(34px, 3.55vw, 55px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.08em;
  line-height: 0.92;
  white-space: nowrap;
}

.case-kpi p {
  max-width: 250px;
  margin: 20px 0 0;
  color: #69736f;
  font-size: 12px;
  line-height: 1.65;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 8%;
  align-items: start;
}

.case-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.82;
}

.case-text p {
  margin: 0;
}

.case-text p + p {
  margin-top: 20px;
}

.case-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 74px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.case-scope-card {
  min-height: 285px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.case-scope-card span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.case-scope-card h3 {
  margin: 74px 0 0;
  color: var(--white);
  font-size: 21px;
  letter-spacing: -0.06em;
}

.case-scope-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.72;
}

.case-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.case-proof-grid-text {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-proof-text {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 249, 0.58);
}

.case-proof-text span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
}

.case-proof-text h3 {
  margin: 86px 0 0;
  font-size: 24px;
  letter-spacing: -0.06em;
}

.case-proof-text p {
  margin: 16px 0 0;
  color: #65706b;
  font-size: 13px;
  line-height: 1.72;
}

.case-proof-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 254, 249, 0.58);
}

.case-proof-card-wide {
  grid-column: 1 / -1;
}

.case-proof-card img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--line);
}

.case-proof-card-wide img {
  height: 520px;
}

.case-proof-card figcaption {
  padding: 18px 22px 22px;
  color: #65706b;
  font-size: 12px;
  line-height: 1.7;
}

.case-proof-card figcaption strong {
  color: var(--ink);
}

.case-timeline {
  display: grid;
  gap: 0;
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.case-timeline article {
  display: grid;
  grid-template-columns: 170px minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.case-timeline span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.case-timeline h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.06em;
}

.case-timeline p {
  margin: 0;
  color: #68716d;
  font-size: 13px;
  line-height: 1.72;
}

.case-takeaway {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: 8%;
  align-items: end;
  padding: 46px 0 0;
  border-top: 1px solid var(--line);
}

.case-takeaway .eyebrow {
  grid-column: 1 / -1;
  color: var(--coral);
}

.case-takeaway h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 92px);
  letter-spacing: -0.1em;
  line-height: 0.9;
}

.case-takeaway p {
  margin: 0;
  color: #65706b;
  font-size: 16px;
  line-height: 1.8;
}

.case-takeaway .button {
  justify-self: start;
  margin-top: 28px;
}

.page-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.page-section-muted {
  background: var(--paper-soft);
}

.page-section-dim {
  background: #dedbd2;
}

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

.page-section-dark .section-label {
  border-top-color: var(--line-light);
}

.page-section-dark .eyebrow {
  color: var(--accent);
}

.page-section-dark .display-title em {
  color: var(--accent);
}

.page-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 6%;
  align-items: end;
  margin-top: 72px;
}

.page-heading-grid .heading-note {
  margin-bottom: 3px;
}

.page-section-dark .heading-note {
  color: rgba(255, 255, 255, 0.55);
}

.body-large {
  max-width: 760px;
  margin: 26px 0 0;
  color: #616b67;
  font-size: 16px;
  line-height: 1.8;
}

.page-section-dark .body-large {
  color: rgba(255, 255, 255, 0.61);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--line);
}

.situation-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 29px;
  background: var(--paper);
}

.situation-card:nth-child(3n + 2) {
  background: var(--white);
}

.situation-card-featured {
  color: var(--white);
  background: var(--ink) !important;
}

.situation-card .mono,
.catalog-card .mono,
.case-study-card .mono {
  color: var(--coral);
  font-size: 8px;
}

.situation-card h3 {
  max-width: 540px;
  margin: 38px 0 0;
  font-size: 30px;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

.situation-card p {
  max-width: 600px;
  margin: 14px 0 0;
  color: #6a736f;
  font-size: 13px;
  line-height: 1.75;
}

.situation-card-featured p {
  color: rgba(255, 255, 255, 0.58);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.text-link::after {
  content: "→";
  font-size: 17px;
  line-height: 1;
}

.situation-card-featured .text-link,
.page-section-dark .text-link {
  color: var(--accent);
}

.decision-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 60px;
  color: var(--white);
  background: var(--ink);
}

.decision-copy {
  padding: 37px;
  border-right: 1px solid var(--line-light);
}

.decision-copy .mono {
  color: var(--accent);
}

.decision-copy h3 {
  max-width: 650px;
  margin: 25px 0 0;
  font-size: clamp(40px, 4.3vw, 67px);
  letter-spacing: -0.09em;
  line-height: 0.92;
}

.decision-copy h3 em {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.14em;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.decision-copy p:not(.mono) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.75;
}

.decision-list {
  display: grid;
}

.decision-list div {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 8px;
  align-content: center;
  min-height: 103px;
  padding: 17px 28px;
  border-bottom: 1px solid var(--line-light);
}

.decision-list div:last-child {
  border-bottom: 0;
}

.decision-list span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.decision-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 61px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 250px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
}

.process-step h3 {
  margin: 39px 0 0;
  font-size: 19px;
  letter-spacing: -0.045em;
}

.process-step p {
  margin: 11px 0 0;
  color: #68716d;
  font-size: 12px;
  line-height: 1.7;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 61px;
}

.catalog-card {
  display: flex;
  min-height: 314px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 249, 0.58);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.catalog-card:hover {
  background: var(--white);
  transform: translateY(-6px);
}

.catalog-card-dark {
  color: var(--white);
  background: var(--ink);
}

.catalog-card-dark:hover {
  background: var(--ink-soft);
}

.catalog-card h3 {
  margin: 30px 0 0;
  font-size: 25px;
  letter-spacing: -0.06em;
  line-height: 1.07;
}

.catalog-card p {
  margin: 14px 0 0;
  color: #69736f;
  font-size: 12px;
  line-height: 1.75;
}

.catalog-card-dark p {
  color: rgba(255, 255, 255, 0.56);
}

.catalog-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 0;
  padding: 25px 0 0;
  list-style: none;
}

.catalog-card li {
  padding: 6px 7px;
  border: 1px solid var(--line);
  color: #6b7470;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card-dark li {
  border-color: var(--line-light);
  color: rgba(255, 255, 255, 0.63);
}

.catalog-card .text-link {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.catalog-card-dark .text-link {
  border-top-color: var(--line-light);
  color: var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--line);
}

.pricing-card {
  min-height: 188px;
  padding: 24px;
  background: var(--paper);
}

.pricing-card .mono {
  color: var(--coral);
  font-size: 8px;
}

.pricing-card strong {
  display: block;
  margin-top: 27px;
  color: var(--ink);
  font-size: 26px;
  letter-spacing: -0.06em;
}

.pricing-card p {
  margin: 8px 0 0;
  color: #69736f;
  font-size: 11px;
  line-height: 1.6;
}

.case-study-list {
  display: grid;
  gap: 13px;
  margin-top: 62px;
}

.case-study-card {
  display: grid;
  grid-template-columns: 235px minmax(145px, 0.55fr) minmax(0, 1.25fr) max-content;
  gap: 28px;
  align-items: center;
  min-height: 174px;
  padding: 17px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 254, 249, 0.54);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.case-study-card:hover {
  background: var(--white);
  transform: translateX(8px);
}

.case-study-card h3 {
  margin: 19px 0 0;
  font-size: 30px;
  letter-spacing: -0.07em;
}

.case-study-shot {
  height: 140px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.case-study-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.9;
  transition:
    opacity 180ms ease,
    transform 300ms ease;
}

.case-study-card:hover .case-study-shot img {
  opacity: 1;
  transform: scale(1.035);
}

.case-study-shot-placeholder {
  display: grid;
  place-items: center;
  color: var(--accent);
  background:
    linear-gradient(145deg, rgba(216, 255, 62, 0.1), rgba(255, 117, 93, 0.06)),
    #1d302c;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.2em;
}

.case-study-note {
  margin: 8px 0 0;
  color: #7d8782;
  font-size: 10px;
  line-height: 1.55;
}

.case-study-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.case-study-body span {
  display: block;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-study-body p {
  margin: 8px 0 0;
  color: #68716d;
  font-size: 12px;
  line-height: 1.72;
}

.case-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--coral);
  font-size: 20px;
  text-align: right;
  white-space: nowrap;
}

.case-arrow span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 7%;
  margin-top: 70px;
}

.about-story-copy p {
  margin: 0 0 18px;
  color: #616b67;
  font-size: 15px;
  line-height: 1.82;
}

.about-story-card {
  align-self: start;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.about-story-card .mono {
  color: var(--accent);
}

.about-story-card blockquote {
  color: var(--white);
}

.about-story-card p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.51);
  font-size: 12px;
  line-height: 1.7;
}

.about-story-aside {
  align-self: start;
  display: grid;
  gap: 1px;
  background: var(--line);
}

.about-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 44px 19px 16px;
  color: var(--accent);
  background: linear-gradient(transparent, rgba(9, 16, 15, 0.9));
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  line-height: 1.55;
  text-transform: uppercase;
}

.milestone-list {
  display: grid;
  margin-top: 61px;
  border-top: 1px solid var(--line);
}

.milestone {
  display: grid;
  grid-template-columns: 150px minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 25px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.milestone span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
}

.milestone h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.045em;
}

.milestone p {
  margin: 0;
  color: #68716d;
  font-size: 12px;
  line-height: 1.72;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 61px;
  background: var(--line-light);
}

.principle-card {
  min-height: 260px;
  padding: 26px;
  background: var(--ink);
}

.principle-card span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
}

.principle-card h3 {
  margin: 34px 0 0;
  font-size: 23px;
  letter-spacing: -0.055em;
}

.principle-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.72;
}

.page-cta {
  padding-top: 78px;
  padding-bottom: 78px;
  color: var(--ink);
  background: var(--accent);
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.page-cta .eyebrow {
  color: var(--ink);
}

.page-cta h2 {
  max-width: 900px;
  margin: 15px 0 0;
  font-size: clamp(45px, 5vw, 76px);
  letter-spacing: -0.09em;
  line-height: 0.91;
}

.page-cta h2 em {
  font-family: var(--serif);
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.page-cta .button {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink);
}

.page-cta .button:hover {
  color: var(--ink);
  background: var(--white);
}

.contact-inquiry {
  background: #f7f4ed;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  margin-top: 58px;
}

.contact-form-panel {
  display: block;
  max-width: none;
  margin-top: 0;
  padding: 34px 38px 36px;
  scroll-margin-top: 24px;
  background: #192825;
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: 0 0 34px;
  border: 0;
}

.form-section + .form-section {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.form-section legend {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  width: 100%;
  margin-bottom: 25px;
  padding: 0;
}

.form-section legend span {
  grid-row: 1 / 3;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  line-height: 0.93;
}

.form-section legend strong {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.form-section legend small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  line-height: 1.5;
}

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

.form-field-wide {
  grid-column: 1 / -1;
}

.contact-form-panel label span small {
  display: inline;
  margin: 0 0 0 6px;
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.form-submit {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.form-submit .form-footer {
  margin-top: 0;
}

.form-submit .form-privacy {
  margin-top: 18px;
}

.inquiry-sidebar {
  display: grid;
  gap: 18px;
}

.inquiry-card {
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--white);
}

.inquiry-card .mono {
  color: #66706b;
}

.inquiry-card-dark {
  color: var(--white);
  background: var(--ink);
}

.inquiry-card-dark .mono {
  color: var(--accent);
}

.inquiry-contact {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.inquiry-contact:hover {
  color: var(--accent);
}

.inquiry-card > p:last-child {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.7;
}

.inquiry-card ol {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.inquiry-card li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.inquiry-card li span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1;
}

.inquiry-card li p {
  margin: 0;
  color: #626c68;
  font-size: 12px;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding-right: 35px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.035em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 0;
  right: 4px;
  color: var(--coral);
  content: "+";
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 760px;
  margin: 15px 0 0;
  color: #68716d;
  font-size: 13px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .subpage-hero-inner,
  .page-heading-grid {
    grid-template-columns: 1fr;
  }

  .subpage-aside {
    max-width: 370px;
    margin-top: 37px;
  }

  .decision-panel,
  .about-story,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .decision-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .inquiry-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .subpage-hero {
    min-height: 680px;
  }

  .subpage-hero-inner {
    padding-top: 142px;
    padding-bottom: 100px;
  }

  .subpage-hero h1 {
    font-size: clamp(61px, 18vw, 79px);
  }

  .subpage-hero-lead {
    font-size: 15px;
  }

  .subpage-aside p:last-child {
    font-size: 23px;
  }

  .case-hero-card img {
    height: 210px;
  }

  .case-kpi-grid,
  .case-scope-grid,
  .case-proof-grid,
  .case-proof-grid-text {
    grid-template-columns: 1fr;
  }

  .case-kpi {
    min-height: 210px;
    padding: 24px;
  }

  .case-kpi strong {
    margin-top: 36px;
  }

  .case-scope-card {
    min-height: 245px;
  }

  .case-scope-card h3 {
    margin-top: 54px;
  }

  .case-proof-card-wide {
    grid-column: auto;
  }

  .case-proof-card img,
  .case-proof-card-wide img {
    height: 230px;
  }

  .case-timeline article {
    display: block;
  }

  .case-timeline h3 {
    margin-top: 18px;
  }

  .case-timeline p {
    margin-top: 12px;
  }

  .case-takeaway {
    padding-top: 34px;
  }

  .case-takeaway p {
    font-size: 14px;
  }

  .page-heading-grid {
    margin-top: 51px;
  }

  .situation-grid,
  .catalog-grid,
  .pricing-grid,
  .principle-grid {
    grid-template-columns: 1fr;
    margin-top: 41px;
  }

  .situation-card {
    min-height: 282px;
    padding: 24px;
  }

  .situation-card h3 {
    margin-top: 31px;
    font-size: 27px;
  }

  .decision-panel {
    margin-top: 41px;
  }

  .decision-copy,
  .digitality-team {
    padding: 25px;
  }

  .decision-list div {
    min-height: 91px;
    padding: 14px 19px;
  }

  .process-grid {
    margin-top: 41px;
  }

  .process-step {
    min-height: 228px;
    padding: 20px 16px;
  }

  .process-step h3 {
    margin-top: 29px;
    font-size: 17px;
  }

  .catalog-card {
    min-height: 286px;
  }

  .case-study-list,
  .milestone-list {
    margin-top: 41px;
  }

  .case-hero .subpage-hero-inner,
  .case-detail-grid,
  .case-takeaway {
    grid-template-columns: 1fr;
  }

  .case-hero-card {
    margin-top: 18px;
  }

  .case-kpi-grid,
  .case-scope-grid,
  .case-proof-grid,
  .case-proof-grid-text {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-timeline article {
    grid-template-columns: 120px 1fr;
  }

  .case-timeline p {
    grid-column: 2;
  }

  .case-study-card {
    display: block;
    min-height: 0;
    padding: 24px;
  }

  .case-study-shot {
    height: 166px;
    margin-bottom: 21px;
  }

  .case-study-body {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .case-arrow {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .about-story {
    margin-top: 51px;
  }

  .milestone {
    display: block;
  }

  .milestone h3 {
    margin-top: 11px;
  }

  .milestone p {
    margin-top: 9px;
  }

  .principle-card {
    min-height: 225px;
  }

  .page-cta {
    padding-top: 59px;
    padding-bottom: 59px;
  }

  .page-cta-inner {
    display: block;
  }

  .page-cta h2 {
    font-size: 54px;
  }

  .page-cta .button {
    margin-top: 25px;
  }

  .contact-form-panel {
    padding: 27px 20px 28px;
  }

  .form-fields,
  .inquiry-sidebar {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }
}
