:root {
  --ink: #070809;
  --black: #000;
  --paper: #f7f6ef;
  --white: #fff;
  --yellow: #ffe000;
  --green: #67ee00;
  --cyan: #18e8e8;
  --navy: #061326;
  --line: rgba(255, 255, 255, 0.18);
  --content: min(1160px, 80vw);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(0, 3, 4, 0.72), rgba(0, 3, 4, 0.88)),
    url("./assets/stock/web/adobe-stock-464389663-black-paper.webp") center / cover fixed;
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: 3px;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: calc(var(--scroll-progress, 0) * 100%);
  background: linear-gradient(180deg, var(--cyan), var(--green), var(--yellow));
  box-shadow: 0 0 14px rgba(103, 238, 0, 0.8);
  transform-origin: top;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  translate: 0 -150%;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 66px;
  padding: 8px 2.2vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(1, 5, 6, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-logo {
  width: 82px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.3vw, 42px);
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(16px, 1.45vw, 23px);
  letter-spacing: 0.025em;
  line-height: 1;
}

.desktop-nav a::after {
  position: absolute;
  inset: auto 0 -8px;
  height: 3px;
  content: "";
  background: var(--green);
  scale: 0 1;
  transform-origin: left;
  transition: scale 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  scale: 1;
}

.menu-trigger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px 8px;
  border: 0;
  background: transparent;
}

.menu-trigger span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 22px 7vw 40px;
  background: var(--black);
}

.mobile-menu[hidden] {
  display: none;
}

.menu-close {
  display: block;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--white);
  letter-spacing: 0.12em;
}

.mobile-menu__links {
  display: grid;
  place-items: center;
  gap: 6px;
  margin-top: 7svh;
}

.mobile-menu__links a {
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(34px, 10vw, 54px);
  letter-spacing: 0.08em;
  line-height: 1.22;
}

.mobile-menu__links a:nth-child(2n) {
  color: var(--green);
}

.mobile-menu > p {
  position: absolute;
  bottom: 22px;
  left: 7vw;
  color: var(--yellow);
  font-family: var(--display);
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(0, 77, 89, 0.58), transparent 32%),
    radial-gradient(circle at 22% 77%, rgba(255, 224, 0, 0.13), transparent 27%),
    var(--black);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.6) 43%, rgba(0, 0, 0, 0.03) 72%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, black 70%, black);
}

.hero-grid span {
  position: absolute;
  background: var(--green);
}

.hero-grid span:nth-child(1) { right: 36%; bottom: 9%; width: 72px; height: 210px; }
.hero-grid span:nth-child(2) { right: 31%; bottom: 9%; width: 70px; height: 70px; background: var(--yellow); }
.hero-grid span:nth-child(3) { right: 26%; bottom: 9%; width: 70px; height: 140px; background: var(--cyan); }
.hero-grid span:nth-child(4) { right: 21%; bottom: 9%; width: 70px; height: 70px; background: var(--yellow); }
.hero-grid span:nth-child(5) { right: 16%; bottom: 9%; width: 70px; height: 210px; }
.hero-grid span:nth-child(6) { right: 11%; bottom: 9%; width: 70px; height: 140px; background: var(--yellow); }

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(62vw, 850px);
  padding: 188px 0 90px 10.8vw;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.14em;
}

.hero h1 {
  margin: 0;
  line-height: 0.82;
}

.hero-word {
  display: block;
  font-family: var(--display);
  font-size: clamp(122px, 14vw, 210px);
  letter-spacing: -0.02em;
}

.hero-jp {
  display: block;
  margin-top: 38px;
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
}

.hero-message {
  margin: 44px 0 12px;
  color: var(--yellow);
  font-size: clamp(25px, 2.5vw, 40px);
  font-weight: 900;
  line-height: 1.4;
}

.hero-detail {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 270px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.hero-cta:hover {
  background: var(--green);
  color: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 62%;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo--main {
  inset: 0 0 0 auto;
  width: 83%;
  height: 100%;
  clip-path: polygon(21% 0, 100% 0, 100% 100%, 0 100%, 12% 66%, 0 42%);
}

.hero-photo--main img {
  object-position: 57% center;
  filter: contrast(1.08) saturate(1.06) brightness(0.82);
}

.hero-photo--sub {
  right: 4.5%;
  bottom: 4%;
  z-index: 2;
  width: 26%;
  height: 25%;
  border: 8px solid var(--yellow);
  rotate: 2deg;
}

.hero-badge {
  position: absolute;
  top: 13%;
  right: 4.5%;
  z-index: 3;
  display: grid;
  place-content: center;
  width: 134px;
  aspect-ratio: 1;
  border: 3px solid var(--black);
  border-radius: 50%;
  rotate: 8deg;
  background: var(--green);
  color: var(--black);
  text-align: center;
  box-shadow: 0 0 0 7px var(--green);
}

.hero-badge span {
  font-family: var(--display);
  font-size: 45px;
  line-height: 0.9;
}

.hero-badge small {
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  right: 3.4vw;
  bottom: 0;
  z-index: 5;
  display: grid;
  justify-items: center;
  color: var(--yellow);
  font-family: var(--display);
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 156px;
  margin-top: 12px;
  background: var(--yellow);
}

.section {
  position: relative;
  padding: 105px 0;
}

.section > *:not(.member-texture, .works-texture, .stock-signal, .flow-stock) {
  position: relative;
  z-index: 2;
}

.stock-signal,
.flow-stock {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.stock-signal {
  right: -8%;
  left: -8%;
  height: min(620px, 70%);
  opacity: 0.26;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
}

.stock-signal--service {
  top: 5%;
}

.stock-signal--plan {
  top: 14%;
  rotate: 180deg;
  opacity: 0.2;
}

.stock-signal img {
  width: 118%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.25) contrast(1.12);
  transform: translate3d(-7%, 0, 0) scale(1.05);
}

.stock-signal.is-ambient-active img {
  animation: signal-drift 16s ease-in-out infinite alternate;
}

.section-heading,
.section-lead,
.service-grid,
.member-portrait,
.member-profiles,
.flow-list,
.plan-shell,
.tax-note,
.works-grid,
.contact-layout {
  width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  margin-bottom: 28px;
  color: var(--green);
}

.section-heading p {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 8vw, 118px);
  letter-spacing: 0.08em;
  line-height: 0.92;
}

.section-heading--dark {
  color: var(--cyan);
}

.section-lead {
  margin-top: 0;
  margin-bottom: 58px;
  max-width: min(900px, 80vw);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 650;
}

.service-section {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(103, 238, 0, 0.12), transparent 34%),
    rgba(0, 3, 4, 0.74);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.service-item {
  position: relative;
  min-height: 285px;
  padding: 38px 28px;
  overflow: hidden;
  background: rgba(1, 5, 6, 0.9);
  text-align: center;
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.service-number {
  position: absolute;
  top: 14px;
  left: 18px;
  color: #8a8a8a;
  font-family: var(--display);
  font-size: 18px;
}

.service-item p {
  margin: 5px 0 0;
  font-weight: 800;
}

.service-item h3 {
  margin: 3px 0 28px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 42px);
  letter-spacing: 0.05em;
  line-height: 1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  margin: auto;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 46px;
  transition: background 180ms ease, color 180ms ease, rotate 180ms ease;
}

.service-item:hover .service-icon {
  rotate: -6deg;
  background: var(--cyan);
  color: var(--black);
}

.member-section,
.works-section {
  isolation: isolate;
  overflow: hidden;
  background: #040811;
}

.member-texture,
.works-texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background:
    radial-gradient(circle at 18% 58%, rgba(103, 238, 0, 0.38), transparent 28%),
    radial-gradient(circle at 83% 24%, rgba(24, 232, 232, 0.38), transparent 24%);
  filter: saturate(0.75) contrast(1.4);
}

.member-texture img,
.works-texture img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-texture::after,
.works-texture::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), #040811 80%);
}

.member-portrait {
  position: relative;
  max-width: 720px;
  margin-top: 70px;
}

.member-portrait img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  object-position: center 35%;
  border: 10px solid var(--cyan);
}

.member-stamp {
  position: absolute;
  right: -48px;
  bottom: -50px;
  display: grid;
  place-content: center;
  width: 150px;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: 0.08em;
  line-height: 0.78;
  text-align: center;
  rotate: 9deg;
}

.member-profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 76px;
  background: rgba(255, 255, 255, 0.22);
}

.member-profiles article {
  padding: 36px 38px 42px;
  background: rgba(2, 4, 8, 0.88);
}

.member-account {
  margin: 0;
  color: var(--cyan);
  font-family: var(--display);
  letter-spacing: 0.12em;
}

.member-profiles h3 {
  margin: 8px 0 0;
  color: var(--yellow);
  font-size: 40px;
  line-height: 1.25;
}

.member-role {
  margin: 5px 0 24px;
  font-weight: 800;
}

.flow-section {
  isolation: isolate;
  overflow: hidden;
  background: #01090a;
}

.flow-stock {
  inset: 0;
}

.flow-stock::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 8, 12, 0.64), rgba(0, 8, 12, 0.94)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 58%, rgba(0, 0, 0, 0.38));
}

.flow-stock img {
  --flow-from: translate3d(-3%, -3%, 0) scale(1.03);
  --flow-to: translate3d(-1%, -1%, 0) scale(1.085);
  width: 106%;
  height: 108%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.72) contrast(1.15) brightness(0.75);
  transform: var(--flow-from);
}

.flow-stock.is-ambient-active img {
  animation: place-breathe 18s ease-in-out infinite alternate;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 250px;
  padding: 25px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.flow-list li:not(:last-child)::after {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 2;
  width: 14px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
}

.flow-list span {
  display: block;
  color: var(--green);
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
}

.flow-list strong {
  display: block;
  margin-top: 26px;
  font-size: 18px;
}

.flow-list small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.plan-section {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 70%, rgba(24, 232, 232, 0.1), transparent 30%),
    rgba(0, 3, 4, 0.76);
}

.plan-shell {
  position: relative;
  width: min(100%, 1440px);
}

.plan-track {
  display: grid;
  grid-auto-columns: calc((100% - 2px) / 3);
  grid-auto-flow: column;
  gap: 1px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  background: rgba(255, 255, 255, 0.16);
}

.plan-track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 737px) and (hover: hover) and (pointer: fine) {
  .plan-track {
    overflow-x: hidden;
    overscroll-behavior-inline: auto;
    scroll-snap-type: none;
  }
}

.plan-card {
  min-height: 575px;
  padding: 50px 42px;
  scroll-snap-align: start;
  background: rgba(4, 6, 6, 0.94);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.plan-card--featured {
  background: #0a2102;
  box-shadow: inset 0 0 0 3px var(--green);
}

.plan-type {
  margin: 0 0 20px;
  color: var(--cyan);
  font-family: var(--display);
  letter-spacing: 0.12em;
}

.plan-card h3 {
  min-height: 112px;
  margin: 0 0 30px;
  color: var(--cyan);
  font-size: clamp(27px, 2.3vw, 40px);
  line-height: 1.25;
}

.plan-price {
  margin: 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(46px, 4vw, 68px);
  line-height: 1;
  white-space: nowrap;
}

.plan-price span,
.plan-price small {
  font-size: 0.42em;
}

.plan-term {
  display: inline-block;
  margin: 24px 0;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
}

.plan-card > p:last-child {
  color: rgba(255, 255, 255, 0.75);
}

.plan-arrow {
  position: absolute;
  top: -62px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  padding: 0 0 5px;
  translate: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 46px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.plan-arrow:hover:not(:disabled) {
  background: var(--yellow);
  color: var(--black);
}

.plan-arrow:disabled {
  opacity: 0.25;
}

.plan-arrow--prev { right: 88px; }
.plan-arrow--next { right: 18px; }

.tax-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.works-texture {
  background:
    radial-gradient(circle at 14% 22%, rgba(103, 238, 0, 0.28), transparent 24%),
    radial-gradient(circle at 88% 70%, rgba(255, 224, 0, 0.18), transparent 24%);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.work-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 310px;
  overflow: hidden;
  background: rgba(4, 4, 4, 0.94);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card > div {
  padding: 30px 28px;
}

.work-label {
  margin: 0 0 5px;
  color: var(--cyan);
  font-family: var(--display);
  letter-spacing: 0.12em;
}

.work-card h3 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
}

.work-card p:last-child {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 224, 0, 0.08), transparent 25%),
    radial-gradient(circle at 88% 72%, rgba(24, 232, 232, 0.1), transparent 28%),
    rgba(0, 3, 4, 0.76);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal="hero-media"] {
  transform: scale(1.035);
  transform-origin: center;
  transition-duration: 1200ms;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes signal-drift {
  from { transform: translate3d(-7%, 0, 0) scale(1.05); }
  to { transform: translate3d(1%, -1.5%, 0) scale(1.1); }
}

@keyframes place-breathe {
  from { transform: var(--flow-from); }
  to { transform: var(--flow-to); }
}

@media (hover: hover) and (pointer: fine) {
  .service-item:hover,
  .plan-card:hover,
  .work-card:hover {
    z-index: 2;
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38), inset 0 3px 0 var(--green);
  }

  .service-item:hover {
    background: rgba(5, 16, 14, 0.96);
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
  align-items: start;
}

.contact-side {
  position: sticky;
  top: 100px;
}

.contact-eyebrow {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  letter-spacing: 0.12em;
}

.contact-side h3 {
  margin: 18px 0 30px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.45;
}

.contact-side ul {
  padding: 0;
  list-style: none;
}

.contact-side li {
  position: relative;
  margin: 12px 0;
  padding-left: 24px;
}

.contact-side li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
}

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

.contact-form label {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.contact-form label > span {
  padding-top: 15px;
  font-weight: 800;
}

.contact-form small {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
}

.contact-form b {
  margin-left: 8px;
  color: var(--yellow);
  font-size: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  background: transparent;
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:user-invalid,
.contact-form select:user-invalid,
.contact-form textarea:user-invalid {
  border-color: #ff6b6b;
}

.contact-form button[type="submit"] {
  width: min(100%, 360px);
  min-height: 62px;
  margin: 32px auto 0;
  border: 0;
  background: var(--green);
  color: var(--black);
  font-size: 19px;
  font-weight: 900;
  transition: background 180ms ease;
}

.contact-form button[type="submit"]:hover {
  background: var(--yellow);
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-align: center;
}

.form-status {
  min-height: 1.8em;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  background: #050505;
}

.footer-photo {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.footer-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.16));
}

.footer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.footer-photo p {
  position: absolute;
  top: 50%;
  left: 10vw;
  z-index: 2;
  margin: 0;
  translate: 0 -50%;
  color: var(--yellow);
  font-size: clamp(25px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 16px 4vw;
  font-family: var(--display);
  letter-spacing: 0.08em;
}

.footer-bottom img {
  width: 84px;
}

.footer-bottom a {
  color: #8a8a8a;
  font-size: 11px;
  text-decoration: none;
}

@media (max-width: 1200px) {
  :root {
    --content: min(1160px, 86vw);
  }

  .plan-arrow--prev { right: 82px; }
  .plan-arrow--next { right: 14px; }
}

@media (max-width: 1024px) {
  .hero-copy {
    width: 67vw;
    padding-left: 7vw;
  }

  .hero-media {
    width: 68%;
  }

  .flow-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-list li:nth-child(3)::after {
    display: none;
  }

  .plan-shell {
    width: var(--content);
  }

  .plan-track {
    grid-auto-columns: calc((100% - 1px) / 2);
  }

  .plan-arrow--prev { right: 80px; }
  .plan-arrow--next { right: 12px; }

  .works-grid {
    gap: 16px;
  }

  .work-card {
    grid-template-columns: 40% 60%;
  }

  .work-card > div {
    padding: 22px 20px;
  }

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

  .contact-side {
    position: static;
  }
}

@media (max-width: 736px) {
  :root {
    --content: 90vw;
  }

  html {
    scroll-padding-top: 54px;
  }

  body {
    background-attachment: scroll;
  }

  .site-header {
    height: 62px;
    padding: 9px 5vw;
  }

  .scroll-progress {
    display: none;
  }

  .stock-signal {
    right: -60%;
    left: -60%;
    height: 420px;
    opacity: 0.2;
  }

  .flow-stock img {
    --flow-from: translate3d(-18%, -3%, 0) scale(1.04);
    --flow-to: translate3d(-15%, -1%, 0) scale(1.09);
    width: 135%;
    height: 110%;
    object-position: 58% center;
    transform: var(--flow-from);
  }

  .header-logo {
    width: 66px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    display: block;
  }

  .hero {
    min-height: 840px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 25%, rgba(0, 0, 0, 0.62) 60%, #000 100%);
  }

  .hero-media {
    inset: 0;
    width: 100%;
    height: 590px;
  }

  .hero-photo--main {
    width: 100%;
    height: 100%;
    clip-path: none;
  }

  .hero-photo--main img {
    object-position: center;
  }

  .hero-photo--sub {
    display: none;
  }

  .hero-badge {
    top: 86px;
    right: 18px;
    width: 92px;
  }

  .hero-badge span {
    font-size: 32px;
  }

  .hero-copy {
    position: absolute;
    inset: auto 0 40px;
    width: 100%;
    padding: 0 5vw;
  }

  .hero-kicker {
    font-size: 13px;
  }

  .hero-word {
    font-size: clamp(98px, 31vw, 140px);
  }

  .hero-jp {
    margin-top: 20px;
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-message {
    margin-top: 28px;
    font-size: 23px;
  }

  .hero-detail {
    font-size: 13px;
  }

  .hero-cta {
    min-width: 245px;
    margin-top: 18px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .scroll-cue {
    right: 5vw;
    bottom: 242px;
    font-size: 13px;
  }

  .scroll-cue span {
    height: 112px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 20px;
  }

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

  .section-lead {
    max-width: none;
    margin-bottom: 42px;
    font-size: 15px;
  }

  .section-lead br {
    display: none;
  }

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

  .service-item {
    min-height: 225px;
    padding: 30px 10px;
  }

  .service-item h3 {
    min-height: 38px;
    margin-bottom: 20px;
    font-size: clamp(22px, 6vw, 29px);
  }

  .service-icon {
    width: 68px;
    font-size: 33px;
  }

  .member-portrait {
    margin-top: 46px;
  }

  .member-portrait img {
    border-width: 5px;
  }

  .member-stamp {
    right: -12px;
    bottom: -36px;
    width: 104px;
    font-size: 30px;
  }

  .member-profiles {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .member-profiles article {
    padding: 28px 24px;
  }

  .member-profiles h3 {
    font-size: 34px;
  }

  .flow-section {
    background-attachment: scroll;
  }

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

  .flow-list li {
    min-height: 0;
    padding: 24px 18px 24px 104px;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .flow-list li::after {
    display: none;
  }

  .flow-list span {
    position: absolute;
    top: 24px;
    left: 18px;
    font-size: 52px;
  }

  .flow-list strong {
    margin-top: 0;
  }

  .plan-shell {
    width: 100%;
  }

  .plan-track {
    grid-auto-columns: 84vw;
    scroll-padding-left: 5vw;
    padding-inline: 5vw;
    background: transparent;
  }

  .plan-card {
    min-height: 515px;
    padding: 38px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .plan-card h3 {
    min-height: 90px;
    font-size: 30px;
  }

  .plan-price {
    font-size: 50px;
  }

  .plan-arrow {
    display: none;
  }

  .tax-note {
    width: 90vw;
  }

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

  .work-card {
    grid-template-columns: 38% 62%;
    min-height: 250px;
  }

  .work-card > div {
    padding: 20px 16px;
  }

  .work-card h3 {
    font-size: 21px;
  }

  .work-card p:last-child {
    font-size: 12px;
    line-height: 1.65;
  }

  .contact-side h3 {
    font-size: 29px;
  }

  .contact-form label {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form label > span {
    padding-top: 0;
  }

  .footer-photo {
    height: 330px;
  }

  .footer-photo p {
    left: 5vw;
    font-size: 25px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 5vw;
    text-align: center;
  }

  .footer-bottom img {
    width: 68px;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }
}
