:root {
  --blue: #99cdd8;
  --mint: #d6e9e1;
  --cream: #fdebd3;
  --rose: #e3c0b2;
  --sage: #657166;
  --ink: #25302a;
  --white: rgba(255, 255, 255, 0.68);
  --glass: rgba(255, 255, 255, 0.42);
  --line: rgba(101, 113, 102, 0.2);
  --shadow: 0 28px 80px rgba(72, 82, 73, 0.22);
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  --font-mincho: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--sage);
  background:
    radial-gradient(circle at 12% 8%, rgba(253, 235, 211, 0.92), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(153, 205, 216, 0.72), transparent 26rem),
    linear-gradient(135deg, #f8fbf8 0%, var(--mint) 45%, #edf7f5 100%);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(101, 113, 102, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 113, 102, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding-inline: 34px;
  background: linear-gradient(180deg, rgba(37, 48, 42, 0.28), rgba(37, 48, 42, 0.08) 64%, transparent);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(310px, 1fr) auto auto;
  align-items: center;
  gap: 46px;
  width: 100%;
  min-height: 96px;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand,
.nav-links,
.nav-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 18px;
  min-width: 0;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff7eb;
  background: rgba(101, 113, 102, 0.88);
  box-shadow: 0 10px 26px rgba(37, 48, 42, 0.18);
  font-size: 23px;
  font-weight: 700;
}

.brand-text {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 14px rgba(37, 48, 42, 0.22);
  font-family: var(--font-mincho);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav-links {
  gap: 46px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 14px rgba(37, 48, 42, 0.24);
}

.nav-links a {
  position: relative;
  opacity: 0.86;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 0;
  height: 2px;
  background: var(--rose);
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  width: 34px;
}

.nav-cta {
  justify-self: end;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  color: #fff7eb;
  background: rgba(101, 113, 102, 0.88);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(101, 113, 102, 0.22);
}

.poster-section,
.section {
  width: min(1360px, calc(100% - 56px));
  margin-inline: auto;
}

.section {
  isolation: isolate;
}

.section-connector,
.section-orb {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.section-connector {
  width: 320px;
  height: 120px;
  border: 3px dashed rgba(101, 113, 102, 0.18);
  border-color: rgba(101, 113, 102, 0.2) transparent transparent transparent;
  border-radius: 50%;
}

.section-orb {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.52;
  animation: slowDrift 9s ease-in-out infinite;
}

.orb-mint {
  right: 8%;
  top: 8%;
  background: var(--mint);
}

.orb-rose {
  left: 12%;
  bottom: 4%;
  width: 92px;
  height: 92px;
  background: var(--rose);
  animation-delay: -3s;
}

.orb-blue {
  right: 10%;
  top: 12%;
  background: var(--blue);
}

.orb-cream {
  right: 12%;
  bottom: 8%;
  background: var(--cream);
  animation-delay: -5s;
}

.connector-hero {
  right: 10%;
  bottom: -52px;
  transform: rotate(14deg);
}

.connector-benchmark {
  left: 8%;
  top: -28px;
  transform: rotate(-18deg);
}

.connector-question {
  right: 12%;
  top: -34px;
  transform: rotate(12deg);
}

.connector-flow {
  left: 9%;
  top: -34px;
  transform: rotate(-12deg);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  border-radius: 0 0 56px 56px;
  padding: 148px 24px 76px;
}

.ambient,
.hero-pill,
.orbit,
.hero-path,
.floating-ui,
.badge {
  position: absolute;
  pointer-events: none;
}

.ambient {
  border-radius: 999px;
  filter: blur(10px);
}

.ambient-blue {
  top: 12%;
  right: 10%;
  width: 360px;
  height: 360px;
  background: rgba(153, 205, 216, 0.72);
}

.ambient-cream {
  bottom: 8%;
  left: 8%;
  width: 420px;
  height: 420px;
  background: rgba(253, 235, 211, 0.82);
}

.ambient-rose {
  top: 28%;
  left: 18%;
  width: 180px;
  height: 180px;
  background: rgba(227, 192, 178, 0.72);
}

.hero-pill {
  top: 16%;
  left: 50%;
  width: min(44vw, 500px);
  height: 68%;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(153, 205, 216, 0.58), rgba(253, 235, 211, 0.78) 56%, rgba(227, 192, 178, 0.46));
  box-shadow: inset 0 22px 42px rgba(255, 255, 255, 0.34), 0 40px 90px rgba(101, 113, 102, 0.16);
  transform: translateX(-50%) rotate(1deg);
}

.orbit {
  border: 1px solid rgba(101, 113, 102, 0.34);
  border-radius: 50%;
}

.orbit-one {
  top: 26%;
  right: 28%;
  width: 260px;
  height: 88px;
  transform: rotate(-14deg);
}

.orbit-two {
  bottom: 22%;
  left: 31%;
  width: 420px;
  height: 96px;
  transform: rotate(-10deg);
}

.hero-content {
  position: relative;
  z-index: 8;
  display: grid;
  justify-items: center;
  text-align: center;
}

.mini-label {
  margin: 0;
  color: rgba(101, 113, 102, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  color: var(--sage);
  font-family: var(--font-mincho);
  font-size: clamp(48px, 8.2vw, 118px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-title span:first-child {
  transform: translateX(-0.16em);
}

.hero-title span:last-child {
  transform: translateX(0.14em);
}

.hero-copy {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(37, 48, 42, 0.78);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 700;
  line-height: 1.9;
}

.ui-section {
  padding-top: 96px;
}

.capability-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
  min-height: 620px;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 52px;
  padding: 54px;
  background:
    radial-gradient(circle at 18% 25%, rgba(253, 235, 211, 0.94), transparent 260px),
    radial-gradient(circle at 46% 52%, rgba(227, 192, 178, 0.34), transparent 250px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(214, 233, 225, 0.62));
  box-shadow: 0 34px 100px rgba(72, 82, 73, 0.18);
  backdrop-filter: blur(18px);
}

.capability-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(101, 113, 102, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 113, 102, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.board-left,
.board-right {
  position: relative;
  z-index: 1;
}

.board-left {
  min-height: 500px;
}

.blob-card {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(82%, 560px);
  min-height: 430px;
  border-radius: 70px 130px 110px 70px;
  padding: 72px 58px;
  background:
    radial-gradient(circle at 82% 18%, rgba(153, 205, 216, 0.48), transparent 110px),
    radial-gradient(circle at 28% 74%, rgba(253, 235, 211, 0.82), transparent 180px),
    linear-gradient(90deg, rgba(253, 235, 211, 0.76), rgba(227, 192, 178, 0.22) 62%, transparent);
  box-shadow: none;
  opacity: 0.92;
}

.blob-card::before {
  content: "";
  position: absolute;
  right: 34px;
  top: 62px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.95), transparent 18px),
    var(--blue);
  box-shadow: 0 24px 56px rgba(101, 113, 102, 0.12);
}

.blob-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 42px;
  width: 230px;
  height: 86px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(153, 205, 216, 0.22));
  transform: rotate(-15deg);
}

.blob-card p,
.board-label {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(101, 113, 102, 0.74);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blob-card strong {
  position: relative;
  z-index: 3;
  display: block;
  margin-top: 46px;
  color: #fff9ee;
  font-family: var(--font-mincho);
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.soft-object {
  position: absolute;
  z-index: 2;
  left: 66%;
  top: 46%;
  width: 190px;
  height: 128px;
  border-radius: 44% 56% 48% 52%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.85), transparent 44px),
    linear-gradient(135deg, var(--rose), var(--cream) 48%, var(--sage));
  box-shadow: 0 24px 54px rgba(72, 82, 73, 0.16);
  transform: rotate(-18deg);
  animation: objectFloat 7s ease-in-out infinite;
}

.soft-object::before {
  content: "";
  position: absolute;
  left: -14px;
  top: -54px;
  width: 230px;
  height: 68px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), var(--rose));
  box-shadow: 0 22px 46px rgba(72, 82, 73, 0.16);
  transform: rotate(18deg);
}

.soft-object::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(153, 205, 216, 0.78);
  box-shadow: 0 18px 42px rgba(72, 82, 73, 0.14);
}

.small-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.small-blob.one {
  left: 10%;
  bottom: 16%;
  width: 70px;
  height: 44px;
  background: #fff;
  transform: rotate(-28deg);
}

.small-blob.two {
  left: 78%;
  top: 15%;
  width: 88px;
  height: 88px;
  background: radial-gradient(circle at 40% 35%, #fff, var(--blue));
  box-shadow: 0 20px 44px rgba(72, 82, 73, 0.14);
}

.board-toolbar {
  position: absolute;
  left: 12%;
  right: 8%;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 54px rgba(72, 82, 73, 0.16);
  backdrop-filter: blur(18px);
}

.board-toolbar span,
.board-toolbar b {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 999px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 950;
}

.board-toolbar b {
  color: var(--cream);
  background: var(--sage);
}

.board-right {
  display: grid;
  align-content: center;
}

.board-right h3 {
  margin: 24px 0 0;
  color: var(--ink);
  font-family: var(--font-mincho);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.capability-list {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(101, 113, 102, 0.16);
}

.capability-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(101, 113, 102, 0.16);
}

.capability-list span {
  color: rgba(101, 113, 102, 0.55);
  font-size: 18px;
  font-weight: 950;
}

.capability-list h4 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.capability-list p {
  margin: 10px 0 0;
  color: rgba(37, 48, 42, 0.66);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.benchmark-section {
  padding-top: 70px;
}

.benchmark-flow {
  position: relative;
  min-height: 760px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 54px;
  background:
    radial-gradient(circle at 18% 18%, rgba(253, 235, 211, 0.84), transparent 260px),
    radial-gradient(circle at 82% 72%, rgba(153, 205, 216, 0.54), transparent 280px),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 32px 96px rgba(72, 82, 73, 0.15);
  backdrop-filter: blur(18px);
  padding: 56px 6% 68px;
}

.flow-head {
  position: relative;
  z-index: 2;
  max-width: none;
  text-align: center;
}

.flow-head h2 {
  display: none;
}

.flow-head>p:not(.mini-label) {
  max-width: none;
  width: auto;
  margin: 0;
  color: var(--sage);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.45;
}

.flow-curve {
  position: absolute;
  top: 114px;
  left: 50%;
  width: 94%;
  height: 620px;
  transform: translateX(-50%);
  fill: none;
  z-index: 1;
  stroke: rgba(101, 113, 102, 0.34);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 10 13;
}

.reference-shot {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 28px 72px rgba(72, 82, 73, 0.17);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shot-stripe:hover,
.shot-awards:hover {
  transform: translateY(-8px) rotate(5deg);
}

.shot-linear:hover {
  transform: translateY(-8px) rotate(-7deg);
}

.shot-apple:hover {
  transform: translateY(-8px) rotate(-6deg);
}

.reference-shot:hover {
  box-shadow: 0 36px 92px rgba(72, 82, 73, 0.23);
}

.shot-stripe {
  left: 6%;
  top: 132px;
  width: min(260px, 18%);
  min-height: 214px;
  transform: rotate(5deg);
  animation: cardDriftA 8s ease-in-out infinite;
}

.shot-linear {
  right: 6%;
  left: auto;
  top: 138px;
  width: min(265px, 19%);
  min-height: 218px;
  transform: rotate(-7deg);
  animation: cardDriftB 9s ease-in-out infinite;
}

.shot-apple {
  left: 7%;
  right: auto;
  top: 470px;
  width: min(250px, 18%);
  min-height: 204px;
  transform: rotate(-6deg);
  animation: cardDriftB 8.5s ease-in-out infinite;
}

.shot-awards {
  right: 7%;
  top: 462px;
  bottom: auto;
  width: min(255px, 18%);
  min-height: 206px;
  transform: rotate(7deg);
  animation: cardDriftA 9.5s ease-in-out infinite;
}

.shot-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(101, 113, 102, 0.12);
  background: rgba(255, 255, 255, 0.34);
}

.shot-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.shot-top span:nth-child(2) {
  background: var(--cream);
}

.shot-top span:nth-child(3) {
  background: var(--blue);
}

.shot-top b {
  overflow: hidden;
  margin-left: 8px;
  color: rgba(101, 113, 102, 0.72);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.shot-body {
  position: relative;
  min-height: 138px;
  padding: 0;
}

.site-preview {
  height: 138px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
}

.site-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.reference-shot a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin: 10px 0 14px 14px;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--cream);
  background: var(--sage);
  font-size: 11px;
  font-weight: 950;
}

.flow-message {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 276px;
  transform: translateX(-50%);
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 34px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 58px rgba(72, 82, 73, 0.12);
  backdrop-filter: blur(18px);
}

.flow-message span {
  color: rgba(101, 113, 102, 0.72);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.flow-message h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--font-mincho);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.flow-message p {
  margin: 14px 0 0;
  color: rgba(37, 48, 42, 0.66);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  padding: 0 28px;
  border: 1px solid rgba(101, 113, 102, 0.22);
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.text-button:hover {
  transform: translateY(-3px);
}

.button.primary,
.contact-button {
  color: var(--cream);
  background: var(--sage);
  box-shadow: 0 18px 42px rgba(101, 113, 102, 0.24);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(12px);
}

.hero-path {
  z-index: 1;
  inset: 120px 3% auto;
  width: 94%;
  height: 62%;
  fill: none;
  stroke: rgba(101, 113, 102, 0.44);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 9 13;
}

.floating-ui {
  z-index: 3;
}

.project-float,
.work-card,
.support-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.project-float {
  overflow: hidden;
  width: 250px;
  border-radius: 26px;
  animation: float 12s ease-in-out infinite;
}

.float-a {
  left: 4%;
  bottom: 14%;
  transform: rotate(-5deg);
}

.float-b {
  top: 21%;
  right: 3%;
  width: 282px;
  transform: rotate(4deg);
  animation-delay: -2s;
}

.float-c {
  right: 7%;
  bottom: 8%;
  width: 242px;
  transform: rotate(-3deg);
  animation-delay: -4s;
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(101, 113, 102, 0.12);
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
}

.browser-top span:nth-child(2) {
  background: var(--cream);
}

.browser-top span:nth-child(3) {
  background: var(--blue);
}

.browser-top b {
  overflow: hidden;
  margin-left: 7px;
  color: rgba(101, 113, 102, 0.72);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mini-preview {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 154px;
  padding: 20px;
  overflow: hidden;
}

.site-frame {
  min-height: 170px;
  padding: 0;
  background: var(--cream);
}

.site-frame iframe,
.work-visual iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.site-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 390%;
  height: 390%;
  transform: scale(0.256);
  transform-origin: 0 0;
  pointer-events: none;
}

.mini-preview strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.mini-preview p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 800;
}

.preview-map {
  background:
    radial-gradient(circle at 22% 30%, var(--blue) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 24%, var(--rose) 0 7px, transparent 8px),
    linear-gradient(135deg, rgba(153, 205, 216, 0.44), rgba(253, 235, 211, 0.64));
}

.preview-map i {
  position: absolute;
  width: 96px;
  height: 34px;
  border: 1px solid rgba(101, 113, 102, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.preview-map i:nth-child(1) {
  top: 30px;
  left: 24px;
}

.preview-map i:nth-child(2) {
  top: 68px;
  right: 18px;
}

.preview-map i:nth-child(3) {
  bottom: 46px;
  left: 48px;
}

.preview-sakura {
  background:
    radial-gradient(circle at 72% 28%, rgba(227, 192, 178, 0.8), transparent 66px),
    linear-gradient(135deg, rgba(253, 235, 211, 0.9), rgba(214, 233, 225, 0.72));
}

.preview-service {
  background:
    linear-gradient(90deg, rgba(101, 113, 102, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(101, 113, 102, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 64% 36%, rgba(153, 205, 216, 0.9), transparent 64px),
    var(--cream);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.badge {
  z-index: 6;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(253, 235, 211, 0.66);
  box-shadow: 0 16px 44px rgba(72, 82, 73, 0.16);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 900;
}

.badge-mobile {
  top: 33%;
  left: 17%;
}

.badge-live {
  right: 9%;
  bottom: 30%;
}

.badge-plan {
  left: 12%;
  top: 60%;
}

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

.ui-section,
.works-section,
.support-section {
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.35), transparent 240px),
    transparent;
  border-radius: 46px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(280px, 1fr);
  gap: 64px;
  align-items: end;
}

.section-heading h2 {
  margin: 16px 0 0;
  color: var(--sage);
  font-family: var(--font-mincho);
  font-size: clamp(38px, 5.8vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.section-heading.centered {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.section-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(37, 48, 42, 0.72);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.work-canvas {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 26px;
  margin-top: 58px;
}

.work-card {
  overflow: hidden;
  border-radius: 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 96px rgba(72, 82, 73, 0.28);
}

.support-card:nth-child(2),
.flow-line article:nth-child(2n) {
  animation-delay: -2s;
}

.support-card:nth-child(3),
.flow-line article:nth-child(3n) {
  animation-delay: -4s;
}

.work-card-large {
  grid-row: span 2;
}

.work-card-offset {
  transform: translateY(46px);
}

.work-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-bottom: 1px solid rgba(101, 113, 102, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.work-card-large .work-visual {
  min-height: 560px;
}

.work-visual iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  transform-origin: 0 0;
}

.visual-remote {
  background:
    radial-gradient(circle at 28% 28%, rgba(153, 205, 216, 0.92), transparent 140px),
    radial-gradient(circle at 72% 66%, rgba(227, 192, 178, 0.68), transparent 150px),
    linear-gradient(135deg, rgba(214, 233, 225, 0.96), rgba(253, 235, 211, 0.78));
}

.visual-sakura {
  background:
    radial-gradient(circle at 60% 34%, rgba(227, 192, 178, 0.95), transparent 110px),
    radial-gradient(circle at 28% 80%, rgba(253, 235, 211, 0.9), transparent 100px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(214, 233, 225, 0.82));
}

.visual-sweet {
  background:
    radial-gradient(circle at 66% 24%, rgba(153, 205, 216, 0.95), transparent 112px),
    linear-gradient(135deg, rgba(253, 235, 211, 0.9), rgba(227, 192, 178, 0.62));
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(101, 113, 102, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 113, 102, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.visual-panel {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(18px);
}

.visual-panel small {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.visual-panel strong {
  color: var(--ink);
  font-size: clamp(30px, 4.4vw, 58px);
  font-weight: 950;
  line-height: 0.94;
}

.work-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  padding: 26px;
}

.work-kicker {
  margin: 0 0 10px;
  color: rgba(101, 113, 102, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.work-info h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
}

.work-info p:not(.work-kicker) {
  margin: 12px 0 0;
  color: rgba(37, 48, 42, 0.68);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 44px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--sage);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.question-section {
  width: 100%;
  padding-inline: max(28px, calc((100% - 1360px) / 2));
  background: linear-gradient(135deg, rgba(253, 235, 211, 0.72), rgba(214, 233, 225, 0.74));
}

.question-path {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  max-width: 1050px;
  margin: 58px auto 0;
  padding: 52px 18px;
}

.question-path::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  border-top: 3px dashed rgba(101, 113, 102, 0.35);
}

.question-path span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 44px rgba(72, 82, 73, 0.13);
  backdrop-filter: blur(16px);
  color: var(--ink);
  font-weight: 900;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.support-card {
  min-height: 250px;
  border-radius: 999px;
  padding: 34px 28px;
  animation: microFloat 8s ease-in-out infinite;
}

.support-card span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--rose);
  font-size: 36px;
  font-weight: 950;
}

.support-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
}

.support-card p {
  margin: 14px 0 0;
  color: rgba(37, 48, 42, 0.68);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.flow-section {
  width: 100%;
  padding-inline: max(28px, calc((100% - 1360px) / 2));
  background: rgba(153, 205, 216, 0.22);
}

.flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.flow-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  border-top: 3px dashed rgba(101, 113, 102, 0.34);
}

.flow-line article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  animation: microFloat 9s ease-in-out infinite;
}

.flow-line span {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  color: var(--cream);
  background: var(--sage);
  box-shadow: 0 18px 38px rgba(101, 113, 102, 0.2);
  font-weight: 950;
}

.flow-line h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 24px;
}

.flow-line p {
  margin: 10px 0 0;
  color: rgba(37, 48, 42, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.contact-section {
  padding-bottom: 130px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin-inline: auto;
  border-radius: 48px;
  padding: 70px;
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 18%, rgba(153, 205, 216, 0.5), transparent 180px),
    linear-gradient(135deg, #657166, #4e5d51);
}

.contact-card .mini-label,
.contact-card p,
.contact-card small {
  color: rgba(253, 235, 211, 0.82);
}

.contact-card h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 18px 0 0;
  color: #fff7eb;
  font-family: var(--font-mincho);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.contact-card p:not(.mini-label) {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 26px 0 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.contact-button {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  color: var(--sage);
  background: var(--cream);
}

.contact-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  font-weight: 900;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.2px);
}

.orb-a {
  right: 96px;
  top: 72px;
  width: 150px;
  height: 150px;
  background: var(--blue);
  opacity: 0.72;
}

.orb-b {
  right: 210px;
  bottom: 54px;
  width: 92px;
  height: 92px;
  background: var(--rose);
  opacity: 0.82;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes float {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -4px;
  }
}

@keyframes slowDrift {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(4px, -6px, 0) scale(1.02);
  }
}

@keyframes microFloat {

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

  50% {
    transform: translateY(-3px);
  }
}

@keyframes cardDriftA {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 3px -4px;
  }
}

@keyframes cardDriftB {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: -3px 4px;
  }
}

@keyframes objectFloat {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -5px;
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .nav-links {
    display: none;
  }

  .section-grid,
  .work-canvas,
  .support-grid,
  .flow-line {
    grid-template-columns: 1fr;
  }

  .benchmark-flow {
    min-height: auto;
    padding: 26px;
  }

  .flow-head,
  .flow-message {
    position: relative;
    inset: auto;
    max-width: none;
    margin-bottom: 18px;
  }

  .flow-head>p:not(.mini-label) {
    position: static;
    width: auto;
    margin-top: 22px;
  }

  .flow-head h2 {
    font-size: 48px;
  }

  .flow-curve {
    display: none;
  }

  .reference-shot,
  .flow-message {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    margin-bottom: 18px;
    transform: none;
  }

  .reference-shot:hover {
    transform: translateY(-6px);
  }

  .flow-message {
    max-width: none;
    margin-bottom: 0;
  }

  .capability-board {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px;
  }

  .board-left {
    min-height: 470px;
  }

  .work-card-large {
    grid-row: auto;
  }

  .work-card-offset {
    transform: none;
  }

  .support-card {
    border-radius: 34px;
  }

  .flow-line::before {
    left: 42px;
    right: auto;
    top: 0;
    bottom: 0;
    border-top: 0;
    border-left: 3px dashed rgba(101, 113, 102, 0.34);
  }

  .flow-line article {
    grid-template-columns: 84px 1fr;
    gap: 18px;
    justify-items: start;
    text-align: left;
  }

  .flow-line h3 {
    margin-top: 4px;
  }

  .flow-line p {
    grid-column: 2;
    margin-top: -28px;
  }

  .badge-mobile {
    display: none;
  }

  .project-float {
    width: 180px;
  }

  .float-a {
    left: 3%;
    bottom: 18%;
  }

  .float-b {
    top: 16%;
    right: 3%;
    width: 180px;
  }

  .float-c {
    right: 4%;
    bottom: 6%;
    width: 180px;
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 0 0 auto;
    padding-inline: 18px;
  }

  .nav-shell {
    min-height: 68px;
    padding: 0 14px;
    border-radius: 0;
  }

  .brand-text {
    max-width: 150px;
    font-size: 16px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .poster-section,
  .section {
    width: min(100% - 24px, 1360px);
  }

  .hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-content: start;
    justify-items: center;
    gap: 18px;
    min-height: auto;
    padding: 104px 14px 56px;
    border-radius: 0 0 34px 34px;
  }

  .hero-content {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-title span:first-child,
  .hero-title span:last-child {
    transform: none;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 15px;
  }

  .button {
    width: min(100%, 280px);
  }

  .floating-ui.project-float {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    border-radius: 14px;
    grid-row: 2;
  }

  .float-a {
    grid-column: 1;
    transform: rotate(-2deg);
  }

  .float-b {
    grid-column: 2;
    transform: rotate(1deg);
    display: block;
  }

  .float-c {
    grid-column: 3;
    transform: rotate(-1deg);
  }

  .hero-pill,
  .ambient,
  .orbit,
  .hero-path,
  .badge-live,
  .badge-plan {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10.5vw, 52px);
  }

  .section-lead {
    font-size: 15px;
  }

  .work-visual,
  .work-card-large .work-visual {
    min-height: 310px;
  }

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

  .capability-board {
    border-radius: 34px;
    padding: 22px;
  }

  .board-left {
    min-height: 390px;
  }

  .blob-card {
    width: 82%;
    min-height: 300px;
    border-radius: 42px 70px 56px 42px;
    padding: 44px 34px;
  }

  .blob-card strong {
    margin-top: 34px;
    font-size: 46px;
  }

  .soft-object {
    left: 58%;
    top: 45%;
    width: 140px;
    height: 96px;
  }

  .soft-object::before {
    width: 150px;
    height: 48px;
  }

  .board-toolbar {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 28px;
  }

  .board-right h3 {
    font-size: 36px;
  }

  .capability-list article {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .question-path {
    justify-content: flex-start;
    padding-block: 18px;
  }

  .question-path::before {
    display: none;
  }

  .flow-line article {
    grid-template-columns: 66px 1fr;
  }

  .flow-line span {
    width: 66px;
    height: 66px;
  }

  .flow-line::before {
    left: 33px;
  }

  .flow-line p {
    grid-column: 2;
    margin-top: -22px;
  }

  .contact-card {
    border-radius: 34px;
    padding: 42px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}