:root {
  --ink: #151743;
  --ink-soft: #505378;
  --navy: #1b1a76;
  --indigo: #2a2697;
  --violet: #6336e8;
  --violet-bright: #7a48ff;
  --cyan: #11c7ef;
  --cyan-deep: #008fcb;
  --mint: #1dc39c;
  --amber: #f3ad3d;
  --rose: #ed718b;
  --paper: #ffffff;
  --cloud: #f8f9ff;
  --lavender: #eef0ff;
  --line: #e4e6f2;
  --shadow: 0 22px 55px rgba(35, 33, 108, 0.12);
  --shell: min(1160px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-color: var(--violet) #eef0ff; scrollbar-width: thin; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; -webkit-user-drag: none; user-drag: none; }
body, body * { -webkit-user-drag: none; }
body *:not(input):not(textarea):not(select):not(option) { -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
input, textarea, select, option { -webkit-user-select: text; user-select: text; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { border-left: 1px solid rgba(98, 54, 232, .08); background: linear-gradient(180deg, #f7f7ff, #edf8ff); }
::-webkit-scrollbar-thumb { min-height: 52px; border: 3px solid #f4f6ff; border-radius: 999px; background: linear-gradient(180deg, var(--violet-bright), var(--cyan-deep)); box-shadow: 0 3px 10px rgba(71, 48, 187, .22); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #4f27c8, #007db7); }

.shell { width: var(--shell); margin: 0 auto; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--paper);
  color: var(--navy);
  transform: translateY(-170%);
  box-shadow: var(--shadow);
}

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

.site-header {
  position: absolute;
  z-index: 40;
  inset: 0 0 auto;
  padding: 18px 0;
  transition: background-color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 28px rgba(31, 29, 105, 0.09);
  backdrop-filter: blur(18px);
}

.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 56px; }

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }

.brand-logo { position: relative; display: block; width: 192px; height: 58px; overflow: hidden; }
.brand-logo img { position: absolute; width: 247px; max-width: none; left: -30px; top: -32px; }

.site-menu { display: flex; align-items: center; gap: 30px; font-size: 0.88rem; font-weight: 700; color: #3e4167; }
.site-menu > a:not(.nav-cta) { position: relative; padding: 9px 0; }
.site-menu > a:not(.nav-cta)::after { content: ""; position: absolute; height: 2px; background: var(--violet); left: 0; right: 100%; bottom: 3px; transition: right 180ms ease; }
.site-menu > a:not(.nav-cta):hover::after, .site-menu > a:not(.nav-cta):focus-visible::after { right: 0; }

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 0.89rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta { min-height: 42px; padding: 0 18px; color: #fff; background: var(--navy); box-shadow: 0 8px 20px rgba(39, 35, 141, 0.18); }
.nav-cta:hover, .button-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(46, 42, 157, 0.28); }

.menu-toggle { display: none; border: 0; padding: 8px; background: transparent; color: var(--ink); cursor: pointer; align-items: center; gap: 9px; font-weight: 800; }
.menu-toggle-lines { width: 20px; height: 15px; display: flex; flex-direction: column; justify-content: space-between; }
.menu-toggle-lines i { display: block; width: 20px; height: 2px; border-radius: 10px; background: var(--navy); transition: transform 180ms ease; }

.hero { position: relative; min-height: 775px; overflow: hidden; padding: 164px 0 94px; background: linear-gradient(122deg, #fbfbff 0%, #f1f3ff 54%, #ebe8ff 100%); }
.hero-grid { position: absolute; inset: 0; opacity: 0.42; background-image: linear-gradient(rgba(98, 83, 217, 0.075) 1px, transparent 1px), linear-gradient(90deg, rgba(98, 83, 217, 0.075) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, #000, transparent 84%); }
.hero-aura { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-aura-one { width: 520px; height: 520px; top: -250px; right: -100px; background: radial-gradient(circle at 35% 40%, rgba(18, 199, 239, 0.38), rgba(101, 54, 232, 0.12) 48%, transparent 70%); }
.hero-aura-two { width: 390px; height: 390px; bottom: -255px; left: 38%; background: radial-gradient(circle, rgba(118, 73, 255, 0.22), transparent 68%); }

.hero-shell { position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 52px; }
.hero-copy { max-width: 600px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 19px; color: var(--violet); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.125em; line-height: 1.3; text-transform: uppercase; }
.eyebrow > span { color: var(--cyan-deep); font-size: 1rem; line-height: 0; }
.eyebrow-dark { color: #4c4f79; }
.eyebrow-dark > span { color: var(--violet); }
.eyebrow-light { color: rgba(255,255,255,.72); }
.eyebrow-light > span { color: #96f0ff; }

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 620px; margin-bottom: 24px; color: var(--ink); font-size: clamp(3.2rem, 5.2vw, 5.55rem); font-weight: 850; letter-spacing: -0.075em; line-height: 0.93; }
h1 span { color: var(--violet); }
.hero-intro { max-width: 536px; margin-bottom: 31px; color: var(--ink-soft); font-size: 1.07rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.button { min-height: 53px; padding: 0 23px; }
.button-primary { color: white; background: linear-gradient(102deg, var(--navy), var(--violet)); box-shadow: 0 10px 20px rgba(68, 47, 193, 0.22); }
.button-primary span, .button-light span { font-size: 1.18rem; transition: transform 180ms ease; }
.button:hover span { transform: translateY(2px); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy); font-size: 0.9rem; font-weight: 800; }
.text-link span { color: var(--violet); font-size: 1.15rem; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.hero-proof { display: flex; gap: 0; margin-top: 54px; }
.hero-proof > div { display: grid; gap: 3px; padding: 0 24px; border-left: 1px solid rgba(64, 60, 138, 0.2); }
.hero-proof > div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong { color: var(--navy); font-size: 1.48rem; letter-spacing: -0.06em; line-height: 1; }
.hero-proof span { color: #666989; font-size: 0.73rem; font-weight: 700; line-height: 1.35; }

.hero-showcase { position: relative; min-height: 486px; }
.showcase-window { position: absolute; z-index: 2; inset: 49px 11px 20px 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.8); border-radius: 24px; background: rgba(255,255,255,.79); box-shadow: 0 34px 65px rgba(41, 33, 126, 0.2); backdrop-filter: blur(14px); transform: rotate(1.75deg); }
.window-bar { display: flex; align-items: center; gap: 11px; height: 49px; padding: 0 19px; border-bottom: 1px solid #e8e9f4; color: #747795; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.02em; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { display: block; width: 6px; height: 6px; border-radius: 50%; background: #b9bcd4; }
.window-dots i:nth-child(1) { background: #a476ff; }.window-dots i:nth-child(2) { background: #55d8ef; }.window-dots i:nth-child(3) { background: #edbd5e; }
.window-bar b { margin-left: auto; color: var(--mint); font-size: 0.55rem; }
.window-content { padding: 28px 28px 23px; }
.window-heading { display: flex; justify-content: space-between; align-items: start; }
.window-heading div { display: grid; gap: 4px; }
.window-heading span { color: #6d7092; font-size: 0.69rem; font-weight: 700; }
.window-heading strong { color: var(--ink); font-size: 1.35rem; letter-spacing: -0.055em; }
.window-heading .window-spark { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 11px; color: var(--violet); background: #eeecff; font-size: 1rem; }
.signal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 13px; }
.signal-card { display: flex; align-items: center; gap: 9px; padding: 13px; border-radius: 14px; }
.signal-card > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; color: #fff; font-size: .93rem; }
.signal-card-violet { background: #f0edff; }.signal-card-violet > span { background: var(--violet); }
.signal-card-cyan { background: #e8fbff; }.signal-card-cyan > span { background: var(--cyan-deep); }
.signal-card div { display: grid; gap: 3px; }.signal-card b { color: var(--ink); font-size: .69rem; }.signal-card small { color: #797c9b; font-size: .6rem; }
.activity-card { padding: 14px 16px 12px; border: 1px solid #e8e9f5; border-radius: 14px; background: #fff; }
.activity-title { display: flex; justify-content: space-between; align-items: center; font-size: .64rem; font-weight: 800; }.activity-title span { color: #737694; }.activity-title b { color: var(--mint); }
.activity-bars { display: flex; align-items: flex-end; gap: 6px; height: 38px; margin-top: 9px; }.activity-bars i { display: block; flex: 1; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, #71dcf1, #4b7be5); }.activity-bars i:nth-child(1) { height: 32%; }.activity-bars i:nth-child(2) { height: 45%; }.activity-bars i:nth-child(3) { height: 60%; }.activity-bars i:nth-child(4) { height: 50%; }.activity-bars i:nth-child(5) { height: 83%; background: linear-gradient(180deg, #a687ff, #5d36db); }.activity-bars i:nth-child(6) { height: 70%; }.activity-bars i:nth-child(7) { height: 94%; background: linear-gradient(180deg, #a687ff, #5d36db); }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 13px; color: #6d7191; font-size: .59rem; font-weight: 800; }.mini-cards div { display: flex; align-items: center; gap: 6px; }.mini-dot { width: 7px; height: 7px; border-radius: 50%; }.mini-dot-cyan { background: var(--cyan); box-shadow: 0 0 0 4px #e6fbff; }.mini-dot-violet { background: var(--violet); box-shadow: 0 0 0 4px #f1edff; }

.showcase-orbit { position: absolute; border: 1px dashed rgba(97, 60, 218, .4); border-radius: 50%; }.orbit-one { z-index: 0; width: 390px; height: 390px; top: 27px; right: -3px; }.orbit-two { z-index: 0; width: 273px; height: 273px; top: 82px; right: 53px; border-color: rgba(11, 187, 222, .45); }
.showcase-float { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.9); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 15px 28px rgba(41, 36, 124, .14); color: #494d72; font-size: .67rem; font-weight: 800; }
.showcase-float-top { top: 14px; right: 25px; }.showcase-float-bottom { bottom: 0; left: 0; }.float-icon { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 7px; color: #fff; background: linear-gradient(135deg, var(--violet), #9b7bff); }.float-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(17, 199, 239, .15); }

.logo-strip { position: relative; z-index: 3; border-top: 1px solid rgba(225,228,246,.7); border-bottom: 1px solid #e9ebf5; background: #fff; }
.logo-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 82px; color: #636682; font-size: .75rem; font-weight: 800; }.focus-list { display: flex; align-items: center; gap: 17px; color: #303362; }.focus-list i { color: var(--cyan-deep); font-style: normal; font-size: .75rem; }

.section { padding: 118px 0; }
.capabilities { background: #fff; }.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; }.section-heading > div { max-width: 682px; }.section-heading > p { max-width: 322px; margin: 0 0 6px; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
h2 { margin-bottom: 0; color: var(--ink); font-size: clamp(2.35rem, 4vw, 4rem); font-weight: 850; letter-spacing: -0.065em; line-height: 0.98; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 56px; }
.capability-card { position: relative; min-height: 293px; padding: 30px 28px 25px; overflow: hidden; border: 1px solid #e9eaf4; border-radius: 20px; background: #fff; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }.capability-card:hover { transform: translateY(-7px); border-color: #d6d4f7; box-shadow: var(--shadow); }.capability-icon { display: grid; place-items: center; width: 49px; height: 49px; margin-bottom: 39px; border-radius: 16px; font-size: 1.5rem; font-weight: 700; }.capability-violet { color: var(--violet); background: #efecff; }.capability-cyan { color: #008abb; background: #e4fbff; }.capability-amber { color: #c77900; background: #fff5df; }.capability-number { position: absolute; top: 32px; right: 29px; color: #c8cade; font-size: .72rem; font-weight: 900; letter-spacing: .08em; }.capability-card h3 { margin-bottom: 10px; font-size: 1.16rem; letter-spacing: -.035em; }.capability-card p { max-width: 285px; margin: 0; color: var(--ink-soft); font-size: .89rem; line-height: 1.65; }.capability-line { position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--violet), var(--cyan)); transform: scaleX(.19); transform-origin: left; transition: transform 220ms ease; }.capability-card:hover .capability-line { transform: scaleX(1); }

.portfolio-section { position: relative; overflow: hidden; background: var(--cloud); }.portfolio-wash { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }.portfolio-wash-one { width: 410px; height: 410px; top: 30px; left: -250px; background: radial-gradient(circle, rgba(128,105,255,.2), transparent 70%); }.portfolio-wash-two { width: 440px; height: 440px; right: -230px; bottom: -160px; background: radial-gradient(circle, rgba(24,205,236,.19), transparent 70%); }
.portfolio-top { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 45px; }.portfolio-top > div { max-width: 650px; }.portfolio-top > p { max-width: 328px; margin: 0 0 6px; color: var(--ink-soft); font-size: .98rem; line-height: 1.7; }
.portfolio-filters { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin: 46px 0 30px; }.filter-button { min-height: 35px; padding: 0 15px; border: 1px solid #dcdfea; border-radius: 999px; background: #fff; color: #5e6181; cursor: pointer; font-size: .76rem; font-weight: 800; transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease; }.filter-button:hover { transform: translateY(-1px); border-color: #bfb8f4; color: var(--violet); }.filter-button.is-active { border-color: var(--navy); background: var(--navy); color: #fff; box-shadow: 0 8px 16px rgba(36, 32, 126, .16); }
.portfolio-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }.portfolio-card { display: flex; flex-direction: column; min-height: 333px; padding: 23px; border: 1px solid #e5e7f2; border-radius: 19px; background: #fff; box-shadow: 0 8px 25px rgba(35, 34, 99, .035); transition: transform 220ms ease, box-shadow 220ms ease, opacity 180ms ease; }.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 20px 38px rgba(35, 34, 99, .11); }.portfolio-card.is-hidden { display: none; }.portfolio-card-top { display: flex; align-items: start; justify-content: space-between; }.project-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; font-size: 1.48rem; }.project-icon-violet { background: #efecff; }.project-icon-cyan { background: #e4fbff; }.project-icon-amber { background: #fff4de; }.project-icon-rose { background: #ffecf0; }.project-icon-blue { background: #e8f0ff; }.project-icon-mint { background: #e5faf2; }.project-icon-indigo { background: #e9eafa; }.project-category { padding: 6px 9px; border-radius: 7px; background: #f4f5fa; color: #767995; font-size: .64rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }.portfolio-copy { flex: 1; margin-top: 24px; }.portfolio-copy > p { margin-bottom: 7px; color: var(--violet); font-size: .67rem; font-weight: 900; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }.portfolio-copy h3 { margin-bottom: 15px; color: var(--ink); font-size: 1.15rem; letter-spacing: -.04em; line-height: 1.1; }.portfolio-copy > span { display: block; color: var(--ink-soft); font-size: .84rem; line-height: 1.64; }.portfolio-rule { width: 31px; height: 3px; margin-bottom: 14px; border-radius: 20px; background: linear-gradient(90deg, var(--violet), var(--cyan)); }.portfolio-card > a { display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 22px; padding-top: 16px; border-top: 1px solid #eeeff5; color: var(--navy); font-size: .75rem; font-weight: 900; }.portfolio-card > a b { color: var(--violet); font-size: 1.1rem; transition: transform 180ms ease; }.portfolio-card > a:hover b { transform: translate(3px,-3px); }.portfolio-empty { margin: 36px 0 0; color: var(--ink-soft); text-align: center; }.portfolio-empty[hidden] { display: none; }

.approach { background: #fff; }.approach-shell { display: grid; grid-template-columns: .84fr 1.16fr; gap: 100px; align-items: start; }.approach-intro { position: sticky; top: 100px; }.approach-intro h2 { margin-bottom: 21px; }.approach-intro > p:last-child { max-width: 400px; margin-bottom: 0; color: var(--ink-soft); font-size: .98rem; line-height: 1.75; }.approach-list { display: grid; margin: 0; padding: 0; list-style: none; border-top: 1px solid #e6e8f2; }.approach-list li { display: grid; grid-template-columns: 51px 1fr auto; align-items: center; gap: 18px; min-height: 128px; padding: 25px 0; border-bottom: 1px solid #e6e8f2; }.approach-list > li > span { color: var(--violet); font-size: .68rem; font-weight: 900; letter-spacing: .08em; }.approach-list h3 { margin: 0 0 6px; color: var(--ink); font-size: 1.11rem; letter-spacing: -.035em; }.approach-list p { margin: 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.55; }.approach-list i { color: #989bb7; font-size: 1.25rem; font-style: normal; transition: transform 180ms ease, color 180ms ease; }.approach-list li:hover i { color: var(--violet); transform: translateX(6px); }

.contact-section { padding: 104px 0; background: linear-gradient(135deg, #f7f7ff, #edf7ff); }.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }.contact-copy h2 { margin-bottom: 22px; }.contact-copy > p:last-child { max-width: 440px; margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }.contact-form { display: grid; gap: 15px; padding: 31px; border: 1px solid rgba(220, 222, 240, .95); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }.form-field { display: grid; gap: 7px; color: var(--ink); font-size: .76rem; font-weight: 850; }.form-field input, .form-field textarea { width: 100%; border: 1px solid #dfe1ee; border-radius: 10px; outline: 0; background: #fbfbff; color: var(--ink); font: inherit; font-size: .92rem; line-height: 1.5; transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }.form-field input { min-height: 45px; padding: 0 12px; }.form-field textarea { min-height: 104px; padding: 11px 12px; resize: vertical; }.form-field input:focus, .form-field textarea:focus { border-color: #9172f7; background: #fff; box-shadow: 0 0 0 4px rgba(99,54,232,.11); }.form-field textarea::placeholder { color: #9a9db7; }.contact-form .button { justify-self: start; margin-top: 3px; border: 0; cursor: pointer; }.form-status { min-height: 1.4em; margin: -2px 0 0; color: #606384; font-size: .76rem; font-weight: 700; line-height: 1.5; }.form-status.is-success { color: #078767; }.form-status.is-error { color: #ba3150; }

.closing-cta { position: relative; overflow: hidden; padding: 124px 0 128px; background: linear-gradient(117deg, #18166c, #262199 55%, #4020a7); color: #fff; text-align: center; }.closing-cta::before { content: ""; position: absolute; inset: 0; opacity: .23; background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent, #000 50%, transparent); }.closing-orb { position: absolute; border-radius: 50%; filter: blur(2px); }.closing-orb-one { width: 390px; height: 390px; top: -230px; left: 9%; background: radial-gradient(circle, rgba(13,206,239,.4), transparent 68%); }.closing-orb-two { width: 420px; height: 420px; right: -110px; bottom: -260px; background: radial-gradient(circle, rgba(147,84,255,.36), transparent 65%); }.closing-inner { position: relative; max-width: 765px; }.closing-inner .eyebrow { justify-content: center; }.closing-inner h2 { max-width: 720px; margin: 0 auto 21px; color: #fff; font-size: clamp(2.6rem, 4.5vw, 4.7rem); }.closing-inner > p:not(.eyebrow) { max-width: 560px; margin: 0 auto 31px; color: rgba(255,255,255,.76); font-size: 1rem; line-height: 1.7; }.button-light { color: var(--navy); background: #fff; box-shadow: 0 12px 28px rgba(13,10,69,.2); }.button-light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(13,10,69,.35); }

.site-footer { background: #11123c; color: rgba(255,255,255,.67); }.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; min-height: 102px; gap: 20px; font-size: .75rem; font-weight: 700; }.footer-brand .brand-logo { width: 154px; height: 47px; }.footer-brand .brand-logo img { width: 199px; left: -24px; top: -26px; filter: brightness(2.1) grayscale(.1) contrast(.8); }.footer-inner p { margin: 0; text-align: center; }.footer-inner p:last-child { text-align: right; }

html.has-js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1); transition-delay: calc(var(--reveal-delay, 0) * 1ms); }html.has-js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 940px) {
  :root { --shell: min(100% - 40px, 760px); }
  .hero { min-height: auto; padding-bottom: 80px; }.hero-shell { grid-template-columns: 1fr; gap: 41px; }.hero-copy { max-width: 670px; }.hero-showcase { max-width: 510px; width: 100%; min-height: 455px; margin: 0 auto; }.logo-strip-inner { align-items: start; flex-direction: column; justify-content: center; gap: 8px; padding: 20px 0; }.section-heading, .portfolio-top { align-items: start; flex-direction: column; gap: 18px; }.section-heading > p, .portfolio-top > p { max-width: 590px; }.capability-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }.approach-shell, .contact-grid { grid-template-columns: 1fr; gap: 50px; }.approach-intro { position: static; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 36px); }
  .site-header { padding: 10px 0; }.site-header.is-scrolled { padding: 7px 0; }.brand-logo { width: 174px; height: 53px; }.brand-logo img { width: 224px; left: -27px; top: -29px; }.menu-toggle { display: inline-flex; }.site-menu { position: absolute; top: calc(100% + 6px); right: 18px; left: 18px; display: grid; gap: 0; padding: 8px; border: 1px solid #eaebf5; border-radius: 17px; background: rgba(255,255,255,.98); box-shadow: 0 18px 35px rgba(34,31,100,.14); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; }.site-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }.site-menu > a:not(.nav-cta) { padding: 13px 12px; border-radius: 9px; }.site-menu > a:not(.nav-cta):hover { background: #f4f3ff; }.site-menu > a:not(.nav-cta)::after { display: none; }.nav-cta { margin: 6px 4px 4px; }.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { transform: translateY(6.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { transform: translateY(-6.5px) rotate(-45deg); }.hero { padding: 131px 0 70px; }.hero-grid { background-size: 38px 38px; }.hero-aura-one { right: -310px; }.hero-aura-two { left: -210px; }.hero-intro { font-size: 1rem; }.hero-proof { margin-top: 37px; }.hero-proof > div { padding: 0 12px; }.hero-proof strong { font-size: 1.3rem; }.hero-proof span { font-size: .64rem; }.hero-showcase { min-height: min(93vw, 410px); }.showcase-window { inset: 36px 0 24px 9px; border-radius: 18px; }.window-content { padding: 22px 20px 18px; }.signal-row { margin-top: 18px; }.showcase-float { padding: 9px 10px; font-size: .56rem; }.showcase-float-top { right: 0; }.showcase-float-bottom { left: 0; }.orbit-one { width: 300px; height: 300px; top: 40px; right: -34px; }.orbit-two { width: 210px; height: 210px; top: 85px; right: 12px; }.logo-strip-inner { min-height: 0; }.focus-list { gap: 9px; flex-wrap: wrap; font-size: .69rem; }.focus-list i { font-size: .55rem; }.section, .contact-section { padding: 84px 0; }.capability-grid, .portfolio-grid { grid-template-columns: 1fr; }.capability-grid { margin-top: 37px; }.capability-card { min-height: 247px; }.capability-icon { margin-bottom: 28px; }.portfolio-filters { margin: 34px 0 24px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }.portfolio-filters::-webkit-scrollbar { display: none; }.filter-button { white-space: nowrap; }.portfolio-card { min-height: 300px; }.portfolio-copy { margin-top: 20px; }.approach-shell, .contact-grid { gap: 37px; }.approach-list li { grid-template-columns: 35px 1fr auto; gap: 9px; min-height: 112px; }.approach-list h3 { font-size: 1rem; }.approach-list p { font-size: .79rem; }.contact-form { padding: 22px; }.closing-cta { padding: 89px 0 94px; }.footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 5px; padding: 24px 0; text-align: center; }.footer-inner p, .footer-inner p:last-child { text-align: center; }.footer-brand .brand-logo { width: 142px; height: 43px; }.footer-brand .brand-logo img { width: 183px; left: -22px; top: -24px; }
}

@media (max-width: 410px) { h1 { font-size: 3rem; }.hero-actions { align-items: start; flex-direction: column; gap: 17px; }.hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 0; }.hero-proof > div:nth-child(3) { grid-column: 1 / -1; }.hero-proof > div { padding: 0 14px; }.hero-proof > div:first-child { padding-left: 0; }.hero-proof > div:nth-child(3) { padding-left: 0; border-left: 0; }.window-heading strong { font-size: 1.12rem; }.signal-card { padding: 10px; }.signal-card > span { width: 26px; height: 26px; }.mini-cards { font-size: .54rem; }.showcase-float-bottom { max-width: 250px; }.project-icon { width: 50px; height: 50px; }.closing-inner h2 { font-size: 2.45rem; } }

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

/* Refined portfolio presentation */
:root { --shell: min(1200px, calc(100% - 56px)); --ink: #151637; --ink-soft: #5b5e80; --line: #e4e6f4; --shadow: 0 26px 65px rgba(30, 29, 93, .13); }
html { background: #f8f9ff; }
body { overflow-x: hidden; touch-action: manipulation; font-family: "Segoe UI Variable Display", "Segoe UI", Aptos, Inter, sans-serif; }
::selection { background: rgba(100, 55, 232, .2); color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(17, 199, 239, .7); outline-offset: 3px; }

.site-header { padding: 23px 0; }
.site-header.is-scrolled { padding: 11px 0; background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(222,224,241,.7); box-shadow: 0 10px 34px rgba(35, 31, 102, .09); }
.site-header.is-scrolled .nav-shell { min-height: 52px; }
.site-menu { gap: 32px; font-size: .9rem; }
.nav-cta { min-height: 46px; padding: 0 21px; background: linear-gradient(110deg, #1b1976, #362393); box-shadow: 0 12px 24px rgba(37, 33, 135, .2); }

.hero { min-height: 810px; padding: 180px 0 115px; background: radial-gradient(circle at 86% 18%, rgba(96, 61, 255, .16), transparent 25%), radial-gradient(circle at 68% 84%, rgba(6, 200, 237, .13), transparent 23%), linear-gradient(136deg, #fff 0%, #f4f5ff 49%, #eef0ff 100%); isolation: isolate; }
.hero::after { content: ""; position: absolute; z-index: -1; inset: auto -5% -130px 40%; height: 310px; border: 1px solid rgba(91, 63, 220, .12); border-radius: 50%; transform: rotate(-12deg); }
.hero-grid { opacity: .58; background-size: 46px 46px; }
.hero-shell { gap: clamp(44px, 6vw, 85px); }
h1 { font-family: "Segoe UI Variable Display", "Segoe UI", Aptos, sans-serif; max-width: 650px; font-size: clamp(3.55rem, 6vw, 6.45rem); font-weight: 790; letter-spacing: -.085em; line-height: .89; }
h1 span { background: linear-gradient(96deg, #5f33e3 15%, #1f7fd8 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-intro { max-width: 520px; color: #575b7d; font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.78; }
.hero-proof { margin-top: 58px; }
.hero-proof > div { min-width: 128px; }
.hero-proof strong { font-size: 1.68rem; }
.hero-showcase { min-height: 515px; }
.showcase-window { inset: 46px 8px 24px 21px; border-radius: 27px; box-shadow: 0 38px 72px rgba(42, 34, 129, .22); }
.showcase-window::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,.9); }
.window-content { padding: 31px 31px 25px; }
.signal-card { min-height: 63px; }
.activity-card { box-shadow: 0 10px 24px rgba(43, 40, 115, .06); }
.showcase-float { border-color: rgba(255,255,255,.98); box-shadow: 0 18px 34px rgba(41, 36, 124, .16); }

.logo-strip { background: rgba(255,255,255,.92); }
.logo-strip-inner { min-height: 88px; }
.section { padding: 132px 0; }
.section-heading > p, .portfolio-top > p { font-size: 1.02rem; }
h2 { font-size: clamp(2.65rem, 4.5vw, 4.55rem); letter-spacing: -.073em; }
.capability-grid { gap: 20px; margin-top: 62px; }
.capability-card { min-height: 310px; padding: 34px 32px 28px; border-radius: 23px; box-shadow: 0 8px 24px rgba(35,34,99,.025); }
.capability-card:hover { transform: translateY(-9px); box-shadow: 0 26px 53px rgba(38, 34, 113, .13); }
.capability-icon { width: 54px; height: 54px; margin-bottom: 47px; border-radius: 18px; }

.portfolio-section { background: radial-gradient(circle at 7% 21%, rgba(115, 82, 255, .11), transparent 25%), radial-gradient(circle at 91% 82%, rgba(5, 199, 238, .12), transparent 26%), #f7f8ff; }
.portfolio-section::before { content: ""; position: absolute; z-index: 0; inset: 0; opacity: .28; background-image: radial-gradient(rgba(82, 69, 178, .35) .75px, transparent .75px); background-size: 18px 18px; mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent); }
.portfolio-grid { gap: 20px; }
.portfolio-card { position: relative; min-height: 352px; overflow: hidden; padding: 27px; border-color: rgba(221, 224, 240, .95); border-radius: 23px; background: linear-gradient(145deg, #fff 0%, #fff 74%, #fbfbff 100%); box-shadow: 0 14px 32px rgba(35,34,99,.045); }
.portfolio-card::before { content: ""; position: absolute; top: 0; right: 0; width: 122px; height: 122px; border-radius: 0 0 0 100%; background: radial-gradient(circle at 100% 0, rgba(105, 65, 241, .09), transparent 68%); opacity: 0; transition: opacity 220ms ease; }
.portfolio-card:hover { transform: translateY(-8px); border-color: rgba(164, 148, 241, .5); box-shadow: 0 28px 54px rgba(35,34,99,.14); }
.portfolio-card:hover::before { opacity: 1; }
.portfolio-card-top, .portfolio-copy, .portfolio-card > a { position: relative; z-index: 1; }
.project-icon { width: 59px; height: 59px; border-radius: 18px; font-size: 1.65rem; }
.project-category { padding: 7px 10px; background: #f2f3fa; color: #6d7190; }
.portfolio-copy { margin-top: 28px; }
.portfolio-copy h3 { font-size: 1.28rem; letter-spacing: -.052em; line-height: 1.06; }
.portfolio-copy > span { font-size: .9rem; line-height: 1.72; }
.portfolio-card > a { min-height: 41px; margin-top: 26px; font-size: .8rem; }
.project-health-feature { border-color: rgba(227, 126, 154, .35); background: linear-gradient(145deg, #fff 0%, #fff7f9 100%); }
.project-health-feature::before { opacity: 1; width: 170px; height: 170px; background: radial-gradient(circle at 100% 0, rgba(237, 113, 139, .18), transparent 68%); }
.project-health-feature .portfolio-rule { background: linear-gradient(90deg, #d45378, #ee91a6); }
.project-health-feature .portfolio-copy > p { color: #c6466b; }
.project-health-feature .project-category { background: #fff0f4; color: #b74b68; }

.approach { background: linear-gradient(180deg, #fff 0%, #fafbff 100%); }
.approach-shell { gap: clamp(65px, 9vw, 125px); }
.approach-list { border-top-color: #e2e4f0; }
.approach-list li { min-height: 136px; padding: 28px 0; }
.approach-list li:hover h3 { color: var(--violet); }
.contact-section { position: relative; overflow: hidden; padding: 126px 0; background: radial-gradient(circle at 81% 20%, rgba(43, 191, 232, .18), transparent 26%), radial-gradient(circle at 18% 93%, rgba(103, 70, 232, .16), transparent 28%), linear-gradient(135deg, #f5f5ff, #edf8ff); }
.contact-section::before { content: ""; position: absolute; width: 420px; height: 420px; top: -265px; right: -95px; border: 1px solid rgba(93, 55, 226, .18); border-radius: 50%; }
.contact-grid { position: relative; gap: clamp(52px, 7vw, 90px); }
.contact-form { padding: 35px; border-radius: 25px; box-shadow: 0 26px 55px rgba(36, 34, 110, .13); }
.form-field input, .form-field textarea { background: #fdfdff; }
.facebook-contact { display: inline-flex; align-items: center; gap: 11px; margin-top: 28px; padding: 10px 13px 10px 10px; border: 1px solid #dbe4f7; border-radius: 15px; background: rgba(255,255,255,.84); color: #1a337f; box-shadow: 0 10px 24px rgba(33, 67, 150, .08); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.facebook-contact:hover { transform: translateY(-2px); border-color: #aebfe7; box-shadow: 0 14px 28px rgba(33, 67, 150, .14); }
.facebook-contact-icon { display: grid; place-items: end center; width: 35px; height: 35px; overflow: hidden; border-radius: 11px; background: #1877f2; color: #fff; font-family: Arial, sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.facebook-contact > span:nth-child(2) { display: grid; gap: 2px; }
.facebook-contact small { color: #687292; font-size: .62rem; font-weight: 800; letter-spacing: .025em; }
.facebook-contact strong { font-size: .83rem; letter-spacing: -.02em; }
.facebook-contact > b { margin-left: 4px; color: #1877f2; font-size: 1rem; transition: transform 180ms ease; }
.facebook-contact:hover > b { transform: translate(2px, -2px); }

.closing-cta { padding: 142px 0 145px; }
.footer-inner { min-height: 112px; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 920px); }
  .hero { min-height: auto; padding: 158px 0 95px; }
  .hero-shell { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 720px; }
  .hero-showcase { width: min(100%, 540px); margin: 0 auto; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-card { min-height: 340px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 36px); }
  .site-header { padding: 12px 0; }
  .site-header.is-scrolled { padding: 8px 0; }
  .site-menu { max-height: calc(100vh - 88px); overflow-y: auto; }
  .site-menu > a { min-height: 44px; display: flex; align-items: center; }
  h1 { font-size: clamp(3.15rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero { padding: 130px 0 78px; }
  .hero-proof > div { min-width: 0; }
  .hero-showcase { min-height: min(106vw, 450px); }
  .showcase-window { inset: 44px 0 26px 0; }
  .window-content { padding: 23px 21px 19px; }
  .section, .contact-section { padding: 88px 0; }
  .capability-card, .portfolio-card { min-height: 0; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-card { padding: 24px; }
  .project-health-feature { border-width: 1px; }
  .approach-list li { grid-template-columns: 34px 1fr auto; }
  .contact-form { padding: 24px; }
  .closing-cta { padding: 96px 0; }
}

@media (max-width: 940px) {
  .hero-showcase { width: min(100%, 540px); max-width: 540px; }
  .menu-toggle { display: inline-flex; }
  .site-menu { position: absolute; top: calc(100% + 6px); right: 18px; left: 18px; display: grid; gap: 0; padding: 8px; border: 1px solid #eaebf5; border-radius: 17px; background: rgba(255,255,255,.98); box-shadow: 0 18px 35px rgba(34,31,100,.14); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; }
  .site-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-menu > a:not(.nav-cta) { padding: 13px 12px; border-radius: 9px; }
  .site-menu > a:not(.nav-cta):hover { background: #f4f3ff; }
  .site-menu > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 6px 4px 4px; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 390px) {
  :root { --shell: calc(100% - 28px); }
  .brand-logo { transform: scale(.92); transform-origin: left center; }
  .menu-toggle-label { display: none; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof > div { padding: 0 11px; }
  .portfolio-card { padding: 21px; }
  .project-category { font-size: .59rem; }
}

/* Clear category navigation and a shorter, polished mobile journey */
.portfolio-filter-heading { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 40px; color: #6d7090; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-filter-heading strong { padding: 7px 10px; border: 1px solid #e3e4f0; border-radius: 999px; background: rgba(255,255,255,.74); color: var(--violet); font-size: .68rem; letter-spacing: .04em; }
.mobile-more-projects { display: block; grid-column: 1 / -1; }
.mobile-more-projects > .mobile-project-toggle { display: none; }
.mobile-more-projects[open] > .mobile-more-projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.mobile-more-projects:not([open]) > .mobile-more-projects-grid { display: none; }
.mobile-project-toggle { position: relative; z-index: 1; }

@media (max-width: 1100px) {
  .mobile-more-projects[open] > .mobile-more-projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hero { min-height: 0; padding: 116px 0 52px; }
  .hero-showcase, .logo-strip { display: none; }
  .hero-copy { max-width: none; }
  .eyebrow { margin-bottom: 14px; font-size: .63rem; letter-spacing: .105em; }
  h1 { max-width: 360px; font-size: clamp(2.9rem, 13vw, 3.8rem); letter-spacing: -.08em; line-height: .9; }
  .hero-intro { margin-bottom: 22px; font-size: .94rem; line-height: 1.65; }
  .hero-actions { gap: 14px 20px; }
  .button { min-height: 48px; padding: 0 19px; font-size: .82rem; }
  .text-link { font-size: .82rem; }
  .hero-proof { display: flex; gap: 0; margin-top: 31px; }
  .hero-proof > div { gap: 2px; padding: 0 10px; }
  .hero-proof > div:nth-child(3) { grid-column: auto; }
  .hero-proof strong { font-size: 1.34rem; }
  .hero-proof span { font-size: .6rem; }
  .section, .contact-section { padding: 66px 0; }
  .section-heading { gap: 13px; }
  .section-heading > p, .portfolio-top > p { font-size: .9rem; line-height: 1.58; }
  h2 { font-size: clamp(2.1rem, 10vw, 2.75rem); line-height: .97; }
  .capability-grid { gap: 10px; margin-top: 29px; }
  .capability-card { min-height: 0; padding: 17px 19px 17px 77px; border-radius: 16px; }
  .capability-card:hover { transform: none; }
  .capability-icon { position: absolute; top: 17px; left: 18px; width: 42px; height: 42px; margin: 0; border-radius: 13px; font-size: 1.18rem; }
  .capability-number, .capability-line { display: none; }
  .capability-card h3 { margin: 0 0 4px; font-size: .98rem; }
  .capability-card p { font-size: .76rem; line-height: 1.45; }
  .portfolio-top { gap: 13px; }
  .portfolio-filter-heading { margin-top: 27px; font-size: .67rem; }
  .portfolio-filters { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 12px 0 18px; overflow: visible; padding: 0; }
  .filter-button { width: 100%; min-height: 39px; padding: 0 7px; border-radius: 11px; font-size: .7rem; white-space: normal; }
  .filter-button[data-filter="all"] { grid-column: 1 / -1; }
  .portfolio-card { min-height: 0; padding: 20px; border-radius: 18px; }
  .portfolio-card::before { width: 100px; height: 100px; }
  .project-icon { width: 48px; height: 48px; border-radius: 15px; font-size: 1.35rem; }
  .project-category { padding: 6px 8px; font-size: .58rem; }
  .portfolio-copy { margin-top: 18px; }
  .portfolio-copy > p { margin-bottom: 5px; font-size: .58rem; letter-spacing: .065em; }
  .portfolio-copy h3 { margin-bottom: 10px; font-size: 1.08rem; }
  .portfolio-rule { width: 25px; height: 2px; margin-bottom: 10px; }
  .portfolio-copy > span { font-size: .8rem; line-height: 1.55; }
  .portfolio-card > a { min-height: 34px; margin-top: 16px; padding-top: 12px; font-size: .72rem; }
  .mobile-more-projects[open] > .mobile-more-projects-grid { grid-template-columns: 1fr; gap: 16px; }
  .mobile-more-projects.is-compact-disclosure { position: relative; z-index: 1; display: block; grid-column: 1 / -1; }
  .mobile-more-projects.is-compact-disclosure > .mobile-project-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; min-height: 47px; margin-top: 15px; list-style: none; border: 1px solid #d9d8f4; border-radius: 13px; background: #fff; color: var(--navy); cursor: pointer; font: inherit; font-size: .78rem; font-weight: 900; box-shadow: 0 8px 18px rgba(38,34,113,.06); }
  .mobile-more-projects.is-compact-disclosure > .mobile-project-toggle::-webkit-details-marker { display: none; }
  .mobile-more-projects.is-compact-disclosure > .mobile-more-projects-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
  .mobile-more-projects.is-compact-disclosure:not([open]) > .mobile-more-projects-grid { display: none; }
  .mobile-project-toggle b { color: var(--violet); font-size: 1.05rem; }
  .mobile-more-projects[open] > .mobile-project-toggle b { transform: rotate(180deg); }
  .approach-shell { gap: 29px; }
  .approach-list li { min-height: 86px; padding: 17px 0; }
  .approach-list h3 { margin-bottom: 3px; font-size: .94rem; }
  .approach-list p { font-size: .73rem; line-height: 1.4; }
  .contact-copy > p:last-child { font-size: .9rem; line-height: 1.58; }
  .facebook-contact { margin-top: 20px; padding: 8px 11px 8px 8px; border-radius: 13px; }
  .facebook-contact-icon { width: 32px; height: 32px; border-radius: 10px; font-size: 1.76rem; }
  .facebook-contact small { font-size: .57rem; }
  .facebook-contact strong { font-size: .76rem; }
  .contact-grid { gap: 28px; }
  .contact-form { gap: 11px; padding: 20px; border-radius: 18px; }
  .form-field { gap: 5px; font-size: .7rem; }
  .form-field input { min-height: 41px; }
  .form-field textarea { min-height: 86px; }
  .closing-cta { padding: 72px 0; }
  .closing-inner > p:not(.eyebrow) { margin-bottom: 23px; font-size: .9rem; }
  .footer-inner { min-height: 0; }
}

/* Technology stack */
.technology { position: relative; overflow: hidden; background: linear-gradient(145deg, #fff 0%, #f8f9ff 55%, #f5fbff 100%); }
#tech-stack { scroll-margin-top: 0; }
.technology::before { content: ""; position: absolute; inset: 0; opacity: .27; pointer-events: none; background-image: radial-gradient(rgba(82, 69, 178, .34) .7px, transparent .7px); background-size: 18px 18px; mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent); }
.technology .shell { position: relative; z-index: 1; }
.technology-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(3px); }
.technology-orb-one { width: 390px; height: 390px; top: -240px; right: -150px; background: radial-gradient(circle, rgba(98, 54, 232, .16), transparent 68%); }
.technology-orb-two { width: 330px; height: 330px; bottom: -220px; left: -150px; background: radial-gradient(circle, rgba(17, 199, 239, .16), transparent 68%); }
.tech-heading { position: relative; }
.tech-paths { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 31px; }
.tech-paths > span { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 0 12px; border: 1px solid rgba(221, 224, 240, .9); border-radius: 999px; background: rgba(255,255,255,.72); color: #585c7c; font-size: .7rem; font-weight: 850; box-shadow: 0 8px 18px rgba(35,34,99,.035); }
.tech-path-dot { display: block; width: 7px; height: 7px; border-radius: 50%; }.tech-path-violet { background: var(--violet); box-shadow: 0 0 0 4px #f0edff; }.tech-path-cyan { background: var(--cyan-deep); box-shadow: 0 0 0 4px #e7faff; }.tech-path-amber { background: #dd961f; box-shadow: 0 0 0 4px #fff5e3; }.tech-path-rose { background: #dc5d7d; box-shadow: 0 0 0 4px #fff0f3; }
.tech-stack-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 24px; }
.tech-card { --accent: #6b46ef; --accent-rgb: 107, 70, 239; position: relative; display: flex; flex-direction: column; min-width: 0; min-height: 560px; padding: 30px; overflow: hidden; border: 1px solid #dfe2ef; border-radius: 23px; background: #fff; box-shadow: 0 14px 32px rgba(35, 34, 99, .06); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.tech-card::before { content: ""; position: absolute; z-index: 0; top: 0; right: 0; width: 150px; height: 150px; border-radius: 0 0 0 100%; opacity: .72; }
.tech-card::after { content: ""; position: absolute; z-index: 2; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), .15)); }
.tech-card-enterprise { --accent: #6b46ef; --accent-rgb: 107, 70, 239; order: 1; grid-column: auto; }.tech-card-php { --accent: #009aca; --accent-rgb: 0, 154, 202; order: 4; grid-column: auto; }.tech-card-desktop { --accent: #d58d13; --accent-rgb: 213, 141, 19; order: 3; grid-column: auto; }.tech-card-rust { --accent: #db5f80; --accent-rgb: 219, 95, 128; order: 2; grid-column: auto; }
.tech-card-enterprise::before { background: radial-gradient(circle at 100% 0, rgba(105, 65, 241, .18), transparent 69%); }.tech-card-php::before { background: radial-gradient(circle at 100% 0, rgba(3, 172, 211, .16), transparent 69%); }.tech-card-desktop::before { background: radial-gradient(circle at 100% 0, rgba(243, 173, 61, .21), transparent 69%); }.tech-card-rust::before { background: radial-gradient(circle at 100% 0, rgba(237, 113, 139, .2), transparent 69%); }
.tech-card:hover { transform: translateY(-7px); border-color: rgba(var(--accent-rgb), .42); box-shadow: 0 25px 48px rgba(35, 34, 99, .14); }
.tech-card-top, .tech-card h3, .tech-card > p, .tech-details, .tech-vanilla, .tech-advantages { position: relative; z-index: 1; }
.tech-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.tech-brand { display: block; flex: 0 0 auto; width: 96px; height: 96px; border-radius: 17px; background-image: url("../images/tech-stack-badges-transparent.png"); background-repeat: no-repeat; background-size: 200% 200%; box-shadow: 0 10px 19px rgba(35, 34, 99, .09); }
.tech-brand-enterprise { background-position: 0 0; }.tech-brand-rust { background-position: 100% 0; }.tech-brand-desktop { background-position: 0 100%; }.tech-brand-php { background-position: 100% 100%; }
.tech-mark { display: inline-grid; place-items: center; flex: 0 0 auto; width: 43px; height: 43px; border-radius: 14px; font-size: .72rem; font-weight: 900; letter-spacing: .05em; }
.tech-mark-violet { background: #eeebff; color: var(--violet); }.tech-mark-cyan { background: #e4faff; color: #008fcb; }.tech-mark-amber { background: #fff4df; color: #bd7700; }.tech-mark-rose { background: #ffedf1; color: #bd466a; }
.tech-card-label { padding: 6px 9px; border: 1px solid rgba(226, 228, 241, .92); border-radius: 999px; background: rgba(255,255,255,.75); color: #6d7190; font-size: .64rem; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; }
.tech-card h3 { margin: 20px 0 10px; color: var(--ink); font-size: 1.39rem; letter-spacing: -.055em; line-height: 1.05; }
.tech-card > p { max-width: 490px; margin: 0; color: var(--ink-soft); font-size: .89rem; line-height: 1.62; }
.tech-details-toggle { display: none; }
.tech-card-extra { display: block; }
.tech-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 25px 0 0; }
.tech-card-php .tech-details, .tech-card-desktop .tech-details { grid-template-columns: 1fr; }
.tech-card-rust .tech-details > div:last-child { grid-column: 1 / -1; }
.tech-details > div { display: grid; gap: 5px; min-width: 0; padding: 12px 13px; border: 1px solid rgba(var(--accent-rgb), .14); border-radius: 13px; background: linear-gradient(130deg, rgba(var(--accent-rgb), .075), rgba(255,255,255,.72)); }
.tech-details dt { display: flex; align-items: center; gap: 6px; color: #727795; font-size: .63rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }.tech-details dt::before { content: ""; width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--accent); }
.tech-details dd { min-width: 0; margin: 0; color: #34375e; font-size: .78rem; font-weight: 750; line-height: 1.45; overflow-wrap: anywhere; }
.tech-vanilla { display: grid; gap: 4px; margin-top: 10px; padding: 13px 14px; border: 1px solid #dce8fa; border-radius: 13px; background: linear-gradient(100deg, #f1f8ff, #f7f4ff); }
.tech-vanilla span { color: #34719e; font-size: .63rem; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; }.tech-vanilla strong { color: var(--navy); font-size: .76rem; letter-spacing: -.015em; line-height: 1.4; }
.tech-advantages { margin-top: 10px; padding: 14px; border: 1px solid rgba(var(--accent-rgb), .16); border-radius: 15px; background: linear-gradient(135deg, rgba(var(--accent-rgb), .1), rgba(255,255,255,.84)); }
.tech-advantages > strong { display: flex; align-items: center; gap: 7px; color: var(--ink); font-size: .65rem; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; }.tech-advantages > strong::before { content: "+"; display: grid; place-items: center; width: 17px; height: 17px; border-radius: 6px; background: var(--accent); color: #fff; font-size: .85rem; line-height: 1; }
.tech-advantages ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 10px 0 0; padding: 0; list-style: none; }.tech-advantages li { padding: 7px 9px; border: 1px solid rgba(var(--accent-rgb), .12); border-radius: 9px; background: rgba(255,255,255,.84); color: #3d4166; font-size: .7rem; font-weight: 800; line-height: 1.35; }
.tech-foundation { position: relative; display: grid; grid-template-columns: 44px minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: 21px; margin-top: 22px; padding: 25px 28px; overflow: hidden; border: 1px solid rgba(129, 112, 240, .35); border-radius: 21px; background: linear-gradient(112deg, #191770 0%, #33249d 54%, #5b35d5 100%); box-shadow: 0 22px 46px rgba(43, 35, 138, .22); }
.tech-foundation::before { content: ""; position: absolute; width: 300px; height: 300px; top: -220px; right: -75px; border-radius: 50%; background: radial-gradient(circle, rgba(109, 227, 248, .45), transparent 67%); }.tech-foundation > * { position: relative; z-index: 1; }
.tech-foundation-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 14px; background: #fff; color: var(--violet); font-size: 1.25rem; font-weight: 900; box-shadow: 0 8px 19px rgba(0,0,0,.16); }
.tech-foundation > div { display: grid; gap: 5px; min-width: 0; }.tech-foundation strong { color: #fff; font-size: .78rem; font-weight: 900; letter-spacing: .01em; }.tech-foundation span:not(.tech-foundation-icon) { color: rgba(255,255,255,.78); font-size: .76rem; font-weight: 650; line-height: 1.5; }

.back-to-top { position: fixed; z-index: 40; right: 24px; bottom: 24px; display: grid; place-items: center; width: 54px; height: 54px; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.76); border-radius: 50%; background: radial-gradient(circle at 31% 20%, #8d73ff 0%, #633ce7 35%, #21177d 100%); color: #fff; cursor: pointer; isolation: isolate; opacity: 0; visibility: hidden; pointer-events: none; box-shadow: 0 12px 22px rgba(42, 30, 134, .2), 0 20px 44px rgba(31, 23, 110, .3); transform: translateY(14px) scale(.92); transition: opacity 140ms ease, visibility 140ms ease, transform 140ms ease, box-shadow 140ms ease; }
.back-to-top::before { content: ""; position: absolute; z-index: -1; inset: 4px; border: 1px solid rgba(255,255,255,.3); border-radius: inherit; box-shadow: inset 0 1px 1px rgba(255,255,255,.26); }
.back-to-top::after { content: ""; position: absolute; bottom: 8px; width: 4px; height: 4px; border-radius: 50%; background: #6fe7f8; box-shadow: 0 0 0 4px rgba(111,231,248,.12), 0 0 12px rgba(111,231,248,.9); }
.back-to-top span { position: relative; top: -1px; font-size: 1.42rem; font-weight: 700; line-height: 1; text-shadow: 0 2px 7px rgba(6,4,57,.34); transition: transform 140ms ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
.back-to-top:hover { box-shadow: 0 15px 27px rgba(42, 30, 134, .28), 0 24px 49px rgba(31, 23, 110, .38); transform: translateY(-4px) scale(1.035); }
.back-to-top:hover span { transform: translateY(-3px); }
.back-to-top:active { transform: translateY(-1px) scale(.98); }
.back-to-top:focus-visible { outline-color: #56d9ef; }

/* Consistent compact vertical rhythm across the landing page. */
.hero { min-height: 760px; padding: 160px 0 92px; }
.section { padding: 100px 0; }
.contact-section { padding: 100px 0; }
.closing-cta { padding: 110px 0 112px; }
.tech-paths { margin-top: 24px; }
.tech-stack-grid { gap: 16px; margin-top: 18px; }
.tech-card { min-height: 520px; padding: 26px; }
.tech-card h3 { margin: 17px 0 8px; }
.tech-details { margin-top: 20px; }

.portfolio-summary-card { --brief-accent: #7048ed; position: relative; overflow: hidden; border-color: rgba(128, 97, 235, .38); background: radial-gradient(circle at 100% 0, rgba(110, 74, 237, .16), transparent 44%), linear-gradient(145deg, #ffffff 0%, #f8f6ff 100%); }
.portfolio-summary-card::before { width: 176px; height: 176px; opacity: 1; background: radial-gradient(circle at 100% 0, rgba(112, 72, 237, .17), transparent 68%); }
.portfolio-summary-card .project-icon { color: #fff; background: linear-gradient(135deg, #5a36dc, #815df2); box-shadow: 0 10px 20px rgba(89, 53, 220, .2); }
.portfolio-summary-card .project-category { border: 1px solid #dfdaf8; background: rgba(255,255,255,.78); color: #6249bd; }
.portfolio-summary-kicker { display: flex; align-items: center; gap: 7px; color: #6040d7 !important; }
.portfolio-summary-kicker i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #28c8e8; box-shadow: 0 0 0 4px rgba(40,200,232,.12), 0 0 12px rgba(40,200,232,.7); animation: projectBriefPulse 1.8s ease-in-out infinite; }
.portfolio-summary-card h3 { min-height: 1.1em; }
.portfolio-summary-text { display: inline; color: #505477 !important; }
.portfolio-summary-caret { display: inline-block; width: 2px; height: 1.05em; margin-left: 4px; vertical-align: -.13em; background: var(--brief-accent); animation: projectBriefCaret .72s steps(1) infinite; }
.portfolio-summary-footer { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 41px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(112,72,237,.14); color: #747897; font-size: .72rem; font-weight: 800; }
.portfolio-summary-footer b { color: #653de0; font-size: 1rem; }
.portfolio-summary-card[hidden] { display: none; }
@keyframes projectBriefPulse { 50% { transform: scale(.72); opacity: .6; } }
@keyframes projectBriefCaret { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .portfolio-summary-kicker i, .portfolio-summary-caret { animation: none; } }

/* Keep the main display headings present but less oversized across the site. */
h1 { font-size: clamp(2.6625rem, 4.5vw, 4.8375rem); }
h2 { font-size: clamp(1.9875rem, 3.375vw, 3.4125rem); }
.closing-inner h2 { font-size: clamp(1.95rem, 3.375vw, 3.525rem); }

@media (min-width: 941px) and (max-width: 1100px) {
  .site-menu { gap: 18px; font-size: .79rem; }.nav-cta { padding: 0 14px; }
}

@media (max-width: 1100px) {
  .tech-stack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-card-enterprise, .tech-card-php, .tech-card-desktop, .tech-card-rust { grid-column: auto; }
}

@media (max-width: 760px) {
  .back-to-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .hero { min-height: 0; padding: 108px 0 48px; }
  .section, .contact-section { padding: 58px 0; }
  .closing-cta { padding: 74px 0; }
  .tech-paths { margin-top: 18px; }
  .tech-stack-grid { gap: 10px; margin-top: 16px; }
  .tech-card { padding: 20px; }
  .portfolio-summary-footer { min-height: 35px; margin-top: 16px; padding-top: 12px; font-size: .68rem; }
  h1 { font-size: clamp(2.175rem, 9.75vw, 2.85rem); }
  h2, .closing-inner h2 { font-size: clamp(1.575rem, 7.5vw, 2.0625rem); }
  #tech-stack { scroll-margin-top: 0; }
  .tech-paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 22px; }.tech-paths > span { min-height: 33px; padding: 0 9px; font-size: .64rem; }
  .tech-stack-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 19px; }
  .tech-card { min-height: 0; padding: 20px; border-radius: 18px; }
  .tech-card:hover { transform: none; }
  .tech-card::before { width: 110px; height: 110px; }.tech-card::after { width: 78%; height: 3px; }
  .tech-brand { width: 74px; height: 74px; border-radius: 14px; }
  .tech-mark { width: 39px; height: 39px; border-radius: 13px; font-size: .66rem; }
  .tech-card-label { padding: 5px 7px; font-size: .57rem; }
  .tech-card h3 { margin: 18px 0 7px; font-size: 1.14rem; }
  .tech-card > p { font-size: .78rem; line-height: 1.5; }
  .tech-details-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 42px; margin-top: 15px; padding: 0 13px; border: 1px solid rgba(var(--accent-rgb), .24); border-radius: 11px; background: linear-gradient(135deg, rgba(var(--accent-rgb), .08), #fff); color: var(--ink); cursor: pointer; font: inherit; font-size: .71rem; font-weight: 900; letter-spacing: .01em; }
  .tech-details-toggle b { color: var(--accent); font-size: 1rem; line-height: 1; transition: transform 180ms ease; }
  .tech-card-extra { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 320ms ease, opacity 180ms ease; }
  .tech-card.is-expanded .tech-card-extra { max-height: 980px; opacity: 1; }
  .tech-card.is-expanded .tech-details-toggle b { transform: rotate(180deg); }
  .tech-details, .tech-card-php .tech-details, .tech-card-desktop .tech-details { grid-template-columns: 1fr; gap: 8px; margin-top: 16px; }
  .tech-details > div { gap: 4px; padding: 10px 11px; border-radius: 11px; }
  .tech-details dt { font-size: .58rem; line-height: 1.42; }.tech-details dd { font-size: .72rem; line-height: 1.43; }
  .tech-vanilla { margin-top: 8px; padding: 10px 11px; border-radius: 11px; }.tech-vanilla span { font-size: .57rem; }.tech-vanilla strong { font-size: .7rem; }
  .tech-advantages { margin-top: 8px; padding: 11px; border-radius: 12px; }.tech-advantages > strong { font-size: .58rem; }.tech-advantages > strong::before { width: 15px; height: 15px; border-radius: 5px; font-size: .76rem; }.tech-advantages ul { gap: 6px; margin-top: 8px; }.tech-advantages li { padding: 6px 7px; border-radius: 8px; font-size: .64rem; }
  .tech-foundation { grid-template-columns: 36px minmax(0, 1fr); gap: 10px 12px; margin-top: 10px; padding: 18px; border-radius: 17px; }
  .tech-foundation-icon { width: 34px; height: 34px; border-radius: 11px; font-size: 1.1rem; }
  .tech-foundation > div:last-child { grid-column: 2; }.tech-foundation strong { font-size: .71rem; }.tech-foundation span:not(.tech-foundation-icon) { font-size: .69rem; line-height: 1.45; }
}
