:root {
  --black: #050505;
  --white: #f8f8f4;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #77736b;
  --line: rgba(17, 17, 17, .16);
  --line-dark: rgba(248, 248, 244, .16);
  --green: #14c850;
  --green-soft: #c8ff4a;
  --warm: #f1eee6;
  --panel: #efebe2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 22px;
  height: 22px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width .22s ease, height .22s ease, border-color .22s ease, background .22s ease, opacity .2s ease;
  mix-blend-mode: difference;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 68px;
  height: 68px;
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 58px);
  /* background: rgba(248, 248, 244, .82); */
  background: #ffffff;
  backdrop-filter: blur(20px);
  transition: height .25s ease, border-color .25s ease, background .25s ease;
}

.topbar.is-scrolled {
  height: 70px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 248, 244, .94);
}

.mark {
  display: inline-flex;
  align-items: center;
  width: clamp(142px, 15vw, 188px);
}

.mark img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav a:hover::after,
.nav a.is-current::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .22s ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-open .menu-button span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.launch-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  grid-template-rows: 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: 124px clamp(18px, 4vw, 58px) clamp(24px, 4vw, 52px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    var(--black);
  background-size: 82px 82px, 82px 82px, auto;
  animation: heroGrid 18s linear infinite;
}

.launch-label,
.section-head p,
.work-intro p,
.process-title p,
.contact-copy p,
.tag {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 760;
  text-transform: uppercase;
}

.launch-copy {
  max-width: 860px;
}

.launch-copy h1 {
  margin: 0;
  font-size: clamp(52px, 8.4vw, 132px);
  line-height: .9;
  font-weight: 860;
  letter-spacing: 0;
}

.launch-copy h1 span {
  display: block;
  animation: titleFloat 5.8s ease-in-out infinite;
}

.launch-copy h1 span:nth-child(2) {
  animation-delay: .25s;
}

.launch-copy h1 span:nth-child(3) {
  animation-delay: .5s;
}

.launch-copy h1 span:nth-child(4) {
  animation-delay: .75s;
}

.launch-label {
  margin-bottom: clamp(18px, 3vw, 34px);
  color: rgba(248, 248, 244, .62);
}

.launch-text {
  max-width: 560px;
  margin: clamp(20px, 3vw, 34px) 0 0;
  color: rgba(248, 248, 244, .7);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.6;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(26px, 4vw, 42px);
}

.launch-primary,
.launch-secondary {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 248, 244, .22);
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 820;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.launch-primary {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
}

.launch-secondary {
  color: var(--white);
}

.launch-primary:hover,
.launch-secondary:hover {
  transform: translateY(-3px);
}

.launch-secondary:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.launch-showcase {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 30px);
  background: #101010;
  overflow: hidden;
}

.launch-showcase::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 28% 24%, rgba(20, 200, 80, .24), transparent 22%),
    radial-gradient(circle at 78% 74%, rgba(248, 248, 244, .12), transparent 20%);
  opacity: .65;
  animation: showcaseGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 200, 80, .9), transparent);
  animation: scanLine 4.2s ease-in-out infinite;
}

.launch-showcase > :not(.scan-line) {
  position: relative;
  z-index: 1;
}

.showcase-top,
.showcase-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(248, 248, 244, .58);
  font-size: 14px;
  font-weight: 760;
  text-transform: uppercase;
}

.showcase-top strong {
  color: var(--green);
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1;
  animation: numberPulse 2.2s ease-in-out infinite;
}

.showcase-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, .58fr);
  gap: 16px;
}

.screen-main,
.screen-side {
  border-radius: 8px;
  background: var(--white);
}

.screen-main {
  position: relative;
  display: grid;
  align-items: stretch;
  padding: clamp(14px, 2vw, 22px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248, 248, 244, .045) 1px, transparent 1px),
    #050505;
  background-size: 28px 28px;
  border: 1px solid rgba(248, 248, 244, .08);
  overflow: hidden;
}

.screen-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 42%, rgba(20, 200, 80, .16) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: codeSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.code-window {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(248, 248, 244, .14);
  border-radius: 8px;
  background: rgba(5, 5, 5, .82);
  box-shadow: inset 0 1px 0 rgba(248, 248, 244, .08);
  overflow: hidden;
}

.code-toolbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(248, 248, 244, .1);
  color: rgba(248, 248, 244, .46);
  font-size: 12px;
  font-weight: 780;
}

.code-toolbar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(248, 248, 244, .2);
}

.code-toolbar i:nth-child(2) {
  background: var(--green);
}

.code-toolbar span {
  margin-left: 8px;
}

.code-lines {
  margin: 0;
  padding: clamp(14px, 2.2vw, 24px) clamp(14px, 2.2vw, 24px);
  color: rgba(248, 248, 244, .82);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(11px, 1.08vw, 15px);
  font-weight: 760;
  line-height: 1.62;
  white-space: pre-wrap;
}

.code-lines code {
  display: grid;
  gap: clamp(5px, .9vw, 10px);
}

.code-lines span {
  position: relative;
  display: block;
  width: 0;
  max-width: max-content;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid transparent;
  animation: typeLine 7.2s steps(var(--chars)) infinite;
}

.code-lines span:nth-child(2) {
  animation-delay: .7s;
}

.code-lines span:nth-child(3) {
  animation-delay: 1.4s;
}

.code-lines span:nth-child(4) {
  animation-delay: 2.1s;
}

.code-lines span:nth-child(5) {
  animation-delay: 2.8s;
}

.code-lines span:nth-child(6) {
  animation-delay: 3.5s;
}

.code-lines span:nth-child(7) {
  animation-delay: 4.2s;
}

.code-lines span:nth-child(8) {
  animation-delay: 4.9s;
}

.code-lines span:last-child {
  border-right-color: var(--green);
  animation-name: typeLine, cursorBlink;
  animation-duration: 7.2s, .8s;
  animation-timing-function: steps(var(--chars)), steps(1);
  animation-iteration-count: infinite, infinite;
}

.code-lines em {
  color: var(--green);
  font-style: normal;
}

.screen-side {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
}

.screen-side b {
  display: block;
  border-radius: 999px;
  padding: 12px 14px;
  color: var(--white);
  background: var(--black);
  font-size: clamp(13px, 1.4vw, 16px);
}

.screen-side b:nth-child(even) {
  color: var(--ink);
  background: var(--green);
}

.screen-side b {
  animation: tagPulse 4.8s ease-in-out infinite;
}

.screen-side b:nth-child(2) {
  animation-delay: .4s;
}

.screen-side b:nth-child(3) {
  animation-delay: .8s;
}

.screen-side b:nth-child(4) {
  animation-delay: 1.2s;
}

.launch-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line-dark);
}

.launch-strip span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 248, 244, .74);
  font-size: clamp(17px, 2vw, 28px);
  font-weight: 820;
}

.launch-strip span + span {
  border-left: 1px solid var(--line-dark);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 118px;
  animation: tickerLoop 24s linear infinite;
  will-change: transform;
}

.ticker-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-inline: 32px;
}

.ticker span {
  white-space: nowrap;
  font-size: clamp(34px, 6vw, 86px);
  font-weight: 840;
}

.ticker-group span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.section {
  padding: clamp(78px, 12vw, 160px) clamp(18px, 4vw, 58px);
}

.section-head,
.work-intro,
.process-title {
  display: grid;
  grid-template-columns: minmax(140px, .32fr) minmax(0, .68fr);
  gap: 32px;
  margin-bottom: clamp(42px, 7vw, 90px);
}

.section h2,
.work-intro h2,
.process-title h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 42px);
  line-height: 1.02;
  font-weight: 820;
  letter-spacing: 0;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-line {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(180px, .42fr) minmax(0, .58fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  min-height: 190px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.service-line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s ease;
}

.service-line:hover::before {
  transform: scaleY(1);
}

.service-line span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 780;
  transition: color .25s ease;
}

.service-line h3 {
  margin: 0;
  font-size: clamp(32px, 5vw, 72px);
  line-height: .96;
  font-weight: 820;
  transition: color .25s ease;
}

.service-line p {
  margin: 0;
  max-width: 720px;
  color: #4d4a44;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.55;
  transition: color .25s ease;
}

.service-line:hover span,
.service-line:hover h3,
.service-line:hover p {
  color: var(--white);
}

.services-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
  grid-template-rows: 1fr auto auto;
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  padding: 124px clamp(18px, 4vw, 58px) clamp(28px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    var(--black);
  background-size: 82px 82px, 82px 82px, auto;
}

.services-hero-copy p,
.service-detail-main p:first-child,
.service-method-copy p,
.services-cta p {
  margin: 0 0 18px;
  color: rgba(248, 248, 244, .58);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 760;
  text-transform: uppercase;
}

.services-hero h1 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(58px, 8vw, 122px);
  line-height: .86;
  font-weight: 860;
}

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

.service-tile {
  min-height: clamp(170px, 22vw, 260px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 28px);
  color: var(--white);
  background: #101010;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 248, 244, .42);
  background: #171717;
}

.service-tile span {
  color: var(--green);
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 860;
  line-height: 1;
}

.service-tile strong {
  display: block;
  font-size: clamp(28px, 4.2vw, 62px);
  line-height: .95;
}

.service-tile em {
  color: rgba(248, 248, 244, .56);
  font-size: 15px;
  font-style: normal;
  font-weight: 760;
}

.tile-green {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.tile-green:hover {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.tile-green span,
.tile-green em {
  color: rgba(5, 5, 5, .62);
}

.tile-outline {
  background:
    linear-gradient(135deg, rgba(20, 200, 80, .16), rgba(248, 248, 244, .03));
}

.service-path {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 14px 18px;
}

.service-path span {
  color: rgba(248, 248, 244, .72);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 780;
  text-transform: uppercase;
}

.service-path i {
  display: block;
  height: 1px;
  background: rgba(248, 248, 244, .2);
}

.services-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line-dark);
}

.services-index a {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 248, 244, .76);
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 820;
  transition: color .22s ease, background .22s ease;
}

.services-index a + a {
  border-left: 1px solid var(--line-dark);
}

.services-index a:hover {
  color: var(--ink);
  background: var(--green);
}

.service-detail {
  display: grid;
  grid-template-columns: 120px minmax(0, .9fr) minmax(320px, .62fr);
  gap: clamp(22px, 5vw, 76px);
  padding: clamp(70px, 10vw, 140px) clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-detail-dark {
  color: var(--white);
  background: var(--black);
  border-bottom-color: var(--line-dark);
}

.service-detail-no {
  color: var(--green);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 860;
  line-height: 1;
}

.service-detail-main h2 {
  margin: 0 0 clamp(32px, 5vw, 72px);
  font-size: clamp(44px, 8vw, 120px);
  line-height: .92;
  font-weight: 850;
}

.service-detail-main strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 16px;
}

.service-detail-main p:not(:first-child),
.service-detail-side li,
.method-card p {
  color: #55514a;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.72;
}

.service-detail-dark .service-detail-main p,
.service-detail-dark .service-detail-side li {
  color: rgba(248, 248, 244, .68);
}

.service-detail-side {
  align-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(17, 17, 17, .03);
}

.service-detail-dark .service-detail-side {
  border-color: var(--line-dark);
  background: rgba(248, 248, 244, .04);
}

.service-detail-side h3,
.method-card h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.2vw, 42px);
}

.service-detail-side ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-side li {
  position: relative;
  padding-left: 22px;
}

.service-detail-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.service-method {
  padding: clamp(78px, 12vw, 160px) clamp(18px, 4vw, 58px);
  background: var(--warm);
}

.service-method-copy {
  display: grid;
  grid-template-columns: minmax(140px, .32fr) minmax(0, .68fr);
  gap: 32px;
  margin-bottom: clamp(42px, 7vw, 90px);
}

.service-method-copy p {
  color: var(--muted);
}

.service-method-copy h2,
.services-cta h2 {
  margin: 0;
  font-size: clamp(44px, 7.4vw, 118px);
  line-height: .94;
  font-weight: 820;
}

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

.method-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.method-card span {
  color: var(--green);
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 850;
  line-height: 1;
}

.method-card p {
  margin: 0;
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(82px, 12vw, 150px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background: var(--black);
}

.services-cta p {
  grid-column: 1 / -1;
}

.services-cta .launch-primary {
  min-width: 160px;
}

.products-hero {
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: 124px clamp(18px, 4vw, 58px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    var(--black);
  background-size: 82px 82px, 82px 82px, auto;
}

.products-hero-index em,
.product-entry-top em,
.product-card-top em {
  margin: 0;
  color: rgba(248, 248, 244, .58);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 760;
  text-transform: uppercase;
}

.products-hero-shell {
  display: grid;
  gap: 14px;
}

.product-category-tabs {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 4px;
  background: rgba(248, 248, 244, .035);
}

.product-category-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(248, 248, 244, .68);
  background: transparent;
  font-size: 14px;
  font-weight: 820;
  transition: color .22s ease, background .22s ease;
}

.product-category-tabs button.is-active {
  color: var(--ink);
  background: var(--green);
}

.products-hero-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 200, 80, .16), transparent 32%),
    rgba(248, 248, 244, .035);
}

.products-hero-index article {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 30px);
  transition: background .24s ease, color .24s ease;
}

.products-hero-index article[hidden] {
  display: none !important;
}

.products-hero-index article + article {
  border-left: 1px solid var(--line-dark);
}

.products-hero-index article:nth-child(4) {
  border-left: 0;
  border-top: 1px solid var(--line-dark);
}

.products-hero-index.is-filtered article {
  border-left: 0;
  border-top: 0;
}

.products-hero-index.is-filtered article:nth-child(4) {
  border-left: 0;
  border-top: 0;
}

.products-hero-index.is-filtered article.is-filter-second {
  border-left: 1px solid var(--line-dark);
}

.product-index-spacer {
  min-height: 320px;
  border-left: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
}

.products-hero-index.is-filtered .product-index-spacer {
  border-top: 0;
}

.products-hero-index article:hover {
  color: var(--ink);
  background: var(--green);
}

.products-hero-index article:hover span,
.products-hero-index article:hover em,
.products-hero-index article:hover .product-brief {
  color: rgba(5, 5, 5, .66);
}

.products-hero-index article:hover .product-meta b {
  color: rgba(5, 5, 5, .72);
  border-color: rgba(5, 5, 5, .22);
}

.products-hero-index article:hover .product-link {
  color: var(--white);
  background: var(--ink);
}

.products-hero-index span {
  color: var(--green);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 860;
  line-height: 1;
}

.products-hero-index strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.products-hero-index em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  text-transform: none;
}

.product-brief {
  margin: 0;
  max-width: 620px;
  color: rgba(248, 248, 244, .68);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.product-showcase {
  padding: clamp(18px, 4vw, 58px);
  color: var(--white);
  background: var(--black);
}

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

.product-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: auto minmax(190px, 1fr) auto auto auto;
  gap: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(20px, 2.6vw, 32px);
  background: #101010;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 248, 244, .36);
  background: #151515;
}

.product-card-featured {
  grid-column: span 2;
}

.product-card-wide {
  grid-column: span 2;
  min-height: 460px;
}

.product-entry-top,
.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-entry-top span,
.product-card-top span {
  color: var(--green);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 860;
  line-height: 1;
}

.product-entry-top em,
.product-card-top em {
  font-style: normal;
  text-align: right;
}

.product-visual {
  position: relative;
  min-height: 220px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, .12) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px, 42px 42px, auto;
}

.product-visual i {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: var(--black);
}

.product-visual-site i:first-child {
  left: 8%;
  right: 8%;
  top: 14%;
  height: 18%;
}

.product-visual-site i:nth-child(2) {
  left: 8%;
  bottom: 12%;
  width: 34%;
  height: 44%;
  background: var(--green);
}

.product-visual-site i:nth-child(3) {
  right: 8%;
  bottom: 12%;
  width: 46%;
  height: 44%;
}

.product-visual-site i:nth-child(4) {
  right: 12%;
  top: 20%;
  width: 74px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
}

.product-visual-meal {
  background: var(--panel);
}

.product-visual-meal i:first-child {
  left: 14%;
  top: 16%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
}

.product-visual-meal i:nth-child(2) {
  right: 12%;
  top: 18%;
  width: 28%;
  height: 64%;
}

.product-visual-meal i:nth-child(3) {
  left: 14%;
  right: 12%;
  bottom: 12%;
  height: 16%;
}

.product-visual-terminal {
  background: #080808;
  border: 1px solid var(--line-dark);
}

.product-visual-terminal i {
  left: 10%;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
}

.product-visual-terminal i:first-child {
  top: 24%;
  width: 42%;
}

.product-visual-terminal i:nth-child(2) {
  top: 40%;
  width: 70%;
}

.product-visual-terminal i:nth-child(3) {
  top: 56%;
  width: 54%;
}

.product-visual-terminal i:nth-child(4) {
  top: 72%;
  width: 24%;
  background: var(--white);
}

.product-visual-version {
  background:
    linear-gradient(135deg, rgba(20, 200, 80, .28), transparent 58%),
    #111;
}

.product-visual-version i {
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.product-visual-version i:first-child {
  left: 12%;
}

.product-visual-version i:nth-child(2) {
  left: 30%;
  top: 28%;
}

.product-visual-version i:nth-child(3) {
  left: 48%;
}

.product-visual-version i:nth-child(4) {
  left: 66%;
  top: 70%;
}

.product-visual-version i:nth-child(5) {
  left: 84%;
}

.product-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.5vw, 68px);
  line-height: 1;
}

.product-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(248, 248, 244, .68);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-meta b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(248, 248, 244, .72);
  font-size: 13px;
}

.product-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--green);
  font-weight: 820;
}

.about-hero {
  min-height: 92svh;
  display: grid;
  grid-template-rows: auto auto;
  gap: clamp(30px, 4.8vw, 62px);
  align-content: center;
  align-items: center;
  padding: 112px clamp(18px, 4vw, 58px) clamp(48px, 6vw, 86px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    var(--black);
  background-size: 82px 82px, 82px 82px, auto;
}

.about-hero-copy {
  justify-self: center;
  text-align: center;
}

.about-hero-copy p,
.about-section-title p {
  margin: 0 0 18px;
  color: rgba(248, 248, 244, .58);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 760;
  text-transform: uppercase;
}

.about-hero-copy h1 {
  margin: 0;
  max-width: 1180px;
  font-size: clamp(54px, 7.3vw, 112px);
  line-height: .94;
  font-weight: 860;
}

.about-hero-copy h1 span {
  display: block;
}

.about-hero-dossier {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 200, 80, .18), transparent 42%),
    linear-gradient(90deg, rgba(248, 248, 244, .06) 1px, transparent 1px),
    #101010;
  background-size: auto, 60px 60px, auto;
}

.about-hero-dossier::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: dossierLine 6s ease-in-out infinite;
}

.about-hero-dossier article {
  min-height: 176px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2.4vw, 30px);
}

.about-hero-dossier article + article {
  border-left: 1px solid var(--line-dark);
}

.about-hero-dossier span {
  color: var(--green);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 850;
  line-height: 1;
}

.about-hero-dossier strong {
  color: var(--white);
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.08;
}

.about-hero-dossier em {
  color: rgba(248, 248, 244, .52);
  font-style: normal;
  font-weight: 720;
}

@keyframes dossierLine {
  0%, 100% {
    transform: translateX(-34%);
    opacity: .28;
  }
  50% {
    transform: translateX(34%);
    opacity: .7;
  }
}

.about-principles,
.about-company,
.about-workflow {
  padding: clamp(28px, 12vw, 60px) clamp(18px, 4vw, 58px);
  background: var(--white);
}

.about-band-light {
  background: var(--white);
}

.about-band-dark {
  background: var(--black);
}

.about-workflow.about-band-dark {
  color: var(--white);
}

.about-section-title {
  display: grid;
  grid-template-columns: minmax(140px, .32fr) minmax(0, .68fr);
  gap: 32px;
  margin-bottom: clamp(42px, 7vw, 90px);
}

.about-section-title p {
  color: var(--muted);
}

.about-section-title h2 {
  margin: 0;
  font-size: clamp(42px, 7.4vw, 118px);
  line-height: .94;
  font-weight: 820;
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(320px, .42fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--warm);
}

.company-copy {
  min-height: clamp(420px, 42vw, 620px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 56px);
}

.company-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 780;
  text-transform: uppercase;
}

.company-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 112px);
  line-height: .92;
  font-weight: 840;
}

.company-copy strong {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.14;
  font-weight: 780;
}

.company-copy span {
  max-width: 720px;
  color: rgba(5, 5, 5, .66);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.72;
  font-weight: 680;
}

.company-notes {
  display: grid;
  border-left: 1px solid var(--line);
  background: var(--white);
}

.company-notes article {
  min-height: 33.333%;
  display: grid;
  grid-template-columns: minmax(92px, .28fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-content: center;
  padding: clamp(22px, 3.2vw, 38px);
}

.company-notes article + article {
  border-top: 1px solid var(--line);
}

.company-notes span {
  color: var(--green);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 850;
  line-height: 1;
}

.company-notes strong,
.company-notes em {
  grid-column: 2;
}

.company-notes strong {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.1;
}

.company-notes em {
  color: var(--muted);
  font-style: normal;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  font-weight: 760;
}

.about-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(78px, 12vw, 160px) clamp(18px, 4vw, 58px);
}

.mission-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3.4vw, 42px);
  background: var(--black);
  color: var(--white);
}

.mission-card:nth-child(2) {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.mission-card span {
  color: rgba(248, 248, 244, .58);
  font-weight: 800;
  text-transform: uppercase;
}

.mission-card:nth-child(2) span {
  color: rgba(5, 5, 5, .58);
}

.mission-card h2 {
  margin: auto 0 20px;
  font-size: clamp(48px, 8vw, 116px);
  line-height: .88;
}

.mission-card p {
  margin: 0;
  max-width: 680px;
  color: rgba(248, 248, 244, .7);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.62;
}

.mission-card:nth-child(2) p {
  color: rgba(5, 5, 5, .72);
}

.about-band-dark .mission-card {
  border-color: var(--line-dark);
  background: #101010;
}

.about-band-dark .mission-card:nth-child(2) {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

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

.principle-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}

.principle-card span {
  color: var(--green);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 860;
  line-height: 1;
}

.principle-card h3 {
  margin: auto 0 16px;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1;
}

.principle-card p {
  margin: 0;
  color: #55514a;
  font-size: 17px;
  line-height: 1.72;
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.workflow-rail div {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 32px);
}

.workflow-rail div + div {
  border-left: 1px solid var(--line);
}

.workflow-rail span {
  color: var(--green);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 850;
}

.workflow-rail strong {
  font-size: clamp(28px, 3.8vw, 52px);
}

.workflow-rail em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.about-workflow.about-band-dark .about-section-title p {
  color: rgba(248, 248, 244, .58);
}

.about-workflow.about-band-dark .workflow-rail {
  border-color: var(--line-dark);
  background: #101010;
}

.about-workflow.about-band-dark .workflow-rail div + div {
  border-left-color: var(--line-dark);
}

.about-workflow.about-band-dark .workflow-rail em {
  color: rgba(248, 248, 244, .58);
}

.about-cta {
  background: var(--warm);
  color: var(--ink);
}

.about-cta p {
  color: var(--muted);
}

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

.work .work-intro p {
  color: rgba(248, 248, 244, .58);
}

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

.work-card {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(18px, 2.8vw, 34px);
  background: #101010;
  transition: transform .25s ease, background .25s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  background: #181818;
}

.work-card h3 {
  margin: 18px 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.work-card p {
  margin: 0;
  color: rgba(248, 248, 244, .7);
  font-size: 17px;
  line-height: 1.7;
}

.work-visual {
  position: relative;
  height: clamp(300px, 22vw, 380px);
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.visual-one {
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #f6f0df, #c8ff4a);
}

.site-mock {
  width: min(100%, 420px);
  min-height: 218px;
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  padding: 16px;
  color: var(--ink);
  background: rgba(248, 248, 244, .92);
  box-shadow: 0 22px 50px rgba(17, 17, 17, .16);
}

.site-bar {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(17, 17, 17, .12);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.site-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 17, 17, .22);
}

.site-bar i:nth-child(2) {
  background: var(--green);
}

.site-bar span {
  margin-left: 6px;
}

.site-mock strong {
  max-width: 260px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.site-mock p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.site-search {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(248, 248, 244, .68);
  background: var(--black);
  font-size: 13px;
  font-weight: 760;
}

.site-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-tags span {
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 820;
}

.visual-two {
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, .06) 1px, transparent 1px),
    #ece6d8;
  background-size: 34px 34px;
}

.phone-mock {
  width: min(220px, 86%);
  min-height: 238px;
  display: grid;
  gap: 10px;
  align-content: start;
  border: 8px solid var(--black);
  border-radius: 28px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(17, 17, 17, .2);
}

.phone-head,
.order-row,
.phone-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.phone-head span,
.phone-head b {
  font-size: 11px;
  font-weight: 820;
}

.phone-head b {
  border-radius: 8px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--green);
}

.phone-mock strong {
  margin-top: 6px;
  font-size: 28px;
  line-height: 1;
}

.order-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-radius: 8px;
  padding: 14px;
  color: var(--white);
  background: var(--black);
}

.order-card span,
.order-row span {
  font-size: 12px;
  font-weight: 780;
}

.order-card b {
  color: var(--green);
  font-size: 34px;
  line-height: .9;
}

.order-row {
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 999px;
  padding: 9px 10px;
}

.order-row i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.phone-nav {
  margin-top: 4px;
  justify-content: center;
}

.phone-nav span {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .18);
}

.phone-nav span:nth-child(2) {
  background: var(--green);
}

.visual-three {
  display: grid;
  place-items: stretch center;
  padding: 20px;
  background: #eeeae0;
}

.dashboard-mock {
  width: min(100%, 430px);
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 76px 1fr;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(17, 17, 17, .14);
}

.dashboard-mock aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 16px;
  background: var(--black);
}

.dashboard-mock aside span {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(248, 248, 244, .25);
}

.dashboard-mock aside span:first-child {
  background: var(--green);
}

.dashboard-mock main {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.dash-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dash-title strong {
  font-size: 20px;
  line-height: 1;
}

.dash-title span {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--green);
  font-size: 11px;
  font-weight: 820;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dash-stats b {
  min-height: 54px;
  display: flex;
  align-items: end;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
}

.dash-table {
  display: grid;
  gap: 8px;
}

.dash-table span {
  height: 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .16);
}

.dash-table span:nth-child(2) {
  width: 72%;
  background: var(--green);
}

.dash-table span:nth-child(3) {
  width: 86%;
}

.process {
  background: var(--warm);
}

.process-list {
  list-style: none;
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 6vw, 90px);
  padding: clamp(28px, 5vw, 54px) 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--green);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 850;
  line-height: 1;
}

.process-list h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.5vw, 64px);
  line-height: 1;
}

.process-list p {
  margin: 0;
  max-width: 780px;
  color: #55514a;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.65;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) clamp(18px, 4vw, 58px);
  background: var(--black);
  color: var(--white);
}

.contact-marquee {
  position: absolute;
  left: 0;
  top: 20px;
  width: max-content;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 248, 244, .16);
  font-size: clamp(70px, 14vw, 210px);
  font-weight: 880;
  line-height: .9;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .58fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
}

.contact-copy p {
  color: rgba(248, 248, 244, .58);
}

.contact-qr-card {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: center;
  max-width: 820px;
  margin-top: clamp(36px, 6vw, 82px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(20, 200, 80, .16), rgba(248, 248, 244, .04)),
    #101010;
}

.contact-qr-image {
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
}

.contact-qr-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.contact-qr-copy {
  display: grid;
  gap: 14px;
}

.contact-qr-copy span {
  color: var(--green);
  font-size: 14px;
  font-weight: 820;
}

.contact-qr-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1;
}

.contact-qr-copy p {
  margin: 0;
  color: rgba(248, 248, 244, .66);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.72;
}

.contact-qr-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-qr-copy b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(248, 248, 244, .7);
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

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

.contact-form span {
  color: rgba(248, 248, 244, .66);
  font-size: 14px;
  font-weight: 740;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--white);
  background: transparent;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(248, 248, 244, .36);
}

.contact-form select {
  appearance: none;
  padding-right: 56px;
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 7L9 11.5L13.5 7' stroke='%23f8f8f4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 24px center;
  background-size: 18px 18px;
  background-repeat: no-repeat;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-page {
  min-height: 100svh;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  align-content: start;
  padding: 124px clamp(18px, 4vw, 58px) clamp(56px, 7vw, 96px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248, 248, 244, .055) 1px, transparent 1px),
    var(--black);
  background-size: 82px 82px, 82px 82px, auto;
}

.contact-impact {
  position: relative;
  overflow: hidden;
}

.contact-wordmark {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  top: 82px;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 248, 244, .12);
  font-size: clamp(72px, 17vw, 248px);
  font-weight: 880;
  line-height: .78;
  white-space: nowrap;
  pointer-events: none;
}

.contact-stage,
.contact-map,
.contact-brief-area {
  position: relative;
  z-index: 1;
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .64fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: end;
  min-height: clamp(520px, 70svh, 760px);
}

.contact-command {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  align-content: end;
}

.contact-command p,
.brief-copy p,
.channel-card span {
  margin: 0;
  color: rgba(248, 248, 244, .58);
  font-size: clamp(12px, 1.25vw, 15px);
  font-weight: 820;
  text-transform: uppercase;
}

.contact-command h1 {
  margin: 0;
  max-width: 1060px;
  font-size: clamp(64px, 12vw, 178px);
  line-height: .82;
  font-weight: 880;
}

.contact-command-text {
  max-width: 700px;
  color: rgba(248, 248, 244, .68);
  font-size: clamp(17px, 1.75vw, 24px);
  font-weight: 700;
  line-height: 1.7;
}

.contact-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-command-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.contact-command-actions a:first-child,
.contact-command-actions a:hover {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.contact-channel-wall {
  display: grid;
  gap: 12px;
}

.channel-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(16px, 2.4vw, 28px);
  background:
    linear-gradient(135deg, rgba(20, 200, 80, .14), rgba(248, 248, 244, .035)),
    #101010;
}

.channel-card strong {
  font-size: clamp(24px, 3.2vw, 48px);
  line-height: 1;
}

.channel-card p {
  margin: 0;
  color: rgba(248, 248, 244, .62);
  font-size: 15px;
  line-height: 1.65;
}

.channel-qr {
  grid-template-columns: minmax(116px, 150px) minmax(0, 1fr);
  align-items: end;
}

.channel-qr span {
  grid-column: 1 / -1;
}

.channel-qr div {
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
}

.channel-qr img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.channel-phone {
  background: var(--green);
  color: var(--ink);
}

.channel-phone span,
.channel-phone p {
  color: rgba(5, 5, 5, .62);
}

.channel-address p {
  color: rgba(248, 248, 244, .78);
  font-size: clamp(16px, 1.55vw, 21px);
}

.contact-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.contact-map article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.6vw, 34px);
  background: #101010;
}

.contact-map article + article {
  border-left: 1px solid var(--line-dark);
}

.contact-map span {
  color: var(--green);
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 880;
  line-height: .9;
}

.contact-map strong {
  display: block;
  font-size: clamp(28px, 4vw, 60px);
  line-height: .96;
}

.contact-map p {
  margin: 0;
  color: rgba(248, 248, 244, .62);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.7;
}

.contact-brief-area {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .6fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: stretch;
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(28px, 5vw, 72px);
}

.brief-copy {
  display: grid;
  align-content: start;
  gap: clamp(20px, 3vw, 36px);
}

.brief-copy h2 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(44px, 7vw, 112px);
  line-height: .9;
}

.brief-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brief-copy span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(248, 248, 244, .72);
  font-size: 13px;
  font-weight: 780;
}

.contact-brief-form {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 34px);
  background: #101010;
}

.send-button {
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  margin-top: 8px;
  color: var(--black);
  background: var(--green);
  font-weight: 850;
  transition: transform .2s ease, background .2s ease;
}

.send-button:hover {
  transform: translateY(-3px);
  background: var(--green-soft);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(248, 248, 244, .58);
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 58px);
  color: rgba(248, 248, 244, .62);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

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

.floating-support {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 45;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(248, 248, 244, .14);
  border-radius: 22px;
  padding: 8px;
  background: rgba(5, 5, 5, .58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  transition: width .24s ease, height .24s ease, padding .24s ease, border-radius .24s ease, background .24s ease;
}

.support-toggle {
  position: absolute;
  top: -14px;
  right: -8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(248, 248, 244, .22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(5, 5, 5, .86);
  cursor: pointer;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.support-toggle:hover,
.support-toggle:focus-visible {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
  outline: none;
  transform: scale(1.05);
}

.support-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toggle-minus,
.toggle-plus {
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}

.toggle-plus {
  opacity: 0;
  transform: scale(.5);
}

.support-panel {
  display: grid;
  gap: 8px;
}

.floating-support.is-collapsed {
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  background: rgba(5, 5, 5, .72);
}

.floating-support.is-collapsed .support-panel {
  display: none;
}

.floating-support.is-collapsed .support-toggle {
  position: static;
  width: 100%;
  height: 100%;
  border-color: transparent;
  color: var(--ink);
  background: var(--green);
}

.floating-support.is-collapsed .toggle-minus {
  opacity: 0;
  transform: rotate(90deg) scale(.5);
}

.floating-support.is-collapsed .toggle-plus {
  opacity: 1;
  transform: scale(1);
}

.support-item {
  width: 174px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 8px 10px;
  color: var(--white);
  background: transparent;
  text-align: left;
  transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease;
}

button.support-item {
  font: inherit;
}

.support-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.support-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-copy {
  display: grid;
  gap: 4px;
}

.support-copy span {
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.support-copy strong {
  font-size: 14px;
  font-weight: 820;
  line-height: 1.1;
}

.support-item:hover,
.support-item:focus-visible {
  transform: translateX(-4px);
  color: var(--white);
  background: rgba(248, 248, 244, .08);
  border-color: rgba(248, 248, 244, .14);
  outline: none;
}

.support-item:hover .support-icon,
.support-item:focus-visible .support-icon {
  color: var(--green);
  background: var(--ink);
  transform: scale(.94);
}

.support-phone-wrap {
  position: relative;
}

.support-qr-panel {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 72px;
  width: 196px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 12px;
  color: var(--white);
  background: rgba(5, 5, 5, .92);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.support-phone-panel {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 0;
  min-width: 190px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(5, 5, 5, .92);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.support-item:hover + .support-qr-panel,
.support-item:focus-visible + .support-qr-panel,
.support-qr-panel:hover,
.support-qr-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.support-phone-wrap:hover .support-phone-panel,
.support-phone-wrap:focus-within .support-phone-panel,
.support-phone-panel:hover,
.support-phone-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.support-qr-image {
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
}

.support-qr-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.support-qr-panel p {
  margin: 0;
  color: rgba(248, 248, 244, .72);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
  text-align: center;
}

.support-phone-panel span {
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
}

.support-phone-panel strong {
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

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

.js .reveal {
  opacity: 1;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes tickerLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes heroGrid {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 82px 0, 0 82px, 0 0;
  }
}

@keyframes titleFloat {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes showcaseGlow {
  from {
    transform: translate3d(-4%, -3%, 0) rotate(0deg);
  }

  to {
    transform: translate3d(4%, 3%, 0) rotate(8deg);
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-70px);
  }

  20%,
  80% {
    opacity: 1;
  }

  50% {
    transform: translateY(260px);
  }
}

@keyframes numberPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .72;
    transform: scale(.96);
  }
}

@keyframes codeSweep {
  0%,
  38% {
    transform: translateX(-120%);
  }

  68%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes typeLine {
  0%,
  12% {
    width: 0;
  }

  36%,
  82% {
    width: calc(var(--chars) * 1em);
  }

  100% {
    width: 0;
  }
}

@keyframes cursorBlink {
  0%,
  48% {
    border-right-color: var(--green);
  }

  49%,
  100% {
    border-right-color: transparent;
  }
}

@keyframes panelShift {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(7%);
  }
}

@keyframes panelRise {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8%);
  }
}

@keyframes panelBreathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes tagPulse {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 74px;
  }

  .topbar {
    height: 74px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    padding: 22px 18px 28px;
    background: rgba(248, 248, 244, .98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 30px;
  }

  .menu-open .nav {
    display: flex;
  }

  .launch-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .launch-showcase {
    min-height: 440px;
  }

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

  .launch-strip span:nth-child(3) {
    border-left: 0;
  }

  .launch-strip span:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .section-head,
  .work-intro,
  .process-title,
  .service-method-copy,
  .contact-page-head,
  .contact-page-panel,
  .contact-stage,
  .contact-map,
  .contact-brief-area,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-stage {
    min-height: auto;
  }

  .channel-qr,
  .contact-brief-area {
    align-items: stretch;
  }

  .contact-map article + article {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .services-hero,
  .service-detail,
  .services-cta,
  .about-hero,
  .products-hero {
    grid-template-columns: 1fr;
  }

  .services-hero,
  .about-hero,
  .products-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .services-index,
  .method-grid,
  .principle-grid,
  .about-hero-dossier,
  .company-card,
  .about-mission,
  .workflow-rail {
    grid-template-columns: 1fr;
  }

  .about-section-title {
    grid-template-columns: 1fr;
  }

  .workflow-rail div + div,
  .about-hero-dossier article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-hero-dossier article + article {
    border-top-color: var(--line-dark);
  }

  .company-notes {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .services-index a + a {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .service-line {
    grid-template-columns: 64px 1fr;
    align-items: start;
  }

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

  .service-detail-side {
    align-self: stretch;
  }

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

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

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

  .products-hero-index article:nth-child(3) {
    border-left: 0;
  }

  .products-hero-index article:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .product-index-spacer {
    display: none;
  }

  .product-card-featured,
  .product-card-wide {
    grid-column: auto;
  }

  .work-card {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .launch-copy h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .launch-actions {
    display: grid;
  }

  .launch-showcase {
    min-height: 360px;
  }

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

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

  .ticker-track {
    min-height: 84px;
  }

  .service-line {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .contact-qr-card {
    grid-template-columns: 1fr;
  }

  .contact-qr-image {
    max-width: 220px;
  }

  .services-hero h1,
  .about-hero-copy h1,
  .service-detail-main h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .product-card,
  .product-card-wide {
    min-height: auto;
  }

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

  .products-hero-index article + article,
  .products-hero-index article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .product-visual {
    min-height: 190px;
  }

  .about-hero-dossier article {
    min-height: 132px;
  }

  .company-copy {
    min-height: auto;
    gap: 28px;
  }

  .company-notes article {
    grid-template-columns: 1fr;
  }

  .company-notes strong,
  .company-notes em {
    grid-column: auto;
  }

  .about-hero-dossier article + article {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .mission-card {
    min-height: 320px;
  }

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

  .service-tile {
    min-height: 132px;
  }

  .service-path {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .service-path i {
    display: none;
  }

  .service-detail {
    gap: 18px;
  }

  .service-line p {
    grid-column: auto;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-command h1 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .contact-wordmark {
    top: 88px;
  }

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

  .channel-qr div {
    max-width: 210px;
  }

  .contact-map article {
    min-height: 210px;
  }

  .brief-copy h2 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .floating-support {
    left: 0;
    right: 0;
    bottom: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  }

  .support-toggle {
    display: none;
  }

  .support-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .floating-support.is-collapsed {
    left: auto;
    right: 12px;
    width: 54px;
    height: 54px;
  }

  .support-item {
    width: auto;
    min-height: 48px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    padding: 8px 10px;
    text-align: center;
  }

  .support-icon {
    width: 34px;
    height: 34px;
  }

  .support-icon svg {
    width: 18px;
    height: 18px;
  }

  .support-copy {
    gap: 2px;
  }

  .support-copy span {
    display: none;
  }

  .support-copy strong {
    font-size: 12px;
  }

  .support-qr-panel {
    right: 50%;
    bottom: calc(100% + 10px);
    width: min(220px, calc(100vw - 48px));
    transform: translate(50%, 10px);
  }

  .support-phone-panel {
    right: 0;
    bottom: calc(100% + 10px);
    min-width: min(210px, calc(100vw - 48px));
    transform: translateY(10px);
  }

  .support-item:hover + .support-qr-panel,
  .support-item:focus-visible + .support-qr-panel,
  .support-qr-panel:hover {
    transform: translate(50%, 0);
  }

  .support-phone-wrap:hover .support-phone-panel,
  .support-phone-wrap:focus-within .support-phone-panel,
  .support-phone-panel:hover {
    transform: translateY(0);
  }

  .footer {
    flex-direction: column;
  }
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .scan-line {
    display: none;
  }
}
