/* ========================================
   #9966 — Живая чёрная сцена (concept-04)
   ======================================== */

:root {
  --black: #050505;
  --text: #F2F2EC;
  --text-soft: #D4D4CE;
  --muted: #A8A8A0;
  --accent: #C8E8FF;
  --accent-dim: rgba(200, 232, 255, 0.12);
  --warm: rgba(255, 210, 170, 0.18);
  --line: rgba(242, 242, 236, 0.1);
  --line-strong: rgba(242, 242, 236, 0.2);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.14);

  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-body: 'Inter', sans-serif;

  --header-h: 64px;
  --scroll-offset: var(--header-h);
  --container: 1360px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

[id][data-section] {
  scroll-margin-top: var(--scroll-offset);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid rgba(200, 232, 255, 0.42);
  outline-offset: 3px;
}

body.is-intro-locked {
  overflow: hidden;
  height: 100vh;
}

body.is-intro-locked .header,
body.is-intro-locked main {
  opacity: 0;
  pointer-events: none;
}

body.is-loaded .header,
body.is-loaded main {
  opacity: 1;
}

body.is-loaded main {
  transition: opacity 0.55s var(--ease) 0.05s;
}

/* ========================================
   INTRO — пиксели, линии, #9966
   ======================================== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: default;
}

.intro.is-out {
  pointer-events: none;
}

.intro.is-out .intro__canvas,
.intro.is-out .intro__center,
.intro.is-out .intro__flare,
.intro.is-out .intro__vignette {
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.intro.is-out {
  background: var(--black);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.intro.is-done {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.4s, opacity 0.4s ease;
}

.intro__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro__center {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 24px;
}

.intro__title {
  font-family: var(--font-mono);
  font-size: clamp(42px, 11vw, 96px);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  color: #F2F2EC;
  opacity: 0;
  transform: scale(0.98);
  filter: blur(6px);
  text-shadow: none;
  transition: opacity 0.2s var(--ease), filter 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
}

.intro__hello {
  display: block;
  min-height: 1.4em;
  margin-top: clamp(18px, 2.2vw, 26px);
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.45vw, 15px);
  letter-spacing: 0.1em;
  color: rgba(242, 242, 236, 0.72);
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease),
    filter 0.22s var(--ease);
}

.intro__hello.is-typing,
.intro__hello.is-complete {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.intro__hello::after {
  content: '';
  display: inline-block;
  width: 0.72em;
  height: 1em;
  margin-left: 0.35em;
  transform: translateY(0.15em);
  background: rgba(200, 232, 255, 0.72);
  animation: introCaret 0.75s steps(1, end) infinite;
}

.intro__hello.is-complete::after {
  opacity: 0.55;
}

@keyframes introCaret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.intro__hash {
  color: #C8E8FF;
  letter-spacing: 0.2em;
}

.intro__num {
  color: #F2F2EC;
  letter-spacing: 0.32em;
}

.intro.is-assembled .intro__title {
  transition: opacity 0.15s var(--ease), filter 0.2s var(--ease), transform 0.2s var(--ease);
}

.intro.is-sharp .intro__title {
  color: #F2F2EC;
  filter: none;
  opacity: 1;
  transform: scale(1);
  letter-spacing: 0.18em;
  transition: opacity 0.25s var(--ease), filter 0.3s var(--ease), transform 0.3s var(--ease);
}

.intro.is-sharp .intro__hash {
  color: #C8E8FF;
}

.intro.is-sharp .intro__num {
  color: #F2F2EC;
}

.intro__flare {
  position: absolute;
  width: 70vmin;
  height: 70vmin;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 232, 255, 0.12) 0%,
    rgba(200, 232, 255, 0.04) 40%,
    transparent 72%
  );
  opacity: 0;
  transform: scale(0.6);
  filter: blur(20px);
  pointer-events: none;
}

.intro.is-sharp .intro__flare {
  opacity: 0;
  animation: none;
}

@keyframes introFlare {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  40% {
    opacity: 0.34;
    transform: scale(1);
  }
  100% {
    opacity: 0.12;
    transform: scale(1.15);
  }
}

.intro__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  opacity: 0.9;
}

.intro.is-out .intro__vignette {
  opacity: 1;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, transparent 0%, var(--black) 75%);
  transition: opacity 0.8s ease, background 0.8s ease;
}

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

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

button, input, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* Grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url('assets/images/texture.jpg');
  background-size: 200px 200px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section {
  position: relative;
  padding: clamp(76px, 10vh, 132px) 0;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.section__tag--light {
  color: rgba(242, 242, 236, 0.55);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.65vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--text);
}

.section__title--light {
  color: var(--text);
}

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

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

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

/* Frame */
.frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
}

.frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.04);
}

.frame--wide img {
  aspect-ratio: 16/9;
}

.frame__mark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.65;
  padding: 6px 10px;
  border: 1px solid rgba(200, 232, 255, 0.2);
  background: rgba(5, 5, 5, 0.5);
  backdrop-filter: blur(8px);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background-color: #050505;
  border-bottom: 1px solid transparent;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    background-color 0.35s ease,
    border-color 0.35s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: #050505;
  pointer-events: none;
}

.header.is-scrolled {
  background-color: rgba(5, 5, 5, 0.94);
  border-bottom-color: var(--line);
}

.header.is-hidden {
  transform: translate3d(0, calc(-1 * var(--header-h)), 0);
  pointer-events: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.header__mark-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.header__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: lowercase;
  color: var(--muted);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.header__link:hover,
.header__link.is-active {
  color: var(--text-soft);
}

.header__link:hover::after,
.header__link.is-active::after {
  width: 100%;
}

.header__link--accent {
  color: rgba(200, 232, 255, 0.86);
  padding: 9px 15px;
  border: 1px solid rgba(200, 232, 255, 0.24);
  background: rgba(200, 232, 255, 0.035);
}

.header__link--accent::after {
  display: none;
}

.header__link--accent:hover,
.header__link--accent.is-active {
  color: var(--accent);
  background: rgba(200, 232, 255, 0.08);
  border-color: rgba(200, 232, 255, 0.46);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 4px;
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger.is-active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.header__burger.is-active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text-soft);
  transition: color 0.3s ease;
}

.mobile-menu__link:hover {
  color: var(--accent);
}

/* ========================================
   HERO — живая чёрная сцена
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--header-h);
  padding-bottom: clamp(32px, 4vh, 52px);
}

.hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__glow--cold {
  width: 55vw;
  height: 55vw;
  top: 15%;
  left: 25%;
  background: radial-gradient(circle, rgba(200, 232, 255, 0.07) 0%, transparent 70%);
}

.hero__glow--warm {
  width: 40vw;
  height: 40vw;
  bottom: 10%;
  right: 10%;
  background: radial-gradient(circle, var(--warm) 0%, transparent 70%);
}

.hero__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero__scene::before,
.hero__scene::after {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
}

.hero__scene::before {
  background:
    radial-gradient(circle at 68% 34%, rgba(200, 232, 255, 0.13), transparent 18%),
    radial-gradient(circle at 78% 64%, rgba(255, 210, 170, 0.08), transparent 21%),
    radial-gradient(circle at 30% 72%, rgba(200, 232, 255, 0.06), transparent 24%);
  filter: blur(20px);
  opacity: 0.86;
}

.hero__scene::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.28) 42%, rgba(5, 5, 5, 0.72) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(5, 5, 5, 0.34) 64%, rgba(5, 5, 5, 0.9) 100%);
  z-index: 6;
}

.scene__pixels {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  mix-blend-mode: screen;
  z-index: 2;
}

.scene__layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.scene__layer--back {
  z-index: 1;
}

.scene__layer--mid {
  z-index: 2;
}

.scene__layer--core {
  z-index: 3;
}

.scene__layer--front {
  z-index: 4;
}

.scene__grid {
  position: absolute;
  inset: -18% -8%;
  background-image:
    linear-gradient(rgba(200, 232, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 232, 255, 0.055) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 49.6%, rgba(200, 232, 255, 0.05) 49.8% 50.2%, transparent 50.4%);
  background-size: 54px 54px, 54px 54px, 620px 620px;
  mask-image: radial-gradient(ellipse at 62% 46%, black 0%, rgba(0, 0, 0, 0.78) 42%, transparent 78%);
  opacity: 0.62;
  transform: rotate(-4deg);
}

.scene__fog {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
}

.scene__fog--cold {
  top: 18%;
  right: 22%;
  background: rgba(200, 232, 255, 0.11);
}

.scene__fog--warm {
  right: 2%;
  bottom: 10%;
  background: rgba(255, 210, 170, 0.075);
}

.scene__shard,
.scene__trace,
.scene__cut,
.scene__constellation {
  position: absolute;
  display: block;
  pointer-events: none;
}

.scene__shard {
  border: 1px solid rgba(200, 232, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(200, 232, 255, 0.13), rgba(200, 232, 255, 0.02) 48%, rgba(255, 210, 170, 0.06));
  clip-path: polygon(18% 0, 100% 26%, 72% 100%, 0 68%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.5;
  animation: shardDrift 16s ease-in-out infinite;
}

.scene__shard--01 {
  width: 76px;
  height: 62px;
  top: 28%;
  left: 49%;
  transform: rotate(18deg);
}

.scene__shard--02 {
  width: 112px;
  height: 82px;
  top: 38%;
  right: 18%;
  opacity: 0.32;
  transform: rotate(-24deg);
  animation-delay: -5s;
}

.scene__shard--03 {
  width: 58px;
  height: 52px;
  bottom: 24%;
  left: 57%;
  opacity: 0.28;
  transform: rotate(42deg);
  animation-delay: -9s;
}

.scene__shard--04 {
  width: 88px;
  height: 68px;
  top: 19%;
  right: 34%;
  opacity: 0.22;
  transform: rotate(-8deg);
  animation-delay: -2s;
}

.scene__trace {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(200, 232, 255, 0.28), transparent);
  opacity: 0.58;
}

.scene__trace::before,
.scene__trace::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: -2px;
  border-radius: 50%;
  background: rgba(200, 232, 255, 0.45);
}

.scene__trace::before { left: 18%; }
.scene__trace::after { right: 8%; }

.scene__trace--01 {
  width: 44vw;
  top: 34%;
  left: 39%;
  transform: rotate(-10deg);
}

.scene__trace--02 {
  width: 38vw;
  top: 58%;
  left: 47%;
  transform: rotate(16deg);
  opacity: 0.36;
}

.scene__trace--03 {
  width: 28vw;
  bottom: 22%;
  right: 9%;
  transform: rotate(-4deg);
  opacity: 0.28;
}

.scene__brand {
  position: absolute;
  right: clamp(28px, 7vw, 120px);
  bottom: clamp(96px, 14vh, 150px);
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.35vw, 16px);
  letter-spacing: 0.16em;
  color: rgba(200, 232, 255, 0.74);
  text-shadow: 0 0 24px rgba(200, 232, 255, 0.16);
  opacity: 0.78;
}

.scene__constellation {
  width: 260px;
  height: 160px;
  border-top: 1px solid rgba(200, 232, 255, 0.08);
  border-left: 1px solid rgba(200, 232, 255, 0.06);
  opacity: 0.5;
}

.scene__constellation::before,
.scene__constellation::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200, 232, 255, 0.5);
  box-shadow:
    42px 24px 0 rgba(200, 232, 255, 0.26),
    96px 70px 0 rgba(200, 232, 255, 0.34),
    174px 38px 0 rgba(200, 232, 255, 0.22);
}

.scene__constellation::before {
  top: 28px;
  left: 34px;
}

.scene__constellation::after {
  right: 42px;
  bottom: 32px;
}

.scene__constellation--01 {
  top: 22%;
  left: 42%;
  transform: rotate(4deg);
}

.scene__constellation--02 {
  right: 14%;
  bottom: 18%;
  transform: rotate(-12deg);
  opacity: 0.26;
}

.scene__cut {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 244, 235, 0.72), rgba(200, 232, 255, 0.2), transparent);
  box-shadow: 0 0 18px rgba(200, 232, 255, 0.16);
  opacity: 0.54;
}

.scene__cut--01 {
  width: 32vw;
  top: 31%;
  right: 19%;
  transform: rotate(-2deg);
}

.scene__cut--02 {
  width: 18vw;
  top: 49%;
  right: 35%;
  transform: rotate(5deg);
  opacity: 0.4;
}

.scene__cut--03 {
  width: 24vw;
  bottom: 27%;
  right: 23%;
  transform: rotate(-7deg);
  opacity: 0.32;
}

/* Hero caption */
.hero__caption {
  position: relative;
  z-index: 5;
  padding: 0 clamp(20px, 4vw, 60px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  transform: translateY(-1.5vh);
}

.hero__section-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.96vw, 13px);
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: rgba(168, 168, 160, 0.88);
  margin-bottom: 18px;
}

.hero__phrase {
  font-family: var(--font-display);
  font-size: clamp(37px, 4.1vw, 62px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 980px;
  color: var(--text);
  margin-bottom: 22px;
}

.hero__phrase span {
  display: block;
}

.hero__sub {
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.5;
  color: rgba(242, 242, 236, 0.76);
  max-width: 640px;
  margin-bottom: 26px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 22px;
  margin-bottom: 18px;
}

.hero__cta,
.format-layer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(200, 232, 255, 0.36);
  background: rgba(200, 232, 255, 0.07);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transition: transform 0.28s var(--ease), border-color 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.hero__cta:hover,
.format-layer__cta:hover {
  transform: translateY(-1px);
  color: var(--black);
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(200, 232, 255, 0.1);
}

.hero__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: lowercase;
  color: rgba(212, 212, 206, 0.68);
  border-bottom: 1px solid rgba(200, 232, 255, 0.24);
  transition: color 0.28s ease, border-color 0.28s ease;
}

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

.hero__proof {
  max-width: 610px;
  margin-bottom: 0;
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.86vw, 12px);
  line-height: 1.62;
  letter-spacing: 0.055em;
  color: rgba(212, 212, 206, 0.56);
}

.hero__scroll {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right: clamp(20px, 4vw, 60px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--muted);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.34s ease, transform 0.34s var(--ease), color 0.28s ease;
}

.hero__scroll.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to top, currentColor 10%, transparent 100%);
  transform-origin: bottom center;
  animation: scrollPulseUp 2.4s ease-in-out infinite;
}

@keyframes scrollPulseUp {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes shardDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(7px, -12px) rotate(1deg); }
  66% { transform: translate(-5px, 8px) rotate(-0.6deg); }
}

/* ========================================
   INSIDE
   ======================================== */
.inside {
  border-top: 1px solid var(--line);
  padding: clamp(52px, 6.8vh, 80px) 0 clamp(44px, 5.8vh, 72px);
}

.inside__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.98fr) minmax(400px, 0.74fr);
  grid-template-areas:
    "visual head"
    "visual copy";
  column-gap: clamp(48px, 5.6vw, 88px);
  row-gap: 16px;
  align-items: start;
}

.inside__visual {
  grid-area: visual;
  max-width: 620px;
  margin-top: clamp(36px, 5vh, 54px);
  justify-self: start;
}

.inside__visual .frame {
  background: rgba(242, 242, 236, 0.025);
}

.inside__head {
  grid-area: head;
  max-width: 560px;
}

.inside .section__tag {
  margin-bottom: 16px;
}

.inside .section__title {
  max-width: 560px;
  font-size: clamp(36px, 3.55vw, 52px);
  line-height: 1;
  letter-spacing: -0.032em;
  margin-bottom: 0;
}

.inside__copy {
  grid-area: copy;
  max-width: 560px;
}

.inside__lead {
  font-size: clamp(18px, 1.32vw, 20px);
  line-height: 1.42;
  color: var(--text);
  margin-bottom: 18px;
}

.inside__body {
  font-size: clamp(15px, 1.04vw, 17px);
  line-height: 1.54;
  color: rgba(168, 168, 160, 0.88);
  margin-bottom: 22px;
}

.inside__quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: -0.02em;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  color: var(--text-soft);
  font-style: normal;
}

/* ========================================
   BUILD
   ======================================== */
.build {
  border-top: 1px solid var(--line);
  background: rgba(242, 242, 236, 0.015);
  padding: clamp(54px, 6.8vh, 86px) 0;
}

.build__header {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(380px, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
  margin-bottom: clamp(26px, 3.2vw, 42px);
}

.build__sub {
  font-size: clamp(16px, 1.14vw, 19px);
  line-height: 1.54;
  color: var(--muted);
  max-width: 620px;
  padding-bottom: 8px;
}

.build__decompose {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.build__piece {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line);
  background: rgba(242, 242, 236, 0.02);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.build__piece:hover {
  border-color: var(--line-strong);
  background: rgba(200, 232, 255, 0.035);
}

.build__piece-visual {
  width: 100%;
  aspect-ratio: 16/6.8;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 18px;
  background: rgba(5, 5, 5, 0.4);
}

.build__piece-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.5s var(--ease);
}

.build__piece:hover .build__piece-visual img {
  transform: scale(1.018);
}

.build__piece-body {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
}

.build__piece-num {
  grid-row: 1 / 4;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.build__piece-title {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.05vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}

.build__piece-desc {
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.52;
  color: rgba(168, 168, 160, 0.9);
  max-width: 520px;
  margin-bottom: 18px;
}

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

.build__piece-tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--text-soft);
  padding: 5px 8px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.35);
}

/* ========================================
   WORKS
   ======================================== */
.works {
  border-top: 1px solid var(--line);
  padding: clamp(54px, 6.8vh, 86px) 0 clamp(48px, 6vh, 76px);
}

.works__header {
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(380px, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.works__sub {
  font-size: clamp(16px, 1.14vw, 19px);
  line-height: 1.54;
  color: var(--muted);
  max-width: 620px;
  padding-bottom: 8px;
}

.work {
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  gap: clamp(32px, 4.6vw, 64px);
  align-items: center;
  margin-bottom: clamp(42px, 6.2vh, 68px);
  padding: clamp(18px, 2.4vw, 28px) 0;
  border-bottom: 1px solid rgba(242, 242, 236, 0.06);
}

.work:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.work--02 {
  direction: rtl;
}

.work--02 > * {
  direction: ltr;
}

.work--03 {
  display: block;
}

.work__visual {
  overflow: hidden;
  border: 1px solid var(--line);
}

.work__visual img {
  width: 100%;
  aspect-ratio: 16/8.2;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform 0.6s var(--ease);
}

.work:hover .work__visual img {
  transform: scale(1.02);
}

.work__visual--wide img {
  aspect-ratio: 21/7.8;
}

.work__info {
  padding: clamp(4px, 1vw, 12px) 0;
}

.work__info--full {
  padding-top: 22px;
}

.work__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.work__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.05vw, 46px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--text);
}

.work__desc {
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.52;
  color: rgba(168, 168, 160, 0.9);
  margin-bottom: 20px;
  max-width: 540px;
}

.work__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.work__meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--text-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

/* ========================================
   FORMATS
   ======================================== */
.formats {
  border-top: 1px solid var(--line);
  padding: clamp(54px, 6.8vh, 84px) 0 clamp(46px, 5.8vh, 70px);
}

.formats__header {
  margin-bottom: 22px;
  max-width: 640px;
}

.formats__sub {
  font-size: clamp(16px, 1.14vw, 19px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 680px;
}

.formats__flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.formats__flow li {
  padding: 14px clamp(14px, 1.8vw, 22px);
  border-right: 1px solid var(--line);
}

.formats__flow li:last-child {
  border-right: 0;
}

.formats__flow span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0.85;
}

.formats__flow strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 6px;
}

.formats__flow p {
  font-size: 13px;
  line-height: 1.48;
  color: rgba(168, 168, 160, 0.92);
  max-width: 280px;
}

.formats__layers {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.2vw, 24px);
}

.format-layer {
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) 1.4fr;
  gap: clamp(24px, 3.6vw, 52px);
  align-items: center;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--line);
  background: rgba(242, 242, 236, 0.015);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.format-layer:hover {
  border-color: var(--line-strong);
  background: rgba(200, 232, 255, 0.03);
}

.format-layer--02 {
  grid-template-columns: 1.4fr minmax(200px, 1.1fr);
}

.format-layer--02 .format-layer__visual {
  order: 2;
}

.format-layer--02 .format-layer__body {
  order: 1;
}

.format-layer__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.format-layer__visual img {
  width: 100%;
  aspect-ratio: 16/8.2;
  object-fit: cover;
  filter: brightness(0.86);
  transition: transform 0.6s var(--ease);
}

.format-layer:hover .format-layer__visual img {
  transform: scale(1.014);
}

.format-layer--01 .format-layer__visual img { aspect-ratio: 16/8.2; max-height: 260px; }
.format-layer--02 .format-layer__visual img { aspect-ratio: 16/7.2; max-height: 240px; }
.format-layer--03 .format-layer__visual img { aspect-ratio: 16/7.2; max-height: 240px; }

.format-layer__frame-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 4px 8px;
  border: 1px solid rgba(200, 232, 255, 0.2);
  background: rgba(5, 5, 5, 0.65);
}

.format-layer__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.78vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
  color: var(--text);
}

.format-layer--02 .format-layer__name {
  color: var(--text);
}

.format-layer__desc {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
  color: rgba(168, 168, 160, 0.9);
  margin-bottom: 18px;
  max-width: 600px;
}

.format-layer__list li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.format-layer__list li:last-child {
  border-bottom: none;
}

.format-layer__cta {
  margin-top: 18px;
  min-height: 40px;
  padding: 0 22px;
  font-size: 11px;
  background: rgba(5, 5, 5, 0.34);
  border-color: rgba(200, 232, 255, 0.22);
  box-shadow: none;
}

/* ========================================
   ENTRY
   ======================================== */
.entry {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: clamp(66px, 8vh, 96px) 0 0;
  overflow: hidden;
  background: var(--black);
}

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

.entry__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: brightness(0.3) contrast(0.96) saturate(0.42) blur(0.25px);
}

.entry__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 52% 42% at 28% 48%, rgba(200, 232, 255, 0.055), transparent 64%),
    linear-gradient(105deg, rgba(5, 5, 5, 0.985) 0%, rgba(5, 5, 5, 0.91) 50%, rgba(5, 5, 5, 0.965) 100%);
}

.entry__inner {
  position: relative;
  z-index: 1;
  flex: 1;
}

.entry__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(460px, 0.9fr);
  gap: clamp(42px, 6.2vw, 86px);
  align-items: center;
}

.entry .section__title {
  max-width: 680px;
  font-size: clamp(38px, 4.25vw, 60px);
  margin-bottom: 22px;
}

.entry__lead {
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.58;
  color: rgba(242, 242, 236, 0.78);
  max-width: 590px;
  margin-bottom: 24px;
}

.entry__points {
  display: grid;
  max-width: 560px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(242, 242, 236, 0.12);
  border-bottom: 1px solid rgba(242, 242, 236, 0.12);
}

.entry__points li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid rgba(242, 242, 236, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: rgba(212, 212, 206, 0.84);
}

.entry__points li:last-child {
  border-bottom: 0;
}

.entry__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(200, 232, 255, 0.72);
  transform: translateY(-50%);
}

.entry__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.entry__email {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.15vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: rgba(200, 232, 255, 0.9);
  transition: opacity 0.3s ease, color 0.3s ease;
}

.entry__email:hover {
  opacity: 1;
  color: var(--accent);
}

.entry__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: rgba(168, 168, 160, 0.78);
}

.entry__form {
  width: 100%;
  max-width: 680px;
  justify-self: end;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(242, 242, 236, 0.14);
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
}

.entry__form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(242, 242, 236, 0.1);
}

.entry__form-head span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--accent);
}

.entry__form-head p {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(212, 212, 206, 0.72);
}

.entry__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.entry__field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.entry__field span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: rgba(168, 168, 160, 0.82);
}

.entry__field input,
.entry__field textarea {
  padding: 15px 16px;
  border: 1px solid rgba(242, 242, 236, 0.12);
  background: rgba(255, 255, 255, 0.034);
  font-size: 16px;
  color: var(--text);
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: vertical;
}

.entry__field textarea {
  min-height: 138px;
}

.entry__field input:focus,
.entry__field textarea:focus {
  border-color: rgba(200, 232, 255, 0.34);
  background: rgba(255, 255, 255, 0.045);
}

.entry__field input::placeholder,
.entry__field textarea::placeholder {
  color: rgba(242, 242, 236, 0.22);
}

.entry__submit {
  width: 100%;
  margin-top: 16px;
  padding: 15px 22px;
  border: 1px solid rgba(200, 232, 255, 0.3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--text);
  cursor: pointer;
  background: rgba(200, 232, 255, 0.055);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.entry__submit:hover {
  border-color: var(--accent);
  background: rgba(200, 232, 255, 0.1);
  color: var(--accent);
  transform: translateY(-1px);
}

.entry__status {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  min-height: 16px;
  color: var(--accent);
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ========================================
   RESPONSIVE — 1024px
   ======================================== */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

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

  .inside__grid {
    grid-template-areas:
      "head"
      "visual"
      "copy";
    gap: 26px;
  }

  .inside__visual {
    max-width: none;
    margin-top: 0;
  }

  .inside__head,
  .inside__copy,
  .inside .section__title {
    max-width: none;
  }

  .work--02 {
    direction: ltr;
  }

  .build__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .works__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .format-layer,
  .format-layer--02 {
    grid-template-columns: 1fr;
  }

  .format-layer--02 .format-layer__visual,
  .format-layer--02 .format-layer__body {
    order: unset;
  }

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

  .formats__flow li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
  }

  .formats__flow li:last-child {
    border-bottom: 0;
  }

  .formats__flow p {
    max-width: none;
  }

  .entry__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .entry__form {
    justify-self: stretch;
    max-width: none;
  }

  .frame img {
    aspect-ratio: 16/9;
  }

  .hero__caption {
    transform: translateY(-1vh);
  }

  .hero__scene {
    inset: 0;
  }

  .scene__trace--01 { width: 54vw; left: 32%; }
  .scene__trace--02 { width: 48vw; left: 38%; }
  .scene__constellation--01 { left: 34%; }
}

/* ========================================
   RESPONSIVE — 768px — no text on images
   ======================================== */
@media (max-width: 430px) {
  .hero__scroll {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    font-size: 8px;
    gap: 5px;
  }

  .hero__scroll-line {
    height: 26px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 40px;
    display: block;
  }

  .hero__scene {
    position: absolute;
    min-height: 100%;
    margin-bottom: 0;
  }

  .hero__caption {
    position: relative;
    z-index: 5;
    background: var(--black);
    padding-top: 8px;
    transform: none;
  }

  .hero__scroll {
    right: 18px;
    bottom: 18px;
    font-size: 8px;
    gap: 7px;
  }

  .hero__scroll-line {
    height: 30px;
  }

  .scene__constellation,
  .scene__shard--02,
  .scene__shard--04 {
    display: none;
  }

  .scene__brand {
    right: 24px;
    bottom: 72px;
  }

  .scene__grid {
    inset: -12%;
    background-size: 42px 42px, 42px 42px, 420px 420px;
  }

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

  .entry {
    min-height: auto;
    padding-top: 58px;
  }

  .entry__points {
    margin-bottom: 26px;
  }

  .entry__field textarea {
    min-height: 126px;
  }

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

/* ========================================
   RESPONSIVE — 390px
   ======================================== */
@media (max-width: 390px) {
  :root {
    --header-h: 56px;
  }

  .hero__scene {
    min-height: 56vh;
  }

  .hero__phrase {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .section__title {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .inside {
    padding: 46px 0 42px;
  }

  .inside__grid {
    gap: 20px;
  }

  .inside .section__tag {
    margin-bottom: 14px;
  }

  .inside .section__title {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .inside__lead {
    font-size: 17px;
    line-height: 1.42;
    margin-bottom: 16px;
  }

  .inside__body {
    font-size: 15px;
    line-height: 1.52;
    margin-bottom: 20px;
  }

  .inside__quote {
    font-size: 17px;
    line-height: 1.28;
    padding-left: 16px;
  }

  .build {
    padding: 46px 0;
  }

  .build__piece,
  .format-layer,
  .entry__form {
    padding: 18px;
  }

  .build__piece-visual {
    aspect-ratio: 16/7;
    margin-bottom: 14px;
  }

  .build__piece-body {
    grid-template-columns: 1fr;
  }

  .build__piece-num {
    grid-row: auto;
    margin-bottom: 10px;
  }

  .build__piece-desc {
    margin-bottom: 14px;
  }

  .works {
    padding: 46px 0;
  }

  .works__header {
    margin-bottom: 30px;
  }

  .work {
    gap: 20px;
    margin-bottom: 38px;
  }

  .work__visual img,
  .work__visual--wide img {
    aspect-ratio: 16/8.5;
  }

  .work__info--full {
    padding-top: 18px;
  }

  .work__title {
    font-size: 32px;
  }

  .work__desc {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .formats {
    padding: 46px 0 38px;
  }

  .formats__header {
    margin-bottom: 18px;
  }

  .formats__flow li {
    padding: 12px 0;
  }

  .formats__flow strong {
    font-size: 18px;
  }

  .formats__flow p {
    font-size: 12px;
  }

  .formats__layers {
    gap: 16px;
  }

  .format-layer__visual img,
  .format-layer--01 .format-layer__visual img,
  .format-layer--02 .format-layer__visual img,
  .format-layer--03 .format-layer__visual img {
    aspect-ratio: 16/7;
    max-height: 170px;
  }

  .format-layer__name {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .format-layer__desc {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .format-layer__cta {
    margin-top: 14px;
    min-height: 36px;
  }

  .entry {
    padding-top: 46px;
  }

  .entry .section__title {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .entry__lead {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .entry__points {
    margin-bottom: 22px;
  }

  .entry__points li {
    padding: 8px 0 8px 18px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .entry__form-head {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .entry__form-head p {
    font-size: 14px;
  }

  .entry__email {
    font-size: 28px;
    word-break: break-all;
  }

  .entry__note {
    font-size: 10px;
  }

  .entry__field input,
  .entry__field textarea {
    padding: 13px 14px;
    font-size: 15px;
  }

  .entry__submit {
    padding: 13px 18px;
  }

  .footer {
    padding: 18px 0;
  }

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

}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none;
  }

  body.is-intro-locked {
    overflow-x: hidden;
    height: auto;
  }

  body.is-intro-locked .header,
  body.is-intro-locked main {
    opacity: 1;
    pointer-events: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scene__shard {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
