

:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", monospace;
  --ink: #08090b;
  --paper: #f2f0ea;
  --muted: #9196a0;
  --line: #292b31;
  --blue: #2457ff;
  --blue-bright: #3267ff;
  --header-h: 88px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--blue); color: white; }

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 36%, rgba(36, 87, 255, .065), transparent 23%),
    var(--ink);
}

.wrap { width: min(100% - 112px, 1392px); margin-inline: auto; }

.site-header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}

.brand {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .26em;
  transition: color .2s ease;
}
.brand:hover { color: var(--blue-bright); }

.main-nav { display: flex; align-items: stretch; gap: clamp(32px, 5vw, 78px); height: 100%; }
.main-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  color: #b9bbc1;
  font-size: 15px;
  cursor: pointer;
  transition: color .2s ease;
}
.main-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -1px;
  background: var(--blue);
  transition: right .24s ease;
}
.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown > button:hover,
.nav-dropdown > button.active { color: var(--paper); }
.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown > button:hover::after,
.nav-dropdown > button.active::after { right: 0; }
.nav-dropdown { position: relative; display: flex; }
.nav-dropdown > button span { color: var(--muted); margin-left: 5px; transform: translateY(-2px); }

.dropdown-menu {
  position: absolute;
  right: -18px;
  top: calc(100% + 12px);
  width: 310px;
  padding: 18px;
  background: #0d0e11;
  border: 1px solid #33353c;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.dropdown-menu.open { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu p { margin: 0 0 10px; color: #696d77; font: 10px/1 var(--font-geist-mono); text-transform: uppercase; letter-spacing: .16em; }
.dropdown-menu a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  min-height: 47px;
  border-top: 1px solid #25272d;
  color: #d7d7d5;
  transition: padding .18s ease, color .18s ease, background .18s ease;
}
.dropdown-menu a span { font: 10px/1 var(--font-geist-mono); color: #656975; }
.dropdown-menu a b { font-weight: 400; color: var(--blue); opacity: 0; transform: translate(-8px, 8px); transition: .18s ease; }
.dropdown-menu a:hover { padding-left: 8px; color: white; background: #12141a; }
.dropdown-menu a:hover b { opacity: 1; transform: none; }

.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - var(--header-h) - 116px);
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(430px, .8fr);
  align-items: center;
  gap: clamp(46px, 6vw, 104px);
  padding-block: clamp(38px, 6vh, 72px);
}

.hero-copy { align-self: center; }
.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: .01em;
}
.eyebrow i { width: 3px; height: 3px; background: var(--blue); border-radius: 50%; }
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(58px, 5.1vw, 86px);
  font-weight: 530;
  letter-spacing: -.055em;
  line-height: .96;
  text-wrap: balance;
}
.hero-description {
  max-width: 610px;
  margin: 27px 0 0;
  color: #a7aab2;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.52;
}
.hero-actions { margin-top: 31px; display: flex; gap: 16px; }
.button {
  min-height: 60px;
  padding: 0 29px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  border: 1px solid #484b53;
  font-size: 16px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button span { transition: transform .2s ease; }
.button:hover { transform: translateY(-3px); border-color: var(--paper); }
.button:hover span { transform: translate(4px, -4px); }
.button-primary { min-width: 212px; background: linear-gradient(135deg, var(--blue), #1745e6); border-color: var(--blue); }
.button-primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); }
.button-ghost { min-width: 208px; }

.hero-art { min-height: 520px; display: grid; grid-template-columns: 48px 1fr; gap: 24px; }
.art-ruler { padding: 22px 0; display: flex; flex-direction: column; justify-content: flex-start; gap: 22px; }
.art-ruler span { display: flex; align-items: center; gap: 13px; color: #747984; font: 12px/1 var(--font-geist-mono); }
.art-ruler span i { width: 14px; height: 1px; background: #5d616b; }
.art-ruler span.active { color: white; }
.art-ruler span.active i { width: 22px; background: var(--blue); }
.art-grid {
  min-width: 0;
  height: 520px;
  display: grid;
  grid-template-columns: 2fr .92fr;
  grid-template-rows: 2.3fr 1.35fr 1fr;
  border-left: 1px solid #5d6067;
  border-bottom: 1px solid #5d6067;
}
.art-grid > div { position: relative; overflow: hidden; }
.arc-cell { grid-column: 1 / 3; border-bottom: 1px solid #5d6067; }
.blue-arc {
  position: absolute;
  left: 8%; top: 0;
  width: 74%; aspect-ratio: 1;
  border-radius: 50%;
  border: clamp(70px, 7vw, 106px) solid var(--blue);
  transform: translateY(-32%);
  filter: drop-shadow(0 0 20px rgba(36,87,255,.2));
  animation: arcReveal 1.05s cubic-bezier(.22,1,.36,1) both .45s;
}
.dot-field {
  position: absolute; inset: 0 0 0 auto; width: 28%;
  background-image: radial-gradient(circle, #858a94 1px, transparent 1.5px);
  background-size: 23px 23px;
  opacity: .8;
}
.impact-cell { grid-column: 1; grid-row: 2; border-right: 1px solid #5d6067; border-bottom: 1px solid #5d6067; padding: 18px 25px; }
.impact-cell strong { display: block; font-size: clamp(56px, 5vw, 78px); font-weight: 300; letter-spacing: -.06em; line-height: .9; }
.impact-cell strong b { color: var(--blue); font-weight: 400; }
.impact-cell span { display: block; margin-top: 14px; font-size: 10px; line-height: 1.5; letter-spacing: .32em; color: #adb0b8; text-transform: uppercase; }
.target-cell { grid-column: 2; grid-row: 2; border-bottom: 1px solid #5d6067; display: grid; place-items: center; }
.target-cell::before, .target-cell::after { content: ""; position: absolute; background: #70747d; }
.target-cell::before { width: 72%; height: 1px; }
.target-cell::after { height: 72%; width: 1px; }
.target-cell i { width: 68px; height: 68px; border: 1px solid #70747d; border-radius: 50%; position: relative; z-index: 1; }
.target-cell i::after { content: ""; position: absolute; width: 12px; height: 12px; background: var(--blue); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 18px var(--blue); animation: pulse 2s ease-in-out infinite; }
.lines-cell { grid-column: 1; grid-row: 3; border-right: 1px solid #5d6067; display: flex; gap: 13px; align-items: stretch; padding-left: 22px; }
.lines-cell > i { display: block; width: 1px; height: 100%; background: #70747d; transform-origin: bottom; animation: lineDraw .7s ease both; }
.lines-cell > i:nth-child(6) { background: var(--blue); }
.quarter-lines { position: absolute; width: 140px; height: 140px; right: 12px; bottom: -80px; border: 1px solid #70747d; border-radius: 50%; box-shadow: 0 0 0 10px var(--ink), 0 0 0 11px #70747d, 0 0 0 21px var(--ink), 0 0 0 22px #70747d, 0 0 0 32px var(--ink), 0 0 0 33px #70747d; }
.meter-cell { grid-column: 2; grid-row: 3; display: flex; align-items: flex-end; gap: 7px; padding: 0 16px 16px; }
.meter-cell i { width: 7px; height: 7px; background: #737781; }
.meter-cell i.on { background: var(--blue); }

.discipline-strip {
  height: 116px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.discipline-strip a {
  min-width: 0;
  padding: 0 clamp(20px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr 1fr;
  align-items: end;
  column-gap: 15px;
  position: relative;
  overflow: hidden;
  transition: background .25s ease;
}
.discipline-strip a + a { border-left: 1px solid var(--line); }
.discipline-strip a::before { content: ""; position: absolute; inset: 0; background: var(--blue); transform: translateY(101%); transition: transform .35s cubic-bezier(.22,1,.36,1); }
.discipline-strip a:hover::before { transform: none; }
.discipline-strip span { position: relative; z-index: 1; }
.discipline-index { grid-row: 1 / 3; align-self: center; color: var(--blue); font: 10px/1 var(--font-geist-mono); }
.discipline-title { align-self: end; font-size: clamp(21px, 2vw, 31px); letter-spacing: -.03em; }
.discipline-note { align-self: start; margin-top: 5px; color: #797e88; font-size: 11px; }
.discipline-arrow { grid-row: 1 / 3; align-self: center; opacity: 0; transform: translate(-8px, 8px); transition: .25s ease; }
.discipline-strip a:hover .discipline-index,
.discipline-strip a:hover .discipline-note { color: white; }
.discipline-strip a:hover .discipline-arrow { opacity: 1; transform: none; }

.reveal { animation: revealUp .7s cubic-bezier(.22,1,.36,1) both; }
.reveal-1 { animation-delay: .08s; }
.reveal-2 { animation-delay: .16s; }
.reveal-3 { animation-delay: .28s; }
.reveal-4 { animation-delay: .4s; }

@keyframes revealUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes arcReveal { from { opacity: 0; transform: translateY(-32%) rotate(-35deg) scale(.9); } to { opacity: 1; transform: translateY(-32%); } }
@keyframes lineDraw { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes pulse { 50% { transform: translate(-50%, -50%) scale(.72); opacity: .7; } }

@media (max-width: 1100px) {
  .wrap { width: min(100% - 64px, 1392px); }
  .hero { grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); gap: 38px; }
  .hero h1 { font-size: clamp(52px, 6.4vw, 74px); }
  .hero-art { min-height: 440px; }
  .art-grid { height: 440px; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; }
  .wrap { width: min(100% - 36px, 1392px); }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 7px; border: 1px solid var(--line); background: transparent; z-index: 2; }
  .menu-toggle span { width: 18px; height: 1px; background: white; transition: .2s ease; }
  .main-nav {
    position: fixed; inset: 0; padding: 110px 28px 38px; background: #090a0d; display: flex; flex-direction: column; align-items: stretch; gap: 0; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a, .nav-dropdown > button { width: 100%; min-height: 70px; border-bottom: 1px solid var(--line); font-size: 24px; justify-content: space-between; }
  .main-nav > a::after, .nav-dropdown > button::after { display: none; }
  .nav-dropdown { display: block; }
  .dropdown-menu { position: static; width: 100%; display: none; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; padding: 0 8px 18px; }
  .dropdown-menu.open { display: block; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 72px 48px; }
  .hero h1 { font-size: clamp(47px, 12vw, 74px); }
  .hero-art { min-height: 470px; grid-template-columns: 38px 1fr; gap: 12px; }
  .art-grid { height: 470px; }
  .discipline-strip { height: auto; grid-template-columns: 1fr; }
  .discipline-strip a { min-height: 105px; }
  .discipline-strip a + a { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 540px) {
  .wrap { width: min(100% - 28px, 1392px); }
  .brand { font-size: 14px; }
  .hero { padding-top: 54px; }
  .eyebrow { font-size: 12px; gap: 9px; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 62px); }
  .hero-description { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-art { min-height: 390px; margin-top: 10px; }
  .art-grid { height: 390px; }
  .impact-cell { padding: 15px; }
  .impact-cell strong { font-size: 52px; }
  .target-cell i { width: 52px; height: 52px; }
  .lines-cell { gap: 9px; }
}

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

/* Inner pages */
.inner-page { padding-bottom: 72px; }
.page-intro { padding-top: 42px; }
.page-crumb { display: flex; align-items: center; gap: 10px; color: #656a74; font: 10px/1 var(--font-geist-mono); text-transform: uppercase; letter-spacing: .12em; }
.page-crumb a:hover { color: var(--blue-bright); }
.page-crumb b { color: #acafb6; font-weight: 500; }
.page-intro-grid { min-height: 385px; display: grid; grid-template-columns: 78px minmax(330px, .9fr) minmax(320px, .72fr); gap: clamp(30px, 5vw, 90px); align-items: center; }
.page-number { color: var(--blue); font: 16px/1 var(--font-geist-mono); align-self: start; padding-top: 96px; }
.page-intro h1 { margin: 0; font-size: clamp(74px, 8.5vw, 130px); line-height: .86; letter-spacing: -.07em; font-weight: 520; }
.page-intro .eyebrow { margin-bottom: 30px; }
.intro-copy { padding-left: clamp(24px, 4vw, 60px); border-left: 1px solid var(--line); }
.intro-copy strong { display: block; max-width: 480px; color: var(--paper); font-size: clamp(21px, 2vw, 29px); line-height: 1.16; letter-spacing: -.035em; font-weight: 500; }
.intro-copy p { max-width: 520px; margin: 22px 0 0; color: #979ba5; font-size: 15px; line-height: 1.68; }
.statement { min-height: 132px; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 155px 1fr; align-items: center; }
.statement span { color: var(--blue); font: 10px/1 var(--font-geist-mono); text-transform: uppercase; letter-spacing: .16em; }
.statement p { max-width: 1000px; margin: 0; font-size: clamp(20px, 2.2vw, 32px); line-height: 1.2; letter-spacing: -.035em; }
.projects-section, .web-projects, .capabilities { padding-top: 102px; }
.section-heading { margin-bottom: 36px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading span { display: block; margin-bottom: 11px; color: var(--blue); font: 10px/1 var(--font-geist-mono); text-transform: uppercase; letter-spacing: .15em; }
.section-heading h2 { margin: 0; font-size: clamp(35px, 4vw, 58px); font-weight: 520; letter-spacing: -.055em; }
.section-heading > p { max-width: 300px; margin: 0 0 4px; color: #737883; font-size: 12px; }

.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
.project-card { appearance: none; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.project-visual { height: clamp(330px, 37vw, 560px); position: relative; overflow: hidden; background: #111319; border: 1px solid #22252c; transition: transform .38s cubic-bezier(.22,1,.36,1), border-color .3s ease; }
.project-card:hover .project-visual { transform: translateY(-7px); border-color: currentColor; }
.visual-index { position: absolute; top: 24px; left: 24px; color: rgba(255,255,255,.65); font: 11px/1 var(--font-geist-mono); z-index: 2; }
.visual-word { position: absolute; left: -2%; bottom: 2%; font-size: clamp(62px, 8vw, 126px); line-height: .78; font-weight: 700; letter-spacing: -.08em; text-transform: uppercase; color: rgba(255,255,255,.92); mix-blend-mode: overlay; }
.visual-orbit { position: absolute; width: 65%; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; top: 13%; left: 22%; animation: orbit 14s linear infinite; }
.visual-orbit::before, .visual-orbit::after { content: ""; position: absolute; inset: 15%; border: 1px solid currentColor; border-radius: 50%; }
.visual-orbit::after { inset: 35%; background: currentColor; opacity: .8; }
.visual-orbit i { position: absolute; width: 10px; height: 10px; background: white; border-radius: 50%; left: 50%; top: -5px; }
.visual-orbit i:nth-child(2) { left: auto; right: 7%; top: 76%; width: 5px; height: 5px; }
.visual-orbit i:nth-child(3) { left: 8%; top: 73%; width: 7px; height: 7px; }
.play-mark { position: absolute; right: 28px; bottom: 28px; width: 62px; height: 62px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; display: grid; place-items: center; color: white; font-size: 15px; padding-left: 3px; backdrop-filter: blur(8px); }
.identity-mark { position: absolute; inset: 0; display: grid; place-items: center; color: white; font-size: clamp(180px, 28vw, 430px); font-weight: 180; line-height: 1; opacity: .8; transform: rotate(6deg); }
.site-wire { position: absolute; inset: 15% 12%; padding: 9%; border: 2px solid rgba(255,255,255,.85); background: rgba(0,0,0,.13); display: grid; grid-template-columns: 1fr .7fr; gap: 8%; }
.site-wire::before { content: ""; position: absolute; top: 5%; left: 4%; right: 4%; height: 2px; background: rgba(255,255,255,.6); }
.site-wire i { display: block; align-self: end; height: 70%; background: rgba(255,255,255,.7); }
.site-wire i:nth-child(2) { height: 40%; align-self: center; }
.site-wire i:nth-child(3) { grid-column: 1/3; height: 18%; }
.tone-blue { color: #2457ff; }.tone-blue .project-visual, .tone-blue.modal-stage { background: linear-gradient(145deg,#0c132c,#2457ff); }
.tone-violet { color: #8457ff; }.tone-violet .project-visual { background: linear-gradient(145deg,#17102c,#7541ff); }
.tone-cyan { color: #25c8df; }.tone-cyan .project-visual { background: linear-gradient(145deg,#08252b,#0e8ca8); }
.tone-red { color: #ff4d3f; }.tone-red .project-visual { background: linear-gradient(145deg,#2d0c0b,#e5372b); }
.tone-yellow { color: #ffd52a; }.tone-yellow .project-visual { background: linear-gradient(145deg,#2b2508,#e8b916); }
.tone-green { color: #6fe457; }.tone-green .project-visual { background: linear-gradient(145deg,#10280d,#32a53a); }
.project-card-copy { min-height: 104px; padding: 17px 2px 0; display: grid; grid-template-columns: 1fr auto; position: relative; color: var(--paper); }
.project-card-copy span { grid-column: 1; color: #6f747e; font: 10px/1 var(--font-geist-mono); text-transform: uppercase; letter-spacing: .1em; }
.project-card-copy strong { grid-column: 1; margin-top: 9px; font-size: clamp(20px, 2vw, 28px); font-weight: 520; letter-spacing: -.035em; }
.project-card-copy small { grid-column: 1; margin-top: 7px; color: #868b95; }
.project-card-copy b { grid-column: 2; grid-row: 1/4; align-self: center; color: currentColor; font-size: 22px; font-weight: 400; opacity: 0; transform: translate(-8px, 8px); transition: .25s ease; }
.project-card:hover .project-card-copy b { opacity: 1; transform: none; }

.project-modal { position: fixed; inset: 0; z-index: 100; padding: 28px; display: grid; place-items: center; background: rgba(0,0,0,.84); backdrop-filter: blur(18px); animation: modalFade .2s ease both; }
.project-modal-panel { width: min(1180px, 100%); max-height: calc(100vh - 56px); overflow: auto; display: grid; grid-template-columns: 1.25fr .75fr; background: #0d0e11; border: 1px solid #383b43; position: relative; color: var(--blue); animation: modalUp .38s cubic-bezier(.22,1,.36,1) both; }
.modal-close { position: absolute; top: 18px; right: 18px; z-index: 3; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.4); background: rgba(0,0,0,.35); color: white; font-size: 27px; cursor: pointer; }
.modal-stage { min-height: 620px; position: relative; overflow: hidden; background: linear-gradient(145deg,#0c132c,currentColor); }
.stage-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent); }
.stage-disc { position: absolute; width: 60%; aspect-ratio: 1; border: 78px solid rgba(255,255,255,.94); border-radius: 50%; left: 20%; top: 12%; animation: stageFloat 4s ease-in-out infinite; }
.modal-stage span { position: absolute; top: 26px; left: 28px; color: white; font: 10px/1 var(--font-geist-mono); letter-spacing: .16em; }
.modal-stage strong { position: absolute; left: 28px; bottom: 26px; color: white; font-size: clamp(56px, 7vw, 105px); line-height: .78; letter-spacing: -.07em; text-transform: uppercase; mix-blend-mode: overlay; }
.modal-copy { padding: 76px 42px 42px; color: var(--paper); }
.modal-copy > p:first-child { color: currentColor; font: 10px/1 var(--font-geist-mono); text-transform: uppercase; letter-spacing: .14em; }
.modal-copy h2 { margin: 23px 0; font-size: clamp(34px, 4vw, 58px); line-height: .96; letter-spacing: -.055em; font-weight: 520; }
.modal-description { color: #9da1aa; font-size: 15px; line-height: 1.65; }
.project-metric { margin: 34px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-metric span { display: block; margin-bottom: 9px; color: #6e727c; font: 9px/1 var(--font-geist-mono); text-transform: uppercase; letter-spacing: .14em; }
.project-metric strong { font-size: 18px; line-height: 1.3; font-weight: 500; }
.modal-copy ul { margin: 30px 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.modal-copy li { padding: 8px 12px; border: 1px solid #3c3f47; color: #aeb1b8; font-size: 11px; }
.modal-copy > small { color: #626771; font-size: 10px; line-height: 1.5; }
.next-project { margin-top: 110px; min-height: 190px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.next-project > p { margin: 0; color: #717680; font-size: 13px; }
.next-project a { display: flex; align-items: center; gap: 40px; font-size: clamp(28px, 4vw, 58px); letter-spacing: -.055em; }
.next-project a span { color: var(--blue); transition: transform .2s ease; }.next-project a:hover span { transform: translate(7px,-7px); }

/* Webdesign portfolio */
.browser-project { border: 1px solid #33363d; background: #0c0d10; overflow: hidden; }
.browser-chrome { height: 44px; padding: 0 16px; display: flex; align-items: center; gap: 7px; background: #15161a; border-bottom: 1px solid #31333a; }
.browser-chrome i { width: 8px; height: 8px; border-radius: 50%; background: #4a4d55; }.browser-chrome i:first-child { background: var(--blue); }
.browser-chrome span { margin-left: auto; margin-right: auto; color: #6b7079; font: 9px/1 var(--font-geist-mono); }
.browser-preview { min-height: 530px; padding: 48px; position: relative; overflow: hidden; background: #eef1f4; color: #101316; }
.browser-preview::after { content:""; position:absolute; width:65%; aspect-ratio:1; border:100px solid #1857f0; border-radius:50%; right:-10%; top:-32%; }
.demo-preview-header { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; }.demo-preview-header b { font-size:24px; letter-spacing:-.06em; }.demo-preview-header span { font-size:11px; color:#70757b; }
.demo-preview-copy { position: relative; z-index: 2; width: 56%; margin-top: 110px; }.demo-preview-copy small { color:#1857f0; font:10px/1 var(--font-geist-mono); letter-spacing:.16em; }.demo-preview-copy strong { display:block; margin-top:15px; font-size:clamp(50px,6vw,88px); line-height:.88; letter-spacing:-.07em; }.demo-preview-copy div { display:flex; gap:10px; margin-top:40px; }.demo-preview-copy div i { display:block; width:80px; height:11px; background:#1857f0; }.demo-preview-copy div i:last-child { width:180px; background:#d2d7dd; }
.demo-speed { position:absolute; right:8%; bottom:9%; z-index:2; width:180px; aspect-ratio:1; display:grid; place-content:center; text-align:center; color:white; background:#0a1018; border-radius:50%; }.demo-speed span { font:9px/1 var(--font-geist-mono); }.demo-speed strong { font-size:82px; line-height:.8; letter-spacing:-.08em; }.demo-speed b { font-size:12px; letter-spacing:.2em; }
.browser-project-info { min-height: 160px; padding: 30px 34px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.browser-project-info > div span { color:var(--blue); font:9px/1 var(--font-geist-mono); text-transform:uppercase; letter-spacing:.14em; }.browser-project-info h3 { margin:10px 0 5px; font-size:30px; letter-spacing:-.04em; }.browser-project-info p { margin:0; color:#7b808a; font-size:13px; }

/* About */
.about-hero { padding-top: 42px; }
.about-grid { min-height: 710px; padding: 55px 0; display: grid; grid-template-columns: 1.2fr .62fr .8fr; gap: clamp(35px,5vw,80px); align-items: center; }
.about-title { align-self: start; padding-top: 80px; }.about-title h1 { margin:0; font-size:clamp(58px,6vw,92px); line-height:.91; font-weight:520; letter-spacing:-.065em; }.about-title h1 span { color:var(--blue); }
.about-portrait { min-height: 480px; position:relative; display:grid; place-items:center; border-left:1px solid var(--line); border-right:1px solid var(--line); overflow:hidden; }.about-portrait > span { font-size:clamp(110px,13vw,200px); font-weight:650; letter-spacing:-.12em; color:var(--blue); z-index:1; }.portrait-orbit { position:absolute; width:120%; aspect-ratio:1; border:1px solid #4e525b; border-radius:50%; }.portrait-orbit::before,.portrait-orbit::after { content:""; position:absolute; inset:18%; border:1px solid #3d4149; border-radius:50%; }.portrait-orbit::after { inset:36%; background:#101216; }.about-portrait small { position:absolute; left:20px; bottom:20px; color:#717681; font:9px/1.5 var(--font-geist-mono); text-transform:uppercase; letter-spacing:.12em; z-index:2; }
.about-copy strong { display:block; margin-bottom:26px; font-size:clamp(22px,2.2vw,31px); line-height:1.18; font-weight:520; letter-spacing:-.04em; }.about-copy p { color:#969aa4; font-size:15px; line-height:1.68; }
.capability-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }.capability-grid article { min-height:270px; padding:28px; }.capability-grid article+article { border-left:1px solid var(--line); }.capability-grid span { color:var(--blue); font:10px/1 var(--font-geist-mono); }.capability-grid h3 { margin:75px 0 15px; font-size:27px; letter-spacing:-.04em; }.capability-grid p { margin:0; color:#7c818b; font-size:13px; line-height:1.6; }

/* Contact */
.contact-layout { min-height:calc(100vh - var(--header-h)); padding-block:70px; display:grid; grid-template-columns:1fr .72fr; gap:clamp(70px,10vw,160px); align-items:start; }
.contact-copy .page-crumb { margin-bottom:90px; }.contact-copy h1 { max-width:780px; margin:25px 0; font-size:clamp(55px,6.4vw,98px); line-height:.91; letter-spacing:-.065em; font-weight:520; }.contact-copy h1 span { color:var(--blue); }.contact-copy > p:not(.eyebrow) { max-width:570px; color:#969aa4; font-size:16px; line-height:1.65; }
.contact-availability { margin-top:55px; display:flex; gap:17px; align-items:center; }.contact-availability > i { width:10px; height:10px; border-radius:50%; background:#44d66c; box-shadow:0 0 16px rgba(68,214,108,.6); }.contact-availability strong,.contact-availability span { display:block; }.contact-availability strong { font-size:13px; }.contact-availability span { margin-top:5px; color:#6d727d; font-size:10px; }
.contact-form { padding:34px; border:1px solid #34363e; background:#0d0e11; }.contact-form label { display:block; margin-bottom:25px; color:#8d929c; font:10px/1 var(--font-geist-mono); text-transform:uppercase; letter-spacing:.12em; }.contact-form input,.contact-form select,.contact-form textarea { width:100%; margin-top:10px; padding:15px 0; border:0; border-bottom:1px solid #3b3e46; border-radius:0; outline:0; background:transparent; color:var(--paper); font:15px/1.4 var(--font-geist-sans); text-transform:none; letter-spacing:0; resize:vertical; transition:border-color .2s ease; }.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color:var(--blue); }.contact-form select option { background:#111216; }.contact-form .button { width:100%; margin-top:4px; border:1px solid var(--blue); cursor:pointer; }.form-status { min-height:34px; margin:14px 0 0; color:#7f8490; font-size:11px; line-height:1.5; }

/* Navigable webdesign demo */
.demo-site { --demo-blue:#1458ee; --demo-dark:#0b1016; min-height:100vh; background:#f1f3f5; color:var(--demo-dark); font-family:var(--font-geist-sans),Arial,sans-serif; }
.portfolio-return-bar { min-height:44px; padding:0 4vw; display:flex; justify-content:space-between; align-items:center; background:#08090b; color:#d9dbe0; font-size:11px; }.portfolio-return-bar span { display:flex; align-items:center; gap:10px; }.portfolio-return-bar span i { width:6px; height:6px; border-radius:50%; background:var(--blue); }.portfolio-return-bar a { color:#fff; }.portfolio-return-bar a:hover { color:#5d84ff; }
.demo-header { height:84px; padding:0 5vw; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid #d5d9dd; position:sticky; top:0; z-index:20; background:rgba(241,243,245,.92); backdrop-filter:blur(16px); }.demo-logo { font-size:27px; font-weight:750; letter-spacing:-.07em; }.demo-logo i { color:var(--demo-blue); }.demo-header nav { display:flex; gap:36px; font-size:13px; }.demo-header nav a:hover { color:var(--demo-blue); }.demo-cta { padding:14px 20px; background:var(--demo-dark); color:white; font-size:12px; }
.demo-hero { min-height:calc(100vh - 128px); padding:6vw 5vw; display:grid; grid-template-columns:1fr .8fr; align-items:center; gap:5vw; overflow:hidden; }.demo-hero-copy p,.demo-section-title>span,.demo-benefits>div>span,.demo-coverage>div>span { color:var(--demo-blue); font:10px/1 var(--font-geist-mono); text-transform:uppercase; letter-spacing:.18em; }.demo-hero-copy h1 { max-width:800px; margin:25px 0; font-size:clamp(66px,7.4vw,126px); line-height:.83; letter-spacing:-.08em; font-weight:590; }.demo-hero-copy h1 em { color:var(--demo-blue); font-style:normal; }.demo-hero-copy>span { display:block; max-width:540px; color:#65707b; font-size:17px; line-height:1.55; }.demo-hero-copy>a { width:max-content; margin-top:38px; padding-bottom:8px; display:flex; gap:60px; border-bottom:1px solid var(--demo-dark); font-size:14px; }.demo-hero-art { min-height:590px; position:relative; }.demo-ring { position:absolute; aspect-ratio:1; border-radius:50%; border:1px solid #aeb5bd; }.ring-one { width:100%; right:-20%; top:0; }.ring-two { width:73%; right:-6%; top:13%; border:72px solid var(--demo-blue); }.ring-three { width:35%; right:13%; top:32%; background:var(--demo-dark); }.demo-hero-art strong { position:absolute; left:4%; bottom:14%; font-size:clamp(120px,15vw,220px); line-height:.7; letter-spacing:-.12em; z-index:3; }.demo-hero-art strong small { display:block; margin-left:10px; color:var(--demo-blue); font-size:20px; letter-spacing:.12em; }.demo-hero-art>span { position:absolute; right:0; bottom:4%; color:#77808a; font:10px/1.5 var(--font-geist-mono); text-transform:uppercase; letter-spacing:.14em; }
.demo-plans { padding:110px 5vw; background:var(--demo-dark); color:white; }.demo-section-title { display:grid; grid-template-columns:.5fr 1.4fr .7fr; align-items:end; gap:30px; margin-bottom:70px; }.demo-section-title h2 { margin:0; font-size:clamp(50px,6vw,90px); line-height:.88; letter-spacing:-.065em; font-weight:530; }.demo-section-title p { color:#89919b; line-height:1.5; }.plan-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }.plan-grid article { min-height:480px; padding:30px; border:1px solid #323945; display:flex; flex-direction:column; position:relative; }.plan-grid article.featured { background:var(--demo-blue); border-color:var(--demo-blue); }.popular { position:absolute; right:24px; top:26px; font:9px/1 var(--font-geist-mono); text-transform:uppercase; letter-spacing:.12em; }.plan-grid article>span { color:#8d96a1; font:10px/1 var(--font-geist-mono); text-transform:uppercase; letter-spacing:.12em; }.plan-grid .featured>span { color:white; }.plan-grid h3 { margin:70px 0 15px; font-size:clamp(76px,8vw,126px); line-height:.7; letter-spacing:-.08em; }.plan-grid h3 small { margin-left:8px; font-size:13px; letter-spacing:.08em; }.plan-grid article>p { color:#8d96a1; }.plan-grid .featured>p { color:#d9e3ff; }.plan-grid article>div { margin-top:auto; display:flex; align-items:end; }.plan-grid article>div small { margin:0 7px 7px 0; }.plan-grid article>div strong { font-size:45px; letter-spacing:-.06em; }.plan-grid article>div i { margin:0 0 8px 5px; color:#7b8490; font-style:normal; }.plan-grid .featured>div i { color:#d8e2ff; }.plan-grid article>a { margin-top:22px; padding:15px; border:1px solid #414957; text-align:center; }.plan-grid .featured>a { background:white; border-color:white; color:var(--demo-dark); }
.demo-benefits { padding:120px 5vw; display:grid; grid-template-columns:.85fr 1fr; gap:10vw; }.demo-benefits>div h2 { margin:25px 0 0; font-size:clamp(42px,5vw,76px); line-height:.94; letter-spacing:-.06em; }.demo-benefits ul { padding:0; margin:0; list-style:none; }.demo-benefits li { padding:30px 0; display:grid; grid-template-columns:45px 1fr; border-top:1px solid #cfd4d9; }.demo-benefits li b { color:var(--demo-blue); font:10px/1 var(--font-geist-mono); }.demo-benefits li strong { font-size:23px; }.demo-benefits li span { grid-column:2; margin-top:10px; color:#69747f; line-height:1.5; }
.demo-coverage { padding:100px 5vw; display:grid; grid-template-columns:1fr .8fr; gap:10vw; background:var(--demo-blue); color:white; }.demo-coverage h2 { margin:25px 0; font-size:clamp(48px,5.5vw,84px); line-height:.9; letter-spacing:-.065em; }.demo-coverage>div>span { color:white; }.demo-coverage>div>p { max-width:520px; color:#dce6ff; }.demo-coverage form { align-self:center; }.demo-coverage label { display:block; margin-bottom:20px; font:9px/1 var(--font-geist-mono); text-transform:uppercase; letter-spacing:.14em; }.demo-coverage input { width:100%; margin-top:9px; padding:17px 0; border:0; border-bottom:1px solid rgba(255,255,255,.6); outline:0; background:transparent; color:white; font-size:24px; }.demo-coverage input::placeholder { color:#c6d6ff; }.demo-coverage button { width:100%; margin-top:10px; padding:18px; border:0; background:var(--demo-dark); color:white; cursor:pointer; }.demo-coverage form p { min-height:24px; color:white; font-size:12px; }.demo-footer { padding:50px 5vw; display:flex; align-items:center; justify-content:space-between; gap:30px; background:var(--demo-dark); color:white; }.demo-footer p { color:#7d8691; font-size:12px; }.demo-footer>a:last-child { color:#6d91ff; font-size:12px; }

@keyframes orbit { to { transform:rotate(360deg); } }
@keyframes modalFade { from { opacity:0; } }
@keyframes modalUp { from { opacity:0; transform:translateY(24px) scale(.98); } }
@keyframes stageFloat { 50% { transform:translateY(18px) rotate(4deg); } }

@media (max-width: 1000px) {
  .page-intro-grid { grid-template-columns:55px 1fr; gap:30px; padding:70px 0; }.page-number { padding-top:62px; }.intro-copy { grid-column:2; padding-left:0; border-left:0; }.statement { grid-template-columns:100px 1fr; }
  .about-grid { grid-template-columns:1fr .7fr; }.about-copy { grid-column:1/3; columns:2; column-gap:50px; }.about-copy strong { column-span:all; }.capability-grid { grid-template-columns:repeat(2,1fr); }.capability-grid article:nth-child(3) { border-left:0; border-top:1px solid var(--line); }.capability-grid article:nth-child(4) { border-top:1px solid var(--line); }
  .contact-layout { grid-template-columns:1fr; }.contact-copy .page-crumb { margin-bottom:55px; }.contact-form { max-width:720px; }
  .demo-header nav { display:none; }.demo-hero { grid-template-columns:1fr; }.demo-hero-art { min-height:430px; width:min(620px,100%); margin:auto; }.demo-section-title { grid-template-columns:1fr 2fr; }.demo-section-title p { grid-column:2; }.plan-grid { grid-template-columns:1fr; }.plan-grid article { min-height:390px; }.demo-benefits,.demo-coverage { grid-template-columns:1fr; gap:60px; }
}

@media (max-width: 700px) {
  .page-intro-grid { grid-template-columns:1fr; padding:60px 0; }.page-number { padding:0; }.intro-copy { grid-column:1; }.page-intro h1 { font-size:clamp(62px,20vw,92px); }.statement { grid-template-columns:1fr; gap:18px; padding:28px 0; }.projects-section,.web-projects,.capabilities { padding-top:70px; }.section-heading { align-items:start; flex-direction:column; gap:14px; }.project-grid { grid-template-columns:1fr; }.project-visual { height:420px; }.project-modal { padding:10px; }.project-modal-panel { max-height:calc(100vh - 20px); grid-template-columns:1fr; }.modal-stage { min-height:360px; }.modal-copy { padding:40px 24px 28px; }.next-project { align-items:flex-start; flex-direction:column; justify-content:center; }
  .browser-preview { min-height:460px; padding:25px; }.browser-preview::after { width:100%; right:-45%; }.demo-preview-copy { width:80%; margin-top:100px; }.demo-speed { width:130px; }.browser-project-info { align-items:flex-start; flex-direction:column; }.browser-project-info .button { width:100%; }
  .about-grid { grid-template-columns:1fr; }.about-title { padding-top:40px; }.about-portrait { min-height:360px; }.about-copy { grid-column:1; columns:1; }.capability-grid { grid-template-columns:1fr; }.capability-grid article+article { border-left:0; border-top:1px solid var(--line); }
  .contact-form { padding:22px; }.portfolio-return-bar { padding:9px 14px; gap:15px; }.portfolio-return-bar span { font-size:9px; }.demo-header { padding:0 18px; }.demo-cta { display:none; }.demo-hero { padding:80px 18px; }.demo-hero-copy h1 { font-size:clamp(58px,18vw,90px); }.demo-hero-art { min-height:340px; }.ring-two { border-width:45px; }.demo-plans,.demo-benefits,.demo-coverage { padding:80px 18px; }.demo-section-title { grid-template-columns:1fr; }.demo-section-title p { grid-column:1; }.plan-grid article { min-height:420px; }.demo-footer { align-items:flex-start; flex-direction:column; }
}
