@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --bg: #08090b;
  --bg-soft: #0c0e12;
  --panel: #111318;
  --panel-2: #151820;
  --text: #f2f3f5;
  --text-soft: #c4c7ce;
  --text-muted: #858a95;
  --point: #a7b7ff;
  --point-strong: #8f9ff4;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --container: 1440px;
  --header-height: 84px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.022em;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--point);
  color: #090a0c;
}

.shell {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--point);
  color: #090a0c;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  justify-self: start;
  color: var(--text);
  font-size: 18px;
  font-weight: 680;
  line-height: 1;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.brand span {
  color: var(--point);
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.5vw, 44px);
}

.global-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 580;
  letter-spacing: 0.075em;
  transition: color 0.25s ease;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--point);
  content: '';
  transition: transform 0.3s var(--ease);
}

.global-nav a:hover,
.global-nav a.is-active {
  color: var(--text);
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.header-action span,
.inline-link span {
  color: var(--point);
}

.header-action:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 0.25s ease;
}

.home-hero {
  min-height: 760px;
  padding: calc(var(--header-height) + 92px) 0 92px;
  border-bottom: 1px solid var(--line);
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(64px, 7vw, 120px);
  min-height: 560px;
}

.eyebrow {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.11em;
}

.hero-copy h1,
.page-title h1 {
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(48px, 5.2vw, 70px);
  font-weight: 430;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  color: var(--point);
  font-style: normal;
}

.hero-description {
  max-width: 670px;
  margin-top: 30px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

.button-point {
  border-color: var(--point);
  background: var(--point);
  color: #08090b;
}

.button-point:hover {
  border-color: var(--point-strong);
  background: var(--point-strong);
}

.button-ghost {
  background: transparent;
  color: var(--text);
}

.button-ghost:hover {
  border-color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
}

.system-visual {
  overflow: hidden;
  min-height: 510px;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(145deg, rgba(167, 183, 255, 0.1), transparent 42%),
    var(--bg-soft);
  background-size: 48px 48px, 48px 48px, 100% 100%, auto;
}

.visual-head,
.visual-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding-inline: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.visual-foot {
  min-height: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.live-state {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--point);
}

.live-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--point);
  box-shadow: 0 0 18px var(--point);
}

.visual-stage {
  position: relative;
  min-height: 395px;
}

.visual-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-stage path {
  fill: none;
  stroke: rgba(167, 183, 255, 0.38);
  stroke-dasharray: 6 8;
  stroke-width: 1;
}

.visual-core,
.visual-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(8, 9, 11, 0.9);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.visual-core {
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-color: var(--point);
  color: var(--point);
  box-shadow: 0 0 50px rgba(167, 183, 255, 0.08);
}

.visual-node {
  width: 74px;
  height: 40px;
}

.node-1 { top: 14%; left: 12%; }
.node-2 { top: 14%; right: 10%; }
.node-3 { bottom: 12%; left: 10%; }
.node-4 { right: 9%; bottom: 12%; }

.section-block {
  padding: 132px 0;
  border-bottom: 1px solid var(--line);
}

.section-contrast {
  background: var(--bg-soft);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-heading h2,
.split-content h2,
.contact-banner h2,
.partnership-grid h2,
.contact-aside h2 {
  margin-top: 14px;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 480;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.inline-link {
  flex: 0 0 auto;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.inline-link:hover {
  color: var(--text);
}

.split-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
}

.section-index {
  display: flex;
  gap: 18px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section-index span {
  color: var(--point);
}

.split-content h2 {
  margin-top: 0;
  max-width: 980px;
}

.copy-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.copy-row > p {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 18px;
}

.two-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-top: 42px;
  color: var(--text-soft);
}

.preview-grid {
  display: grid;
  gap: 16px;
}

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

.preview-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.preview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 183, 255, 0.5);
  background: var(--panel-2);
}

.card-number {
  display: block;
  color: var(--point);
  font-size: 14px;
  font-weight: 650;
}

.card-label {
  margin-top: 62px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.preview-card h3 {
  margin-top: 14px;
  font-size: 25px;
  font-weight: 520;
  line-height: 1.35;
}

.preview-card > p:last-child {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 16px;
}

.project-preview-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.project-tile {
  display: block;
}

.project-art,
.project-cover {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.project-tile-wide .project-art {
  min-height: 520px;
}

.project-art::after,
.project-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(167, 183, 255, 0.08), transparent 55%);
  content: '';
}

.art-system,
.cover-dashboard,
.cover-crm {
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #101216;
  background-size: 44px 44px;
}

.mock-window {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 66%;
  height: 58%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0a0c0f;
}

.mock-window i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 14px 0 0 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mock-window span {
  position: absolute;
  inset: 50px 24px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(167, 183, 255, 0.18) 38%, transparent 38%);
}

.art-commerce,
.cover-shop {
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #1c2030, #0c0e12 72%);
}

.phone-frame,
.shop-frame {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 340px;
  padding: 42px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: #090a0d;
}

.phone-frame span,
.shop-frame span {
  display: block;
  height: 62px;
  margin-bottom: 12px;
  background: rgba(167, 183, 255, 0.12);
}

.project-meta,
.project-entry-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}

.project-meta p,
.project-entry-meta p {
  color: var(--point);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.project-meta h3,
.project-entry-meta h2 {
  margin-top: 7px;
  font-size: 23px;
  font-weight: 520;
  line-height: 1.35;
}

.project-meta > span,
.project-entry-meta > span {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: right;
}

.article-list {
  border-top: 1px solid var(--line);
}

.article-row {
  display: grid;
  grid-template-columns: 56px 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease), background 0.3s ease;
}

.article-row:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.article-row > span {
  color: var(--point);
  font-size: 14px;
}

.article-row > p,
.article-row time {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.article-row h3 {
  font-size: 21px;
  font-weight: 500;
}

.contact-banner {
  padding: 96px 0;
  background: var(--point);
  color: #08090b;
}

.contact-banner-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.contact-banner .eyebrow {
  color: rgba(8, 9, 11, 0.58);
}

.contact-banner h2 {
  margin-top: 12px;
}

.contact-banner .button-point {
  border-color: #08090b;
  background: #08090b;
  color: var(--text);
}

.site-footer {
  padding: 72px 0 34px;
  background: #060709;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 64px;
}

.footer-brand {
  font-size: 20px;
}

.footer-inner > div > p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 15px;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.page-hero {
  padding: calc(var(--header-height) + 118px) 0 112px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(64px, 8vw, 140px);
}

.page-title h1 {
  max-width: 900px;
  font-size: clamp(46px, 4.8vw, 68px);
}

.page-intro {
  padding-bottom: 8px;
}

.page-intro p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.78;
}

.meaning-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.meaning-card {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meaning-card > span {
  color: var(--point);
  font-size: 34px;
  font-weight: 500;
}

.meaning-card h3 {
  margin-top: 76px;
  font-size: 24px;
  font-weight: 520;
}

.meaning-card p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 16px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 32px;
  min-height: 178px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--point);
  font-size: 15px;
  font-weight: 650;
}

.process-list li div > p:first-child {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.09em;
}

.process-list h3 {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 520;
}

.process-list li div > p:last-child {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 16px;
}

.partnership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(56px, 9vw, 140px);
}

.partnership-copy > p {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 18px;
}

.partnership-roles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.partnership-roles article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.partnership-roles span {
  color: var(--point);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.partnership-roles h3 {
  margin-top: 52px;
  font-size: 22px;
  font-weight: 520;
}

.partnership-roles p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
}

.solution-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.solution-toolbar span {
  color: var(--point);
}

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

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 183, 255, 0.48);
  background: var(--panel-2);
}

.solution-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.solution-card-top span {
  color: var(--point);
}

.solution-card h2 {
  margin-top: 72px;
  font-size: 25px;
  font-weight: 520;
  line-height: 1.35;
}

.solution-card > p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 16px;
}

.solution-card ul {
  margin-top: auto;
  padding-top: 26px;
}

.solution-card li {
  position: relative;
  padding: 9px 0 9px 15px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 14px;
}

.solution-card li::before {
  position: absolute;
  top: 18px;
  left: 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--point);
  content: '';
}

.solution-card-cta {
  border-color: rgba(167, 183, 255, 0.46);
  background: rgba(167, 183, 255, 0.07);
}

.solution-card-cta .inline-link {
  margin-top: auto;
  padding-top: 34px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--point);
  background: var(--point);
  color: #08090b;
}

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

.project-entry-wide {
  grid-column: 1 / -1;
}

.project-entry-wide .project-cover {
  min-height: 600px;
}

.project-entry.is-hidden,
.lab-entry.is-hidden,
.featured-article.is-hidden {
  display: none;
}

.dashboard-frame {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 68%;
  height: 62%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line-strong);
  background: #090a0d;
}

.dashboard-frame > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 14px 0 0 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.dashboard-frame div {
  position: absolute;
  top: 52px;
  right: 28px;
  bottom: 28px;
  left: 32%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(167, 183, 255, 0.2), transparent);
}

.dashboard-frame i {
  position: absolute;
  left: 24px;
  width: 23%;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-frame i:nth-of-type(1) { top: 62px; }
.dashboard-frame i:nth-of-type(2) { top: 112px; }

.cover-corporate,
.cover-booking,
.cover-platform {
  display: grid;
  place-items: center;
}

.cover-corporate {
  background: linear-gradient(140deg, #0e1015, #1a1f2f);
}

.corporate-lines {
  z-index: 2;
  width: 70%;
}

.corporate-lines i {
  display: block;
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(90deg, var(--point), rgba(255, 255, 255, 0.06));
}

.cover-platform {
  background: radial-gradient(circle at center, rgba(167, 183, 255, 0.13), transparent 54%), #0b0d11;
}

.platform-map {
  position: relative;
  z-index: 2;
  width: 420px;
  height: 260px;
  border: 1px solid var(--line);
}

.platform-map span {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid var(--point);
  border-radius: 50%;
  background: #08090b;
}

.platform-map span:nth-child(1) { top: 30px; left: 38px; }
.platform-map span:nth-child(2) { top: 52px; right: 62px; }
.platform-map span:nth-child(3) { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 54px; height: 54px; }
.platform-map span:nth-child(4) { bottom: 34px; left: 78px; }
.platform-map span:nth-child(5) { right: 48px; bottom: 42px; }

.cover-booking {
  background: linear-gradient(145deg, #171a20, #0b0d10);
}

.booking-grid {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 65%;
}

.booking-grid span {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: rgba(167, 183, 255, 0.08);
}

.crm-list {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 68%;
  transform: translate(-50%, -50%);
}

.crm-list span {
  display: block;
  height: 54px;
  margin: 10px 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.featured-article {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
  margin-bottom: 72px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.featured-article-copy {
  padding: clamp(34px, 5vw, 72px);
}

.featured-article-copy h2 {
  margin-top: 24px;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 480;
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.featured-article-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 17px;
}

.featured-article-copy .inline-link {
  display: inline-block;
  margin-top: 36px;
}

.featured-article-art {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 14px;
  padding: 54px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #0c0e12;
  background-size: 40px 40px;
}

.data-column span {
  display: block;
  height: 34px;
  margin-top: 10px;
  background: rgba(167, 183, 255, 0.12);
}

.data-column:nth-child(2) span:nth-child(odd),
.data-column:nth-child(3) span:nth-child(even) {
  background: rgba(255, 255, 255, 0.06);
}

.labs-list {
  border-top: 1px solid var(--line);
}

.lab-entry {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 164px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.lab-entry-index {
  color: var(--point);
  font-size: 14px;
  font-weight: 650;
}

.lab-entry-main > p {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.lab-entry-main h2 {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 510;
}

.lab-entry-main span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 15px;
}

.lab-entry time {
  color: var(--text-muted);
  font-size: 14px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(64px, 8vw, 120px);
}

.contact-aside h2 {
  margin-top: 22px;
}

.contact-process {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-process div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-process span {
  color: var(--point);
  font-size: 14px;
}

.contact-process p {
  color: var(--text-soft);
  font-size: 16px;
}

.contact-note {
  margin-top: 36px;
  padding: 22px;
  border: 1px solid rgba(167, 183, 255, 0.32);
  background: rgba(167, 183, 255, 0.06);
}

.contact-note span {
  color: var(--point);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.contact-note p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 15px;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--panel);
}

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

.field {
  display: block;
}

.field-full {
  grid-column: 1 / -1;
}

.field > span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  transition: border-color 0.25s ease;
}

.field input,
.field select {
  height: 52px;
}

.field textarea {
  min-height: 170px;
  padding: 14px 0;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--point);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #676c76;
}

.field select option {
  background: #111318;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-bottom p {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 13px;
}

.form-message {
  margin-top: 18px;
  color: var(--point);
  font-size: 14px;
}

.contact-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-types article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-types span {
  color: var(--point);
  font-size: 14px;
}

.contact-types h2 {
  margin-top: 52px;
  font-size: 21px;
  font-weight: 560;
  letter-spacing: 0.02em;
}

.contact-types p {
  margin-top: 15px;
  color: var(--text-soft);
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

@media (max-width: 1180px) {
  .header-action {
    display: none;
  }

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

  .global-nav {
    justify-self: end;
  }

  .home-hero-inner {
    grid-template-columns: 1fr 0.85fr;
    gap: 44px;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    font-size: 16px;
  }

  .menu-toggle {
    z-index: 1002;
    display: block;
  }

  .menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 96px 20px 40px;
    transform: translateX(100%);
    background: rgba(8, 9, 11, 0.98);
    transition: transform 0.4s var(--ease);
  }

  .global-nav.is-open {
    transform: translateX(0);
  }

  .global-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 26px;
    letter-spacing: -0.02em;
  }

  .global-nav a::after {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .home-hero-inner,
  .page-hero-grid,
  .partnership-grid,
  .contact-layout,
  .featured-article {
    grid-template-columns: 1fr;
  }

  .system-visual {
    min-height: 460px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-index {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .section-block {
    padding: 96px 0;
  }

  .three-column,
  .contact-types {
    grid-template-columns: 1fr;
  }

  .preview-card {
    min-height: 280px;
  }

  .card-label {
    margin-top: 44px;
  }

  .project-preview-grid {
    grid-template-columns: 1fr;
  }

  .project-tile-wide .project-art,
  .project-art {
    min-height: 420px;
  }

  .article-row {
    grid-template-columns: 46px 100px minmax(0, 1fr);
  }

  .article-row time {
    display: none;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 82px);
  }

  .page-intro {
    max-width: 700px;
  }

  .featured-article-art {
    min-height: 360px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-aside {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .hero-copy h1,
  .page-title h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-description,
  .page-intro p,
  .copy-row > p,
  .partnership-copy > p {
    font-size: 16px;
  }

  .system-visual {
    min-height: 400px;
  }

  .visual-stage {
    min-height: 320px;
  }

  .visual-foot {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 16px;
    padding-block: 12px;
  }

  .section-heading,
  .copy-row,
  .contact-banner-inner,
  .form-bottom,
  .project-meta,
  .project-entry-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    display: flex;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .split-content h2,
  .contact-banner h2,
  .partnership-grid h2,
  .contact-aside h2 {
    font-size: 32px;
  }

  .two-copy,
  .partnership-roles,
  .solution-grid,
  .projects-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .project-entry-wide {
    grid-column: auto;
  }

  .project-entry-wide .project-cover,
  .project-cover,
  .project-art,
  .project-tile-wide .project-art {
    min-height: 360px;
  }

  .process-list li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .solution-card {
    min-height: 390px;
  }

  .solution-card h2 {
    margin-top: 58px;
  }

  .article-row {
    grid-template-columns: 40px 1fr;
    gap: 10px 16px;
    padding: 22px 0;
  }

  .article-row > p {
    grid-column: 2;
    grid-row: 1;
  }

  .article-row h3 {
    grid-column: 2;
    font-size: 18px;
  }

  .featured-article-copy,
  .featured-article-art {
    padding: 28px;
  }

  .lab-entry {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .lab-entry time {
    display: none;
  }

  .lab-entry-main h2 {
    font-size: 20px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .field-full {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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