:root {
  --bg: #0b0a09;
  --bg-elevated: #141210;
  --fg: #f6f1e8;
  --muted: #9c958a;
  --line: rgba(246, 241, 232, 0.1);
  --accent: #d4b483;
  --accent-soft: rgba(212, 180, 131, 0.18);
  --accent-strong: #e8c99a;
  --ember: #c45c3a;
  --sage: #7f9a8c;
  --radius: 18px;
  --header-h: 72px;
  --page-pad: max(clamp(1.25rem, 4vw, 3.5rem), calc((100vw - 1600px) / 2));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

::selection {
  background: var(--accent);
  color: #1a1612;
}

/* Cursor */
.cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor__dot,
.cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor__dot {
  width: 6px;
  height: 6px;
  background: #fff;
}

.cursor__ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s;
}

body.cursor-view .cursor__ring {
  width: 84px;
  height: 84px;
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/* Noise + ambient glow */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow--1 {
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(212, 180, 131, 0.35), transparent 70%);
}

.glow--2 {
  bottom: 10%;
  left: -12%;
  background: radial-gradient(circle, rgba(196, 92, 58, 0.22), transparent 70%);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #080706;
  display: grid;
  place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  width: min(320px, 80vw);
  text-align: center;
}

.preloader__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.preloader__bar {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-bottom: 1rem;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--ember));
  transition: width 0.1s linear;
}

.preloader__count {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.18em;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(11, 10, 9, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  z-index: 2;
}

.logo__mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent) 45%, var(--ember));
  box-shadow: 0 0 18px rgba(212, 180, 131, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.nav a {
  font-size: 0.84rem;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

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

.nav a:hover::after {
  width: 100%;
}

.nav__cta {
  color: var(--fg) !important;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  border-color: rgba(212, 180, 131, 0.45);
  background: var(--accent-soft);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  position: relative;
  z-index: 2;
}

.menu-btn span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), top 0.35s;
}

.menu-btn span:first-child { top: 17px; }
.menu-btn span:last-child { top: 25px; }

.menu-btn.is-open span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-btn.is-open span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 7, 6, 0.96);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 2rem) var(--page-pad) 2.5rem;
  z-index: 1;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 12s ease-in-out infinite;
}

.hero__orb--a {
  width: min(58vw, 680px);
  height: min(58vw, 680px);
  top: 8%;
  right: -8%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 236, 205, 0.55), transparent 28%),
    radial-gradient(circle at 55% 45%, rgba(212, 180, 131, 0.35), transparent 55%),
    radial-gradient(circle at 50% 60%, rgba(196, 92, 58, 0.28), transparent 70%);
}

.hero__orb--b {
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  bottom: 12%;
  left: 5%;
  background: radial-gradient(circle, rgba(127, 154, 140, 0.28), transparent 70%);
  animation-delay: -4s;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 241, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 232, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.7;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-2%, 3%, 0) scale(1.05); }
}

.hero__content {
  max-width: 1100px;
  margin-bottom: clamp(3rem, 8vh, 6rem);
}

.hero__eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 22vw, 15rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  margin-bottom: 1.75rem;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

body.is-ready .title-line > span {
  animation: rise 1.15s var(--ease) 0.15s forwards;
}

@keyframes rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero__lead {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 560;
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent) 45%, #b88955);
  color: #1a140e;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 10px 40px rgba(212, 180, 131, 0.25);
}

.btn--primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 14px 50px rgba(212, 180, 131, 0.4);
}

.btn--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg);
}

.btn--ghost:hover {
  border-color: rgba(212, 180, 131, 0.4);
  background: var(--accent-soft);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 980px;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.hero__stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero__scroll {
  position: absolute;
  right: var(--page-pad);
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  padding: 1.15rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-duration, 28s) linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee__group i {
  color: var(--accent);
  font-style: normal;
}

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

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vh, 8.5rem) var(--page-pad);
}

.section__head {
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
  max-width: 760px;
}

.section__label {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

/* Work */
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.work__item:nth-child(1) { grid-column: 1 / 8; }
.work__item:nth-child(2) { grid-column: 8 / 13; }
.work__item:nth-child(3) { grid-column: 1 / 6; }
.work__item:nth-child(4) { grid-column: 6 / 13; }

.work__link {
  display: block;
}

.work__media {
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  border-radius: var(--radius);
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.work__item:nth-child(2) .work__media,
.work__item:nth-child(3) .work__media {
  aspect-ratio: 4 / 5;
}

.work__visual {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: transform 1s var(--ease);
  background-size: cover;
  background-position: center;
}

.work__visual--1 {
  background:
    linear-gradient(145deg, rgba(11, 10, 9, 0.15), rgba(11, 10, 9, 0.55)),
    radial-gradient(circle at 70% 20%, rgba(232, 201, 154, 0.55), transparent 35%),
    linear-gradient(160deg, #1c2a3a, #0e171f 40%, #243447);
}

.work__visual--2 {
  background:
    linear-gradient(160deg, rgba(11, 10, 9, 0.2), rgba(11, 10, 9, 0.6)),
    radial-gradient(circle at 30% 70%, rgba(196, 92, 58, 0.45), transparent 40%),
    linear-gradient(180deg, #3a221c, #120d0b);
}

.work__visual--3 {
  background:
    linear-gradient(135deg, rgba(11, 10, 9, 0.1), rgba(11, 10, 9, 0.55)),
    radial-gradient(circle at 60% 40%, rgba(127, 154, 140, 0.45), transparent 42%),
    linear-gradient(200deg, #1a2822, #0c1210);
}

.work__visual--4 {
  background:
    linear-gradient(150deg, rgba(11, 10, 9, 0.15), rgba(11, 10, 9, 0.65)),
    radial-gradient(circle at 40% 30%, rgba(212, 180, 131, 0.4), transparent 38%),
    linear-gradient(210deg, #2a241c, #12100c);
}

.work__visual::after {
  display: none;
}

.mockup {
  position: absolute;
  inset: 7%;
  overflow: hidden;
  opacity: 0;
  transform: translateX(5%) scale(0.985);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: clamp(8px, 1.5cqw, 16px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.mockup.is-active {
  z-index: 2;
  opacity: 1;
  transform: none;
}

.prototype__pager {
  position: absolute;
  z-index: 4;
  right: 9%;
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(8, 10, 10, 0.52);
  backdrop-filter: blur(12px);
}

.prototype__pager span {
  width: 14px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.prototype__pager span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent-strong);
  transform: scaleX(0);
  transform-origin: left;
}

.prototype__pager span.is-active::after {
  animation: prototypeProgress var(--prototype-speed, 4.8s) linear forwards;
}

.prototype__pager b {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.7);
  font: 500 7px var(--font-body);
  letter-spacing: 0.08em;
}

@keyframes prototypeProgress {
  to { transform: scaleX(1); }
}

.mockup__top {
  display: flex;
  justify-content: space-between;
  padding: 2.5cqw 3cqw;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
  font-size: clamp(7px, 1.25cqw, 12px);
  letter-spacing: 0.12em;
}

.mockup__top i {
  color: #a8d6ad;
  font-style: normal;
}

.mockup--finance {
  background: linear-gradient(145deg, rgba(12, 22, 32, 0.94), rgba(25, 43, 57, 0.82));
}

.finance__value {
  position: relative;
  padding: 4cqw 3cqw 1cqw;
}

.finance__value small {
  display: block;
  color: rgba(246, 241, 232, 0.5);
  font-size: clamp(7px, 1.3cqw, 13px);
}

.finance__value strong {
  display: inline-block;
  margin-top: 0.4cqw;
  font: 600 clamp(20px, 5cqw, 54px) var(--font-display);
  letter-spacing: -0.05em;
}

.finance__value span {
  margin-left: 1.5cqw;
  color: #a8d6ad;
  font-size: clamp(8px, 1.4cqw, 14px);
}

.finance__chart {
  position: absolute;
  inset: auto 3cqw 8% 3cqw;
  height: 40%;
}

.finance__chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.finance__chart path {
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.finance__chart .area {
  fill: rgba(232, 201, 154, 0.12);
  stroke: none;
}

.finance__legend {
  position: absolute;
  inset: auto 3cqw 2.5% 3cqw;
  display: flex;
  justify-content: space-between;
  color: rgba(246, 241, 232, 0.35);
  font-size: clamp(6px, 1cqw, 10px);
}

.prototype__heading {
  padding: 3.5cqw 3cqw 2cqw;
}

.prototype__heading small {
  display: block;
  color: rgba(246, 241, 232, 0.42);
  font-size: clamp(6px, 1cqw, 10px);
  letter-spacing: 0.14em;
}

.prototype__heading strong {
  display: block;
  margin-top: 0.5cqw;
  font: 600 clamp(16px, 3.5cqw, 38px) var(--font-display);
  letter-spacing: -0.04em;
}

.prototype__table {
  padding: 0 3cqw;
}

.prototype__table > span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.7cqw;
  padding: 1.8cqw 0;
  border-top: 1px solid rgba(246, 241, 232, 0.1);
}

.prototype__table > span > i {
  display: grid;
  place-items: center;
  width: 4cqw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.08);
  color: var(--accent-strong);
  font: 500 clamp(6px, 1cqw, 9px) var(--font-body);
}

.prototype__table b {
  font-size: clamp(7px, 1.3cqw, 12px);
}

.prototype__table b small {
  display: block;
  color: rgba(246, 241, 232, 0.4);
  font-size: 0.8em;
  font-weight: 400;
}

.prototype__table em {
  font-size: clamp(7px, 1.3cqw, 12px);
  font-style: normal;
}

.prototype__table .positive {
  color: #a8d6ad;
}

.bank-card {
  position: relative;
  width: 46%;
  aspect-ratio: 1.58;
  margin: 1cqw 0 0 3cqw;
  padding: 2.2cqw;
  border-radius: 1.5cqw;
  background: radial-gradient(circle at 90% 0%, rgba(255,255,255,.25), transparent 35%), linear-gradient(145deg, #d7b781, #85663e);
  color: #18130e;
  box-shadow: 10px 18px 40px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
}

.bank-card span {
  font: 700 clamp(7px, 1.5cqw, 13px)/1 var(--font-display);
}

.bank-card b {
  position: absolute;
  left: 2.2cqw;
  bottom: 2cqw;
  font-size: clamp(7px, 1.4cqw, 12px);
}

.bank-card i {
  position: absolute;
  right: 2cqw;
  bottom: 1.8cqw;
  font: 700 clamp(8px, 1.6cqw, 14px) var(--font-display);
}

.card-limit {
  position: absolute;
  top: 42%;
  right: 5%;
  width: 38%;
  padding: 2.5cqw;
  border: 1px solid rgba(246,241,232,.12);
  border-radius: 1.5cqw;
  background: rgba(255,255,255,.035);
}

.card-limit > span {
  color: rgba(246,241,232,.45);
  font-size: clamp(6px, 1cqw, 10px);
}

.card-limit > strong {
  display: block;
  margin: .7cqw 0 2cqw;
  font: 600 clamp(11px, 2.4cqw, 22px) var(--font-display);
}

.card-limit > i {
  display: block;
  height: 3px;
  background: rgba(255,255,255,.1);
}

.card-limit > i b {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--accent-strong);
}

.mockup--shop {
  background: linear-gradient(155deg, #b56243, #48271e);
}

.shop__nav,
.corporate__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.2cqw;
  font-size: clamp(6px, 1.8cqw, 11px);
  letter-spacing: 0.12em;
}

.shop__nav strong {
  font: 700 clamp(11px, 3.6cqw, 22px) var(--font-display);
}

.shop__product {
  position: absolute;
  top: 16%;
  right: -10%;
  width: 74%;
  aspect-ratio: 0.8;
  border-radius: 48% 52% 45% 55%;
  background: radial-gradient(circle at 36% 30%, #efc4a4 0 8%, #a65038 35%, #301915 72%);
  box-shadow: -18px 22px 60px rgba(29, 10, 6, 0.45);
  transform: rotate(12deg);
}

.shop__product::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 231, 214, 0.22);
  border-radius: inherit;
}

.shop__product b {
  position: absolute;
  right: 22%;
  bottom: 20%;
  font: 500 clamp(16px, 7cqw, 44px) var(--font-display);
}

.shop__copy {
  position: absolute;
  left: 7%;
  bottom: 7%;
  z-index: 1;
}

.shop__copy small,
.shop__copy span {
  display: block;
  font-size: clamp(6px, 1.6cqw, 10px);
  letter-spacing: 0.12em;
}

.shop__copy strong {
  display: block;
  margin: 1.2cqw 0 3cqw;
  font: 600 clamp(18px, 7cqw, 44px)/0.95 var(--font-display);
  letter-spacing: -0.05em;
}

.shop--catalog {
  background: #d9c2a6;
  color: #241712;
}

.catalog__title {
  padding: 4cqw 3.2cqw 2cqw;
}

.catalog__title small {
  font-size: clamp(6px, 1.3cqw, 9px);
  letter-spacing: 0.12em;
}

.catalog__title strong {
  display: block;
  margin-top: 1cqw;
  font: 600 clamp(18px, 6.5cqw, 42px)/0.9 var(--font-display);
  letter-spacing: -0.055em;
}

.catalog__grid {
  position: absolute;
  left: 3.2cqw;
  right: 3.2cqw;
  bottom: 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2cqw;
  height: 40%;
}

.catalog__grid i {
  display: block;
  background-color: #a87e62;
  background-image: radial-gradient(ellipse at 50% 55%, #3c241c 0 16%, transparent 17%);
}

.catalog__grid i:nth-child(2) { background-color: #b4a68f; background-image: radial-gradient(ellipse at 50% 45%, #e6d6bc 0 20%, transparent 21%); }
.catalog__grid i:nth-child(3) { background-color: #6f675e; background-image: radial-gradient(ellipse at 55% 50%, #c8b59e 0 17%, transparent 18%); }
.catalog__grid i:nth-child(4) { background-color: #b76a4a; background-image: radial-gradient(ellipse at 45% 48%, #4c2920 0 19%, transparent 20%); }

.catalog__meta {
  position: absolute;
  left: 3.2cqw;
  right: 3.2cqw;
  bottom: 2.5%;
  display: flex;
  justify-content: space-between;
  font-size: clamp(6px, 1.2cqw, 9px);
}

.shop--detail {
  background: #2b211d;
}

.detail__object {
  position: absolute;
  left: -8%;
  bottom: -12%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 35%, #f0cfad 0 4%, #9b5d43 18%, #311d18 48%, #130d0b 68%);
  box-shadow: 0 0 70px rgba(198, 112, 77, 0.28);
}

.detail__object::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  left: 40%;
  top: -42%;
  border: 1px solid rgba(236,211,188,.3);
  border-radius: 50%;
}

.detail__copy {
  position: absolute;
  z-index: 1;
  top: 23%;
  right: 7%;
  width: 40%;
}

.detail__copy small {
  font-size: clamp(6px, 1.2cqw, 9px);
  letter-spacing: .12em;
  color: rgba(246,241,232,.5);
}

.detail__copy strong {
  display: block;
  margin: 1.5cqw 0;
  font: 600 clamp(18px, 6cqw, 38px)/.92 var(--font-display);
  letter-spacing: -.05em;
}

.detail__copy p {
  color: rgba(246,241,232,.5);
  font-size: clamp(6px, 1.4cqw, 10px);
  line-height: 1.5;
}

.detail__copy b {
  display: inline-block;
  margin-top: 3cqw;
  padding-bottom: .6cqw;
  border-bottom: 1px solid currentColor;
  font-size: clamp(6px, 1.3cqw, 10px);
}

.mockup--saas {
  display: grid;
  grid-template-columns: 18% 1fr;
  background: #101b17;
}

.mockup--saas aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5cqw;
  padding-top: 4cqw;
  border-right: 1px solid rgba(246, 241, 232, 0.1);
}

.mockup--saas aside strong {
  color: #b6d0c2;
  font: 700 clamp(11px, 3cqw, 19px) var(--font-display);
}

.mockup--saas aside i {
  width: 2.5cqw;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 241, 232, 0.3);
  border-radius: 3px;
}

.saas__content {
  padding: 4cqw;
}

.saas__head {
  display: flex;
  justify-content: space-between;
  font-size: clamp(6px, 1.5cqw, 10px);
}

.saas__head b {
  padding: 1cqw 1.8cqw;
  border-radius: 20px;
  background: #a7c5b5;
  color: #101b17;
}

.saas__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2cqw;
  margin: 5cqw 0 3cqw;
}

.saas__metrics div {
  padding: 3cqw;
  border: 1px solid rgba(246, 241, 232, 0.1);
  border-radius: 1.8cqw;
  background: rgba(255, 255, 255, 0.035);
}

.saas__metrics small {
  display: block;
  color: rgba(246, 241, 232, 0.48);
  font-size: clamp(6px, 1.4cqw, 9px);
}

.saas__metrics strong {
  font: 600 clamp(17px, 5cqw, 32px) var(--font-display);
}

.saas__rows {
  display: grid;
  gap: 1.4cqw;
}

.saas__rows span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5cqw;
  padding: 1.8cqw;
  border-bottom: 1px solid rgba(246, 241, 232, 0.08);
  font-size: clamp(6px, 1.4cqw, 9px);
}

.saas__rows i {
  width: 1.7cqw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sage);
}

.board__content,
.analytics__content {
  padding: 4cqw;
}

.board__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5cqw;
  margin-top: 5cqw;
}

.board__columns > div {
  display: flex;
  flex-direction: column;
  gap: 1.4cqw;
}

.board__columns > div > small {
  color: rgba(246,241,232,.42);
  font-size: clamp(5px, 1.1cqw, 8px);
}

.board__columns > div > span {
  min-height: 8cqw;
  padding: 1.8cqw;
  border: 1px solid rgba(246,241,232,.1);
  border-radius: 1.2cqw;
  background: rgba(255,255,255,.04);
}

.board__columns span b {
  display: block;
  font-size: clamp(6px, 1.3cqw, 9px);
}

.board__columns span i {
  display: inline-block;
  margin-top: 2cqw;
  padding: .4cqw .8cqw;
  border-radius: 10px;
  background: rgba(167,197,181,.16);
  color: #b8d2c4;
  font-size: clamp(5px, .9cqw, 7px);
  font-style: normal;
}

.analytics__score {
  display: block;
  margin-top: 5cqw;
  font: 600 clamp(28px, 9cqw, 58px)/1 var(--font-display);
  letter-spacing: -.07em;
}

.analytics__score small {
  color: var(--sage);
  font-size: .35em;
}

.analytics__bars {
  display: flex;
  align-items: flex-end;
  gap: 1.3cqw;
  height: 17cqw;
  margin-top: 3cqw;
  border-bottom: 1px solid rgba(246,241,232,.12);
}

.analytics__bars i {
  flex: 1;
  height: 35%;
  border-radius: .5cqw .5cqw 0 0;
  background: linear-gradient(to top, #527061, #a6c5b5);
}

.analytics__bars i:nth-child(2) { height: 54%; }
.analytics__bars i:nth-child(3) { height: 42%; }
.analytics__bars i:nth-child(4) { height: 72%; }
.analytics__bars i:nth-child(5) { height: 58%; }
.analytics__bars i:nth-child(6) { height: 82%; }
.analytics__bars i:nth-child(7) { height: 68%; }
.analytics__bars i:nth-child(8) { height: 94%; }
.analytics__bars i:nth-child(9) { height: 86%; }

.analytics__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 2cqw;
  color: rgba(246,241,232,.42);
  font-size: clamp(5px, 1cqw, 8px);
}

.analytics__foot b {
  display: block;
  color: var(--fg);
  font-size: 1.5em;
}

.mockup--corporate {
  background: #d8d0bf;
  color: #181512;
}

.corporate__nav {
  border-bottom: 1px solid rgba(24, 21, 18, 0.2);
}

.corporate__nav strong {
  font: 700 clamp(9px, 2cqw, 16px) var(--font-display);
}

.mockup--corporate > p {
  padding: 4cqw 3.2cqw;
  font: 700 clamp(20px, 6.3cqw, 70px)/0.82 var(--font-display);
  letter-spacing: -0.065em;
}

.mockup--corporate > p em {
  color: #725b44;
  font-family: Georgia, serif;
  font-weight: 400;
}

.corporate__foot {
  position: absolute;
  left: 3.2cqw;
  right: 3.2cqw;
  bottom: 3cqw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: clamp(6px, 1.2cqw, 11px);
}

.corporate__foot b {
  padding-bottom: 0.5cqw;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.corporate--project {
  background: #b4aa98;
}

.project__image {
  position: absolute;
  left: 3.2cqw;
  right: 3.2cqw;
  top: 17%;
  height: 51%;
  overflow: hidden;
  background: linear-gradient(165deg, #cfc8b8 0 36%, #706c63 37% 58%, #2d2b28 59%);
}

.project__image::before {
  content: "";
  position: absolute;
  left: 35%;
  bottom: 0;
  width: 45%;
  height: 62%;
  background: linear-gradient(120deg, #796e5e 0 48%, #4f493f 49%);
  clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 100%);
  box-shadow: -20px 0 40px rgba(0,0,0,.18);
}

.project__image i {
  position: absolute;
  z-index: 1;
  right: 9%;
  bottom: 0;
  width: 12%;
  height: 28%;
  background: #181614;
}

.project__image span {
  position: absolute;
  z-index: 2;
  left: 3%;
  bottom: 5%;
  color: #f1ede4;
  font: 600 clamp(10px, 2.6cqw, 25px)/.95 var(--font-display);
}

.project__caption {
  position: absolute;
  left: 3.2cqw;
  right: 3.2cqw;
  bottom: 5%;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 3cqw;
  align-items: end;
}

.project__caption span,
.project__caption b {
  font-size: clamp(5px, 1cqw, 9px);
}

.project__caption p {
  max-width: 36ch;
  font-size: clamp(6px, 1.3cqw, 11px);
  line-height: 1.4;
}

.studio__number {
  position: absolute;
  top: 10%;
  right: 2%;
  color: rgba(24,21,18,.08);
  font: 700 clamp(70px, 22cqw, 230px)/1 var(--font-display);
  letter-spacing: -.1em;
}

.studio__copy {
  position: absolute;
  left: 3.2cqw;
  top: 28%;
  z-index: 1;
}

.studio__copy small {
  font-size: clamp(6px, 1.1cqw, 9px);
  letter-spacing: .14em;
}

.studio__copy strong {
  display: block;
  margin: 1.5cqw 0 2cqw;
  font: 600 clamp(18px, 5cqw, 52px)/.95 var(--font-display);
  letter-spacing: -.055em;
}

.studio__copy p {
  max-width: 38ch;
  font-size: clamp(6px, 1.2cqw, 10px);
  color: rgba(24,21,18,.65);
}

.studio__names {
  position: absolute;
  left: 3.2cqw;
  right: 3.2cqw;
  bottom: 5%;
  display: flex;
  gap: 4cqw;
  padding-top: 1.5cqw;
  border-top: 1px solid rgba(24,21,18,.22);
  font-size: clamp(6px, 1.1cqw, 9px);
}

.work__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
}

.work__item:hover .work__visual {
  transform: scale(1.08);
}

.work__item:hover .work__shine {
  transform: translateX(120%);
}

.work__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1rem;
}

.work__info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.work__info p,
.work__year {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Services */
.services__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease), background 0.4s;
  position: relative;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent-soft), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service:hover::before {
  opacity: 1;
}

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

.service__num {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.service__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
  transition: transform 0.4s var(--ease), color 0.4s;
}

.service:hover .service__body h3 {
  color: var(--accent-strong);
  transform: translateX(8px);
}

.service__body p {
  color: var(--muted);
  max-width: 520px;
  font-size: 0.95rem;
}

.service__arrow {
  font-size: 1.4rem;
  color: var(--muted);
  transition: transform 0.4s var(--ease), color 0.4s;
}

.service:hover .service__arrow {
  color: var(--accent);
  transform: translate(4px, -4px);
}

/* Approach */
.approach__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.approach__sticky {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.approach__text {
  margin-top: 1.5rem;
  color: var(--muted);
  max-width: 420px;
  font-size: 1.02rem;
}

.approach__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 50%),
    rgba(20, 18, 16, 0.65);
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.step:hover {
  border-color: rgba(212, 180, 131, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.step__index {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.85rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Clients */
.clients {
  position: relative;
  z-index: 1;
  padding: 0 var(--page-pad) clamp(4rem, 8vh, 6rem);
}

.clients__inner {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.clients__row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0.14em;
  color: rgba(246, 241, 232, 0.38);
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.clients__row span {
  transition: color 0.35s, text-shadow 0.35s;
}

.clients__row span:hover {
  color: var(--accent-strong);
  text-shadow: 0 0 24px rgba(212, 180, 131, 0.35);
}

/* Contact */
.contact {
  padding-top: 0;
}

.contact__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(212, 180, 131, 0.22);
  padding: clamp(2.5rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(212, 180, 131, 0.18), transparent 45%),
    radial-gradient(ellipse at 10% 100%, rgba(196, 92, 58, 0.14), transparent 40%),
    linear-gradient(160deg, #161310, #0d0c0a);
}

.contact__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -40px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 201, 154, 0.35), transparent 70%);
  filter: blur(30px);
  animation: float 10s ease-in-out infinite;
}

.contact__intro,
.brief-form {
  position: relative;
  z-index: 1;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0.75rem 0 1.25rem;
  max-width: 14ch;
}

.contact__text {
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2rem;
}

.contact__email {
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(246, 241, 232, 0.35);
  color: var(--accent-strong);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.contact__email:hover {
  border-color: var(--accent);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.brief-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(246, 241, 232, 0.1);
  border-radius: var(--radius);
  background: rgba(8, 7, 6, 0.5);
  backdrop-filter: blur(18px);
}

.form-field {
  min-width: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(246, 241, 232, 0.56);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: 0;
  outline: 0;
  padding: 0.65rem 0 0.8rem;
  background: transparent;
  color: var(--fg);
  font: 400 0.92rem var(--font-body);
  transition: border-color 0.3s, background 0.3s;
}

.form-field textarea {
  min-height: 90px;
  resize: vertical;
}

.form-field select {
  cursor: pointer;
  color-scheme: dark;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(246, 241, 232, 0.26);
}

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

.form-field input:invalid:not(:placeholder-shown) {
  border-bottom-color: rgba(224, 102, 75, 0.7);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(246, 241, 232, 0.48);
  font-size: 0.7rem;
  line-height: 1.4;
  cursor: pointer;
}

.form-consent input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  accent-color: var(--accent);
}

.form-submit {
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  filter: saturate(0.4);
  opacity: 0.65;
}

.form-status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status.is-success {
  color: #a8d6ad;
}

.form-status.is-error {
  color: #e68d76;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem var(--page-pad) 2rem;
  border-top: 1px solid var(--line);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

body.is-ready .hero .reveal {
  transition-delay: 0.35s;
}

body.is-ready .hero__actions.reveal {
  transition-delay: 0.5s;
}

body.is-ready .hero__meta.reveal {
  transition-delay: 0.65s;
}

/* Responsive */
@media (max-width: 960px) {
  .nav { display: none; }
  .menu-btn { display: inline-block; }

  .work__item:nth-child(n) {
    grid-column: 1 / -1;
  }

  .work__item:nth-child(2) .work__media,
  .work__item:nth-child(3) .work__media {
    aspect-ratio: 16 / 11;
  }

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

  .approach__sticky {
    position: static;
  }

  .service {
    grid-template-columns: 48px 1fr;
  }

  .service__arrow {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

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

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

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
    --radius: 14px;
  }

  .hero {
    padding-bottom: 1.5rem;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__title {
    font-size: clamp(4rem, 24vw, 7rem);
    letter-spacing: -0.07em;
  }

  .hero__content {
    margin-bottom: 2.5rem;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .work__media,
  .work__item:nth-child(2) .work__media,
  .work__item:nth-child(3) .work__media {
    aspect-ratio: 4 / 3;
  }

  .service {
    grid-template-columns: 34px 1fr;
    gap: 0.85rem;
  }

  .contact__card {
    padding-inline: 1.5rem;
  }

  .brief-form {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

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

  .contact__actions .btn {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  :root {
    --page-pad: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .footer__links {
    gap: 0.75rem 1rem;
  }
}

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

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

  .title-line > span,
  .reveal {
    transform: none;
    opacity: 1;
  }
}
