:root {
  color-scheme: light;
  --ink: #101715;
  --muted: #60706b;
  --paper: #eaf5ef;
  --paper-strong: #fbfff8;
  --forge: #ff6b4a;
  --forge-dark: #ba3d2c;
  --steel: #0a6f73;
  --brass: #b7f24b;
  --mint: #9cebd2;
  --sky: #8dc9ff;
  --charcoal: #102522;
  --line: rgba(16, 23, 21, 0.13);
  --line-strong: rgba(16, 23, 21, 0.22);
  --shadow: 0 32px 90px rgba(16, 37, 34, 0.2);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Pretendard,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper-strong);
  line-height: 1.6;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: min(100% - 32px, var(--max));
  margin: 18px auto 0;
  padding: 8px 10px;
  color: #fff;
  background: rgba(9, 33, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: #fbfff8;
}

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

.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  color: #102522;
  background: var(--brass);
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.language-switch a {
  min-width: 34px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.language-switch a[aria-current="page"] {
  color: #102522;
  background: #f7f0d7;
}

.mobile-screen-indicator {
  display: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/blockdaejang-print-farm-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transform-origin: center;
  animation: hero-drift 24s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 29, 27, 0.96) 0%, rgba(8, 29, 27, 0.7) 42%, rgba(8, 29, 27, 0.12) 78%),
    linear-gradient(180deg, rgba(8, 29, 27, 0.34) 0%, rgba(8, 29, 27, 0.08) 48%, rgba(8, 29, 27, 0.84) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 150px 0 68px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-content-in 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 180ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 270ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 360ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--forge);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(4.2rem, 10.4vw, 9.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.2rem, 2.2vw, 1.62rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #102522;
  background: var(--brass);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin: 56px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
}

.hero-stats div {
  min-height: 110px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.section-band {
  padding: 124px 0;
}

.section-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.intro {
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line-strong);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.intro-grid > div:first-child {
  max-width: 760px;
}

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

.feature-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background-color: var(--charcoal);
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 70px rgba(21, 21, 21, 0.18);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 34px 82px rgba(21, 21, 21, 0.22);
}

.feature-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 31, 28, 0.05) 0%, rgba(7, 31, 28, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 31, 28, 0.42), rgba(7, 31, 28, 0.04));
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  color: #fff;
  font-size: clamp(1.22rem, 1.6vw, 1.62rem);
}

.feature-grid p {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.feature-card-block {
  background-image: url("assets/product-carrot.png");
  background-position: center 42%;
}

.feature-card-original {
  background-image: url("assets/product-paprika.png");
}

.feature-card-gift {
  background-image: url("assets/product-keycap-keyring.png?v=2");
}

.feature-card-collab {
  background-image: url("assets/blockdaejang-print-farm-hero.png");
}

.collaborations {
  color: #f3fff9;
  background: #153f3c;
}

.collaborations .section-heading {
  max-width: none;
}

#collaborations-title {
  white-space: nowrap;
}

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

.client-card {
  display: grid;
  gap: 12px;
  min-height: 264px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(156, 235, 210, 0.2);
  border-radius: 18px;
  box-shadow: none;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease;
}

.client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(156, 235, 210, 0.36);
  background: rgba(255, 255, 255, 0.105);
}

.client-logo-slot {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 14px;
  color: #2f332f;
  background: #fff;
  border: 1px solid rgba(16, 23, 21, 0.08);
  border-radius: 14px;
  text-align: center;
}

.client-logo-slot span {
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  font-weight: 900;
  line-height: 1.25;
}

.client-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.client-logo-wide {
  max-width: min(100%, 220px);
  max-height: 58px;
}

.client-logo-stack {
  max-width: min(100%, 180px);
  max-height: 78px;
}

.client-logo-tall {
  max-width: min(100%, 160px);
  max-height: 84px;
}

.client-logo-gafi {
  max-width: min(100%, 220px);
  max-height: 86px;
}

.client-logo-gugak {
  max-width: min(100%, 360px);
  max-height: 86px;
}

.client-card p {
  margin: 0;
  color: rgba(243, 255, 249, 0.72);
}

.client-card h3 {
  color: #fff;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
}

.case-placeholder {
  display: grid;
  place-items: center;
  min-height: 72px;
  margin-top: auto;
  color: rgba(243, 255, 249, 0.58);
  background: rgba(156, 235, 210, 0.09);
  border: 1px dashed rgba(156, 235, 210, 0.28);
  border-radius: 12px;
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

@media (min-width: 901px) {
  html[lang="en"] .hero h1 {
    max-width: none;
    font-size: clamp(4.2rem, 7.8vw, 7.4rem);
    white-space: nowrap;
  }

  html[lang="en"] .intro-grid > div:first-child,
  html[lang="en"] .section-heading {
    max-width: none;
  }

  html[lang="en"] #brand-title,
  html[lang="en"] #custom-title,
  html[lang="en"] #products-title,
  html[lang="en"] #faq-title {
    white-space: nowrap;
  }
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.intro p:last-child,
.contact-copy p,
.proof-list p,
.product-card p,
.step-list p {
  color: var(--muted);
}

.intro .feature-card p {
  color: rgba(255, 255, 255, 0.82);
}

.products {
  background: #fbfff8;
}

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

.product-card {
  grid-column: span 2;
  min-height: 420px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(17, 16, 14, 0.06);
  overflow: hidden;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 111, 115, 0.24);
  box-shadow: 0 28px 64px rgba(17, 16, 14, 0.1);
}

.product-card:nth-child(1),
.product-card:nth-child(2) {
  grid-column: span 3;
}

.product-card:nth-child(3) {
  grid-column: span 2;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
}

.portfolio-image {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  margin-bottom: 22px;
  border: 1px solid rgba(16, 23, 21, 0.1);
  border-radius: 14px;
  background: #fff;
  transition: transform 420ms ease;
}

.product-card:hover .portfolio-image {
  transform: scale(1.035);
}

.portfolio-type {
  margin: 0 0 10px;
  color: var(--forge-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: clamp(1.28rem, 1.7vw, 1.75rem);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 0;
  padding: 16px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  color: #16413c;
  background: rgba(156, 235, 210, 0.42);
  border: 1px solid rgba(10, 111, 115, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.portfolio-cta {
  color: #fff;
  background: var(--charcoal);
}

.portfolio-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.portfolio-cta .portfolio-type {
  color: var(--brass);
}

.portfolio-cta .button {
  width: 100%;
  margin-top: auto;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--steel);
  border-radius: 8px;
}

.product-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.product-card:nth-child(2n) .product-icon {
  background: var(--forge);
}

.product-card:nth-child(3n) .product-icon {
  background: var(--sky);
}

.method {
  color: #fff;
  background: var(--charcoal);
}

.method .section-kicker {
  color: var(--brass);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.method .section-heading {
  max-width: none;
  margin-bottom: 0;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0;
}

.step-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease;
}

.step-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 242, 75, 0.3);
  background: rgba(255, 255, 255, 0.075);
}

.step-list span {
  color: var(--brass);
  font-weight: 900;
  font-size: 0.9rem;
}

.step-list strong {
  color: #fff;
  font-size: clamp(1.12rem, 1.35vw, 1.34rem);
  line-height: 1.28;
}

.step-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.faq-preview {
  background: #fbfff8;
}

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

.faq-link-card {
  display: grid;
  gap: 12px;
  min-height: 238px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(17, 16, 14, 0.06);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.faq-link-card:hover,
.faq-link-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(10, 111, 115, 0.24);
  box-shadow: 0 28px 64px rgba(17, 16, 14, 0.1);
}

.faq-link-card span {
  color: var(--forge-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-link-card strong {
  font-size: clamp(1.14rem, 1.45vw, 1.45rem);
  line-height: 1.28;
}

.faq-link-card p {
  margin: 0;
  color: var(--muted);
}

.faq-body {
  background: #fbfff8;
}

.subpage-body {
  background: #fbfff8;
}

.faq-main,
.subpage-main {
  min-height: 72vh;
}

.faq-hero,
.subpage-hero {
  padding: 172px 0 82px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 29, 27, 0.94), rgba(8, 29, 27, 0.7)),
    url("assets/blockdaejang-print-farm-hero.png") center / cover;
}

.faq-hero h1,
.subpage-hero h1 {
  max-width: 920px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
}

.faq-hero p:last-child,
.subpage-hero p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.split-title {
  display: grid;
  gap: 0.04em;
}

.split-title span {
  display: block;
}

.faq-section {
  padding-top: 86px;
}

.content-section {
  background: #fbfff8;
}

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

.content-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(17, 16, 14, 0.05);
}

.content-panel h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.18;
}

.content-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.content-panel a {
  color: var(--forge-dark);
  font-weight: 900;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.contact-info-panel {
  min-height: auto;
}

.contact-channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-channel-links a {
  padding: 9px 12px;
  color: var(--ink);
  background: #f2f8f4;
  border: 1px solid rgba(16, 23, 21, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: 52px;
  align-items: start;
}

.faq-side-nav {
  position: sticky;
  top: 114px;
  display: grid;
  gap: 8px;
}

.faq-side-nav a {
  padding: 13px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.faq-side-nav a:hover,
.faq-side-nav a:focus-visible,
.faq-side-nav a[aria-current="page"] {
  color: #102522;
  background: var(--brass);
  border-color: rgba(16, 23, 21, 0.18);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(17, 16, 14, 0.05);
}

.faq-item h2 {
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  line-height: 1.25;
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--muted);
}

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

.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 52px;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-list article {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact {
  background: #fbfff8;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
  gap: 72px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-direct-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 23, 21, 0.14);
}

.contact-direct-list a {
  width: fit-content;
  color: var(--forge-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-direct-list address {
  max-width: 32ch;
  margin: 0;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
  line-height: 1.55;
}

.contact-direct-list small {
  color: var(--muted);
  font-weight: 700;
}

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

.channel-card {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 28px;
  color: var(--ink);
  background: rgba(251, 255, 248, 0.72);
  border: 1px solid rgba(16, 23, 21, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(17, 16, 14, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.channel-card:hover,
.channel-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(10, 111, 115, 0.42);
}

.channel-card span {
  color: var(--forge-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.channel-card strong {
  font-size: clamp(1.16rem, 1.6vw, 1.45rem);
  line-height: 1.25;
}

.channel-card p {
  margin: 0;
  color: var(--muted);
}

.channel-card-email,
.channel-card-phone {
  grid-column: 1 / -1;
  min-height: 180px;
}

.channel-card-phone {
  background: #f2f8f4;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.reveal.is-visible.feature-card:hover,
.reveal.is-visible.product-card:hover {
  transform: translateY(-4px);
}

.reveal.is-visible.client-card:hover,
.reveal.is-visible .step-list li:hover,
.reveal.is-visible.step-list li:hover,
.reveal.is-visible.faq-link-card:hover,
.reveal.is-visible.channel-card:hover,
.reveal.is-visible.channel-card:focus-visible {
  transform: translateY(-3px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(251, 255, 248, 0.82);
  border: 1px solid rgba(16, 23, 21, 0.13);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 7px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 142px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(47, 111, 115, 0.18);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-note {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 34px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer > div {
  display: grid;
  gap: 8px;
}

.footer-business {
  max-width: 72ch;
  line-height: 1.55;
}

.site-footer a {
  font-weight: 800;
}

@keyframes hero-drift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes hero-content-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 22px;
  }

  .mobile-screen-indicator {
    position: fixed;
    top: 50%;
    right: 12px;
    z-index: 24;
    display: grid;
    gap: 9px;
    padding: 9px 7px;
    background: rgba(8, 29, 27, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
  }

  .mobile-screen-indicator a {
    position: relative;
    width: 11px;
    height: 11px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    transition:
      height 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease;
  }

  .mobile-screen-indicator a[aria-current="true"] {
    height: 30px;
    background: var(--brass);
    border-color: rgba(255, 255, 255, 0.78);
  }

  .mobile-screen-indicator span {
    position: absolute;
    top: 50%;
    right: 18px;
    padding: 6px 9px;
    color: #102522;
    background: rgba(247, 240, 215, 0.96);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transform: translate(5px, -50%);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .mobile-screen-indicator a[aria-current="true"] span {
    opacity: 1;
    transform: translate(0, -50%);
  }

  .site-nav {
    display: none;
  }

  .hero-content {
    padding-top: 116px;
    padding-bottom: 116px;
  }

  .hero-mobile-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-mobile-nav a {
    padding: 9px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
    backdrop-filter: blur(10px);
  }

  .intro-grid,
  .method-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .content-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .faq-side-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    grid-column: auto;
  }

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

  #collaborations-title {
    white-space: normal;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 20px, var(--max));
    margin-top: 10px;
    padding: 8px 9px;
  }

  .mobile-screen-indicator {
    right: 8px;
    gap: 8px;
    padding: 8px 6px;
  }

  .brand-mark span:last-child {
    font-size: 0.95rem;
  }

  .header-cta {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .header-actions {
    gap: 6px;
  }

  .language-switch a {
    min-width: 30px;
    padding: 6px 7px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 29, 27, 0.93), rgba(8, 29, 27, 0.5)),
      linear-gradient(180deg, rgba(8, 29, 27, 0.2), rgba(8, 29, 27, 0.68));
  }

  .hero-content,
  .section-inner,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5.8rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 3.35rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .hero-stats {
    display: none;
  }

  .section-band {
    padding: 78px 0;
  }

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

  .feature-card,
  .product-card,
  .client-card,
  .channel-card {
    border-radius: 16px;
  }

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

  .step-list {
    grid-template-columns: 1fr;
  }

  .faq-link-grid,
  .faq-side-nav {
    grid-template-columns: 1fr;
  }

  .faq-hero,
  .subpage-hero {
    padding: 132px 0 66px;
  }

  .faq-item,
  .faq-link-card,
  .content-panel {
    border-radius: 16px;
  }

  .client-card {
    min-height: 250px;
  }

  .product-card {
    min-height: auto;
    padding: 16px;
  }

  .step-list li {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .step-list span {
    grid-row: auto;
  }

  .contact-form {
    padding: 18px;
  }
}

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

  .hero-media,
  .hero-content > *,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
