:root {
  --bg: #fafaf7;
  --bg-soft: #f1f0eb;
  --card: #fffefd;
  --text: #181716;
  --body: #303436;
  --muted: #6e7478;
  --accent: #2c6e6b;
  --accent-hover: #1f5652;
  --accent-soft: #e6f0ee;
  --warm: #d28b63;
  --warm-soft: #f4e5d8;
  --tag-bg: #edf2ef;
  --border: #e3ded8;
  --border-strong: #d5ccc2;
  --warn: #985f22;
  --shadow: 0 18px 42px rgba(24, 23, 22, 0.07);
  --soft-shadow: 0 10px 28px rgba(44, 110, 107, 0.08);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(210, 139, 99, 0.1), transparent 28rem),
    linear-gradient(180deg, #fffefd 0%, var(--bg) 34rem);
  color: var(--body);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

img,
svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  background: rgba(250, 250, 247, 0.9);
  border-bottom: 1px solid rgba(227, 222, 216, 0.86);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1160px, calc(100% - 56px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.3;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: relative;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 4px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  opacity: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}

main {
  min-height: calc(100vh - var(--header-height));
}

.container {
  width: min(960px, calc(100% - 56px));
  margin: 0 auto;
}

.wide-container {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
}

.narrow-container {
  width: min(780px, calc(100% - 56px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section.soft {
  background: color-mix(in srgb, var(--bg-soft) 82%, #fff 18%);
}

.page-hero {
  padding: 90px 0 44px;
}

.editorial-page-hero {
  border-bottom: 1px solid rgba(227, 222, 216, 0.75);
}

.about-brand-hero {
  position: relative;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(227, 222, 216, 0.78);
  overflow: hidden;
}

.about-brand-hero::after {
  content: "EMOTION / COGNITION / LEARNING";
  position: absolute;
  right: min(8vw, 112px);
  bottom: 22px;
  color: rgba(44, 110, 107, 0.07);
  font-size: clamp(46px, 8vw, 108px);
  font-weight: 760;
  letter-spacing: 0.03em;
  line-height: 1;
  pointer-events: none;
}

.about-brand-hero .narrow-container {
  position: relative;
  z-index: 1;
}

.about-brand-hero h1 {
  max-width: 880px;
}

.brand-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.brand-keywords span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid rgba(44, 110, 107, 0.18);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.6);
  color: var(--accent);
  font-size: 14px;
  font-weight: 650;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 650;
  line-height: 1.08;
}

.page-hero h1 {
  font-size: clamp(36px, 4.6vw, 56px);
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 650;
  line-height: 1.22;
}

h3 {
  font-size: 20px;
  font-weight: 620;
  line-height: 1.36;
}

h4 {
  font-size: 16px;
  font-weight: 650;
}

p {
  margin: 14px 0 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

.hero {
  padding: 102px 0 96px;
}

.editorial-hero {
  position: relative;
  overflow: hidden;
}

.editorial-hero::after {
  content: "";
  position: absolute;
  left: min(8vw, 112px);
  right: min(8vw, 112px);
  bottom: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(44, 110, 107, 0.18), rgba(210, 139, 99, 0.16), transparent);
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  z-index: 0;
  color: rgba(44, 110, 107, 0.055);
  font-size: clamp(70px, 13vw, 178px);
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
}

.hero-watermark-understand {
  top: 74px;
  right: -16px;
}

.hero-watermark-act {
  left: min(4vw, 64px);
  bottom: 34px;
  color: rgba(210, 139, 99, 0.055);
}

.hero-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(46px, 6vw, 92px);
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -34px;
  left: -28px;
  width: 1px;
  height: 106px;
  background: linear-gradient(var(--accent), transparent);
  opacity: 0.46;
}

.hero-title {
  max-width: 820px;
  font-size: clamp(48px, 6.6vw, 82px);
  line-height: 0.98;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(12px);
  animation: heroLine 720ms ease forwards;
}

.hero-line + .hero-line {
  color: var(--accent);
  animation-delay: 140ms;
}

.hero-lead {
  margin-top: 20px;
  color: var(--body);
  font-size: 20px;
}

.hero-narrative {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-weight: 650;
  text-decoration: none;
  transition: background 190ms ease, color 190ms ease, border-color 190ms ease, transform 190ms ease;
}

.button span {
  transition: transform 190ms ease;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button:hover span {
  transform: translateX(3px);
}

.button.primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
}

.button.secondary:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.method-loop {
  position: relative;
  min-height: 590px;
  margin: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.method-loop::before {
  content: "";
  position: absolute;
  inset: 5% 4% 5% 5%;
  border: 1px solid rgba(227, 222, 216, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 254, 253, 0.74) 0 30%, rgba(230, 240, 238, 0.24) 31% 45%, rgba(244, 229, 216, 0.2) 66%, transparent 68%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.56), rgba(250, 250, 247, 0.12));
  box-shadow: 0 28px 70px rgba(44, 110, 107, 0.07);
  animation: loopHalo 8s ease-in-out infinite;
  z-index: -2;
}

.method-loop-code,
.archive-id {
  position: absolute;
  top: 18px;
  left: 20px;
  color: rgba(44, 110, 107, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.method-loop-lines {
  position: absolute;
  width: min(94%, 486px);
  aspect-ratio: 1;
  overflow: visible;
}

.loop-track,
.loop-flow,
.loop-axis {
  fill: none;
  stroke: rgba(44, 110, 107, 0.13);
  stroke-width: 1;
}

.loop-flow {
  stroke: var(--accent);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-dasharray: 18 76;
  opacity: 0.34;
  animation: loopFlow 14s linear infinite;
}

.loop-axis {
  stroke: rgba(210, 139, 99, 0.16);
  stroke-dasharray: 4 14;
}

.method-loop-center {
  position: relative;
  z-index: 2;
  width: 176px;
  height: 176px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px 22px;
  border-radius: 50%;
  background: rgba(255, 254, 253, 0.72);
  border: 1px solid rgba(227, 222, 216, 0.68);
  box-shadow: 0 18px 42px rgba(24, 23, 22, 0.055);
  text-align: center;
  color: var(--muted);
  animation: centerBreathe 7.2s ease-in-out infinite;
}

.method-loop-center span {
  display: block;
  max-width: 112px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.45;
}

.method-loop-center strong {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1.22;
}

.loop-node {
  position: absolute;
  z-index: 3;
  transform: var(--node-transform, none);
  width: 88px;
  min-height: 58px;
  padding: 10px 11px;
  border: 1px solid rgba(227, 222, 216, 0.86);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.78);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(24, 23, 22, 0.045);
  cursor: default;
  animation: nodeBreathe 6.8s ease-in-out infinite;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.loop-node span {
  display: block;
  color: var(--accent);
  font-weight: 700;
}

.loop-node small {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  opacity: 0;
  transition: max-height 190ms ease, opacity 190ms ease, margin 190ms ease;
}

.loop-node:hover,
.loop-node:focus-visible {
  transform: var(--node-transform, none) translateY(-3px);
  background: rgba(255, 254, 253, 0.94);
  border-color: rgba(44, 110, 107, 0.28);
  box-shadow: 0 14px 30px rgba(24, 23, 22, 0.075);
}

.loop-node:hover small,
.loop-node:focus-visible small {
  max-height: 38px;
  margin-top: 4px;
  opacity: 1;
}

.loop-node-1 { top: 8%; left: 52%; --node-transform: translateX(-50%) rotate(-1deg); }
.loop-node-2 { top: 24%; right: 5%; --node-transform: rotate(1.4deg); animation-delay: 600ms; }
.loop-node-3 { right: 8%; bottom: 22%; --node-transform: rotate(-0.8deg); animation-delay: 1200ms; }
.loop-node-4 { bottom: 8%; left: 47%; --node-transform: translateX(-50%) rotate(1deg); animation-delay: 1800ms; }
.loop-node-5 { left: 6%; bottom: 25%; --node-transform: rotate(-1.2deg); animation-delay: 2400ms; }
.loop-node-6 { top: 26%; left: 8%; --node-transform: rotate(0.8deg); animation-delay: 3000ms; }

.placeholder {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(44, 110, 107, 0.08), rgba(255, 255, 255, 0) 58%),
    var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(44, 110, 107, 0.22);
  border-radius: 8px;
}

.placeholder strong {
  position: relative;
  display: block;
  color: var(--accent);
  font-size: 18px;
}

.placeholder span {
  position: relative;
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

.placeholder.thumb {
  min-height: 190px;
  aspect-ratio: 16 / 10;
}

.about-photo-placeholder {
  width: 100%;
  max-width: 420px;
  min-height: 170px;
  align-self: start;
  justify-self: center;
  margin-top: 8px;
  background:
    linear-gradient(135deg, rgba(230, 240, 238, 0.44), rgba(244, 229, 216, 0.24)),
    var(--bg-soft);
  box-shadow: none;
}

.about-photo-placeholder strong {
  color: rgba(44, 110, 107, 0.72);
  font-size: 16px;
}

.about-photo-placeholder span {
  color: rgba(110, 116, 120, 0.78);
}

.portrait-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  max-width: 420px;
  justify-self: center;
  min-height: 520px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-soft);
  box-shadow: var(--soft-shadow);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 254, 253, 0.52);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 28%;
}

.portrait-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(250, 250, 247, 0.82);
  color: rgba(44, 110, 107, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(28, 25, 23, 0.02);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(44, 110, 107, 0.34);
  box-shadow: var(--shadow);
}

.card p,
.list-card p {
  color: var(--muted);
}

.problem-map-section .section-head {
  margin-bottom: 20px;
}

.editorial-problems {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.problem-block {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(150px, 0.58fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: transform 190ms ease;
}

.problem-block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 220ms ease;
}

.problem-block:hover {
  transform: translateX(4px);
}

.problem-block:hover::after {
  width: 100%;
}

.problem-number {
  color: rgba(44, 110, 107, 0.18);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 700;
  line-height: 0.98;
}

.problem-block h3 {
  color: var(--body);
  font-size: 18px;
}

.problem-block p {
  margin-top: 0;
  color: var(--muted);
  font-size: 15px;
}

.method-section {
  overflow: hidden;
}

.core-method-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.98), rgba(250, 250, 247, 0.96)),
    var(--bg);
}

.core-method-section .section-head {
  align-items: start;
  margin-bottom: 48px;
}

.core-method-section .section-head h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.core-method {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 0;
  border-top: 1px solid rgba(44, 110, 107, 0.22);
}

.core-method::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(210, 139, 99, 0.66));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms ease;
}

.core-method.method-path--drawn::before {
  transform: scaleX(1);
}

.core-method-block {
  position: relative;
  min-height: 380px;
  padding: 34px 34px 30px 0;
  display: grid;
  align-content: space-between;
  border-right: 1px solid rgba(227, 222, 216, 0.82);
}

.core-method-block + .core-method-block {
  padding-left: 34px;
}

.core-method-block:last-child {
  border-right: 0;
}

.core-method-number {
  display: block;
  color: rgba(44, 110, 107, 0.14);
  font-size: clamp(72px, 10vw, 132px);
  font-weight: 760;
  line-height: 0.84;
}

.core-method-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.core-method-block h3 {
  max-width: 330px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
}

.core-method-block p:not(.core-method-kicker) {
  max-width: 360px;
  color: var(--muted);
}

.core-method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.core-method-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(44, 110, 107, 0.18);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 650;
  background: rgba(255, 254, 253, 0.68);
}

.core-method-block {
  opacity: 0.5;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.core-method.method-path--drawn .core-method-block {
  opacity: 1;
  transform: translateY(0);
}

.core-method.method-path--drawn .core-method-block:nth-child(2) {
  transition-delay: 120ms;
}

.core-method.method-path--drawn .core-method-block:nth-child(3) {
  transition-delay: 240ms;
}

.core-method-block:hover {
  transform: translateY(-4px);
}

.method-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
  padding-top: 56px;
}

.method-path-line {
  position: absolute;
  top: 30px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: rgba(44, 110, 107, 0.13);
  overflow: hidden;
}

.method-path-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(210, 139, 99, 0.65));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms ease;
}

.method-path.method-path--drawn .method-path-line::before {
  transform: scaleX(1);
}

.path-node {
  position: relative;
  min-height: 152px;
  padding: 0 2px;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: 0.52;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease, color 190ms ease;
}

.path-node::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(44, 110, 107, 0.26);
  transition: background 190ms ease, border-color 190ms ease, transform 190ms ease;
}

.method-path.method-path--drawn .path-node {
  opacity: 1;
  transform: translateY(0);
}

.method-path.method-path--drawn .path-node::before {
  background: var(--accent);
  border-color: var(--accent);
}

.method-path.method-path--drawn .path-node:nth-of-type(2) { transition-delay: 90ms; }
.method-path.method-path--drawn .path-node:nth-of-type(3) { transition-delay: 180ms; }
.method-path.method-path--drawn .path-node:nth-of-type(4) { transition-delay: 270ms; }
.method-path.method-path--drawn .path-node:nth-of-type(5) { transition-delay: 360ms; }
.method-path.method-path--drawn .path-node:nth-of-type(6) { transition-delay: 450ms; }
.method-path.method-path--drawn .path-node:nth-of-type(7) { transition-delay: 540ms; }

.path-node:hover {
  transform: translateY(-2px);
}

.path-index,
.service-number {
  display: block;
  color: rgba(44, 110, 107, 0.34);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.path-node h3 {
  margin-top: 14px;
  color: var(--accent);
  font-size: 19px;
}

.path-node p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.service-snapshot {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.support-groups {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 42px;
  align-items: start;
}

.support-group {
  border-top: 1px solid rgba(44, 110, 107, 0.24);
}

.support-label {
  margin: 0;
  padding-top: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.support-items {
  display: grid;
  gap: 0;
}

.support-group article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(227, 222, 216, 0.82);
}

.support-group article span {
  color: rgba(44, 110, 107, 0.32);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.1;
}

.support-group article h3 {
  font-size: 20px;
}

.support-group article p {
  grid-column: 2;
  color: var(--muted);
  font-size: 15px;
}

.support-group-secondary {
  margin-top: 72px;
  opacity: 0.78;
}

.support-group-secondary article {
  display: block;
}

.support-group-secondary article span {
  display: block;
  margin-bottom: 14px;
}

.support-boundary {
  max-width: 720px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(227, 222, 216, 0.82);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.snapshot-item {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.snapshot-item span {
  color: rgba(44, 110, 107, 0.44);
  font-weight: 800;
}

.snapshot-item p {
  margin-top: 0;
  color: var(--muted);
}

.snapshot-item-muted {
  opacity: 0.82;
}

.service-ledger {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(213, 204, 194, 0.72);
}

.service-entry {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 30px;
  padding: 48px 0 50px;
  border-bottom: 1px solid rgba(227, 222, 216, 0.76);
}

.service-entry-secondary {
  opacity: 0.86;
}

.service-entry > .service-number {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.85;
  color: rgba(44, 110, 107, 0.14);
}

.service-main h2 {
  max-width: 720px;
  color: var(--text);
  font-size: clamp(30px, 3.2vw, 40px);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 28px;
}

.service-columns section {
  padding-left: 0;
  padding-top: 14px;
  border-left: 0;
  border-top: 1px solid rgba(44, 110, 107, 0.16);
}

.service-columns h3 {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.service-columns p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.work-card {
  overflow: hidden;
  padding: 0;
}

.work-card .card-body {
  padding: 22px;
}

.archive-preview-row,
.archive-grid {
  display: grid;
  gap: 22px;
}

.archive-preview-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.archive-card {
  overflow: hidden;
  background: rgba(255, 254, 253, 0.82);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.archive-card:hover {
  transform: translateY(-3px);
  border-color: rgba(44, 110, 107, 0.36);
  box-shadow: var(--shadow);
}

.archive-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.archive-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
}

.archive-body {
  padding: 24px;
}

.archive-body h2,
.archive-body h3 {
  margin-top: 10px;
}

.archive-body p {
  color: var(--muted);
}

.archive-body strong {
  color: var(--body);
  font-weight: 700;
}

.evidence-line {
  margin-top: 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.52;
}

.method-tag {
  display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(44, 110, 107, 0.22);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--accent);
  font-size: 13px;
}

.tag-list-quiet .tag {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

.archive-preview,
.abstract-banner {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(230, 240, 238, 0.96), rgba(244, 229, 216, 0.55)),
    var(--bg-soft);
}

.archive-card-large .archive-preview,
.archive-card-wide .archive-preview {
  min-height: 100%;
}

.preview-sq3r i,
.preview-cards i,
.preview-flow i,
.preview-phone i,
.preview-files i,
.abstract-banner i {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.82);
  border: 1px solid rgba(44, 110, 107, 0.18);
}

.preview-sq3r i:nth-of-type(1) { width: 58%; height: 18px; left: 20%; top: 28%; }
.preview-sq3r i:nth-of-type(2) { width: 42%; height: 14px; left: 20%; top: 42%; }
.preview-sq3r i:nth-of-type(3) { width: 52%; height: 14px; left: 20%; top: 53%; }
.preview-sq3r i:nth-of-type(4) { width: 34%; height: 14px; left: 20%; top: 64%; }

.preview-cards i:nth-of-type(1) { width: 46%; height: 56%; left: 13%; top: 27%; transform: rotate(-4deg); }
.preview-cards i:nth-of-type(2) { width: 46%; height: 56%; right: 13%; top: 18%; transform: rotate(3deg); }
.preview-cards i:nth-of-type(3) { width: 42%; height: 12px; left: 29%; bottom: 18%; background: rgba(44, 110, 107, 0.22); }

.preview-trend svg {
  position: absolute;
  inset: 18% 8% 12%;
  width: 84%;
  height: 72%;
}

.preview-trend path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.72;
}

.preview-trend path + path {
  stroke: var(--warm);
  stroke-width: 4;
  opacity: 0.58;
}

.preview-flow i:nth-of-type(1) { width: 22%; height: 34px; left: 11%; top: 42%; }
.preview-flow i:nth-of-type(2) { width: 22%; height: 34px; left: 39%; top: 30%; }
.preview-flow i:nth-of-type(3) { width: 22%; height: 34px; right: 11%; top: 42%; }
.preview-flow i:nth-of-type(4) { width: 58%; height: 2px; left: 21%; top: 51%; background: rgba(44, 110, 107, 0.26); border: 0; }

.preview-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16%;
  width: 96px;
  height: 154px;
  transform: translateX(-50%);
  border: 1px solid rgba(44, 110, 107, 0.32);
  border-radius: 18px;
  background: rgba(255, 254, 253, 0.88);
}

.preview-phone i:nth-of-type(1) { width: 52px; height: 8px; left: calc(50% - 26px); top: 30%; }
.preview-phone i:nth-of-type(2) { width: 68px; height: 34px; left: calc(50% - 34px); top: 43%; }
.preview-phone i:nth-of-type(3) { width: 44px; height: 8px; left: calc(50% - 22px); top: 66%; background: rgba(44, 110, 107, 0.22); }

.preview-files i:nth-of-type(1) { width: 62%; height: 18px; left: 20%; top: 24%; }
.preview-files i:nth-of-type(2) { width: 48%; height: 18px; left: 28%; top: 39%; }
.preview-files i:nth-of-type(3) { width: 54%; height: 18px; left: 28%; top: 54%; }
.preview-files i:nth-of-type(4) { width: 34%; height: 18px; left: 36%; top: 69%; }

.abstract-banner {
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.abstract-banner i:nth-of-type(1) { width: 26%; height: 38px; left: 10%; top: 32%; }
.abstract-banner i:nth-of-type(2) { width: 26%; height: 38px; left: 38%; top: 20%; }
.abstract-banner i:nth-of-type(3) { width: 26%; height: 38px; right: 10%; top: 32%; }
.abstract-banner i:nth-of-type(4) { width: 70%; height: 2px; left: 15%; top: 40%; background: rgba(44, 110, 107, 0.24); border: 0; }

.content-stack {
  display: grid;
  gap: 28px;
}

.content-block {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.content-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.content-block ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.content-block li + li {
  margin-top: 8px;
}

.integrative-block {
  position: relative;
  padding: 28px 0 30px 22px;
}

.integrative-block::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--accent), rgba(210, 139, 99, 0.55));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 42px;
  align-items: start;
}

.note-list {
  display: grid;
  gap: 18px;
}

.list-card {
  padding: 24px 0;
  background: transparent;
  border-top: 1px solid var(--border);
}

.list-card:last-child {
  border-bottom: 1px solid var(--border);
}

.list-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.date {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.notice {
  padding: 24px 26px;
  background: #fff8ef;
  border: 1px solid rgba(152, 95, 34, 0.25);
  border-radius: 8px;
  color: #704713;
}

.notice h2 {
  color: #704713;
  font-size: 24px;
}

.contact-panel {
  padding: 34px;
  background: rgba(255, 254, 253, 0.86);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.quiet-cta {
  position: relative;
  overflow: hidden;
}

.quiet-cta::before,
.contact-quiet::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--accent), rgba(210, 139, 99, 0.6));
}

.contact-section {
  padding-top: 44px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row strong {
  color: var(--text);
}

.contact-row span {
  color: var(--muted);
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

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

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

@keyframes loopFlow {
  to {
    stroke-dashoffset: -176;
  }
}

@keyframes nodeBreathe {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(24, 23, 22, 0.045);
  }
  50% {
    box-shadow: 0 14px 34px rgba(44, 110, 107, 0.105);
  }
}

@keyframes centerBreathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 42px rgba(24, 23, 22, 0.055);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 22px 52px rgba(44, 110, 107, 0.08);
  }
}

@keyframes loopHalo {
  0%,
  100% {
    opacity: 0.92;
  }
  50% {
    opacity: 0.72;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .method-loop {
    min-height: 520px;
  }

  .core-method {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .core-method::before {
    left: 18px;
    top: 0;
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }

  .core-method.method-path--drawn::before {
    transform: scaleY(1);
  }

  .core-method-block,
  .core-method-block + .core-method-block {
    min-height: auto;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 26px;
    padding: 28px 0 34px 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(227, 222, 216, 0.82);
  }

  .core-method-number {
    font-size: 72px;
  }

  .method-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }

  .method-path-line {
    display: none;
  }

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

  .archive-card-large,
  .archive-card-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .nav-shell,
  .container,
  .wide-container,
  .narrow-container,
  .footer-inner {
    width: min(100% - 44px, 960px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .split .content-stack {
    order: 1;
  }

  .about-photo-placeholder {
    order: 2;
    max-width: 100%;
    min-height: 132px;
    margin-top: 0;
  }

  .hero,
  .section {
    padding: 58px 0;
  }

  .page-hero {
    padding: 58px 0 30px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-title {
    font-size: 44px;
    line-height: 1.02;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 18px;
  }

  .lead,
  .hero-lead {
    font-size: 16px;
  }

  .hero-copy::before {
    left: 0;
    top: -24px;
    height: 68px;
  }

  .hero-watermark {
    font-size: 68px;
  }

  .hero-watermark-understand {
    top: 86px;
    right: -40px;
  }

  .hero-watermark-act {
    left: 18px;
    bottom: 26px;
  }

  .method-loop {
    min-height: 390px;
  }

  .method-loop-center {
    width: 132px;
    height: 132px;
    padding: 18px;
    font-size: 13px;
  }

  .method-loop-center strong {
    font-size: 16px;
  }

  .loop-node {
    width: 72px;
    min-height: 48px;
    padding: 8px 8px;
    font-size: 13px;
  }

  .loop-node small {
    display: none;
  }

  .section-head,
  .footer-inner,
  .list-card header {
    display: block;
  }

  .date {
    display: block;
    margin-top: 8px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .archive-preview-row,
  .archive-grid,
  .service-columns,
  .snapshot-item {
    grid-template-columns: 1fr;
  }

  .problem-block {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .problem-number {
    font-size: 36px;
  }

  .problem-block p,
  .snapshot-item p,
  .archive-body p {
    font-size: 14px;
    line-height: 1.62;
  }

  .method-path {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .core-method-section .section-head {
    margin-bottom: 28px;
  }

  .core-method-section .section-head h2 {
    font-size: 32px;
  }

  .core-method-block,
  .core-method-block + .core-method-block {
    display: block;
    padding: 24px 0 30px 38px;
  }

  .core-method-number {
    margin-bottom: 18px;
    font-size: 52px;
  }

  .core-method-block h3 {
    font-size: 24px;
  }

  .support-groups {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-group-secondary {
    margin-top: 4px;
  }

  .support-group article,
  .support-group-secondary article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .support-group article p {
    grid-column: 2;
  }

  .method-path::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--accent), rgba(210, 139, 99, 0.44));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 900ms ease;
  }

  .method-path.method-path--drawn::before {
    transform: scaleY(1);
  }

  .path-node {
    min-height: auto;
    padding: 18px 0 18px 40px;
    border-bottom: 1px solid rgba(227, 222, 216, 0.72);
  }

  .path-node::before {
    display: block;
    top: 24px;
    left: 8px;
  }

  .service-entry {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 34px 0;
  }

  .service-entry > .service-number {
    font-size: 34px;
    line-height: 1;
  }

  .service-columns section {
    padding-left: 0;
  }

  .service-main h2 {
    font-size: 26px;
  }

  .archive-card-large,
  .archive-card-wide {
    grid-column: span 1;
  }

  .archive-preview,
  .abstract-banner {
    min-height: 176px;
  }

  .archive-preview-row .archive-card:nth-child(n + 3) {
    display: none;
  }

  .portrait-card {
    min-height: 460px;
  }

  .about-brand-hero::after {
    right: 20px;
    bottom: 18px;
    font-size: 48px;
  }

  .brand-keywords {
    display: grid;
    gap: 8px;
  }

  .hero-actions,
  .action-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-panel {
    padding: 24px 20px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 460px) {
  .nav-shell,
  .container,
  .wide-container,
  .narrow-container,
  .footer-inner {
    width: min(100% - 32px, 960px);
  }

  h1 {
    font-size: 34px;
  }

  .hero-title {
    font-size: 38px;
  }

  .method-loop {
    min-height: 340px;
  }

  .portrait-card {
    min-height: 400px;
  }

  .loop-node {
    width: 68px;
    font-size: 13px;
  }
}

/* Cool visual experiment overrides */
:root {
  --bg-base: #f7f4ec;
  --bg-cloud: #eaf6f4;
  --bg-mist: #f3faf8;
  --text-main: #141414;
  --text-soft: #5f6b6a;
  --teal-main: #1e746d;
  --teal-deep: #0d4f49;
  --teal-soft: #bfe3dd;
  --sand: #f2e5d0;
  --cream: #fffdf8;
  --orange-soft: #f0a66a;
  --orange-light: #ffe0bf;
  --line: rgba(18, 72, 67, 0.16);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.78);
}

body {
  background:
    radial-gradient(circle at 15% 12%, rgba(191, 227, 221, 0.58), transparent 32rem),
    radial-gradient(circle at 85% 18%, rgba(255, 224, 191, 0.58), transparent 30rem),
    radial-gradient(circle at 52% 56%, rgba(255, 253, 248, 0.9), transparent 34rem),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-mist) 48%, var(--cream) 100%);
  color: var(--text-soft);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.34;
  pointer-events: none;
  animation: cloudDrift 18s ease-in-out infinite;
}

body::before {
  left: -12vw;
  top: 18vh;
  background: rgba(191, 227, 221, 0.7);
}

body::after {
  right: -14vw;
  top: 52vh;
  background: rgba(255, 224, 191, 0.78);
  animation-delay: -7s;
}

.site-header {
  background: rgba(255, 253, 248, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(1180px, calc(100% - 48px));
}

.brand,
h1,
h2,
h3,
h4 {
  color: var(--text-main);
}

.brand span,
.lead,
.section-head p,
.card p,
.list-card p,
.archive-body p {
  color: var(--text-soft);
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(30, 116, 109, 0.12);
}

.button {
  border-color: rgba(30, 116, 109, 0.34);
  box-shadow: 0 12px 30px rgba(30, 116, 109, 0.12);
}

.button.primary {
  background: linear-gradient(135deg, var(--teal-main), var(--teal-deep));
}

.button.secondary {
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(16px);
}

.section {
  padding: 116px 0;
}

.section.soft,
.quiet-section {
  background: rgba(255, 253, 248, 0.34);
}

.cool-hero {
  padding: 32px 0 42px;
}

.cloud-stage {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  min-height: min(640px, calc(76svh - var(--header-height)));
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(22px, 3.2vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 46px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.86), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(191, 227, 221, 0.5), transparent 32%),
    radial-gradient(circle at 76% 84%, rgba(255, 224, 191, 0.48), transparent 30%),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 38px 110px rgba(18, 72, 67, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(26px);
}

.cloud-stage::before,
.cloud-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  filter: blur(18px);
  pointer-events: none;
  animation: cloudDrift 16s ease-in-out infinite;
  z-index: 0;
}

.cloud-stage::before {
  width: 300px;
  height: 92px;
  left: 10%;
  bottom: 12%;
}

.cloud-stage::after {
  width: 420px;
  height: 132px;
  right: 8%;
  top: 10%;
  animation-delay: -5s;
}

.cloud-copy,
.floating-system {
  position: relative;
  z-index: 1;
}

.cloud-word {
  position: absolute;
  z-index: 0;
  color: rgba(13, 79, 73, 0.04);
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 780;
  letter-spacing: 0.02em;
  line-height: 0.82;
  pointer-events: none;
}

.cloud-word-understand {
  top: 9%;
  left: 23%;
}

.cloud-word-act {
  left: 4%;
  bottom: 6%;
  color: rgba(240, 166, 106, 0.055);
}

.hero-title {
  font-size: clamp(52px, 6.8vw, 82px);
  line-height: 0.98;
}

.accent-line,
.hero-line + .hero-line {
  color: var(--teal-main);
}

.hero-lead {
  max-width: 620px;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 23px);
}

.floating-system {
  min-height: 560px;
  margin: 0;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.floating-system::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 20%, rgba(191, 227, 221, 0.2) 32%, transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
  box-shadow: 0 42px 100px rgba(30, 116, 109, 0.12);
  animation: systemFloat 8s ease-in-out infinite;
}

.system-orbits {
  position: absolute;
  width: min(96%, 560px);
  aspect-ratio: 1;
  overflow: visible;
}

.system-ring,
.system-arc {
  fill: none;
  stroke: rgba(13, 79, 73, 0.16);
  stroke-width: 1;
}

.system-flow {
  fill: none;
  stroke: url(#orbitFlow);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 24 96;
  opacity: 0.46;
  animation: loopFlow 13s linear infinite;
}

.system-arc {
  stroke-dasharray: 7 18;
  opacity: 0.8;
}

.system-core {
  position: relative;
  z-index: 2;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 253, 248, 0.64);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 54px rgba(18, 72, 67, 0.12), inset 0 0 34px rgba(255, 255, 255, 0.42);
  text-align: center;
  animation: centerBreathe 7s ease-in-out infinite;
}

.system-core span {
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-core strong {
  margin-top: 8px;
  color: var(--teal-main);
  font-size: 22px;
}

.system-node {
  position: absolute;
  z-index: 3;
  width: 94px;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-main);
  box-shadow: 0 18px 44px rgba(18, 72, 67, 0.11);
  backdrop-filter: blur(18px);
  cursor: default;
  animation: nodeBreathe 7s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.system-node span {
  display: block;
  color: var(--teal-main);
  font-weight: 760;
}

.system-node small {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
}

.system-node:hover,
.system-node:focus-visible {
  transform: translateY(-6px) rotate(var(--tilt, 0deg));
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 62px rgba(18, 72, 67, 0.16);
}

.system-node-1 { top: 8%; left: 50%; transform: translateX(-50%) rotate(-2deg); --tilt: -2deg; }
.system-node-2 { top: 27%; right: 4%; transform: rotate(2deg); --tilt: 2deg; animation-delay: 0.5s; }
.system-node-3 { right: 9%; bottom: 22%; transform: rotate(-1deg); --tilt: -1deg; animation-delay: 1s; }
.system-node-4 { bottom: 8%; left: 48%; transform: translateX(-50%) rotate(1deg); --tilt: 1deg; animation-delay: 1.5s; }
.system-node-5 { left: 5%; bottom: 25%; transform: rotate(-2deg); --tilt: -2deg; animation-delay: 2s; }
.system-node-6 { top: 26%; left: 6%; transform: rotate(1deg); --tilt: 1deg; animation-delay: 2.5s; }

.diagnostic-map,
.method-islands,
.application-grid,
.artifact-showcase,
.split-soft,
.scene-card-grid {
  display: grid;
  gap: 22px;
}

.diagnostic-map {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.diagnostic-map::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 116, 109, 0.28), rgba(240, 166, 106, 0.24), transparent);
}

.diagnostic-card,
.method-island,
.application-main,
.application-side,
.artifact-card,
.journey-step,
.scene-card,
.contact-panel,
.glass-cta,
.card,
.list-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: var(--glass);
  box-shadow: 0 26px 70px rgba(18, 72, 67, 0.11);
  backdrop-filter: blur(20px);
}

.diagnostic-card {
  min-height: 210px;
  padding: 26px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.diagnostic-card:nth-child(2),
.diagnostic-card:nth-child(4) {
  transform: translateY(28px);
}

.diagnostic-card:hover,
.method-island:hover,
.artifact-card:hover,
.scene-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 86px rgba(18, 72, 67, 0.16);
}

.diagnostic-card span,
.island-number,
.service-number,
.journey-number {
  color: rgba(30, 116, 109, 0.22);
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.9;
}

.method-islands {
  grid-template-columns: 1.15fr 1fr 1fr;
  align-items: stretch;
}

.method-island {
  min-height: 390px;
  padding: 34px;
  display: grid;
  align-content: space-between;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.island-primary {
  min-height: 460px;
  background:
    radial-gradient(circle at 20% 12%, rgba(191, 227, 221, 0.45), transparent 35%),
    var(--glass-strong);
}

.island-kicker,
.support-label,
.method-tag {
  color: var(--teal-main);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-island h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.tag {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(30, 116, 109, 0.14);
}

.application-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  align-items: start;
}

.application-main,
.application-side {
  padding: 34px;
}

.application-main article,
.application-side article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(18, 72, 67, 0.12);
}

.application-main article:last-child,
.application-side article:last-child {
  border-bottom: 0;
}

.application-main article span,
.application-side article span {
  color: rgba(30, 116, 109, 0.46);
  font-weight: 800;
}

.application-main article p,
.application-side article p {
  grid-column: 2;
  margin-top: 0;
}

.application-side {
  margin-top: 72px;
  opacity: 0.82;
}

.support-boundary {
  max-width: 760px;
  margin-top: 26px;
  padding: 16px 20px;
  border: 1px solid rgba(240, 166, 106, 0.2);
  border-radius: 20px;
  background: rgba(255, 224, 191, 0.22);
}

.artifact-showcase {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.artifact-card {
  border-radius: 32px;
}

.artifact-featured {
  grid-row: span 2;
}

.archive-preview {
  min-height: 230px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.88), transparent 26%),
    linear-gradient(135deg, rgba(191, 227, 221, 0.78), rgba(255, 224, 191, 0.42));
}

.archive-body {
  padding: 28px;
}

.quiet-section .split-soft {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: start;
}

.glass-cta {
  padding: 34px;
}

.page-hero,
.cloud-page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 30px;
  border-bottom: 0;
}

.cloud-page-hero::after,
.about-brand-hero::after {
  content: "EMOTION / COGNITION / LEARNING";
  position: absolute;
  right: min(7vw, 96px);
  bottom: 14px;
  color: rgba(13, 79, 73, 0.06);
  font-size: clamp(54px, 10vw, 140px);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.about-brand-hero .lead {
  max-width: 720px;
}

.brand-keywords span {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(30, 116, 109, 0.18);
  backdrop-filter: blur(14px);
}

.about-photo-placeholder,
.placeholder {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
}

.journey-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.journey-nav {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
}

.journey-nav a {
  padding: 9px 10px;
  border-radius: 14px;
  color: var(--text-soft);
  text-decoration: none;
}

.journey-nav a:hover {
  color: var(--teal-main);
  background: rgba(255, 255, 255, 0.72);
}

.journey-list {
  position: relative;
  display: grid;
  gap: 28px;
}

.journey-list::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--teal-main), rgba(240, 166, 106, 0.48));
}

.journey-step {
  min-height: 320px;
  padding: 34px 36px 34px 104px;
}

.journey-number {
  position: absolute;
  left: 28px;
  top: 36px;
  font-size: 52px;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.mini-card-grid span {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--teal-deep);
  font-weight: 650;
}

.service-scene {
  display: grid;
  gap: 42px;
}

.scene-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scene-card {
  padding: 30px;
}

.scene-card .service-number {
  display: block;
  margin-bottom: 20px;
  font-size: 58px;
}

.scene-card h2 {
  font-size: clamp(25px, 2.4vw, 34px);
}

.scene-card .service-columns {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

.scene-card .service-columns section {
  padding-top: 12px;
  border-top: 1px solid rgba(18, 72, 67, 0.12);
}

.scene-secondary {
  max-width: 820px;
  opacity: 0.86;
}

.glass-warning {
  max-width: 980px;
  border-radius: 28px;
  background: rgba(255, 224, 191, 0.28);
  backdrop-filter: blur(18px);
}

.contact-panel.glass-contact {
  padding: 44px;
  background:
    radial-gradient(circle at 92% 0%, rgba(191, 227, 221, 0.38), transparent 34%),
    rgba(255, 255, 255, 0.58);
}

.identity-stage {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
}

.identity-stage .cloud-copy {
  align-self: center;
}

.secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.secondary-links a {
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 700;
}

.hero-profile-card,
.profile-preview,
.evidence-card,
.work-group {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: var(--glass);
  box-shadow: 0 28px 80px rgba(18, 72, 67, 0.12);
  backdrop-filter: blur(22px);
}

.abstract-personal-card {
  min-height: 560px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.72), transparent 24%),
    radial-gradient(circle at 70% 36%, rgba(191, 227, 221, 0.52), transparent 30%),
    radial-gradient(circle at 36% 80%, rgba(255, 224, 191, 0.44), transparent 28%),
    rgba(255, 255, 255, 0.46);
}

.identity-orbit {
  position: absolute;
  inset: 28px 26px auto;
  min-height: 300px;
  border: 1px solid rgba(30, 116, 109, 0.14);
  border-radius: 50%;
}

.identity-orbit::before,
.identity-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(240, 166, 106, 0.16);
  border-radius: 50%;
}

.identity-orbit::before {
  inset: 34px;
}

.identity-orbit::after {
  inset: 76px;
  border-color: rgba(30, 116, 109, 0.12);
}

.identity-orbit span {
  position: absolute;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 14px 34px rgba(18, 72, 67, 0.1);
}

.identity-orbit span:nth-child(1) { left: 8%; top: 22%; }
.identity-orbit span:nth-child(2) { right: 10%; top: 12%; }
.identity-orbit span:nth-child(3) { right: 6%; bottom: 22%; }
.identity-orbit span:nth-child(4) { left: 12%; bottom: 12%; }

.about-identity-card {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(18, 72, 67, 0.12);
  backdrop-filter: blur(22px);
}

.about-identity-card .profile-photo {
  height: clamp(420px, 46vw, 560px);
}

.hero-profile-card {
  align-self: center;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
}

.hero-profile-card figure,
.profile-photo {
  position: relative;
  overflow: hidden;
  height: clamp(240px, 24vw, 320px);
  min-height: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.36);
}

.hero-profile-card img,
.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 0%;
}

.portrait-profile-card {
  min-height: 0;
}

.portrait-profile-card .profile-photo::after {
  content: none;
}

.hero-profile-copy {
  position: relative;
  padding: 24px 28px 28px;
}

.hero-profile-copy h2 {
  font-size: clamp(28px, 2.6vw, 38px);
}

.hero-profile-copy p {
  color: var(--text-soft);
  line-height: 1.58;
}

.profile-tags {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.profile-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(30, 116, 109, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 700;
}

.profile-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
}

.profile-preview h2 {
  max-width: 560px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
}

.profile-preview p {
  color: var(--text-soft);
}

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

.credential-grid article {
  min-height: 182px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
}

.credential-grid span,
.support-spectrum span {
  color: rgba(30, 116, 109, 0.42);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.credential-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--text-main);
  font-size: 20px;
}

.credential-grid p {
  font-size: 14px;
  line-height: 1.65;
}

.support-spectrum {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.support-spectrum article {
  min-height: 230px;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 52px rgba(18, 72, 67, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.support-spectrum article:nth-child(2),
.support-spectrum article:nth-child(5) {
  transform: translateY(24px);
}

.support-spectrum article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(18, 72, 67, 0.13);
}

.support-spectrum h3 {
  margin-top: 18px;
}

.support-spectrum p {
  color: var(--text-soft);
}

.method-support-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.floating-system-small {
  min-height: 460px;
  transform: scale(0.94);
  transform-origin: center;
}

.floating-system-small .system-orbits {
  width: min(96%, 460px);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.evidence-grid-images {
  align-items: stretch;
}

.evidence-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: 190px auto;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.evidence-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 86px rgba(18, 72, 67, 0.16);
}

.evidence-card h3,
.evidence-card p {
  padding-inline: 24px;
}

.evidence-card h3 {
  margin-top: 22px;
}

.evidence-card p {
  padding-bottom: 26px;
  color: var(--text-soft);
}

.evidence-card-image {
  grid-template-rows: auto auto auto;
}

.evidence-card-image img,
.asset-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.evidence-card-image h3,
.evidence-card-image p {
  padding-inline: 22px;
}

.evidence-card-image p {
  margin-top: 10px;
  padding-bottom: 0;
  font-size: 14px;
  line-height: 1.58;
}

.evidence-card-image p:last-child {
  padding-bottom: 24px;
}

.evidence-card-image strong {
  color: var(--text-main);
}

.evidence-preview {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 72, 67, 0.1);
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(135deg, rgba(191, 227, 221, 0.68), rgba(255, 224, 191, 0.36));
}

.evidence-preview span {
  position: absolute;
  top: 16px;
  left: 18px;
  color: rgba(30, 116, 109, 0.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-preview i {
  position: absolute;
  display: block;
  border: 1px solid rgba(30, 116, 109, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.feedback-preview i:nth-of-type(1) { width: 70%; height: 18px; left: 15%; top: 38%; }
.feedback-preview i:nth-of-type(2) { width: 54%; height: 18px; left: 15%; top: 54%; }
.feedback-preview i:nth-of-type(3) { width: 44%; height: 18px; left: 15%; top: 70%; }

.emotion-preview i:nth-of-type(1) { width: 22%; height: 32px; left: 10%; top: 48%; }
.emotion-preview i:nth-of-type(2) { width: 22%; height: 32px; left: 39%; top: 34%; }
.emotion-preview i:nth-of-type(3) { width: 22%; height: 32px; right: 10%; top: 48%; }
.emotion-preview i:nth-of-type(4) { width: 62%; height: 2px; left: 19%; top: 57%; border: 0; background: rgba(30, 116, 109, 0.26); }

.family-preview i:nth-of-type(1) { width: 38%; height: 46px; left: 12%; top: 34%; transform: rotate(-2deg); }
.family-preview i:nth-of-type(2) { width: 38%; height: 46px; right: 12%; top: 48%; transform: rotate(2deg); }
.family-preview i:nth-of-type(3) { width: 44%; height: 12px; left: 28%; bottom: 22%; background: rgba(30, 116, 109, 0.18); }

.task-preview i:nth-of-type(1) { width: 56%; height: 16px; left: 20%; top: 36%; }
.task-preview i:nth-of-type(2) { width: 46%; height: 16px; left: 20%; top: 52%; }
.task-preview i:nth-of-type(3) { width: 36%; height: 16px; left: 20%; top: 68%; }

.work-groups {
  display: grid;
  gap: 64px;
}

.work-group {
  padding: clamp(24px, 4vw, 38px);
}

.work-group-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.work-group-head h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.work-group-head p:last-child {
  color: var(--text-soft);
}

.work-group .archive-grid {
  gap: 18px;
}

.work-group .archive-card {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
}

.support-spectrum-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.support-spectrum-five article,
.support-spectrum-five article:nth-child(2),
.support-spectrum-five article:nth-child(5) {
  min-height: 250px;
  transform: none;
}

.support-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 16px;
}

.support-flow::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-main), rgba(240, 166, 106, 0.64));
  opacity: 0.34;
}

.support-flow article {
  position: relative;
  min-width: 142px;
  min-height: 210px;
  padding: 28px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 52px rgba(18, 72, 67, 0.08);
  backdrop-filter: blur(18px);
}

.support-flow article span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-main);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}

.support-flow h3 {
  margin-top: 18px;
  font-size: 18px;
}

.support-flow p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.58;
}

.asset-preview {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 25% 16%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(135deg, rgba(191, 227, 221, 0.64), rgba(255, 224, 191, 0.34));
}

.archive-card-large .asset-preview,
.archive-card-wide .asset-preview {
  min-height: 100%;
}

.work-group .archive-card-large,
.work-group .archive-card-wide {
  grid-template-columns: minmax(500px, 1.05fr) minmax(0, 0.95fr);
}

.work-group .archive-card-text {
  display: block;
}

.work-group .archive-card-text .archive-body {
  padding: clamp(28px, 4vw, 46px);
}

.archive-card-text .evidence-line {
  max-width: 780px;
  color: var(--text-main);
  font-size: 17px;
  line-height: 1.7;
}

.work-group .asset-preview {
  min-height: 430px;
}

.work-group .asset-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.asset-preview-link {
  color: inherit;
  text-decoration: none;
}

.asset-preview-link::after {
  content: "点击查看大图";
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(30, 116, 109, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.case-facts {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(30, 116, 109, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
}

.case-facts p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.case-process {
  margin-top: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(30, 116, 109, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
}

.case-process h3 {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 18px;
}

.case-process dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.case-process div {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(30, 116, 109, 0.1);
}

.case-process div:first-child {
  padding-top: 0;
  border-top: 0;
}

.case-process div:last-child {
  padding-bottom: 0;
}

.case-process dt {
  color: var(--teal-deep);
  font-weight: 760;
}

.case-process dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.service-problem-layout {
  display: grid;
  gap: 28px;
}

.service-problem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 28px 80px rgba(18, 72, 67, 0.11);
  backdrop-filter: blur(22px);
}

.service-problem-flip {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.service-problem-flip .service-problem-copy {
  order: 2;
}

.service-problem-copy {
  padding: clamp(26px, 4vw, 46px);
}

.service-problem-copy h2 {
  max-width: 720px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.service-problem-copy p,
.service-problem-copy li {
  color: var(--text-soft);
}

.service-problem-copy ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.asset-preview-text {
  min-height: 300px;
  align-content: center;
  padding: 34px;
}

.asset-preview-text h3 {
  max-width: 340px;
  font-size: clamp(28px, 3vw, 44px);
}

.asset-preview-text p {
  max-width: 360px;
  color: var(--teal-deep);
  font-weight: 750;
}

.evidence-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.evidence-entry {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 52px rgba(18, 72, 67, 0.08);
  color: var(--text-soft);
  text-decoration: none;
  backdrop-filter: blur(18px);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.evidence-entry:hover {
  transform: translateY(-4px);
  text-decoration: none;
  box-shadow: 0 28px 72px rgba(18, 72, 67, 0.13);
}

.evidence-entry span {
  color: rgba(30, 116, 109, 0.42);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.evidence-entry strong {
  display: block;
  margin-top: 18px;
  color: var(--text-main);
  font-size: 20px;
  line-height: 1.28;
}

.evidence-entry p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.strategy-groups {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.strategy-groups section {
  padding: 18px;
  border: 1px solid rgba(30, 116, 109, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.strategy-groups h3 {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 16px;
}

.note-list .list-card {
  min-height: 168px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 52px rgba(18, 72, 67, 0.08);
  backdrop-filter: blur(18px);
}

.note-list .list-card + .list-card {
  margin-top: 18px;
}

.note-list .list-card h2,
.note-list .list-card h3 {
  max-width: 760px;
  margin: 0;
}

.note-list .list-card p {
  max-width: 760px;
  margin-top: 14px;
}

.quiet-section .note-list .list-card {
  min-height: 126px;
  padding: 24px 26px;
}

.contact-hero {
  padding-bottom: 34px;
}

.contact-section {
  padding-top: 24px;
}

main > .page-hero:not(.contact-hero) + .section {
  padding-top: 36px;
}

.contact-panel.glass-contact {
  padding: clamp(30px, 5vw, 48px);
}

.contact-panel .content-block {
  padding-bottom: 18px;
}

@media (max-width: 820px) {
  main > .page-hero:not(.contact-hero) + .section {
    padding-top: 42px;
  }

  .case-process div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-identity-card .profile-photo {
    height: clamp(360px, 78vw, 480px);
  }
}

.cursor-glow {
  position: fixed;
  z-index: 999;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 227, 221, 0.26), transparent 62%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  mix-blend-mode: multiply;
}

.cursor-glow.is-active {
  opacity: 1;
}

@keyframes cloudDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -16px, 0) scale(1.04);
  }
}

@keyframes systemFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-10px) rotateX(3deg);
  }
}

@media (max-width: 1080px) {
  .cloud-stage,
  .application-grid,
  .artifact-showcase,
  .quiet-section .split-soft,
  .journey-layout,
  .scene-card-grid,
  .identity-stage,
  .profile-preview,
  .method-support-layout,
  .evidence-grid,
  .evidence-entry-grid,
  .work-group-head {
    grid-template-columns: 1fr;
  }

  .cloud-stage {
    min-height: auto;
  }

  .floating-system {
    min-height: 470px;
  }

  .hero-profile-card {
    min-height: auto;
    grid-template-columns: minmax(180px, 0.46fr) minmax(0, 0.54fr);
    grid-template-rows: none;
  }

  .hero-profile-card figure,
  .hero-profile-card img {
    min-height: 100%;
  }

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

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

  .support-spectrum article:nth-child(2),
  .support-spectrum article:nth-child(5) {
    transform: none;
  }

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

  .application-side {
    margin-top: 0;
  }

  .journey-nav {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-identity-card {
    position: relative;
    top: auto;
    min-height: 460px;
  }

  .service-problem,
  .service-problem-flip {
    grid-template-columns: 1fr;
  }

  .service-problem-flip .service-problem-copy {
    order: 0;
  }

  .support-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: visible;
  }

  .work-group .archive-card-large,
  .work-group .archive-card-wide {
    grid-template-columns: 1fr;
  }

  .work-group .asset-preview {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .site-nav {
    background: rgba(255, 253, 248, 0.88);
    backdrop-filter: blur(18px);
  }

  .section {
    padding: 72px 0;
  }

  .cool-hero {
    padding: 18px 0 70px;
  }

  .cloud-stage {
    width: min(100% - 24px, 620px);
    gap: 28px;
    padding: 28px 18px 30px;
    border-radius: 34px;
  }

  .hero-profile-card {
    grid-template-columns: 1fr;
  }

  .hero-profile-card figure,
  .hero-profile-card img {
    min-height: 300px;
  }

  .portrait-profile-card {
    min-height: auto;
  }

  .portrait-profile-card .hero-profile-copy {
    padding: 26px;
  }

  .profile-preview,
  .work-group {
    border-radius: 28px;
    padding: 24px;
  }

  .credential-grid,
  .support-spectrum,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .evidence-entry-grid {
    grid-template-columns: 1fr;
  }

  .home-evidence-section .evidence-card:nth-child(n + 4),
  .support-flow-section,
  .home-secondary,
  .home-tools-section {
    display: none;
  }

  .home-evidence-section .section-head .button {
    margin-top: 20px;
  }

  .support-flow {
    margin-right: calc((100vw - 100%) / -2);
    padding-bottom: 20px;
  }

  .support-flow::before {
    display: none;
  }

  .support-spectrum-five article:nth-child(5) {
    display: none;
  }

  .quiet-section .split-soft > div:first-child {
    display: none;
  }

  .asset-preview {
    min-height: 180px;
  }

  .archive-card-large .asset-preview,
  .archive-card-wide .asset-preview {
    min-height: 220px;
  }

  .work-group .asset-preview {
    min-height: 240px;
  }

  .asset-preview-link::after {
    right: 12px;
    bottom: 10px;
    font-size: 11px;
  }
  }

  .abstract-personal-card {
    min-height: 430px;
  }

  .identity-orbit {
    min-height: 220px;
  }

  .credential-grid article,
  .support-spectrum article,
  .evidence-card {
    min-height: auto;
  }

  .floating-system-small {
    transform: none;
  }

  .hero-title {
    font-size: 44px;
  }

  .floating-system {
    min-height: 350px;
  }

  .system-orbits {
    width: 340px;
  }

  .system-core {
    width: 122px;
    height: 122px;
  }

  .system-core strong {
    font-size: 16px;
  }

  .system-node {
    width: 68px;
    min-height: 48px;
    border-radius: 14px;
    font-size: 13px;
  }

  .system-node small {
    display: none;
  }

  .diagnostic-map,
  .method-islands {
    grid-template-columns: 1fr;
  }

  .diagnostic-map::before {
    left: 22px;
    right: auto;
    top: 12px;
    bottom: 12px;
    width: 2px;
    height: auto;
  }

  .diagnostic-card,
  .diagnostic-card:nth-child(2),
  .diagnostic-card:nth-child(4) {
    min-height: auto;
    transform: none;
  }

  .method-island,
  .island-primary {
    min-height: auto;
  }

  .application-main,
  .application-side,
  .journey-step,
  .scene-card,
  .service-problem-copy,
  .contact-panel.glass-contact {
    padding: 24px;
  }

  .note-list .list-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .contact-hero {
    padding-top: 44px;
    padding-bottom: 18px;
  }

  .contact-section {
    padding-top: 10px;
  }

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

  .journey-list::before {
    left: 20px;
  }

  .journey-step {
    padding-left: 64px;
  }

  .journey-number {
    left: 18px;
    top: 28px;
    font-size: 34px;
  }

  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .cloud-page-hero::after,
  .about-brand-hero::after {
    font-size: 42px;
    right: 12px;
    opacity: 0.42;
  }
}

@media (max-width: 460px) {
  .cloud-stage {
    width: min(100% - 16px, 420px);
  }

  .hero-title {
    font-size: 40px;
  }

  .cloud-word {
    display: none;
  }

  .cloud-page-hero::after,
  .about-brand-hero::after {
    display: none;
  }

  .floating-system {
    min-height: 320px;
  }

  .system-orbits {
    width: 304px;
  }

  .system-node {
    width: 62px;
    font-size: 12px;
  }

  .journey-nav {
    grid-template-columns: 1fr;
  }
}

.support-case-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(191, 227, 221, 0.28), rgba(255, 224, 191, 0.18)),
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 52px rgba(18, 72, 67, 0.08);
  backdrop-filter: blur(18px);
}

.support-case-teaser h3 {
  margin-top: 10px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.support-case-teaser p {
  max-width: 740px;
  color: var(--text-soft);
}

.support-case-work-card {
  background:
    linear-gradient(135deg, rgba(191, 227, 221, 0.32), rgba(255, 224, 191, 0.18)),
    rgba(255, 255, 255, 0.52);
}

.support-case-work-card .archive-body {
  display: grid;
  align-content: center;
  min-height: 260px;
}

.support-case-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(191, 227, 221, 0.3), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(240, 166, 106, 0.16), transparent 25rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 250, 247, 0.98) 42%, rgba(241, 240, 235, 0.58));
}

.support-case-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.support-case-hero::after {
  content: "CASE STORY";
  position: absolute;
  right: min(7vw, 96px);
  bottom: 18px;
  color: rgba(30, 116, 109, 0.08);
  font-size: clamp(52px, 10vw, 132px);
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
}

.support-case-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 52px;
  align-items: center;
}

.support-case-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.6vw, 58px);
  line-height: 1.04;
}

.support-case-copy h1 span {
  display: block;
}

.support-case-intro {
  max-width: 740px;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--warm);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-soft);
  line-height: 1.78;
  backdrop-filter: blur(16px);
}

.support-case-steps {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(244, 229, 216, 0.24)),
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 28px 80px rgba(18, 72, 67, 0.11);
  backdrop-filter: blur(22px);
}

.support-case-steps ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-case-steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(30, 116, 109, 0.12);
}

.support-case-steps li:last-child {
  border-bottom: 0;
}

.support-case-steps li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-main), var(--teal-deep));
  color: #fff;
  font-weight: 800;
}

.support-case-steps strong {
  color: var(--text-main);
}

.support-case-steps p {
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.54;
}

.support-case-stage .support-stage-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.support-case-stage aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.support-case-stage h2 {
  font-size: clamp(32px, 4.7vw, 58px);
  line-height: 1.05;
}

.support-case-stage article {
  display: grid;
  gap: 20px;
}

.stage-focus {
  padding: 13px 16px;
  border-left: 4px solid var(--warm);
  border-radius: 0 16px 16px 0;
  background: rgba(240, 166, 106, 0.13);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.68;
}

.stage-focus span {
  margin-right: 8px;
  color: var(--warn);
}

.stage-observation {
  padding: 22px 24px;
  border-left: 4px solid var(--teal-main);
  border-radius: 0 16px 16px 0;
  background: rgba(191, 227, 221, 0.2);
  color: var(--body);
  line-height: 1.78;
}

.support-case-summary-section {
  padding-top: 72px;
}

.support-case-summary {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(191, 227, 221, 0.28), transparent 34rem),
    linear-gradient(135deg, #0d4f49, #133c38);
  color: #fffefd;
  box-shadow: 0 36px 100px rgba(18, 72, 67, 0.18);
}

.support-case-summary h2,
.support-case-summary .kicker {
  color: #fffefd;
}

.support-case-summary .summary-copy {
  display: grid;
  gap: 18px;
}

.support-case-summary p {
  color: rgba(255, 254, 253, 0.84);
}

.support-case-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.support-case-actions .button.secondary {
  border-color: rgba(255, 254, 253, 0.42);
  color: #fffefd;
}

@media (max-width: 1080px) {
  .support-case-hero-grid,
  .support-case-stage .support-stage-grid,
  .support-case-summary {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .support-case-stage aside {
    position: static;
  }
}

@media (max-width: 820px) {
  .support-case-teaser {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .support-case-hero {
    padding: 58px 0 50px;
  }

  .support-case-copy h1 {
    font-size: clamp(34px, 9.3vw, 40px);
    line-height: 1.08;
  }

  .support-case-intro {
    font-size: 15px;
  }

  .support-case-steps {
    padding: 22px;
  }

  .support-case-steps li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .support-case-steps li > span {
    width: 30px;
    height: 30px;
  }

  .support-case-stage h2 {
    font-size: 30px;
  }

  .support-case-stage article {
    gap: 16px;
  }

  .stage-focus,
  .stage-observation {
    padding: 16px 18px;
    font-size: 15px;
  }

  .support-case-summary {
    padding: 30px 22px;
  }

  .support-case-actions {
    flex-direction: column;
  }
}

.notes-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(240, 166, 106, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 244, 236, 0.98) 36%, rgba(243, 250, 248, 0.7));
}

.notes-hero {
  padding: 82px 0 70px;
  border-bottom: 1px solid rgba(227, 222, 216, 0.76);
}

.notes-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.notes-hero-copy h1 {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.94;
}

.notes-hero-note {
  max-width: 760px;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange-soft);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 253, 248, 0.66);
  color: var(--text-soft);
  line-height: 1.78;
  backdrop-filter: blur(18px);
}

.notes-hero-figure,
.note-card-media,
.note-article-header figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 24px 68px rgba(18, 72, 67, 0.1);
}

.notes-hero-figure {
  transform: rotate(1.4deg);
}

.notes-hero-figure img,
.note-card-media img,
.note-article-header figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notes-hero-figure img,
.note-card-media img,
.note-article-header figure img {
  aspect-ratio: 1 / 1;
}

.notes-index-section {
  padding-bottom: 84px;
}

.notes-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.note-card {
  display: grid;
  grid-column: span 2;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 22px 70px rgba(18, 72, 67, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.note-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.note-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 116, 109, 0.28);
  box-shadow: 0 30px 90px rgba(18, 72, 67, 0.12);
}

.note-card-media {
  display: block;
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: none;
}

.note-card-media img {
  transition: transform 420ms ease;
}

.note-card:hover .note-card-media img {
  transform: scale(1.025);
}

.note-card-body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.note-card-body .tag-list,
.note-article-header .tag-list {
  margin-top: 0;
}

.note-card-body h3 {
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.22;
}

.note-card-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.note-card-body .button {
  justify-self: start;
  margin-top: 4px;
}

.notes-article-list {
  border-top: 1px solid rgba(227, 222, 216, 0.76);
}

.note-article {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.note-article-shell {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.note-article-header {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
}

.note-article-header figure {
  align-self: stretch;
}

.note-article-header h2 {
  max-width: 820px;
  margin-top: 8px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
}

.note-summary {
  max-width: 820px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.78;
}

.note-article-body {
  width: min(780px, 100%);
  margin: 0 auto;
  color: var(--body);
  font-size: 18px;
  line-height: 1.9;
}

.note-article-body p {
  margin-top: 0;
}

.note-article-body p + p,
.note-article-body p + .boundary-note {
  margin-top: 22px;
}

.boundary-note {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-left: 4px solid var(--teal-main);
  border-radius: 0 16px 16px 0;
  background: rgba(191, 227, 221, 0.2);
  color: var(--body);
  line-height: 1.78;
}

.boundary-note strong {
  color: var(--teal-main);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.notes-final-cta {
  padding-top: 74px;
}

.home-page .section {
  padding: clamp(52px, 7vw, 82px) 0;
}

.home-compact-hero {
  padding-bottom: 48px;
}

.home-compact-hero .cloud-stage {
  min-height: auto;
}

.compact-head {
  margin-bottom: 24px;
}

.home-support-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-support-map article,
.example-card,
.process-step {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
}

.home-support-map article {
  min-height: 190px;
  padding: 22px;
  border-radius: 18px;
}

.home-support-map span {
  color: var(--teal-main);
  font-size: 14px;
  font-weight: 800;
}

.home-support-map h3 {
  margin-top: 12px;
  font-size: 20px;
}

.home-support-map p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.68;
}

.home-entry-row,
.home-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.home-entry-row p,
.home-case-grid p {
  max-width: 720px;
  color: var(--text-soft);
}

.home-case-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.58fr);
}

.home-case-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.home-case-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(260px, 28vw, 390px);
  object-fit: contain;
}

.home-note-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.home-note-links a,
.example-index-grid a,
.example-links a,
.note-related-link a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(30, 116, 109, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.home-note-links a {
  padding: 10px 14px;
}

.home-note-links a:hover,
.example-index-grid a:hover,
.example-links a:hover,
.note-related-link a:hover {
  background: rgba(191, 227, 221, 0.35);
  text-decoration: none;
}

.home-quick-guide {
  position: fixed;
  left: 0;
  top: 34vh;
  z-index: 16;
  display: flex;
  align-items: flex-start;
  transform: translateX(calc(-100% + 30px));
  transition: transform 190ms ease;
}

.home-quick-guide:hover,
.home-quick-guide.is-open {
  transform: translateX(0);
}

.home-guide-tab {
  order: 2;
  width: 30px;
  min-height: 78px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(30, 116, 109, 0.18);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  background: rgba(255, 253, 248, 0.92);
  color: var(--teal-deep);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.home-guide-tab span {
  font-size: 18px;
  transition: transform 190ms ease;
}

.home-quick-guide.is-open .home-guide-tab span,
.home-quick-guide:hover .home-guide-tab span {
  transform: rotate(180deg);
}

.home-guide-tab strong {
  writing-mode: vertical-rl;
  font-size: 12px;
}

.home-guide-panel {
  width: 96px;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(30, 116, 109, 0.16);
  border-left: 0;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 36px rgba(18, 72, 67, 0.1);
  backdrop-filter: blur(18px);
}

.home-guide-panel a {
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--text-main);
  font-size: 12px;
  text-decoration: none;
}

.home-guide-panel a:hover {
  background: rgba(191, 227, 221, 0.32);
  color: var(--teal-deep);
}

.process-page,
.examples-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(240, 166, 106, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 244, 236, 0.98) 38%, rgba(243, 250, 248, 0.72));
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.process-step-list {
  display: grid;
  gap: 18px;
}

.process-step {
  scroll-margin-top: calc(var(--header-height) + 20px);
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 18px;
}

.process-step.reveal,
.example-card.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .process-step.reveal:not(.is-visible),
.reveal-ready .example-card.reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
}

.process-number {
  color: rgba(30, 116, 109, 0.32);
  font-size: 34px;
  font-weight: 850;
  line-height: 1;
}

.process-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

.process-detail-grid div {
  padding: 16px;
  border: 1px solid rgba(30, 116, 109, 0.1);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.5);
}

.process-detail-grid dt {
  color: var(--teal-deep);
  font-weight: 800;
}

.process-detail-grid dd {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.examples-index-section {
  padding: 36px 0 12px;
}

.example-index-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.example-index-grid a {
  padding: 8px 14px;
}

.example-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.example-card {
  scroll-margin-top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 18px;
}

.example-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.example-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.example-card dl div {
  display: grid;
  grid-template-columns: minmax(110px, 0.3fr) minmax(0, 1fr);
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(30, 116, 109, 0.11);
}

.example-card dl div:first-child {
  padding-top: 0;
  border-top: 0;
}

.example-card dt {
  color: var(--teal-deep);
  font-weight: 800;
}

.example-card dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.68;
}

.example-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.example-links a {
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  text-align: center;
}

.note-related-link {
  margin-top: 18px;
}

.note-related-link a {
  padding: 8px 14px;
}

.compat-page .cloud-page-hero::after {
  display: none;
}

.compat-page .compat-hero {
  padding-bottom: 88px;
}

@media (max-width: 1080px) {
  .notes-hero-grid,
  .note-article-header {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .note-card,
  .note-card:nth-child(-n + 2) {
    grid-column: span 1;
  }

  .notes-hero-figure {
    max-width: 520px;
    transform: none;
  }
}

@media (max-width: 820px) {
  .notes-hero {
    padding: 58px 0 52px;
  }

  .notes-hero-copy h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .notes-hero-note,
  .note-summary,
  .note-article-body {
    font-size: 16px;
  }

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

  .note-card-body {
    padding: 20px;
  }

  .note-card-body .button {
    width: 100%;
  }

  .note-article-header h2 {
    font-size: 30px;
  }

  .note-article-body {
    line-height: 1.84;
  }

  .boundary-note {
    padding: 18px;
  }
}

@media (max-width: 1080px) {
  .home-support-map,
  .home-note-links,
  .example-card-grid,
  .process-layout,
  .home-case-grid {
    grid-template-columns: 1fr;
  }

  .home-entry-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-entry-row .button,
  .home-case-grid .button {
    justify-self: start;
  }

  .process-nav {
    position: relative;
    top: auto;
  }
}

@media (max-width: 820px) {
  .home-quick-guide {
    display: none;
  }

  .home-page .section {
    padding: 48px 0;
  }

  .home-support-map {
    gap: 10px;
  }

  .home-support-map article {
    min-height: auto;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .home-support-map span {
    font-size: 13px;
  }

  .home-support-map h3 {
    margin-top: 6px;
    font-size: 18px;
  }

  .home-support-map p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.55;
  }

  .home-entry-row .button,
  .home-case-grid .button,
  .home-note-links a,
  .example-index-grid a,
  .example-links a {
    width: 100%;
  }

  .example-links {
    grid-template-columns: 1fr;
  }

  .home-case-figure img {
    aspect-ratio: 16 / 10;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .process-number {
    font-size: 28px;
  }

  .process-detail-grid {
    grid-template-columns: 1fr;
  }

  .example-card-grid {
    gap: 14px;
  }

  .example-card {
    padding: 22px;
  }

  .example-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  .reveal,
  .hero-line {
    opacity: 1 !important;
    transform: none !important;
  }
}
