:root {
  --ink: #101114;
  --muted: #6f7278;
  --line: #dfe1e5;
  --paper: #f5f5f2;
  --white: #fff;
  --accent: #d9ff43;
  --blue: #2968ff;
  --font-display: "Manrope", "Noto Sans KR", sans-serif;
  --font-body: "Noto Sans KR", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: -100px;
  left: 16px;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 78px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  transition: 0.3s ease;
}

.site-header.scrolled {
  height: 68px;
  color: var(--ink);
  background: rgb(245 245 242 / 92%);
  border-color: rgb(0 0 0 / 9%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  font-size: 17px;
  font-weight: 800;
  border-radius: 4px 11px 4px 4px;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentcolor;
  content: "";
  transition: width 0.25s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  padding: 11px 17px;
  color: var(--ink);
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  height: 100vh;
  max-height: 1020px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  overflow: hidden;
  padding: 130px 7vw 90px;
  color: var(--white);
  background: #090a0d;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgb(255 255 255 / 22%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 22%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 90%);
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: -33%;
  width: 57vw;
  height: 57vw;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  filter: blur(15px);
  border-radius: 50%;
}

.hero-glow-one {
  right: 0;
  bottom: 4%;
  width: 46vw;
  height: 46vw;
  opacity: 0.23;
  background: radial-gradient(circle, #285aff 0, transparent 68%);
}

.hero-glow-two {
  top: 4%;
  right: 21%;
  width: 25vw;
  height: 25vw;
  opacity: 0.1;
  background: radial-gradient(circle, var(--accent), transparent 68%);
}

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

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 8.3vw, 142px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.hero h1 span {
  color: var(--accent);
  font-weight: 800;
}

.hero h1 .hero-title-normal {
  color: var(--white);
  font-weight: 500;
}

.hero-description {
  margin: 42px 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 16px 18px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
  transition:
    transform 0.2s,
    background 0.2s;
}

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

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

.button-primary:hover {
  background: #e4ff75;
}

.text-link {
  padding-bottom: 4px;
  color: rgb(255 255 255 / 75%);
  border-bottom: 1px solid rgb(255 255 255 / 35%);
  font-size: 13px;
}

.text-link span {
  margin-left: 12px;
}

.hero-visual {
  width: min(37vw, 550px);
  height: min(37vw, 550px);
  justify-self: center;
}

.model-ring,
.model-core {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.model-ring {
  border: 1px solid rgb(255 255 255 / 35%);
}

.ring-one {
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}

.ring-one::before,
.ring-one::after,
.ring-two::before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent);
  content: "";
}

.ring-one::before {
  top: 12%;
  left: 17%;
}

.ring-one::after {
  right: 1%;
  bottom: 39%;
}

.ring-two {
  width: 72%;
  height: 72%;
  border-style: dashed;
  opacity: 0.6;
  animation: spin-reverse 14s linear infinite;
}

.ring-two::before {
  top: 48%;
  left: -4px;
}

.model-core {
  display: grid;
  width: 48%;
  height: 48%;
  place-items: center;
  background:
    radial-gradient(circle at 34% 27%, rgb(255 255 255 / 70%), transparent 13%),
    radial-gradient(circle at 36% 30%, #f3ffad 0%, var(--accent) 31%, #a8d815 67%, #4d6800 100%);
  border: 1px solid rgb(225 255 112 / 80%);
  box-shadow:
    0 0 55px rgb(217 255 67 / 24%),
    0 45px 85px rgb(0 0 0 / 65%),
    inset -24px -28px 52px rgb(43 65 0 / 40%),
    inset 15px 12px 35px rgb(255 255 255 / 23%);
  animation: float 5s ease-in-out infinite;
}

.model-core::before,
.model-core::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgb(24 32 3 / 20%);
  border-radius: 50%;
  content: "";
}

.model-core::after {
  inset: 26%;
}

.model-core span {
  color: #121703;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 24px);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-shadow: 0 1px 0 rgb(255 255 255 / 28%);
}

.model-chip {
  position: absolute;
  padding: 4px;
  color: var(--accent);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: var(--font-display);
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-shadow:
    0 0 8px rgb(217 255 67 / 45%),
    0 0 20px rgb(217 255 67 / 18%);
}

.chip-one {
  top: 18%;
  right: 2%;
}

.chip-two {
  bottom: 8%;
  left: 23%;
}

.chip-three {
  top: 42%;
  left: -4%;
}

.chip-four {
  top: 3%;
  left: 29%;
}

.chip-five {
  right: 4%;
  bottom: 14%;
}

.capability-map {
  position: relative;
  width: min(42vw, 610px);
  height: min(42vw, 610px);
}

.capability-map::before {
  position: absolute;
  inset: 7%;
  background:
    radial-gradient(circle at 50% 45%, rgb(217 255 67 / 9%), transparent 48%),
    radial-gradient(circle at 72% 72%, rgb(41 104 255 / 20%), transparent 42%);
  content: "";
  filter: blur(8px);
}

.capability-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-line {
  fill: none;
  stroke: rgb(255 255 255 / 18%);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.line-main {
  stroke: rgb(217 255 67 / 36%);
  stroke-dasharray: 5 9;
  animation: network-dash 22s linear infinite;
}

.line-cross {
  stroke: rgb(255 255 255 / 12%);
}

.network-pulse {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent));
  animation: node-pulse 2.8s ease-in-out infinite;
}

.pulse-b { animation-delay: -0.5s; }
.pulse-c { animation-delay: -1s; }
.pulse-d { animation-delay: -1.5s; }
.pulse-e { animation-delay: -2s; }

.capability {
  position: absolute;
  display: grid;
  min-width: 112px;
  grid-template-columns: 25px 1fr;
  align-items: center;
  padding: 0 0 9px;
  border-bottom: 1px solid rgb(217 255 67 / 46%);
  text-shadow: 0 0 18px rgb(217 255 67 / 16%);
}

.capability small {
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 3px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 8px;
}

.capability strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(12px, 1vw, 16px);
  letter-spacing: 0.15em;
}

.capability span {
  margin-top: 5px;
  color: rgb(255 255 255 / 42%);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.capability-control { top: 25%; left: 0; }
.capability-pcb { top: 4%; left: 45%; }
.capability-design { top: 32%; right: -4%; }
.capability-operation { right: 6%; bottom: 7%; }
.capability-build { bottom: 12%; left: 4%; }

.map-signature {
  position: absolute;
  top: 48%;
  left: 49%;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translate(-50%, -50%);
}

.map-signature > span {
  color: rgb(255 255 255 / 22%);
  font-family: var(--font-display);
  font-size: clamp(35px, 4.2vw, 66px);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.map-signature strong {
  padding-left: 14px;
  color: rgb(255 255 255 / 36%);
  border-left: 1px solid rgb(255 255 255 / 18%);
  font-family: var(--font-display);
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 0.16em;
}

.hero-proof {
  position: absolute;
  right: 7vw;
  bottom: 4.5%;
  left: 7vw;
  display: flex;
  gap: 0;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.hero-proof div {
  display: flex;
  width: 25%;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  color: rgb(255 255 255 / 48%);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.hero-proof strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 10px;
}

.section-pad {
  padding: 130px 7vw;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 58px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-label::after {
  width: 54px;
  height: 1px;
  background: currentcolor;
  content: "";
}

.section-label span {
  color: var(--blue);
}

.section-label.light {
  color: rgb(255 255 255 / 45%);
}

.section-label.light span {
  color: var(--accent);
}

.intro {
  background: var(--paper);
}

.intro-heading,
.services-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 10vw;
}

.intro-heading h2,
.services-heading h2,
.process h2,
.finish h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 84px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.05;
}

.intro-heading > p,
.services-heading > p,
.process-copy > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.intro-heading > p strong {
  color: var(--ink);
  font-weight: 800;
}

.solution-flow {
  display: grid;
  margin-top: 95px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-flow article {
  position: relative;
  min-height: 310px;
  padding: 30px 30px 35px;
  border-right: 1px solid var(--line);
}

.solution-flow article:last-child {
  border-right: 0;
}

.flow-number {
  color: #aaaeb5;
  font-family: var(--font-display);
  font-size: 11px;
}

.flow-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 46px 0 25px;
  place-items: center;
  color: var(--blue);
  background: #e5eaff;
  font-family: var(--font-display);
  font-size: 27px;
  border-radius: 50%;
}

.solution-flow h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.solution-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.services {
  color: var(--white);
  background: #111216;
}

.services-heading {
  margin-bottom: 70px;
}

.services-heading > p {
  color: rgb(255 255 255 / 50%);
}

.service-list {
  display: grid;
  gap: 24px;
}

.service-card {
  display: grid;
  min-height: 470px;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  background: #1a1c21;
}

.service-card:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  min-height: 420px;
  background-position: center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.06);
  transition: transform 0.7s ease;
}

.service-card:hover .service-image {
  transform: scale(1.02);
}

.service-image-government {
  background-image:
    linear-gradient(100deg, rgb(8 10 17 / 9%), rgb(8 10 17 / 20%)),
    url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1600&q=85");
}

.service-image-prototype {
  background-image:
    linear-gradient(100deg, rgb(8 10 17 / 12%), rgb(8 10 17 / 15%)),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1600&q=85");
}

.service-image-print {
  background-image:
    linear-gradient(100deg, rgb(8 10 17 / 8%), rgb(8 10 17 / 18%)),
    url("https://images.unsplash.com/photo-1743056586194-837401d75e0a?auto=format&fit=crop&w=1600&q=85");
}

.service-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  padding: 54px;
}

.service-index {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
}

.service-kicker {
  margin: 0 0 15px;
  color: rgb(255 255 255 / 38%);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.service-content h3 {
  margin: 0 0 23px;
  font-size: clamp(32px, 3vw, 48px);
  letter-spacing: -0.055em;
}

.service-content div > p:not(.service-kicker) {
  max-width: 400px;
  margin: 0;
  color: rgb(255 255 255 / 58%);
  font-size: 14px;
  line-height: 1.8;
}

.service-content ul {
  margin: 43px 0 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  padding: 13px 0;
  color: rgb(255 255 255 / 72%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  font-size: 13px;
}

.service-content li::before {
  margin-right: 12px;
  color: var(--accent);
  content: "—";
}

.portfolio {
  background: var(--paper);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 10vw;
  margin-bottom: 65px;
}

.portfolio-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 84px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.05;
}

.portfolio-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
}

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

.portfolio-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: #191b20;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.portfolio-card:hover img {
  transform: scale(1.035);
}

.portfolio-card::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgb(0 0 0 / 78%));
  content: "";
}

.portfolio-info {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 35px;
}

.portfolio-info small {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.portfolio-info h3 {
  margin: 9px 0 10px;
  font-size: 28px;
}

.portfolio-info p {
  max-width: 520px;
  margin: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 12px;
  line-height: 1.7;
}

.portfolio-placeholder {
  grid-column: 1 / -1;
  min-height: 340px;
  padding: 65px;
  background:
    linear-gradient(135deg, rgb(41 104 255 / 12%), transparent 45%),
    #e9eaec;
  border: 1px dashed #bfc2c8;
}

.portfolio-placeholder span {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.portfolio-placeholder h3 {
  margin: 75px 0 12px;
  font-size: 25px;
}

.portfolio-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.insights {
  color: var(--white);
  background: #111216;
}

.insights-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 10vw;
  margin-bottom: 65px;
}

.insights-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 84px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.05;
}

.insights-heading p {
  margin: 0 0 25px;
  color: rgb(255 255 255 / 52%);
  font-size: 15px;
  line-height: 1.8;
}

.insights-heading a {
  padding-bottom: 4px;
  color: var(--accent);
  border-bottom: 1px solid rgb(217 255 67 / 38%);
  font-size: 12px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 15%);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.insight-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid rgb(255 255 255 / 15%);
  transition:
    color 0.3s,
    background 0.3s;
}

.insight-card:last-child {
  border-right: 0;
}

.insight-card:hover {
  color: var(--ink);
  background: var(--accent);
}

.insight-number {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 10px;
}

.insight-card:hover .insight-number {
  color: var(--blue);
}

.insight-card > p {
  margin: 70px 0 12px;
  color: rgb(255 255 255 / 40%);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.insight-card:hover > p,
.insight-card:hover small {
  color: rgb(16 17 20 / 58%);
}

.insight-card h3 {
  margin: 0 0 17px;
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.45;
  word-break: keep-all;
}

.insight-card small {
  color: rgb(255 255 255 / 47%);
  font-size: 12px;
  line-height: 1.7;
}

.insight-card strong {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.process {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12vw;
}

.process-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.process-copy > p {
  margin-top: 35px;
}

.speed-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.speed-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.speed-note strong {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}

.pulse {
  width: 11px;
  height: 11px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(41 104 255 / 60%);
  animation: pulse 2s infinite;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-steps li {
  display: grid;
  min-height: 155px;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.process-steps > li > span {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 12px;
}

.process-steps h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.finish {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.05fr 0.95fr;
  color: var(--white);
  background: #111216;
}

.finish-image {
  min-height: 620px;
  background:
    linear-gradient(90deg, transparent 60%, #111216 100%),
    url("https://images.unsplash.com/photo-1581092334651-ddf26d9a09d0?auto=format&fit=crop&w=1600&q=85")
      center / cover;
  filter: saturate(0.65);
}

.finish-copy {
  align-self: center;
  padding: 90px 7vw 90px 6vw;
}

.finish-copy .section-label {
  margin-bottom: 70px;
}

.finish-tag {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.finish-copy > p:not(.finish-tag) {
  max-width: 510px;
  margin: 35px 0 0;
  color: rgb(255 255 255 / 55%);
  font-size: 15px;
  line-height: 1.9;
}

.finish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.finish-tags span {
  padding: 10px 15px;
  color: rgb(255 255 255 / 72%);
  border: 1px solid rgb(255 255 255 / 18%);
  font-size: 11px;
  border-radius: 30px;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  background: var(--accent);
}

.contact .section-label {
  color: rgb(16 17 20 / 53%);
}

.contact .section-label span {
  color: var(--ink);
}

.contact-copy > p {
  margin: 35px 0;
  color: rgb(16 17 20 / 65%);
  font-size: 15px;
  line-height: 1.8;
}

.contact-copy > a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentcolor;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.contact-form {
  padding: 48px;
  background: var(--white);
  border-radius: 4px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label:not(.consent) {
  display: block;
  margin-bottom: 25px;
}

.contact-form label > span:first-child {
  display: block;
  margin-bottom: 10px;
  color: #555960;
  font-size: 11px;
  font-weight: 600;
}

.contact-form input:not([type="checkbox"], [type="file"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cdd0d5;
  border-radius: 0;
  outline: 0;
  font-size: 13px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
}

.file-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-button {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin: 0 !important;
  padding: 15px;
  color: var(--ink) !important;
  background: #f2f3f5;
  border: 1px dashed #c6c9ce;
  cursor: pointer;
}

.file-button small {
  color: #8a8d92;
  font-weight: 400;
}

.consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #777b82;
  font-size: 11px;
}

.consent input {
  accent-color: var(--blue);
}

.button-dark {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #282b31;
}

.form-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: var(--blue);
  font-size: 12px;
}

footer {
  padding: 80px 7vw 25px;
  color: var(--white);
  background: #0a0b0d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  padding-bottom: 70px;
}

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

.footer-main > p {
  margin: 0;
  color: rgb(255 255 255 / 47%);
  font-size: 14px;
  line-height: 1.7;
}

.footer-top {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: rgb(255 255 255 / 34%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 10px;
}

.company-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  padding: 25px 0;
  color: rgb(255 255 255 / 43%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 11px;
}

.company-info strong {
  color: rgb(255 255 255 / 72%);
}

.company-info a:hover {
  color: var(--accent);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.footer-bottom button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.privacy-dialog {
  width: min(92vw, 600px);
  padding: 0;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 30px 100px rgb(0 0 0 / 40%);
}

.privacy-dialog::backdrop {
  background: rgb(0 0 0 / 72%);
  backdrop-filter: blur(5px);
}

.privacy-dialog > div {
  position: relative;
  padding: 55px;
}

.privacy-dialog .eyebrow {
  color: var(--blue);
}

.privacy-dialog h2 {
  margin: 0 0 25px;
  font-size: 28px;
}

.privacy-dialog p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 30px;
  cursor: pointer;
}

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

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

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

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

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgb(41 104 255 / 0%);
  }
  100% {
    box-shadow: 0 0 0 0 rgb(41 104 255 / 0%);
  }
}

@keyframes network-dash {
  to {
    stroke-dashoffset: -140;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.55;
    r: 4px;
  }
  50% {
    opacity: 1;
    r: 7px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    place-content: center;
    gap: 6px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentcolor;
    transition: 0.25s;
  }

  .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);
  }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(82vw, 380px);
    height: 100vh;
    flex-direction: column;
    gap: 23px;
    padding: 115px 35px;
    color: var(--white);
    background: #0a0b0d;
    font-size: 23px;
    font-weight: 700;
    transform: translateX(105%);
    transition: transform 0.35s ease;
  }

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

  .hero {
    min-height: 860px;
    height: auto;
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    z-index: 3;
  }

  .hero-visual {
    position: absolute;
    right: -8vw;
    bottom: 12%;
    width: 50vw;
    height: 50vw;
    opacity: 0.7;
  }

  .capability-map {
    width: 58vw;
    height: 58vw;
  }

  .hero-proof div {
    width: 33.33%;
  }

  .intro-heading,
  .services-heading,
  .portfolio-heading,
  .insights-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .solution-flow article:nth-child(2) {
    border-right: 0;
  }

  .solution-flow article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .portfolio-card {
    min-height: 430px;
  }

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

  .insight-card {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
  }

  .service-card:nth-child(even) .service-image {
    order: 0;
  }

  .service-image {
    min-height: 360px;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .process-copy {
    position: static;
  }

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

  .finish-image {
    min-height: 500px;
    background-position: center;
    mask-image: linear-gradient(to bottom, black 75%, transparent);
  }

  .finish-copy {
    padding-top: 40px;
  }

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

@media (max-width: 640px) {
  .site-header {
    height: 66px;
    padding: 0 20px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .hero {
    min-height: 780px;
    padding: 125px 20px 110px;
  }

  .hero-grid {
    background-size: 42px 42px;
  }

  .hero h1 {
    font-size: clamp(60px, 17vw, 72px);
  }

  .hero-description {
    margin-top: 30px;
    font-size: 14px;
  }

  .mobile-break {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-visual {
    right: -22vw;
    bottom: 9%;
    width: 75vw;
    height: 75vw;
    opacity: 0.52;
  }

  .capability-map {
    right: -16vw;
    width: 86vw;
    height: 86vw;
  }

  .capability {
    min-width: 95px;
  }

  .capability span,
  .map-signature strong {
    display: none;
  }

  .hero-proof {
    right: 20px;
    bottom: 1.5%;
    left: 20px;
  }

  .hero-proof div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-right: 8px;
  }

  .section-pad {
    padding: 90px 20px;
  }

  .section-label {
    margin-bottom: 40px;
  }

  .intro-heading h2,
  .services-heading h2,
  .portfolio-heading h2,
  .insights-heading h2,
  .process h2,
  .finish h2,
  .contact h2 {
    font-size: 45px;
  }

  .intro-heading > p,
  .services-heading > p,
  .portfolio-heading > p,
  .process-copy > p {
    font-size: 14px;
  }

  .solution-flow {
    margin-top: 65px;
    grid-template-columns: 1fr 1fr;
  }

  .solution-flow article {
    min-height: 250px;
    padding: 22px 18px;
  }

  .flow-icon {
    width: 48px;
    height: 48px;
    margin: 30px 0 20px;
  }

  .solution-flow h3 {
    font-size: 20px;
  }

  .service-card {
    min-height: 0;
  }

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

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

  .portfolio-placeholder {
    min-height: 280px;
    padding: 35px 25px;
  }

  .service-image {
    min-height: 260px;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 24px 42px;
  }

  .service-content ul {
    margin-top: 30px;
  }

  .process-steps li {
    min-height: 135px;
    grid-template-columns: 55px 1fr;
  }

  .finish {
    min-height: 0;
  }

  .finish-image {
    min-height: 380px;
  }

  .finish-copy {
    padding: 30px 20px 90px;
  }

  .finish-copy .section-label {
    margin-bottom: 50px;
  }

  .contact-form {
    padding: 32px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .file-button {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  footer {
    padding: 65px 20px 25px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 45px;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@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;
  }
}
