:root {
  --bg: #030303;
  --fg: #f4f4ef;
  --muted: rgba(244, 244, 239, 0.68);
  --faint: rgba(244, 244, 239, 0.16);
  --line: rgba(244, 244, 239, 0.38);
  --accent: #f4f4ef;
  --mx: 0px;
  --my: 0px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family:
    Inter, "Helvetica Neue", Arial, "Noto Sans JP", "Yu Gothic", sans-serif;
}

body {
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.07), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(255, 255, 255, 0.05), transparent 24%),
    var(--bg);
}

.section-inner,
.company-inner,
.footer-inner {
  width: min(100% - clamp(32px, 7vw, 96px), 1440px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), transparent 16%, transparent 78%, rgba(0, 0, 0, 0.76)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 42%, rgba(0, 0, 0, 0.62));
}

.hero::after {
  z-index: 8;
  background: radial-gradient(circle at calc(50% + var(--mx) * 0.04) calc(46% + var(--my) * 0.04), transparent 0 30%, rgba(0, 0, 0, 0.34) 74%);
  mix-blend-mode: multiply;
}

.hero::before,
.hero::after,
.noise-canvas,
.scanlines,
.cursor-field,
.kinetic-layer,
.site-header,
.cross,
.signal-bars,
.title-ghost {
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-sequence .hero::before,
.intro-sequence .hero::after,
.intro-sequence .noise-canvas,
.intro-sequence .scanlines,
.intro-sequence .cursor-field,
.intro-sequence .kinetic-layer,
.intro-sequence .site-header,
.intro-sequence .cross,
.intro-sequence .signal-bars,
.intro-sequence .title-ghost {
  opacity: 0;
}

.intro-sequence .hero {
  cursor: wait;
}

.intro-sequence .title-line {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  filter: blur(12px);
  animation: none;
}

.intro-sequence.intro-title-in .title-line {
  animation: intro-title-reveal 1850ms cubic-bezier(0.13, 0.86, 0.18, 1) forwards;
}

.intro-sequence.intro-atmosphere .hero::before,
.intro-sequence.intro-atmosphere .hero::after,
.intro-sequence.intro-atmosphere .noise-canvas,
.intro-sequence.intro-atmosphere .scanlines,
.intro-sequence.intro-atmosphere .cursor-field {
  opacity: 1;
}

.intro-sequence.intro-kinetic .kinetic-layer,
.intro-sequence.intro-kinetic .title-ghost {
  opacity: 1;
}

.intro-sequence .kinetic-layer {
  clip-path: inset(0 100% 0 0);
  filter: blur(16px) contrast(1.45);
}

.intro-sequence.intro-kinetic .kinetic-layer {
  clip-path: inset(0 0 0 0);
}

.intro-sequence.intro-kinetic .layer-outline {
  transition-delay: 150ms;
}

.intro-sequence.intro-kinetic .layer-bottom {
  transition-delay: 280ms;
}

.intro-sequence.intro-ui .site-header,
.intro-sequence.intro-ui .cross,
.intro-sequence.intro-ui .signal-bars {
  opacity: 1;
}

.intro-sequence .site-header {
  transform: translateY(18px);
}

.intro-sequence.intro-ui .site-header {
  transform: translateY(0);
}

.intro-finished .title-line {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation: none;
}

.noise-canvas,
.scanlines,
.cursor-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.noise-canvas {
  z-index: 6;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.scanlines {
  z-index: 7;
  opacity: 0.34;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateY(var(--scan, 0));
}

.cursor-field {
  z-index: 1;
  background: radial-gradient(circle at calc(50% + var(--mx) * 0.08) calc(50% + var(--my) * 0.08), rgba(255, 255, 255, 0.12), transparent 22rem);
  filter: blur(24px);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: clamp(22px, 3.2vw, 42px);
  left: clamp(20px, 3.6vw, 56px);
  right: clamp(20px, 3.6vw, 56px);
  display: grid;
  grid-template-columns: auto;
  align-items: start;
  gap: 28px;
  letter-spacing: 0;
}

.brand {
  display: grid;
  gap: 1px;
  width: max-content;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.92;
}

.hero-stage {
  position: absolute;
  z-index: 5;
  inset: 0;
  transform: translate3d(calc(var(--mx) * -0.012), calc(var(--my) * -0.012), 0);
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  inset: -8%;
  content: "";
  pointer-events: none;
}

.hero-stage::before {
  z-index: 2;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(0, 255, 255, 0.06) 0 1px, transparent 1px 19px),
    linear-gradient(90deg, transparent 0 22%, rgba(0, 255, 255, 0.12) 22.4% 23%, transparent 23.6% 48%, rgba(255, 0, 196, 0.12) 48.4% 49%, transparent 49.6%),
    radial-gradient(circle at 78% 34%, rgba(0, 255, 174, 0.16), transparent 22%),
    radial-gradient(circle at 24% 58%, rgba(255, 0, 196, 0.14), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.18;
  animation: tv-noise 920ms steps(2, end) infinite;
}

.hero-stage::after {
  z-index: 3;
  background:
    linear-gradient(90deg, transparent 0 36%, rgba(0, 255, 255, 0.22) 36.2% 36.8%, transparent 37%),
    linear-gradient(90deg, transparent 0 61%, rgba(255, 0, 196, 0.18) 61.1% 61.7%, transparent 62%),
    linear-gradient(180deg, transparent 0 46%, rgba(204, 255, 0, 0.12) 46.2% 46.7%, transparent 47%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: neon-burst 3.4s steps(1, end) infinite;
}

.kinetic-layer {
  position: absolute;
  left: 50%;
  width: 160vw;
  min-width: 1400px;
  color: var(--fg);
  opacity: 0.92;
  transform: translate3d(calc(-50% + var(--mx) * 0.018), calc(var(--my) * 0.018), 0) rotate(var(--tilt));
  text-shadow:
    -8px 0 0 rgba(0, 255, 255, 0.18),
    7px 1px 0 rgba(255, 0, 196, 0.16),
    0 0 22px rgba(204, 255, 0, 0.08);
  animation: chroma-jitter 2.8s steps(1, end) infinite;
  will-change: transform;
}

.ticker {
  display: flex;
  width: max-content;
  font-weight: 1000;
  font-style: italic;
  line-height: 0.75;
  white-space: nowrap;
  will-change: transform, filter;
}

.ticker span {
  display: block;
}

.layer-top {
  --tilt: 4deg;
  top: 7vh;
  filter: blur(1.2px) contrast(1.16);
}

.layer-top .ticker {
  animation: drift-left 10s linear infinite, glitch-smear 3.8s steps(2, end) infinite;
  font-size: clamp(130px, 20vw, 360px);
}

.layer-outline {
  --tilt: -2deg;
  top: 31vh;
  color: transparent;
  opacity: 0.58;
  -webkit-text-stroke: 2px rgba(244, 244, 239, 0.52);
  text-stroke: 2px rgba(244, 244, 239, 0.52);
}

.layer-outline .ticker {
  animation: drift-right 18s linear infinite;
  font-size: clamp(120px, 18vw, 310px);
}

.layer-bottom {
  --tilt: 5deg;
  bottom: -2vh;
  filter: blur(2px) contrast(1.22);
}

.layer-bottom .ticker {
  animation: drift-left 14s linear infinite reverse, glitch-smear 4.7s steps(2, end) infinite;
  font-size: clamp(140px, 22vw, 390px);
}

.hero-title {
  position: absolute;
  z-index: 14;
  top: 49%;
  left: 50%;
  width: min(92vw, 1180px);
  margin: 0;
  color: var(--fg);
  font-size: clamp(48px, 8.5vw, 132px);
  font-weight: 1000;
  line-height: 0.98;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  text-shadow:
    0 0 16px rgba(244, 244, 239, 0.16),
    0 0 34px rgba(0, 255, 255, 0.08);
}

.title-line,
.title-ghost {
  display: block;
  will-change: transform, clip-path, filter;
}

.title-line span,
.title-ghost span {
  display: inline;
}

.title-line {
  position: relative;
  filter: drop-shadow(0 0 12px rgba(244, 244, 239, 0.1));
  animation: title-impact 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.title-line::selection {
  background: rgba(0, 255, 255, 0.3);
}

.title-line::before,
.title-line::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  opacity: 0;
  pointer-events: none;
}

.title-line::before {
  color: rgba(0, 255, 255, 0.78);
  text-shadow: 0 0 18px rgba(0, 255, 255, 0.52);
  transform: translate(-8px, -2px);
  clip-path: inset(0 0 52% 0);
  animation: title-glitch-a 3.4s steps(1, end) infinite;
}

.title-line::after {
  color: rgba(255, 0, 196, 0.72);
  text-shadow: 0 0 18px rgba(255, 0, 196, 0.48);
  transform: translate(8px, 3px);
  clip-path: inset(48% 0 0 0);
  animation: title-glitch-b 2.9s steps(1, end) infinite;
}

.title-ghost {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.17);
  text-stroke: 1px rgba(255, 255, 255, 0.17);
  transform: translate(26px, 18px);
  filter: blur(1px);
}

.hero.is-pulsing .hero-title {
  animation: hero-pulse 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cross {
  position: absolute;
  z-index: 12;
  width: 36px;
  height: 36px;
  opacity: 0.9;
}

.cross::before,
.cross::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.88);
}

.cross::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.cross::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.cross-a {
  left: 58%;
  top: 33%;
}

.cross-b {
  left: 3.2%;
  top: 43%;
}

.signal-bars {
  position: absolute;
  z-index: 12;
  top: 28%;
  right: 2.6%;
  display: grid;
  gap: 12px;
  width: 38px;
}

.signal-bars span {
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.signal-bars span:nth-child(2) {
  width: 72%;
}

.signal-bars span:nth-child(3) {
  width: 44%;
  justify-self: end;
}

.service-section,
.company-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.05) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(180deg, rgba(3, 3, 3, 0.045) 1px, transparent 1px) 0 0 / 86px 86px,
    #f3f3ef;
  color: #050505;
}

.service-section {
  padding: clamp(42px, 5.5vw, 76px) 0 clamp(34px, 4.5vw, 62px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.36);
}

.section-heading {
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
  margin-bottom: clamp(24px, 3.4vw, 42px);
}

.section-heading h2,
.company-copy h2,
.footer-brand {
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 0.98;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.section-heading p {
  max-width: none;
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1.9;
  white-space: nowrap;
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: clamp(280px, 22vw, 360px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.62);
  background: rgba(255, 255, 255, 0.38);
  isolation: isolate;
}

.service-card::before,
.service-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.service-card::before {
  inset: 0;
  z-index: 3;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 6px),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.82) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 280ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::after {
  inset: 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
  opacity: 0.72;
  transform: translateX(42%);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card img {
  position: absolute;
  right: -14%;
  bottom: -10%;
  z-index: 1;
  width: 68%;
  height: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.8;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
  transform: translate3d(calc(var(--mx) * -0.012), calc(var(--my) * -0.012), 0) scale(1.02);
  transition: opacity 300ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:nth-child(1) img {
  right: -3%;
  bottom: -2%;
  width: 62%;
}

.service-card:nth-child(2) img {
  right: -7%;
  bottom: -13%;
  width: 68%;
}

.service-card:nth-child(3) img {
  right: -19%;
  bottom: -13%;
  width: 70%;
}

.service-card:hover img {
  opacity: 0.96;
  transform: translate3d(calc(var(--mx) * -0.018), calc(var(--my) * -0.018), 0) scale(1.09);
}

.card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 14px;
  width: min(68%, 300px);
  padding: clamp(22px, 2vw, 30px);
}

.card-number {
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 900;
  line-height: 0.9;
}

.card-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 0.96;
}

.card-copy p {
  margin: 0;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1.85;
}

.wide-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 500px);
  min-height: 70px;
  margin: clamp(20px, 2.4vw, 30px) 0 0 auto;
  padding: 0 clamp(26px, 3.5vw, 44px);
  border: 1px solid #050505;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 6px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent) -90% 0 / 54% 100% no-repeat,
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.18), transparent 22%),
    #050505;
  color: var(--fg);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 900;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-position 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms ease,
    box-shadow 220ms ease;
}

.wide-link::before,
.wide-link::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.wide-link::before {
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  clip-path: inset(0 78% 0 0);
  transition: clip-path 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wide-link::after {
  top: 0;
  bottom: 0;
  left: -12%;
  z-index: -1;
  width: 34%;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-18deg) translateX(-120%);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wide-link:hover {
  background-position: 180% 0;
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.wide-link:hover::before {
  clip-path: inset(0 0 0 0);
}

.wide-link:hover::after {
  transform: skewX(-18deg) translateX(430%);
}

.wide-link-label {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

.wide-link-label::before,
.wide-link-label::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  opacity: 0;
  pointer-events: none;
}

.wide-link-label::before {
  transform: translate(-7px, -2px);
  clip-path: inset(0 0 56% 0);
}

.wide-link-label::after {
  transform: translate(8px, 2px);
  clip-path: inset(48% 0 0 0);
}

.wide-link:hover .wide-link-label::before,
.wide-link:hover .wide-link-label::after {
  animation: cta-glitch 540ms steps(2, end);
}

.wide-link-arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(72px, 8vw, 118px);
  height: 42px;
}

.wide-link-arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform-origin: right;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wide-link-arrow span::before,
.wide-link-arrow span::after {
  position: absolute;
  right: 0;
  width: 16px;
  height: 2px;
  content: "";
  background: currentColor;
  transform-origin: right center;
}

.wide-link-arrow span::before {
  transform: rotate(42deg);
}

.wide-link-arrow span::after {
  transform: rotate(-42deg);
}

.wide-link:hover .wide-link-arrow span {
  transform: scaleX(1.18);
}

.ip-section {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 6vw, 88px) 0 clamp(54px, 6vw, 92px);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 78px 78px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 78px 78px,
    #030303;
  color: var(--fg);
}

.ip-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 6px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent 26%, transparent 76%, rgba(0, 0, 0, 0.72));
  opacity: 0.42;
}

.ip-section .section-inner {
  position: relative;
  z-index: 1;
}

.ip-heading {
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
  margin-bottom: clamp(24px, 3vw, 42px);
}

.ip-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(44px, 5.4vw, 84px);
  font-weight: 400;
  line-height: 0.98;
}

.ip-heading p {
  max-width: none;
  margin: 0;
  color: rgba(244, 244, 239, 0.86);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1.9;
  white-space: nowrap;
}

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

.ip-card {
  position: relative;
  min-height: clamp(270px, 21vw, 350px);
  overflow: hidden;
  border: 1px solid rgba(244, 244, 239, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
    rgba(0, 0, 0, 0.36);
  isolation: isolate;
}

.ip-card::before,
.ip-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.ip-card::before {
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 280ms ease, transform 580ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ip-card::after {
  inset: 14px;
  border: 1px solid rgba(244, 244, 239, 0.16);
}

.ip-card:hover::before {
  opacity: 1;
  transform: translateX(34%);
}

.ip-card-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  width: min(58%, 280px);
  padding: clamp(22px, 2vw, 30px);
}

.ip-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 2.3vw, 42px);
  font-weight: 400;
  line-height: 0.98;
}

.ip-card p {
  margin: 0;
  color: rgba(244, 244, 239, 0.82);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 500;
  line-height: 1.9;
}

.ip-visual {
  position: absolute;
  right: -8%;
  bottom: -14%;
  z-index: 1;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 244, 239, 0.16);
  background:
    radial-gradient(circle at 50% 44%, rgba(244, 244, 239, 0.22), transparent 32%),
    linear-gradient(130deg, transparent 0 42%, rgba(244, 244, 239, 0.18) 43% 45%, transparent 46%),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(244, 244, 239, 0.08) 14px 15px);
  opacity: 0.7;
  transform: rotate(-8deg);
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
}

.ip-visual-image {
  right: -6%;
  bottom: -5%;
  width: 62%;
  height: auto;
  border: 0;
  background: none;
  opacity: 0.86;
  filter: drop-shadow(0 20px 36px rgba(255, 255, 255, 0.08));
  transform: rotate(0deg);
}

.ip-card:nth-child(2) .ip-visual {
  right: 3%;
  bottom: 6%;
  width: 54%;
  transform: rotate(0deg);
}

.ip-card:nth-child(3) .ip-visual {
  right: -5%;
  bottom: -6%;
  width: 64%;
  border-radius: 0;
  transform: rotate(0deg);
}

.ip-card:hover .ip-visual {
  opacity: 0.95;
  transform: rotate(0deg) scale(1.05);
}

.ip-card:hover .ip-visual-image {
  transform: scale(1.05);
}

.company-section {
  min-height: 64vh;
  padding: clamp(46px, 6.5vw, 92px) 0;
}

.studio-word {
  position: absolute;
  top: clamp(28px, 5vw, 70px);
  left: clamp(14px, 4vw, 70px);
  color: rgba(0, 0, 0, 0.045);
  font-size: clamp(88px, 16vw, 280px);
  font-weight: 1000;
  line-height: 0.78;
  transform: translate3d(calc(var(--mx) * 0.006), calc(var(--my) * 0.006), 0);
  white-space: nowrap;
}

.company-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.blueprint-panel {
  position: relative;
  min-height: clamp(360px, 36vw, 560px);
}

.blueprint-panel::before,
.blueprint-panel::after {
  position: absolute;
  content: "";
  background: #050505;
}

.blueprint-panel::before {
  top: 44%;
  left: 4%;
  width: 84%;
  height: 1px;
  opacity: 0.28;
}

.blueprint-panel::after {
  top: 16%;
  left: 54%;
  width: 1px;
  height: 74%;
  opacity: 0.18;
}

.blueprint-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.1));
  transform: translate3d(calc(var(--mx) * 0.01), calc(var(--my) * 0.01), 0);
  animation: blueprint-float 7s ease-in-out infinite;
}

.company-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-copy h2 {
  margin: 0;
  font-size: clamp(52px, 5.8vw, 96px);
  line-height: 1;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.company-rule {
  position: relative;
  width: min(100%, 520px);
  height: 1px;
  margin: clamp(18px, 2.6vw, 30px) 0 clamp(26px, 3.2vw, 42px);
  background: rgba(0, 0, 0, 0.42);
}

.company-rule::before,
.company-rule::after {
  position: absolute;
  top: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.company-rule::before {
  left: 50%;
  width: 12px;
  height: 12px;
  background: #050505;
}

.company-rule::after {
  left: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.company-copy > p:not(.eyebrow) {
  margin: 0 0 clamp(28px, 4vw, 52px);
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 700;
  line-height: 1.85;
}

.company-link {
  margin-left: 0;
}

.site-footer {
  background: #030303;
  color: #f4f4ef;
}

.footer-inner {
  padding: clamp(48px, 7vw, 86px) 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: start;
  gap: clamp(36px, 7vw, 96px);
}

.footer-company {
  display: grid;
  gap: 12px;
  color: #f4f4ef;
}

.footer-brand {
  width: max-content;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1;
}

.footer-company p {
  max-width: 420px;
  margin: 0;
  color: rgba(244, 244, 239, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.footer-nav {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  font-weight: 700;
}

.footer-nav a {
  color: rgba(244, 244, 239, 0.86);
  transition: color 180ms ease;
}

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

.back-to-top {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 244, 239, 0.82);
  border-radius: 999px;
  font-size: 0;
  line-height: 1;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.back-to-top::before,
.back-to-top::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.back-to-top::before {
  width: 2px;
  height: 30px;
  border-radius: 999px;
  transform: translateY(3px);
}

.back-to-top::after {
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  background: transparent;
  transform: translateY(-8px) rotate(45deg);
}

.back-to-top:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-6px);
}

.footer-bottom {
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: 22px;
  border-top: 1px solid rgba(244, 244, 239, 0.2);
}

.footer-bottom small {
  color: rgba(244, 244, 239, 0.62);
  font-size: 13px;
}

.company-page {
  min-height: 100vh;
  background: #f3f3ef;
  color: #050505;
}

.message-hero {
  position: relative;
  min-height: clamp(360px, 38vw, 540px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    #030303;
  color: var(--fg);
}

.message-hero::before,
.message-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.message-hero::before {
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 6px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 38%, rgba(0, 0, 0, 0.78));
  opacity: 0.72;
}

.message-hero::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(0, 255, 255, 0.12) 28.2% 28.8%, transparent 29%),
    linear-gradient(90deg, transparent 0 64%, rgba(255, 0, 196, 0.11) 64.2% 64.8%, transparent 65%),
    linear-gradient(180deg, transparent 0 62%, rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 18% 72%, rgba(0, 255, 174, 0.12), transparent 24%),
    radial-gradient(circle at 78% 34%, rgba(255, 0, 196, 0.08), transparent 22%);
  mix-blend-mode: screen;
  animation: neon-burst 3.2s steps(1, end) infinite;
}

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

.message-kinetic::before,
.message-kinetic::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.message-kinetic::before {
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(0, 255, 255, 0.045) 0 1px, transparent 1px 21px),
    linear-gradient(90deg, transparent 0 22%, rgba(255, 0, 196, 0.1) 22.2% 22.8%, transparent 23%),
    linear-gradient(90deg, transparent 0 58%, rgba(244, 244, 239, 0.11) 58.2% 58.6%, transparent 58.8%),
    linear-gradient(0deg, transparent 0 38%, rgba(244, 244, 239, 0.08) 38.2% 38.8%, transparent 39%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(244, 244, 239, 0.035) 42px 43px);
  mix-blend-mode: screen;
  opacity: 0.62;
  animation: digital-scan 3.2s steps(3, end) infinite, tv-noise 860ms steps(2, end) infinite;
}

.message-kinetic::after {
  top: 0;
  bottom: 0;
  left: -18%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(244, 244, 239, 0.12), transparent);
  transform: skewX(-18deg);
  animation: digital-sweep 3.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.message-word {
  position: absolute;
  color: transparent;
  font-size: clamp(104px, 16vw, 260px);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.75;
  white-space: nowrap;
  opacity: 0.96;
  filter: drop-shadow(0 0 18px rgba(0, 255, 255, 0.08));
  text-shadow:
    -10px -1px 0 rgba(0, 255, 255, 0.12),
    9px 2px 0 rgba(255, 0, 196, 0.13),
    0 0 28px rgba(204, 255, 0, 0.08);
  -webkit-text-stroke: 1.25px rgba(244, 244, 239, 0.3);
  text-stroke: 1.25px rgba(244, 244, 239, 0.3);
  animation: chroma-jitter 2.6s steps(1, end) infinite;
}

.message-word::before,
.message-word::after {
  position: absolute;
  inset: 0;
  content: attr(data-word);
  color: transparent;
  opacity: 0;
  pointer-events: none;
}

.message-word::before {
  transform: translate(-9px, -2px);
  clip-path: inset(0 0 54% 0);
  -webkit-text-stroke: 1px rgba(0, 255, 255, 0.54);
  text-stroke: 1px rgba(0, 255, 255, 0.54);
  filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.28));
  animation: message-word-glitch 3.4s steps(1, end) infinite;
}

.message-word::after {
  transform: translate(10px, 3px);
  clip-path: inset(46% 0 0 0);
  -webkit-text-stroke: 1px rgba(255, 0, 196, 0.46);
  text-stroke: 1px rgba(255, 0, 196, 0.46);
  filter: drop-shadow(0 0 12px rgba(255, 0, 196, 0.24));
  animation: message-word-glitch 2.9s steps(1, end) infinite reverse;
}

.message-word-a {
  top: -8%;
  left: -3%;
  animation: message-drift-left 18s linear infinite, chroma-jitter 2.6s steps(1, end) infinite;
}

.message-word-b {
  top: 25%;
  right: -8%;
  font-size: clamp(92px, 13vw, 220px);
  -webkit-text-stroke-color: rgba(244, 244, 239, 0.28);
  text-stroke-color: rgba(244, 244, 239, 0.28);
  animation: message-drift-right 22s linear infinite, chroma-jitter 2.8s steps(1, end) infinite;
}

.message-word-c {
  right: 4%;
  bottom: 4%;
  font-size: clamp(116px, 17vw, 280px);
  -webkit-text-stroke-color: rgba(244, 244, 239, 0.2);
  text-stroke-color: rgba(244, 244, 239, 0.2);
}

.message-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 244, 239, 0.52), transparent);
}

.message-line-a {
  top: 26%;
  left: 7%;
  width: 34vw;
  transform: rotate(-2deg);
}

.message-line-b {
  right: 8%;
  bottom: 26%;
  width: 42vw;
  transform: rotate(2deg);
}

.message-cross {
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.42;
}

.message-cross::before,
.message-cross::after {
  position: absolute;
  content: "";
  background: rgba(244, 244, 239, 0.82);
}

.message-cross::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.message-cross::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.message-cross-a {
  left: 4%;
  bottom: 20%;
}

.message-cross-b {
  top: 18%;
  right: 18%;
}

.page-header {
  position: absolute;
  z-index: 3;
  top: clamp(22px, 3.2vw, 42px);
  left: clamp(20px, 3.6vw, 56px);
  right: clamp(20px, 3.6vw, 56px);
}

.message-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - clamp(40px, 8vw, 120px), 1440px);
  margin: 0 auto;
  padding-top: clamp(140px, 14vw, 230px);
}

.message-hero h1 {
  margin: 0;
  width: max-content;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(48px, 5.8vw, 96px);
  font-weight: 900;
  line-height: 1.12;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 42px rgba(0, 0, 0, 0.42);
  animation: message-title-in 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.message-hero h1 span {
  display: inline;
}

.message-hero p {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 420px;
  margin: clamp(26px, 3vw, 42px) 0 0;
  color: rgba(244, 244, 239, 0.78);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
}

.message-hero p span:last-child {
  flex: 1;
  height: 1px;
  background: rgba(244, 244, 239, 0.48);
}

.founder-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.045) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(180deg, rgba(3, 3, 3, 0.038) 1px, transparent 1px) 0 0 / 86px 86px,
    #f3f3ef;
}

.founder-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(44px, 8vw, 120px);
  width: min(100% - clamp(40px, 8vw, 120px), 1320px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) 0;
}

.founder-side-text {
  position: absolute;
  top: clamp(74px, 8vw, 124px);
  left: clamp(14px, 3vw, 56px);
  color: rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.founder-visual {
  position: relative;
  min-height: clamp(540px, 54vw, 760px);
}

.founder-visual h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(58px, 7vw, 116px);
  font-weight: 400;
  line-height: 0.98;
}

.founder-portrait {
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 0;
  height: 72%;
  filter: grayscale(1) contrast(1.08);
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.founder-portrait::before {
  position: absolute;
  inset: -12% -8% -4% -8%;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, transparent 0 28%, rgba(0, 0, 0, 0.18) 28.4%, transparent 48%),
    linear-gradient(90deg, transparent 0 46%, rgba(0, 0, 0, 0.18) 46.2% 46.5%, transparent 46.8%),
    linear-gradient(180deg, transparent 0 56%, rgba(0, 0, 0, 0.15) 56.2% 56.5%, transparent 56.8%);
  opacity: 0.5;
}

.founder-copy {
  align-self: center;
  max-width: 560px;
}

.founder-copy h3 {
  max-width: 720px;
  margin: 0 0 clamp(30px, 3.6vw, 52px);
  font-size: clamp(38px, 3.8vw, 72px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.founder-copy p {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 2.05;
}

.founder-divider {
  position: relative;
  width: min(100%, 520px);
  height: 1px;
  margin: clamp(34px, 4vw, 58px) 0;
  background: rgba(0, 0, 0, 0.24);
}

.founder-divider::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  background: #050505;
  transform: translate(-50%, -50%) rotate(45deg);
}

.founder-profile {
  margin-bottom: clamp(24px, 3vw, 42px);
}

.founder-profile h4 {
  margin: 0 0 8px;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 900;
}

.founder-profile p {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.45;
}

.overview-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(180deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px) 0 0 / 88px 88px,
    #f3f3ef;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.overview-section::before {
  position: absolute;
  top: 8%;
  left: -2%;
  content: "overview";
  color: rgba(0, 0, 0, 0.035);
  font-size: clamp(116px, 17vw, 260px);
  font-weight: 1000;
  line-height: 1;
  pointer-events: none;
}

.overview-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(90vw, 1320px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 116px) 0;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: start;
}

.overview-heading {
  position: sticky;
  top: 32px;
}

.overview-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(58px, 7.2vw, 118px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.overview-heading::after {
  display: block;
  width: min(100%, 460px);
  height: 1px;
  margin-top: clamp(26px, 3vw, 42px);
  content: "";
  background: linear-gradient(90deg, #050505, rgba(0, 0, 0, 0.14), transparent);
}

.overview-list {
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.42);
}

.overview-list div {
  display: grid;
  padding: clamp(22px, 2.3vw, 34px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  grid-template-columns: minmax(120px, 170px) 1fr;
  gap: clamp(22px, 3vw, 48px);
  align-items: baseline;
}

.overview-list dt,
.overview-list dd {
  margin: 0;
}

.overview-list dt {
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  line-height: 1.55;
}

.overview-list dd {
  font-size: clamp(19px, 1.65vw, 28px);
  font-weight: 500;
  line-height: 1.55;
}

.reveal-section .section-heading,
.reveal-section .service-card,
.reveal-section .wide-link,
.reveal-section .ip-heading,
.reveal-section .ip-card,
.reveal-section .blueprint-panel,
.reveal-section .company-copy {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.is-visible .section-heading,
.reveal-section.is-visible .service-card,
.reveal-section.is-visible .wide-link,
.reveal-section.is-visible .ip-heading,
.reveal-section.is-visible .ip-card,
.reveal-section.is-visible .blueprint-panel,
.reveal-section.is-visible .company-copy {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible .service-card:nth-child(2) {
  transition-delay: 120ms;
}

.reveal-section.is-visible .ip-card:nth-child(2) {
  transition-delay: 120ms;
}

.reveal-section.is-visible .service-card:nth-child(3) {
  transition-delay: 240ms;
}

.reveal-section.is-visible .ip-card:nth-child(3) {
  transition-delay: 240ms;
}

.reveal-section.is-visible .wide-link,
.reveal-section.is-visible .company-copy {
  transition-delay: 170ms;
}

@keyframes blueprint-float {
  0%,
  100% {
    transform: translate3d(calc(var(--mx) * 0.01), calc(var(--my) * 0.01), 0) rotate(-0.4deg);
  }
  50% {
    transform: translate3d(calc(var(--mx) * 0.01 + 10px), calc(var(--my) * 0.01 - 12px), 0) rotate(0.5deg);
  }
}

@keyframes cta-glitch {
  0%,
  100% {
    opacity: 0;
  }
  18% {
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.8);
  }
  34% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.95;
  }
  68% {
    opacity: 0;
  }
}

@keyframes tv-noise {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.14;
    filter: hue-rotate(0deg) contrast(1.1);
  }
  18% {
    transform: translate3d(-18px, 7px, 0);
    opacity: 0.34;
    filter: hue-rotate(80deg) contrast(1.45);
  }
  34% {
    transform: translate3d(14px, -5px, 0);
    opacity: 0.2;
    filter: hue-rotate(170deg) contrast(1.28);
  }
  52% {
    transform: translate3d(-7px, -11px, 0);
    opacity: 0.42;
    filter: hue-rotate(250deg) contrast(1.6);
  }
  72% {
    transform: translate3d(22px, 3px, 0);
    opacity: 0.18;
    filter: hue-rotate(320deg) contrast(1.22);
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.14;
    filter: hue-rotate(360deg) contrast(1.1);
  }
}

@keyframes neon-burst {
  0%,
  68%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  10% {
    opacity: 0.55;
    transform: translate3d(-2%, 0, 0);
  }
  12% {
    opacity: 0.08;
  }
  16% {
    opacity: 0.42;
    transform: translate3d(2%, -1%, 0);
  }
  18% {
    opacity: 0;
  }
  76% {
    opacity: 0.48;
    transform: translate3d(1%, 1%, 0);
  }
  80% {
    opacity: 0;
  }
}

@keyframes chroma-jitter {
  0%,
  70%,
  100% {
    filter: none;
  }
  72% {
    filter: blur(0.8px) contrast(1.4) saturate(1.8);
  }
  74% {
    filter: blur(1.4px) contrast(1.65) saturate(2.2);
  }
  76% {
    filter: contrast(1.05) saturate(1);
  }
  84% {
    filter: blur(1.2px) contrast(1.55) saturate(2.1);
  }
  86% {
    filter: none;
  }
}

@keyframes message-drift-left {
  from {
    transform: translate3d(0, 0, 0) skewX(-7deg);
  }
  to {
    transform: translate3d(-12%, 0, 0) skewX(-7deg);
  }
}

@keyframes message-drift-right {
  from {
    transform: translate3d(0, 0, 0) skewX(-6deg);
  }
  to {
    transform: translate3d(10%, 0, 0) skewX(-6deg);
  }
}

@keyframes digital-scan {
  0%,
  52%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  10% {
    transform: translateY(-10px);
    opacity: 0.96;
  }
  56% {
    transform: translateY(-14px);
    opacity: 1;
  }
  60% {
    transform: translateY(9px);
    opacity: 0.45;
  }
}

@keyframes digital-sweep {
  0%,
  10% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  18% {
    opacity: 0.95;
  }
  32% {
    transform: translateX(520%) skewX(-18deg);
    opacity: 0;
  }
  72% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(520%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes message-word-glitch {
  0%,
  72%,
  100% {
    opacity: 0;
  }
  74% {
    opacity: 0.85;
  }
  75% {
    opacity: 0.2;
    transform: translate(12px, -2px);
  }
  77% {
    opacity: 0.75;
  }
  79% {
    opacity: 0;
  }
}

@keyframes message-title-in {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

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

@keyframes glitch-smear {
  0%,
  83%,
  100% {
    filter: blur(0);
    transform: skewX(0);
  }
  84% {
    filter: blur(5px);
    transform: skewX(-7deg) translateX(-18px);
  }
  86% {
    filter: blur(1px);
    transform: skewX(5deg) translateX(12px);
  }
  88% {
    filter: blur(8px);
    transform: skewX(-3deg) translateX(-26px);
  }
}

@keyframes title-impact {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes intro-title-reveal {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.972);
    filter: blur(22px);
  }
  42% {
    opacity: 0.42;
    transform: translateY(12px) scale(0.99);
    filter: blur(9px);
  }
  68% {
    opacity: 1;
    transform: translateY(0) scale(1.006);
    filter: blur(1px);
  }
  80% {
    transform: translate(-4px, 1px) scale(1.008);
    filter: blur(0.8px) contrast(1.18);
  }
  86% {
    transform: translate(3px, -1px) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes title-glitch-a {
  0%,
  62%,
  100% {
    opacity: 0;
  }
  8% {
    opacity: 0.92;
    transform: translate(-12px, -3px);
  }
  9% {
    opacity: 0.18;
    transform: translate(7px, 1px);
  }
  11% {
    opacity: 0;
  }
  64% {
    opacity: 0.88;
    transform: translate(-10px, 2px);
  }
  66% {
    opacity: 0;
  }
}

@keyframes title-glitch-b {
  0%,
  54%,
  100% {
    opacity: 0;
  }
  14% {
    opacity: 0.72;
    transform: translate(11px, 3px);
  }
  16% {
    opacity: 0;
  }
  56% {
    opacity: 0.82;
    transform: translate(14px, -2px);
  }
  57% {
    opacity: 0.16;
  }
  59% {
    opacity: 0;
  }
}

@keyframes hero-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
  34% {
    transform: translate(calc(-50% - 9px), calc(-50% + 3px)) scale(1.018);
    filter: blur(1px) contrast(1.25);
  }
  62% {
    transform: translate(calc(-50% + 6px), calc(-50% - 2px)) scale(0.994);
    filter: blur(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 84px);
    white-space: normal;
  }

  .layer-top {
    top: 14vh;
  }

  .layer-outline {
    top: 34vh;
  }

  .layer-bottom {
    bottom: 7vh;
  }

  .section-heading,
  .ip-heading,
  .company-inner,
  .service-grid,
  .ip-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .ip-grid {
    gap: 18px;
  }

  .service-card,
  .ip-card {
    min-height: 360px;
  }

  .footer-menu {
    justify-content: space-between;
    width: 100%;
  }

  .footer-nav {
    justify-content: start;
  }

  .back-to-top {
    width: 62px;
  }

  .founder-inner {
    grid-template-columns: 1fr;
  }

  .overview-inner {
    grid-template-columns: 1fr;
  }

  .overview-heading {
    position: relative;
    top: auto;
  }

  .founder-visual {
    min-height: 620px;
  }

  .founder-copy {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    font-size: 32px;
  }

  .hero-title {
    width: min(88vw, 440px);
    line-height: 1.06;
  }

  .title-line span,
  .title-ghost span {
    display: block;
  }

  .signal-bars {
    display: none;
  }

  .section-inner,
  .company-inner,
  .footer-inner {
    width: min(100% - 32px, 1440px);
  }

  .section-heading h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .section-heading p {
    white-space: normal;
  }

  .ip-heading p {
    max-width: 100%;
    white-space: normal;
  }

  .service-card {
    min-height: 330px;
  }

  .ip-card {
    min-height: 330px;
  }

  .service-card img {
    width: 76%;
  }

  .card-copy {
    width: min(76%, 280px);
    padding: 24px;
  }

  .ip-card-copy {
    width: min(76%, 280px);
    padding: 24px;
  }

  .wide-link {
    justify-content: space-between;
    width: 100%;
    min-height: 76px;
    padding: 0 22px;
  }

  .wide-link-arrow {
    width: 78px;
  }

  .blueprint-panel {
    min-height: 360px;
  }

  .footer-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 28px;
  }

  .message-hero {
    min-height: 390px;
  }

  .message-hero-inner,
  .founder-inner,
  .overview-inner {
    width: min(100% - 32px, 1320px);
  }

  .message-hero h1 {
    width: min(100%, 440px);
    font-size: clamp(36px, 10vw, 56px);
  }

  .message-hero h1 span {
    display: block;
  }

  .message-word {
    font-size: clamp(78px, 28vw, 150px);
  }

  .message-word-b {
    top: 34%;
    right: -34%;
  }

  .message-word-c {
    right: -28%;
    bottom: 8%;
  }

  .message-line-a {
    width: 62vw;
  }

  .founder-side-text {
    display: none;
  }

  .founder-visual {
    min-height: 500px;
  }

  .founder-portrait {
    left: -4%;
    right: -4%;
    height: 64%;
    background-size: contain;
  }

  .founder-copy h3 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .overview-section::before {
    top: 4%;
    font-size: clamp(86px, 25vw, 150px);
  }

  .overview-inner {
    padding: 58px 0 72px;
    gap: 34px;
  }

  .overview-heading h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .overview-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .overview-list dd {
    font-size: clamp(18px, 5vw, 24px);
  }
}

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