:root {
  --bg: #060711;
  --text: #f7f8fb;
  --muted: #c5c8d4;
  --cyan: #00d7ff;
  --blue: #1687ff;
  --purple: #8b3cff;
  --pink: #ff00c8;
  --orange: #ff9d55;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}


.page-shell { position: relative; min-height: 100vh; z-index: 1; }

.navbar {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94vw, 1480px);
  min-height: 98px;
  padding: 0 34px;
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(180deg, rgba(13, 16, 38, .74), rgba(10, 11, 28, .58));
  border: 1px solid rgba(105, 122, 255, .42);
  box-shadow:
    0 0 0 1px rgba(38, 209, 255, .07) inset,
    0 18px 70px rgba(0, 0, 0, .35),
    0 0 42px rgba(113, 53, 255, .11);
  backdrop-filter: blur(22px) saturate(140%);
  z-index: 50;
  transition: .3s ease;
}

.navbar.scrolled {
  top: 12px;
  min-height: 82px;
  background: rgba(8, 10, 28, .84);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name { font-size: 24px; font-weight: 900; letter-spacing: -.02em; white-space: nowrap; line-height: 1; }
.brand-name .brand-suffolk { color: #fff; }
.brand-name .brand-pixel {
  display: inline-block;
  margin-left: .16em;
  color: transparent;
  background: linear-gradient(90deg, #00d9ff 0%, #168cff 20%, #7b45ff 42%, #e817e8 62%, #ff4c8b 78%, #ff9b28 90%, #ffd43b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-tag { margin-top: 6px; color: #a5a9bb; font-size: 9px; font-weight: 700; letter-spacing: .32em; }

.nav-links { display: flex; align-items: center; gap: clamp(24px, 4vw, 60px); }
.nav-links a {
  position: relative;
  color: #c9ccda;
  text-decoration: none;
  font-size: 16px;
  transition: .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: #00efff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14%; right: 14%; bottom: -20px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 10px var(--cyan), 0 0 18px var(--pink);
}

.nav-cta, .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.nav-cta {
  min-width: 198px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid transparent;
  background:
    linear-gradient(#101126, #101126) padding-box,
    linear-gradient(90deg, var(--cyan), #5863ff, var(--pink)) border-box;
  box-shadow: 0 0 28px rgba(0, 210, 255, .24), 0 0 24px rgba(255, 0, 190, .16) inset;
  transition: .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(0, 210, 255, .36), 0 0 35px rgba(255, 0, 190, .20); }

.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 28px; height: 2px; background: white; margin: 6px 0; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px max(5vw, 44px) 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('images/background.png?v=20260913-2');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: none;
  filter: saturate(1.08) contrast(1.04);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 6, 17, .98) 0%, rgba(3, 6, 17, .92) 24%, rgba(4, 8, 20, .56) 46%, rgba(4, 7, 20, .08) 67%, rgba(4, 7, 20, .05) 100%),
    linear-gradient(180deg, rgba(4, 7, 18, .23) 0%, rgba(4, 6, 14, .02) 60%, rgba(3, 5, 13, .50) 100%);
}


.hero-content { width: min(720px, 48vw); padding-top: 20px; }
.eyebrow { display: flex; align-items: center; gap: 16px; color: #cfd3df; font-size: 13px; font-weight: 600; letter-spacing: .30em; }
.eyebrow span { width: 58px; height: 3px; border-radius: 10px; background: linear-gradient(90deg, var(--cyan), var(--pink)); box-shadow: 0 0 10px rgba(0, 222, 255, .35); }

h1 { margin: 34px 0 28px; font-size: clamp(72px, 7.2vw, 122px); line-height: 1.02; letter-spacing: -.055em; font-weight: 800; }
h1 span {
  display: inline-block;
  padding-bottom: .08em;
  margin-bottom: -.08em;
  background: linear-gradient(90deg, #16dcff 0%, #1389ff 28%, #715dff 55%, #ac22ff 73%, #ff00bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 25px rgba(87, 96, 255, .13));
}

.hero-content > p { margin: 0; color: var(--muted); font-size: clamp(22px, 2.1vw, 33px); line-height: 1.4; }

.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 28px; }
.primary-btn {
  min-width: 280px;
  min-height: 82px;
  border-radius: 999px;
  font-size: 22px;
  background: linear-gradient(90deg, #03cfff 0%, #1689ff 30%, #8f3cff 62%, #ff00b8 82%, #ff8d74 100%);
  box-shadow: 0 15px 40px rgba(0, 158, 255, .25), 0 0 35px rgba(255, 0, 184, .16);
  transition: transform .25s ease, box-shadow .25s ease;
}
.primary-btn:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 20px 50px rgba(0, 158, 255, .34), 0 0 50px rgba(255, 0, 184, .22); }


.showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: white;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.showcase-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(231, 238, 255, .88);
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  place-content: center;
  gap: 5px;
  box-shadow: 0 0 0 1px rgba(120, 145, 255, .18) inset;
  transition: .25s ease;
}
.showcase-icon span { width: 7px; height: 7px; border-radius: 2px; background: currentColor; }
.showcase-btn:hover .showcase-icon { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 26px rgba(0, 218, 255, .28); transform: translateY(-2px); }

.feature-row { display: flex; align-items: center; gap: 34px; margin-top: 84px; }
.feature-item { display: flex; align-items: center; gap: 18px; color: #d7dae4; font-size: 15px; line-height: 1.25; }
.feature-divider { width: 1px; height: 42px; background: rgba(208, 214, 234, .18); }
.feature-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 48px;
  display: block;
}

.dummy-anchor { height: 1px; }
.nav-link-button {
  position: relative;
  color: #c9ccda;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
  transition: .2s ease;
}
.nav-link-button:hover { color: #00efff; }

.showcase-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 30px;
  display: grid;
  place-items: center;
  background: rgba(2, 4, 12, .82);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.showcase-modal.open { opacity: 1; visibility: visible; }
.showcase-panel {
  width: min(1240px, 96vw);
  max-height: min(880px, 92vh);
  overflow-y: auto;
  border: 1px solid rgba(112, 112, 255, .34);
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(155deg, rgba(15, 19, 43, .98), rgba(12, 8, 30, .98));
  box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 80px rgba(107, 49, 255, .12);
  transform: translateY(18px) scale(.985);
  transition: transform .28s ease;
}
.showcase-modal.open .showcase-panel { transform: translateY(0) scale(1); }
.showcase-topbar { display: flex; justify-content: space-between; align-items: flex-start; gap: 28px; margin-bottom: 28px; }
.showcase-kicker { font-size: 11px; font-weight: 700; letter-spacing: .28em; color: var(--cyan); }
.showcase-topbar h2 { margin: 7px 0 8px; font-size: clamp(30px, 4vw, 52px); letter-spacing: -.04em; }
.showcase-topbar p { margin: 0; color: #aeb4c7; }
.close-modal { flex: 0 0 auto; width: 46px; height: 46px; padding: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); color: white; background: rgba(255,255,255,.05); font-size: 0; line-height: 0; cursor: pointer; transition: .2s ease; display: grid; place-items: center; position: relative; }
.close-modal::before, .close-modal::after { content: ""; position: absolute; width: 18px; height: 2px; border-radius: 999px; background: currentColor; left: 50%; top: 50%; transform-origin: center; }
.close-modal::before { transform: translate(-50%, -50%) rotate(45deg); }
.close-modal::after { transform: translate(-50%, -50%) rotate(-45deg); }
.close-modal:hover { border-color: var(--pink); box-shadow: 0 0 22px rgba(255,0,190,.2); transform: rotate(5deg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.project-card { border-radius: 22px; overflow: hidden; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-6px); border-color: rgba(69, 206, 255, .35); box-shadow: 0 22px 50px rgba(0,0,0,.32); }
.project-preview { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.project-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(3,4,14,.42) 100%); }
.browser-bar { position: absolute; z-index: 2; top: 0; left: 0; right: 0; height: 30px; display: flex; align-items: center; gap: 6px; padding-left: 12px; background: rgba(8,9,19,.72); backdrop-filter: blur(8px); }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.5); }
.mini-site { position: absolute; z-index: 1; inset: 30px 0 0; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; }
.mini-site span { position: absolute; top: 24px; right: 24px; font-size: 11px; font-weight: 800; letter-spacing: .2em; opacity: .72; }
.mini-site strong { font-size: clamp(25px, 2.2vw, 40px); line-height: .9; letter-spacing: -.05em; }
.mini-site b { margin-top: 15px; display: inline-block; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; padding: 7px 12px; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.preview-one { background: radial-gradient(circle at 70% 30%, #6d3cff, transparent 28%), linear-gradient(135deg, #080b20, #102b66 45%, #091020); }
.preview-two { background: radial-gradient(circle at 72% 35%, #ff5b35, transparent 28%), linear-gradient(130deg, #160707, #3c0b15 48%, #0b0c16); }
.preview-three { background: radial-gradient(circle at 76% 20%, #00d7ff, transparent 27%), linear-gradient(135deg, #061618, #09383d 48%, #071016); }
.preview-four { background: radial-gradient(circle at 78% 25%, #ffc34a, transparent 24%), linear-gradient(135deg, #10150a, #2b4c17 48%, #111408); }
.preview-five { background: radial-gradient(circle at 78% 28%, #ff72c7, transparent 25%), linear-gradient(135deg, #160c16, #4f2046 50%, #131019); }
.preview-six { background: radial-gradient(circle at 72% 24%, #8a4bff, transparent 27%), linear-gradient(135deg, #080913, #1a1752 46%, #090814); }
.project-meta { padding: 16px 18px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.project-meta small { display: block; color: #8f96aa; margin-bottom: 4px; }
.project-meta h3 { margin: 0; font-size: 17px; }
.project-meta > span { font-size: 22px; color: var(--cyan); }
body.modal-open { overflow: hidden; }

@media (max-width: 1150px) {
  .navbar { padding: 0 24px; }
  .nav-links { gap: 24px; }
  .nav-cta { min-width: 160px; }
  .brand-tag { display: none; }
  .hero-content { width: 60vw; }
  h1 { font-size: clamp(64px, 8vw, 98px); }
}

@media (max-width: 1200px) {
  .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(900px, 92vw); }
}

@media (max-width: 900px) {
  .navbar { min-height: 76px; border-radius: 26px; }
  .brand-name { font-size: 18px; }
  .brand-logo { width: 46px; height: 46px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; cursor: pointer; }
  .navbar.menu-open { align-items: flex-start; padding-top: 14px; padding-bottom: 18px; flex-wrap: wrap; }
  .navbar.menu-open .nav-links { order: 3; display: flex; width: 100%; flex-direction: column; gap: 12px; align-items: stretch; padding-top: 8px; }
  .navbar.menu-open .nav-links a, .navbar.menu-open .nav-link-button { padding: 12px; border-radius: 14px; background: rgba(255,255,255,.03); text-align: left; }
  .navbar.menu-open .nav-links a.active::after { display: none; }

  .hero { min-height: 100svh; padding: 130px 28px 48px; align-items: flex-end; }
  .hero-backdrop { background-position: 62% center; }
  .hero-vignette { background: linear-gradient(180deg, rgba(3,6,17,.22) 0%, rgba(3,6,17,.42) 38%, rgba(3,6,17,.95) 69%, #050713 100%); }
  .hero-content { width: 100%; padding-top: 260px; }
  .eyebrow { font-size: 10px; letter-spacing: .20em; }
  h1 { font-size: clamp(58px, 14vw, 86px); }
  .hero-content > p { font-size: 22px; }
  .feature-row { margin-top: 50px; flex-wrap: wrap; gap: 20px 26px; }
  .feature-divider { display: none; }
}

@media (max-width: 600px) {
  .navbar { width: calc(100vw - 24px); top: 12px; padding: 0 16px; }
  .brand { gap: 9px; }
  .brand-name { font-size: 14px; }
  .brand-logo { width: 38px; height: 38px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-content { padding-top: 210px; }
  .eyebrow span { width: 34px; }
  h1 { margin-top: 24px; margin-bottom: 20px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .primary-btn { min-width: 240px; min-height: 66px; font-size: 19px; }
  .showcase-icon { width: 52px; height: 52px; }
  .feature-item { min-width: 135px; }
  .scroll-cue { display: none; }
}

@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .showcase-modal { padding: 10px; } .showcase-panel { width: 100%; max-height: 94vh; padding: 22px 16px; border-radius: 22px; } .gallery-grid { grid-template-columns: 1fr; } .showcase-topbar { margin-bottom: 20px; } }

/* ABOUT PAGE */
.about-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 150px max(6vw, 72px) 70px;
  isolation: isolate;
}
.about-hero .hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("images/background.png?v=20260913-2") center center / cover no-repeat;
}
.about-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3,6,18,.96) 0%, rgba(4,7,20,.88) 37%, rgba(5,7,20,.45) 68%, rgba(5,6,18,.15) 100%),
    linear-gradient(180deg, rgba(3,4,14,.15), rgba(3,4,14,.55));
}
.about-content {
  width: min(1180px, 82vw);
  padding-top: 28px;
}
.about-title {
  margin-bottom: 24px;
  font-size: clamp(64px, 6.3vw, 108px);
}
.about-lead {
  max-width: 720px;
  margin: 0;
  color: #c8ccda;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.55;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  width: min(1320px, 92vw);
  max-width: none;
}
.about-card {
  display: flex;
  gap: 16px;
  min-height: 0;
  padding: 18px 22px;
  border: 1px solid rgba(126, 135, 255, .24);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(15,18,43,.64), rgba(8,10,25,.44));
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.about-card > strong {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .12em;
  padding-top: 4px;
}
.about-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}
.about-card p {
  margin: 0;
  color: #aeb4c7;
  font-size: 14px;
  line-height: 1.45;
}
.about-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.about-primary {
  min-width: 245px;
  min-height: 68px;
  font-size: 18px;
}

@media (max-width: 900px) {
  .about-hero { padding: 128px 7vw 56px; align-items: flex-start; }
  .about-content { width: 100%; }
  .about-title { font-size: clamp(56px, 13vw, 84px); }
  .about-grid { grid-template-columns: 1fr; max-width: 650px; }
  .about-vignette {
    background: linear-gradient(90deg, rgba(3,6,18,.96) 0%, rgba(4,7,20,.86) 70%, rgba(4,7,20,.6) 100%);
  }
}

@media (max-width: 620px) {
  .about-hero { padding: 112px 20px 44px; }
  .about-title { margin-top: 26px; font-size: clamp(48px, 15vw, 68px); }
  .about-lead { font-size: 18px; }
  .about-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .about-primary { width: 100%; min-width: 0; }
  .about-card { padding: 18px; }
}

/* Services page */
.services-hero {
  position: relative;
  min-height: 100svh;
  padding: 145px 5vw 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.services-hero .hero-backdrop {
  position: absolute;
  inset: 0;
  background: url("images/background.png?v=20260913-2") center center / cover no-repeat;
  z-index: -3;
}
.services-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 6, 19, .97) 0%, rgba(4, 6, 19, .88) 32%, rgba(4, 6, 19, .48) 65%, rgba(4, 6, 19, .2) 100%),
    linear-gradient(180deg, rgba(3, 5, 15, .12), rgba(3, 5, 15, .55));
}
.services-content {
  width: min(1460px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(640px, 1.5fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}
.services-title {
  margin: 26px 0 24px;
  font-size: clamp(48px, 5.1vw, 82px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 800;
}
.services-title span {
  display: inline-block;
  padding-bottom: .08em;
  margin-bottom: -.08em;
  background: linear-gradient(90deg, #16dcff 0%, #1389ff 28%, #715dff 55%, #ac22ff 73%, #ff00bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services-lead {
  margin: 0;
  max-width: 640px;
  color: #c5c8d4;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}
.services-contact-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.services-primary {
  min-width: 220px;
  min-height: 64px;
  font-size: 17px;
}
.services-phone {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: white;
  text-decoration: none;
}
.services-phone small { color: #949bad; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.services-phone strong { font-size: 17px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  min-height: 250px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(125, 144, 255, .22);
  background: linear-gradient(150deg, rgba(18, 24, 52, .79), rgba(10, 10, 31, .66));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255,255,255,.045);
  backdrop-filter: blur(16px) saturate(130%);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}
.service-card-top span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}
.service-card-top strong {
  color: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
}
.service-card h2 {
  margin: 0 0 9px;
  font-size: 22px;
  letter-spacing: -.035em;
}
.service-card p {
  margin: 0 0 13px;
  color: #aeb4c7;
  font-size: 13px;
  line-height: 1.48;
}
.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.service-card li {
  position: relative;
  padding-left: 18px;
  color: #d6d9e4;
  font-size: 12px;
  line-height: 1.35;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 10px rgba(0, 215, 255, .2);
}
.care-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}
.care-prices span {
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.045);
  color: #adb4c8;
  font-size: 10px;
}
.services-footnote {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: -4px;
}
.services-footnote span {
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.075);
  background: rgba(7, 9, 24, .55);
  color: #aeb4c7;
  font-size: 11px;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}
.services-footnote b { color: #fff; }

@media (max-width: 1180px) {
  .services-hero { padding-top: 132px; align-items: flex-start; }
  .services-content { grid-template-columns: 1fr; gap: 32px; }
  .services-intro { max-width: 850px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 0; }
}

@media (max-width: 720px) {
  .services-hero { padding: 108px 20px 38px; overflow: visible; }
  .services-hero .hero-backdrop { background-position: 62% center; }
  .services-vignette { background: linear-gradient(180deg, rgba(3,6,17,.36) 0%, rgba(3,6,17,.78) 33%, rgba(3,6,17,.98) 74%, #050713 100%); }
  .services-title { font-size: clamp(42px, 13vw, 66px); }
  .services-contact-row { align-items: flex-start; flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .services-footnote { grid-template-columns: 1fr; }
  .service-card { padding: 20px; }
}

/* Contact page */
.contact-hero {
  position: relative; min-height: 100vh; overflow: hidden; display: flex; align-items: center;
  padding: 145px max(5vw, 58px) 54px; isolation: isolate;
}
.contact-hero .hero-backdrop { position:absolute; inset:0; z-index:-3; background:url("images/background.png?v=20260913-2") center center/cover no-repeat; }
.contact-vignette { position:absolute; inset:0; z-index:-2; background:linear-gradient(90deg,rgba(3,6,18,.97) 0%,rgba(4,7,20,.88) 45%,rgba(4,6,18,.56) 72%,rgba(4,6,18,.34) 100%),linear-gradient(180deg,rgba(2,3,12,.12),rgba(2,3,12,.58)); }
.contact-layout { width:min(1420px,92vw); margin:0 auto; display:grid; grid-template-columns:minmax(0,.9fr) minmax(520px,1.1fr); gap:clamp(48px,6vw,96px); align-items:center; }
.contact-copy { max-width:650px; }
.contact-title { margin:18px 0 22px; font-size:clamp(58px,5.8vw,100px); line-height:.92; letter-spacing:-.065em; }
.contact-title span { display:inline-block; color:transparent; background:linear-gradient(90deg,#00d9ff 0%,#5c69ff 30%,#d12dff 58%,#ff2ca7 78%,#ff9b55 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; padding-bottom:.09em; }
.contact-lead { margin:0; max-width:620px; color:#c0c5d4; font-size:17px; line-height:1.65; }
.contact-points { display:grid; gap:12px; margin:28px 0 24px; }
.contact-points > div { display:flex; gap:14px; align-items:center; padding:12px 14px; border-radius:16px; border:1px solid rgba(255,255,255,.075); background:rgba(8,10,27,.42); backdrop-filter:blur(10px); }
.contact-points b { display:grid; place-items:center; width:34px; height:34px; flex:0 0 34px; border-radius:10px; color:#00e7ff; background:rgba(0,215,255,.08); font-size:10px; letter-spacing:.08em; }
.contact-points span { display:grid; gap:2px; }
.contact-points strong { font-size:13px; color:#fff; }
.contact-points small { color:#929aaf; font-size:11px; line-height:1.35; }
.contact-email { display:inline-flex; align-items:center; gap:10px; color:#e9ebf4; text-decoration:none; font-size:13px; font-weight:700; }
.contact-email span { color:var(--cyan); }
.contact-card { padding:28px; border-radius:30px; border:1px solid rgba(112,131,255,.30); background:linear-gradient(145deg,rgba(14,18,45,.82),rgba(7,9,25,.72)); box-shadow:0 28px 90px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.055); backdrop-filter:blur(22px) saturate(135%); }
.contact-card-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; color:#00e6ff; font-size:10px; font-weight:800; letter-spacing:.2em; }
.contact-card-head i { width:8px; height:8px; border-radius:50%; background:#00e6ff; box-shadow:0 0 14px #00e6ff; }
.contact-form { display:grid; gap:14px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.contact-form label:not(.form-consent) { display:grid; gap:7px; }
.contact-form label > span { color:#b9bfd0; font-size:11px; font-weight:700; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width:100%; border:1px solid rgba(135,145,195,.18); border-radius:14px; outline:none; padding:13px 14px; background:rgba(5,7,22,.66); color:#fff; font:inherit; font-size:13px; transition:.2s ease; }
.contact-form input:not([type="checkbox"]), .contact-form select { height:48px; }
.contact-form textarea { min-height:108px; resize:vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color:rgba(0,221,255,.65); box-shadow:0 0 0 3px rgba(0,215,255,.07); }
.contact-form select option { color:#fff; background:#0b0d1f; }
.form-consent { display:flex; gap:10px; align-items:flex-start; color:#929aaf; font-size:10px; line-height:1.4; cursor:pointer; }
.form-consent input { margin:2px 0 0; accent-color:#8b3cff; }
.form-honey { position:absolute!important; left:-9999px!important; opacity:0!important; pointer-events:none!important; }
.contact-submit { min-height:54px; border:0; border-radius:999px; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:14px; color:#fff; font:inherit; font-size:14px; font-weight:800; background:linear-gradient(90deg,#00bff5 0%,#4c65ff 34%,#a431ff 62%,#ff2a9d 100%); box-shadow:0 10px 32px rgba(106,47,255,.25); transition:transform .2s ease,box-shadow .2s ease; }
.contact-submit:hover { transform:translateY(-2px); box-shadow:0 14px 40px rgba(106,47,255,.34); }
.form-note { margin:0; text-align:center; color:#777f94; font-size:9px; }
.form-note strong { color:#aeb5c7; }
@media (max-width:1050px) { .contact-hero { align-items:flex-start; padding-top:130px; overflow:visible; } .contact-layout { grid-template-columns:1fr; gap:34px; } .contact-copy { max-width:800px; } .contact-card { max-width:800px; } }
@media (max-width:620px) { .contact-hero { padding:108px 18px 34px; } .contact-layout { width:100%; } .contact-title { font-size:clamp(50px,15vw,70px); } .contact-lead { font-size:15px; } .contact-card { padding:20px 16px; border-radius:22px; } .form-row { grid-template-columns:1fr; } .contact-points small { font-size:10px; } }

/* Real showcase website screenshots */
.project-screenshot { background: #080a12; }
.project-screenshot::after { display: none; }
.project-screenshot img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; transition: transform .45s ease; }
.project-card:hover .project-screenshot img { transform: scale(1.025); }


/* Contact form status */
.form-status {
  min-height: 1.35em;
  margin: 10px 0 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,.72);
}
.form-status.success { color: #7ef5c8; }
.form-status.error { color: #ff8fa8; }
.contact-submit:disabled {
  opacity: .68;
  cursor: wait;
  transform: none;
}

/* =========================================================
   MOBILE / TABLET POLISH — 2026-09-13
   ========================================================= */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

button,
a {
  touch-action: manipulation;
}

img {
  max-width: 100%;
}

/* Tablets and smaller laptops */
@media (max-width: 1024px) {
  .navbar {
    width: calc(100vw - 32px);
    top: 16px;
    min-height: 78px;
    padding: 0 20px;
    border-radius: 28px;
  }

  .navbar.scrolled {
    top: 10px;
    min-height: 72px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.07);
  }

  .menu-toggle span {
    width: 24px;
    margin: 5px auto;
    transition: transform .22s ease, opacity .22s ease;
  }

  .navbar.menu-open {
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 14px;
    background: rgba(8, 10, 28, .96);
    backdrop-filter: blur(28px) saturate(150%);
  }

  .navbar.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navbar.menu-open .nav-links {
    order: 3;
    display: grid;
    width: 100%;
    gap: 8px;
    padding-top: 12px;
  }

  .navbar.menu-open .nav-links a,
  .navbar.menu-open .nav-link-button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.045);
    color: #e8eaf3;
    text-align: left;
    font-size: 15px;
  }

  .navbar.menu-open .nav-links a.active {
    color: var(--cyan);
    background: rgba(0,215,255,.055);
    border-color: rgba(0,215,255,.12);
  }

  .navbar.menu-open .nav-links a.active::after {
    display: none;
  }

  .navbar.menu-open .nav-cta {
    order: 4;
    display: inline-flex;
    width: 100%;
    min-width: 0;
    height: 50px;
    margin-top: 10px;
  }

  .hero,
  .about-hero,
  .services-hero,
  .contact-hero {
    min-height: 100svh;
  }

  .showcase-panel {
    max-height: calc(100svh - 32px);
    overscroll-behavior: contain;
  }
}

/* Phones */
@media (max-width: 640px) {
  body {
    min-width: 0;
  }

  .navbar {
    width: calc(100vw - 20px);
    top: 10px;
    min-height: 68px;
    padding: 0 12px;
    border-radius: 22px;
  }

  .navbar.scrolled {
    top: 8px;
    min-height: 66px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-name {
    font-size: clamp(13px, 4vw, 16px);
    letter-spacing: -.03em;
  }

  .brand-tag {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 18px 30px;
    align-items: flex-end;
  }

  .hero-backdrop {
    background-position: 62% center;
  }

  .hero-content {
    width: 100%;
    padding-top: clamp(120px, 31vh, 250px);
  }

  .eyebrow {
    gap: 10px;
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: .16em;
  }

  .eyebrow span {
    width: 28px;
    flex: 0 0 28px;
  }

  h1 {
    margin: 20px 0 16px;
    font-size: clamp(48px, 15.2vw, 68px);
    line-height: .98;
  }

  .hero-content > p {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.45;
  }

  .hero-actions {
    width: 100%;
    margin-top: 28px;
    gap: 16px;
  }

  .primary-btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 22px;
    font-size: 17px;
  }

  .showcase-btn {
    min-height: 54px;
    font-size: 16px;
  }

  .showcase-icon {
    width: 48px;
    height: 48px;
  }

  .feature-row {
    width: 100%;
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-item {
    min-width: 0;
    width: 100%;
    padding: 11px 12px;
    border-radius: 15px;
    background: rgba(7,9,24,.38);
    border: 1px solid rgba(255,255,255,.055);
    backdrop-filter: blur(10px);
  }

  .feature-icon-img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .feature-divider {
    display: none;
  }

  /* Showcase modal */
  .showcase-modal {
    padding: 8px;
    align-items: end;
  }

  .showcase-panel {
    width: 100%;
    max-height: calc(100svh - 16px);
    padding: 18px 14px 22px;
    border-radius: 24px 24px 18px 18px;
  }

  .showcase-topbar {
    gap: 14px;
    margin-bottom: 18px;
  }

  .showcase-topbar h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .showcase-topbar p {
    max-width: 32ch;
    font-size: 13px;
    line-height: 1.45;
  }

  .close-modal {
    width: 44px;
    height: 44px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-card {
    border-radius: 18px;
  }

  .project-meta {
    padding: 13px 14px 14px;
  }

  .project-meta h3 {
    font-size: 16px;
  }

  /* About */
  .about-hero {
    min-height: 100svh;
    padding: 104px 16px 34px;
    align-items: flex-start;
    overflow: visible;
  }

  .about-content {
    width: 100%;
    padding-top: 28px;
  }

  .about-title {
    margin: 20px 0 16px;
    font-size: clamp(46px, 14.5vw, 64px);
    line-height: .98;
  }

  .about-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .about-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .about-card {
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
    gap: 12px;
  }

  .about-card > strong {
    font-size: 10px;
  }

  .about-card h2 {
    font-size: 17px;
  }

  .about-card p {
    font-size: 12px;
    line-height: 1.48;
  }

  .about-actions {
    width: 100%;
    margin-top: 24px;
    align-items: stretch;
  }

  .about-primary {
    width: 100%;
  }

  /* Services */
  .services-hero {
    min-height: 100svh;
    padding: 104px 16px 34px;
    overflow: visible;
  }

  .services-content {
    width: 100%;
    gap: 24px;
  }

  .services-title {
    margin: 20px 0 16px;
    font-size: clamp(44px, 13.8vw, 62px);
    line-height: .98;
  }

  .services-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .services-contact-row {
    width: 100%;
    gap: 14px;
  }

  .services-primary {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }

  .services-phone {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: rgba(8,10,27,.42);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    min-height: 0;
    padding: 17px;
    border-radius: 18px;
  }

  .service-card h2 {
    font-size: 19px;
  }

  .service-card p {
    font-size: 12px;
  }

  .service-card li {
    font-size: 11.5px;
  }

  .services-footnote {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-hero {
    min-height: 100svh;
    padding: 104px 14px 28px;
    overflow: visible;
  }

  .contact-layout {
    width: 100%;
    gap: 24px;
  }

  .contact-title {
    margin: 18px 0 14px;
    font-size: clamp(46px, 14vw, 64px);
    line-height: .98;
  }

  .contact-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-points {
    gap: 8px;
    margin: 20px 0 18px;
  }

  .contact-points > div {
    padding: 10px 11px;
    border-radius: 14px;
  }

  .contact-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-card {
    width: 100%;
    max-width: none;
    padding: 17px 14px;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form {
    gap: 12px;
  }

  /* 16px prevents iOS Safari zooming on focus */
  .contact-form input:not([type="checkbox"]),
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form input:not([type="checkbox"]),
  .contact-form select {
    height: 50px;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .contact-submit {
    min-height: 56px;
    font-size: 15px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .brand-name {
    font-size: 12px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1,
  .about-title,
  .services-title,
  .contact-title {
    font-size: 45px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* Short landscape phones */
@media (max-height: 520px) and (orientation: landscape) and (max-width: 950px) {
  .navbar {
    position: absolute;
  }

  .hero,
  .about-hero,
  .services-hero,
  .contact-hero {
    min-height: 680px;
    padding-top: 105px;
  }

  .hero-content {
    padding-top: 80px;
  }
}

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