:root {
  color-scheme: dark;
  --ink: #07131c;
  --ink-soft: #0c1b27;
  --panel: rgba(14, 30, 42, 0.78);
  --panel-solid: #102331;
  --line: rgba(218, 238, 246, 0.14);
  --line-strong: rgba(218, 238, 246, 0.25);
  --text: #f5f7f2;
  --muted: #9eb0ba;
  --violet: #b777ff;
  --violet-deep: #8555f2;
  --blue: #55d7ff;
  --lime: #b7f09c;
  --cream: #fffbea;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 6%, rgba(117, 77, 203, 0.13), transparent 28rem),
    var(--ink);
  color: var(--text);
  font-family: Pretendard, "Pretendard Variable", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

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

.page-glow {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.14;
  pointer-events: none;
}

.page-glow--one {
  top: 36rem;
  left: -22rem;
  background: var(--blue);
}

.page-glow--two {
  top: 110rem;
  right: -24rem;
  background: var(--violet);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding-top: 20px;
  transition: padding 220ms ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  border: 1px solid transparent;
  border-radius: 20px;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.site-header.is-scrolled .header-inner,
.site-header.menu-visible .header-inner {
  border-color: var(--line);
  background: rgba(7, 19, 28, 0.82);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.9rem;
  letter-spacing: 0.095em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.desktop-nav a {
  padding: 10px 15px;
  border-radius: 12px;
  color: #c9d4d9;
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.desktop-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 18px;
  background: var(--cream);
  color: var(--ink);
}

.desktop-nav .nav-cta:hover {
  background: white;
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-button span:first-child {
  top: 16px;
}

.menu-button span:last-child {
  top: 25px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  min-height: min(940px, 100svh);
  padding-top: 128px;
  padding-bottom: 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(183, 240, 156, 0.9);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(183, 240, 156, 0.5);
  border-radius: inherit;
  content: "";
  animation: pulse 2.1s ease-out infinite;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 6.5vw, 6.6rem);
  font-weight: 850;
  letter-spacing: -0.072em;
  line-height: 0.99;
  word-break: keep-all;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #fff 3%, #cfbcff 48%, #72dfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 620px;
  margin: 32px 0 0;
  color: #b6c4cb;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.8;
  word-break: keep-all;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  margin-left: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

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

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

.button--primary {
  background: linear-gradient(120deg, #8c4fe6, #6b46d9);
  box-shadow: 0 18px 42px rgba(126, 79, 226, 0.28);
  color: white;
}

.button--primary:hover {
  box-shadow: 0 22px 50px rgba(126, 79, 226, 0.4);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: #d3dde1;
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #8499a5;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1000px;
}

.hero-visual::before {
  position: absolute;
  top: 12%;
  right: -7%;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 215, 255, 0.17), transparent 68%);
  filter: blur(14px);
  content: "";
}

.signal-grid {
  position: absolute;
  inset: 2% -4% 0 4%;
  overflow: hidden;
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(110, 178, 204, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 178, 204, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black 25%, transparent 72%);
}

.signal-grid span {
  position: absolute;
  color: rgba(120, 222, 255, 0.23);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  animation: drift 8s ease-in-out infinite;
}

.signal-grid span:nth-child(1) { top: 8%; left: 18%; }
.signal-grid span:nth-child(2) { top: 23%; right: 12%; animation-delay: -2s; }
.signal-grid span:nth-child(3) { bottom: 21%; left: 4%; animation-delay: -4s; }
.signal-grid span:nth-child(4) { bottom: 7%; right: 25%; animation-delay: -1s; }
.signal-grid span:nth-child(5) { top: 53%; right: 1%; animation-delay: -5s; }

.product-console {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(100%, 468px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(187, 221, 235, 0.19);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(20, 42, 57, 0.96), rgba(8, 22, 32, 0.97));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%) rotateY(-5deg) rotateX(2deg);
  animation: console-float 6s ease-in-out infinite;
}

.console-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #667e8b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.63rem;
}

.console-dots {
  display: flex;
  gap: 5px;
}

.console-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #354a57;
}

.console-dots i:nth-child(2) { background: #596677; }
.console-dots i:nth-child(3) { background: #655989; }

.console-live {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  color: #8ca099;
}

.console-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.console-content {
  padding: 30px;
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.console-brand img {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 17px 35px rgba(0, 0, 0, 0.28);
}

.console-brand div {
  display: grid;
  gap: 3px;
}

.console-brand small {
  color: var(--violet);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.console-brand strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.code-block {
  margin-top: 27px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  background: rgba(2, 11, 17, 0.52);
  color: #9cb0b9;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.77rem;
  line-height: 1.8;
}

.code-block p {
  margin: 0;
}

.code-purple { color: #cf9dff; }
.code-blue { color: #69dafb; }

.delivery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 26px;
}

.delivery-track div {
  position: relative;
  display: grid;
  gap: 5px;
}

.delivery-track span {
  color: #68808c;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.57rem;
}

.delivery-track strong {
  color: #b8c8cf;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.delivery-track i {
  position: absolute;
  top: 17px;
  right: 10px;
  width: calc(100% - 45px);
  height: 1px;
  background: linear-gradient(90deg, rgba(85, 215, 255, 0.55), transparent);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background: rgba(10, 26, 37, 0.83);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.floating-note--top {
  top: 15%;
  right: -2%;
  animation: note-float 5.5s ease-in-out infinite;
}

.floating-note--bottom {
  bottom: 13%;
  left: -3%;
  animation: note-float 5.5s -2.5s ease-in-out infinite;
}

.note-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: rgba(183, 119, 255, 0.16);
  color: var(--violet);
}

.note-icon--blue {
  background: rgba(85, 215, 255, 0.12);
  color: var(--blue);
}

.floating-note div {
  display: grid;
  gap: 1px;
}

.floating-note small {
  color: #657e8a;
  font-size: 0.51rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.floating-note strong {
  color: #d9e2e5;
  font-size: 0.76rem;
}

.capability-rail {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.capability-rail .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  overflow: hidden;
}

.capability-rail span {
  flex: 0 0 auto;
  color: #8296a1;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.capability-rail i {
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--violet);
}

.section {
  padding-block: clamp(100px, 12vw, 170px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.principle-copy h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  font-weight: 820;
  letter-spacing: -0.062em;
  line-height: 1.08;
  word-break: keep-all;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 7px auto;
  color: var(--muted);
  line-height: 1.8;
  word-break: keep-all;
}

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

.service-card {
  position: relative;
  min-height: 470px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(19, 39, 53, 0.76), rgba(9, 25, 35, 0.72));
  transition: transform 260ms ease, border-color 260ms ease;
}

.service-card::after {
  position: absolute;
  right: -45%;
  bottom: -48%;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(85, 215, 255, 0.045);
  content: "";
  transition: transform 350ms ease, background 350ms ease;
}

.service-card:hover {
  border-color: rgba(120, 210, 240, 0.3);
  transform: translateY(-7px);
}

.service-card:hover::after {
  background: rgba(85, 215, 255, 0.085);
  transform: scale(1.15);
}

.service-card--accent {
  background: linear-gradient(150deg, rgba(71, 48, 116, 0.52), rgba(12, 28, 40, 0.84));
}

.service-card--accent::after {
  background: rgba(183, 119, 255, 0.08);
}

.card-number {
  color: #627986;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-top: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--blue);
}

.service-card--accent .service-icon {
  color: #d4a9ff;
}

.service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-card h3 {
  margin: 27px 0 8px;
  font-size: 1.42rem;
  letter-spacing: -0.035em;
}

.service-card > p {
  margin: 0;
  color: #9fb0b9;
  font-size: 0.94rem;
  word-break: keep-all;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 27px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  z-index: 1;
  padding-left: 17px;
  color: #849aa5;
  font-size: 0.82rem;
}

.service-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.principle-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 12vw, 165px);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 6% 26%, rgba(84, 212, 255, 0.09), transparent 26rem),
    rgba(5, 15, 23, 0.76);
}

.principle-section::after {
  position: absolute;
  top: 10%;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(183, 119, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(183, 119, 255, 0.028),
    0 0 0 140px rgba(183, 119, 255, 0.018);
  content: "";
}

.principle-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(70px, 10vw, 150px);
}

.principle-copy {
  align-self: start;
  position: sticky;
  top: 150px;
}

.principle-copy h2 span {
  color: #7f95a1;
}

.principle-list {
  display: grid;
}

.principle-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 39px 0;
  border-top: 1px solid var(--line);
}

.principle-item:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-item > span {
  color: var(--violet);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.principle-item h3 {
  margin: -4px 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.principle-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  word-break: keep-all;
}

.section-heading--compact {
  margin-bottom: 74px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  min-width: 0;
}

.process-index {
  display: flex;
  align-items: center;
}

.process-index span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(183, 119, 255, 0.42);
  border-radius: 50%;
  background: rgba(183, 119, 255, 0.08);
  color: #d3aeff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  box-shadow: 0 0 28px rgba(138, 82, 226, 0.08);
}

.process-index i {
  width: calc(100% - 48px);
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 119, 255, 0.38), rgba(85, 215, 255, 0.12));
}

.process-copy {
  padding: 26px 30px 0 0;
}

.process-copy small {
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-copy h3 {
  margin: 10px 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.process-copy p {
  margin: 0;
  color: #879ba5;
  font-size: 0.86rem;
  line-height: 1.75;
  word-break: keep-all;
}

.work-section {
  padding-block: clamp(100px, 12vw, 170px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 23, 33, 0.4), rgba(13, 31, 43, 0.72));
}

.portfolio-proof {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: baseline;
  gap: 10px 18px;
  margin: -12px 0 30px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.portfolio-proof strong {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.portfolio-proof span {
  color: #d8e6ec;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.portfolio-proof p {
  justify-self: end;
  margin: 0;
  color: #718996;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-card {
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(10, 26, 37, 0.82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  transition: transform 260ms ease, border-color 260ms ease;
}

.project-card:first-child {
  grid-column: span 7;
}

.project-card:nth-child(2) {
  grid-column: span 5;
}

.project-card:last-child {
  grid-column: 3 / span 8;
}

.project-card:hover {
  border-color: rgba(148, 213, 237, 0.32);
  transform: translateY(-6px);
}

.project-visual {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 330px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.project-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle, black, transparent 80%);
}

.project-card--health .project-visual {
  background: radial-gradient(circle at 50% 50%, rgba(72, 218, 196, 0.18), transparent 65%), #102a32;
}

.project-card--cloud .project-visual {
  background: radial-gradient(circle at 50% 45%, rgba(85, 215, 255, 0.2), transparent 66%), #122d43;
}

.project-card--arbeon .project-visual {
  background: radial-gradient(circle at 68% 38%, rgba(194, 144, 255, 0.25), transparent 56%), #211d3d;
}

.visual-badge {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 19, 28, 0.34);
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  backdrop-filter: blur(10px);
}

.project-visual--metric {
  grid-template-columns: auto minmax(0, 1fr);
  place-items: center start;
  gap: 16px 28px;
  padding: 48px 42px 38px;
}

.aws-mark {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: clamp(102px, 12vw, 138px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: #f4f1ea;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
  transform: rotate(-5deg);
  transition: transform 300ms ease;
}

.aws-mark img {
  width: 78%;
  height: auto;
}

.project-card:hover .aws-mark {
  transform: rotate(-1deg) translateY(-5px);
}

.project-result {
  position: relative;
  z-index: 1;
  align-self: end;
}

.project-result strong {
  display: block;
  font-size: clamp(4.5rem, 8vw, 7.6rem);
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.project-result sup {
  position: relative;
  top: -0.08em;
  margin-left: 0.04em;
  color: var(--blue);
  font-size: 0.37em;
  letter-spacing: -0.04em;
}

.project-result > span {
  display: block;
  margin-top: 13px;
  color: #8fb9c9;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.result-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-self: start;
  gap: 7px;
}

.result-points span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(7, 19, 28, 0.3);
  color: #9cb2bd;
  font-size: 0.59rem;
  font-weight: 720;
}

.project-visual--real {
  grid-template-columns: minmax(0, 1fr) minmax(128px, 35%);
  place-items: center stretch;
  gap: 24px;
  padding: 42px 34px 0;
}

.project-proof {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: center;
  gap: 7px;
  margin: 0;
}

.project-proof small {
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.project-proof strong {
  max-width: 330px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
  word-break: keep-all;
}

.project-proof > span {
  max-width: 290px;
  color: #8ea4ae;
  font-size: 0.78rem;
  line-height: 1.55;
  word-break: keep-all;
}

.project-device {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(100%, 178px);
  height: 286px;
  padding: 8px 8px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: #111921;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.33);
  transition: transform 320ms ease;
}

.project-device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px 17px 0 0;
}

.project-device--questionnaire {
  transform: rotate(2deg);
}

.project-device--arbeon {
  transform: rotate(-2deg);
}

.project-card:hover .project-device--questionnaire,
.project-card:hover .project-device--arbeon {
  transform: translateY(-6px) rotate(0deg);
}

.project-visual--arbeon .project-proof small {
  color: #d5a9ff;
}

.project-device--arbeon img {
  background: #eae9e4;
}

.project-copy {
  padding: 28px 30px 34px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #718996;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.project-copy h3 {
  margin: 18px 0 13px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  letter-spacing: -0.052em;
  line-height: 1.16;
}

.project-copy > p {
  max-width: 520px;
  margin: 0;
  color: #91a4ae;
  font-size: 0.9rem;
  line-height: 1.75;
  word-break: keep-all;
}

.project-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.project-copy li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #91a3ac;
  font-size: 0.64rem;
  font-weight: 700;
}

.recent-work {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 2fr);
  gap: 42px;
  margin-top: 64px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(7, 19, 28, 0.36);
}

.recent-work-heading h3 {
  margin: 12px 0 11px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.05em;
}

.recent-work-heading > p:last-child {
  margin: 0;
  color: #8296a0;
  font-size: 0.8rem;
  line-height: 1.7;
  word-break: keep-all;
}

.recent-work-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recent-work-list article {
  min-width: 0;
  padding: 4px 22px 6px;
  border-left: 1px solid var(--line);
}

.recent-work-list .project-period {
  display: block;
  color: #6f8793;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.57rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.recent-work-list h4 {
  margin: 14px 0 13px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: -0.035em;
  line-height: 1.38;
  word-break: keep-all;
}

.recent-work-list article > p {
  margin: 0;
  color: #7e949f;
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.06em;
}

.recent-work-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.recent-work-list li {
  color: #9db0b9;
  font-size: 0.62rem;
}

.recent-work-list li:not(:last-child)::after {
  margin-left: 6px;
  color: #49606b;
  content: "·";
}

.portfolio-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.portfolio-link-wrap > div > span {
  color: var(--violet);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.portfolio-link-wrap p {
  margin: 5px 0 0;
  color: #8ca0aa;
  font-size: 0.88rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 14vw, 190px);
  background: linear-gradient(135deg, #7040cf, #4f43c0 45%, #244b98);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.contact-orbit--one {
  top: -22rem;
  left: -14rem;
  width: 54rem;
  height: 54rem;
}

.contact-orbit--two {
  right: -12rem;
  bottom: -20rem;
  width: 42rem;
  height: 42rem;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-inner > img {
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 20px 46px rgba(42, 20, 99, 0.3);
}

.contact-inner .eyebrow {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-inner h2 {
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.contact-inner h2 span {
  color: rgba(255, 255, 255, 0.64);
}

.contact-inner > p:not(.eyebrow):not(.copy-status) {
  max-width: 610px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  word-break: keep-all;
}

.contact-actions {
  justify-content: center;
}

.button--light {
  min-width: 285px;
  background: var(--cream);
  color: #251848;
  box-shadow: 0 18px 45px rgba(39, 17, 82, 0.22);
}

.button--light:hover {
  background: white;
}

.copy-button {
  min-height: 56px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.copy-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.copy-status {
  min-height: 1.6em;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.site-footer {
  padding: 48px 0 30px;
  background: #050e15;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.footer-top > a:last-child {
  color: #c7d3d8;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-top > a:last-child span {
  margin-left: 7px;
  color: var(--blue);
}

.brand--footer .brand-copy small {
  color: #7f959f;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px 34px;
  padding-top: 24px;
  color: #7f959f;
  font-size: 0.72rem;
}

.footer-bottom p,
.footer-bottom address {
  margin: 0;
  font-style: normal;
}

.footer-bottom p:last-child {
  margin-left: auto;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.service-grid .reveal:nth-child(2),
.process-list .reveal:nth-child(2) { transition-delay: 80ms; }
.service-grid .reveal:nth-child(3),
.process-list .reveal:nth-child(3) { transition-delay: 160ms; }
.process-list .reveal:nth-child(4) { transition-delay: 240ms; }

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.6); }
}

@keyframes console-float {
  0%, 100% { transform: translate(-50%, -50%) rotateY(-5deg) rotateX(2deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateY(-4deg) rotateX(1deg) translateY(-8px); }
}

@keyframes note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(18px); opacity: 0.7; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 180px;
    padding-bottom: 110px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-visual {
    width: min(100%, 660px);
    min-height: 590px;
    margin-inline: auto;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .principle-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .principle-copy {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }

  .process-step:nth-child(2) .process-index i {
    display: none;
  }

  .project-card:first-child,
  .project-card:nth-child(2),
  .project-card:last-child {
    grid-column: span 6;
  }

  .project-card:last-child {
    grid-column: 4 / span 6;
  }

  .recent-work {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recent-work-heading {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    padding-top: 10px;
  }

  .header-inner {
    min-height: 62px;
    padding: 8px 9px 8px 13px;
    border-color: var(--line);
    background: rgba(7, 19, 28, 0.8);
    backdrop-filter: blur(18px);
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 0.8rem;
  }

  .brand-copy small {
    font-size: 0.48rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(7, 19, 28, 0.97);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-nav a {
    padding: 13px 14px;
    border-radius: 12px;
    color: #cbd6da;
    font-size: 0.93rem;
    font-weight: 700;
  }

  .mobile-nav a:last-child {
    margin-top: 4px;
    background: var(--cream);
    color: var(--ink);
    text-align: center;
  }

  .hero {
    gap: 45px;
    padding-top: 148px;
    padding-bottom: 82px;
  }

  .eyebrow {
    font-size: 0.65rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
    line-height: 1.04;
  }

  .hero-description {
    margin-top: 25px;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 480px;
  }

  .product-console {
    width: calc(100% - 12px);
    border-radius: 22px;
    transform: translate(-50%, -50%);
    animation-name: console-float-mobile;
  }

  .console-bar {
    grid-template-columns: 1fr 1fr;
  }

  .console-bar > span:nth-child(2) {
    display: none;
  }

  .console-content {
    padding: 23px;
  }

  .console-brand img {
    width: 78px;
    height: 78px;
  }

  .code-block {
    padding: 17px;
    font-size: 0.68rem;
  }

  .floating-note--top {
    top: 5%;
    right: 0;
  }

  .floating-note--bottom {
    bottom: 2%;
    left: 0;
  }

  .capability-rail .container {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .capability-rail .container::-webkit-scrollbar {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 45px;
  }

  .section-heading > p {
    margin: 0;
  }

  .section-heading h2,
  .principle-copy h2 {
    font-size: clamp(2.5rem, 11vw, 3.7rem);
  }

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

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 440px;
  }

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

  .principle-item {
    grid-template-columns: 34px 1fr;
    gap: 13px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .process-index {
    flex-direction: column;
  }

  .process-index i,
  .process-step:nth-child(2) .process-index i {
    display: block;
    width: 1px;
    height: 100%;
    min-height: 85px;
    background: linear-gradient(rgba(183, 119, 255, 0.38), rgba(85, 215, 255, 0.1));
  }

  .process-copy {
    padding: 8px 0 50px;
  }

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

  .project-card:first-child,
  .project-card:nth-child(2),
  .project-card:last-child {
    grid-column: auto;
  }

  .project-visual {
    min-height: 300px;
  }

  .portfolio-proof {
    grid-template-columns: auto 1fr;
    margin-top: -5px;
    padding: 17px 18px;
  }

  .portfolio-proof p {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .project-visual--metric {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 16px 20px;
    padding: 48px 24px 32px;
  }

  .aws-mark {
    width: 94px;
    border-radius: 24px;
  }

  .project-result strong {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .project-visual--real {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 38%);
    gap: 16px;
    padding: 42px 22px 0;
  }

  .project-device {
    height: 260px;
  }

  .recent-work {
    margin-top: 44px;
    padding: 28px 24px;
  }

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

  .recent-work-list article {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .recent-work-list article:last-child {
    padding-bottom: 4px;
  }

  .portfolio-link-wrap {
    align-items: stretch;
    flex-direction: column;
  }

  .portfolio-link-wrap .button {
    width: 100%;
  }

  .contact-inner h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .contact-actions {
    width: 100%;
  }

  .button--light,
  .copy-button {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    gap: 8px;
  }

  .footer-bottom p:last-child {
    margin: 12px 0 0;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .floating-note {
    padding: 9px 11px 9px 9px;
  }

  .floating-note strong {
    font-size: 0.67rem;
  }

  .delivery-track strong {
    font-size: 0.55rem;
  }
}

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

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

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

@keyframes console-float-mobile {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-7px); }
}
