:root {
  --bg: #05060b;
  --bg-soft: #070911;
  --panel: rgba(255, 255, 255, .055);
  --panel-strong: rgba(255, 255, 255, .085);
  --text: #ffffff;
  --muted: #a1a1aa;
  --muted-2: #9ca3af;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .18);
  --teal: #35e0c5;
  --teal-2: #22d3c5;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --amber: #f59e0b;
  --blue: #38bdf8;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius: 8px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(53, 224, 197, .18), transparent 30rem),
    radial-gradient(circle at 86% 12%, rgba(236, 72, 153, .15), transparent 28rem),
    linear-gradient(180deg, #05060b 0%, #070911 42%, #05060b 100%);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  background: rgba(53, 224, 197, .28);
  color: #fff;
}

.section-shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(5, 6, 11, .82);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(100% - 32px, 1180px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand > span:not(.brand-mark) {
  font-size: clamp(1.35rem, 1.15rem + .45vw, 1.62rem);
  line-height: 1;
}

.brand-mark {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(53, 224, 197, .38);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(53, 224, 197, .18), rgba(139, 92, 246, .14));
  box-shadow: 0 0 28px rgba(53, 224, 197, .16);
}

.brand-mark img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.site-menu {
  position: fixed;
  inset: var(--header-height) 16px auto;
  display: grid;
  gap: 8px;
  max-height: calc(100dvh - var(--header-height) - 24px);
  padding: 14px;
  transform: translateY(-12px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 9, 17, .96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.site-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: .94rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.nav-cta {
  background: #fff;
  color: #06070d !important;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(53, 224, 197, .34);
  border-radius: 8px;
  background: rgba(53, 224, 197, .12);
  box-shadow: 0 0 22px rgba(53, 224, 197, .12);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: auto;
  padding-block: clamp(44px, 8vw, 96px) clamp(44px, 7vw, 88px);
}

.hero::before,
.hero::after,
.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  inset: 0 calc(50% - 50vw);
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0, transparent 64%);
}

.hero::after {
  width: min(520px, 74vw);
  height: min(520px, 74vw);
  right: 0;
  top: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, .2), transparent 66%);
  filter: blur(10px);
}

.hero-grid {
  display: grid;
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
}

.hero-copy,
.section-heading,
.cta-copy,
.cta-text {
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  max-width: 100%;
  padding: 6px 11px;
  border: 1px solid rgba(53, 224, 197, .28);
  border-radius: 999px;
  background: rgba(53, 224, 197, .08);
  color: #9ff8ec;
  font-size: clamp(.72rem, .7rem + .15vw, .82rem);
  font-weight: 800;
  letter-spacing: 0;
  white-space: normal;
}

.hero h1,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .95;
}

.hero h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(2.55rem, 1.65rem + 6vw, 6.75rem);
}

.hero h1 span,
.cta-copy h2 span {
  color: var(--teal);
}

.hero-kicker {
  max-width: 680px;
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(1rem, .9rem + .65vw, 1.32rem);
  font-weight: 800;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.portfolio-copy p,
.feature-card p,
.step p,
.cta-text p,
.footer-brand p {
  color: var(--muted);
}

.hero-text {
  max-width: 670px;
  margin: 12px 0 0;
  font-size: clamp(.98rem, .93rem + .3vw, 1.15rem);
}

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

.btn {
  min-height: 44px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: #fff;
  color: #06070d;
  box-shadow: 0 18px 42px rgba(255, 255, 255, .14);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.btn-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-panel {
  position: relative;
  width: min(100%, 520px);
  min-height: clamp(270px, 75vw, 430px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(53, 224, 197, .26), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(139, 92, 246, .24), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 224, 197, .2), transparent 68%);
  filter: blur(18px);
}

.panel-top {
  position: relative;
  z-index: 1;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(5, 6, 11, .42);
}

.panel-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.panel-top span:nth-child(2) {
  background: var(--amber);
}

.panel-top span:nth-child(3) {
  background: var(--pink);
}

.panel-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: clamp(14px, 4vw, 24px);
}

.panel-sidebar {
  display: grid;
  gap: 12px;
  align-content: start;
}

.panel-sidebar i,
.metric-row div,
.task-lines span,
.dash-window i,
.bar-chart i,
.node-map i,
.site-preview i {
  display: block;
  border-radius: 8px;
}

.panel-sidebar i {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, .09);
}

.panel-sidebar i:first-child {
  background: rgba(53, 224, 197, .38);
  box-shadow: 0 0 24px rgba(53, 224, 197, .28);
}

.panel-content {
  min-width: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric-row div {
  min-height: clamp(64px, 17vw, 94px);
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .04)),
    radial-gradient(circle at 35% 20%, rgba(53, 224, 197, .25), transparent 42%);
}

.metric-row div:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    radial-gradient(circle at 30% 20%, rgba(245, 158, 11, .28), transparent 44%);
}

.metric-row div:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    radial-gradient(circle at 30% 20%, rgba(236, 72, 153, .24), transparent 44%);
}

.chart-line {
  position: relative;
  min-height: clamp(92px, 25vw, 150px);
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, .04) 28px 29px);
}

.chart-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 24%;
  height: 44%;
  border-bottom: 3px solid rgba(53, 224, 197, .78);
  border-left: 3px solid rgba(53, 224, 197, .78);
  border-radius: 0 0 0 34px;
  transform: skew(-18deg);
  box-shadow: 0 0 22px rgba(53, 224, 197, .22);
}

.task-lines {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.task-lines span {
  height: 12px;
  background: rgba(255, 255, 255, .1);
}

.task-lines span:nth-child(2) {
  width: 74%;
}

.task-lines span:nth-child(3) {
  width: 52%;
}

.hero-cards,
.service-grid,
.portfolio-grid,
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hero-cards {
  margin-top: clamp(34px, 6vw, 72px);
}

.service-mini,
.portfolio-card,
.feature-card,
.step,
.contact-form {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .18);
}

.service-mini,
.portfolio-card,
.feature-card {
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-mini:hover,
.portfolio-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 224, 197, .32);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.mini-visual {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  background: radial-gradient(circle at 32% 35%, rgba(53, 224, 197, .45), transparent 30%), linear-gradient(135deg, rgba(53, 224, 197, .16), rgba(255, 255, 255, .04));
}

.mini-visual::before,
.mini-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(5, 6, 11, .3);
}

.mini-visual::before {
  width: 54%;
  height: 46%;
  left: 16%;
  top: 20%;
}

.mini-visual::after {
  width: 38%;
  height: 32%;
  right: 14%;
  bottom: 16%;
}

.service-amber .mini-visual {
  background: radial-gradient(circle at 34% 35%, rgba(245, 158, 11, .5), transparent 31%), linear-gradient(135deg, rgba(245, 158, 11, .18), rgba(255, 255, 255, .04));
}

.service-purple .mini-visual {
  background: radial-gradient(circle at 34% 35%, rgba(236, 72, 153, .42), transparent 31%), linear-gradient(135deg, rgba(139, 92, 246, .2), rgba(255, 255, 255, .04));
}

.mini-content {
  padding: 18px;
}

.mini-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(53, 224, 197, .26);
  border-radius: 8px;
  background: rgba(53, 224, 197, .08);
  color: var(--teal);
}

.service-amber .mini-icon {
  border-color: rgba(245, 158, 11, .28);
  background: rgba(245, 158, 11, .08);
  color: var(--amber);
}

.service-purple .mini-icon {
  border-color: rgba(236, 72, 153, .28);
  background: rgba(236, 72, 153, .08);
  color: var(--pink);
}

.mini-icon svg,
.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-mini h2,
.portfolio-card h3,
.feature-card h3,
.step h3,
.cta-text h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(1.04rem, .98rem + .28vw, 1.22rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.service-mini p,
.service-card p,
.portfolio-card p,
.feature-card p,
.step p,
.cta-text p,
.footer-brand p,
.form-status {
  margin: 8px 0 0;
  font-size: clamp(.9rem, .86rem + .18vw, .98rem);
}

.service-grid {
  align-items: start;
}

.service-card {
  --accent: var(--teal);
  --accent-soft: rgba(53, 224, 197, .16);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, var(--accent-soft), transparent 38%),
    rgba(255, 255, 255, .052);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .18);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 44%, transparent);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .34), 0 0 42px color-mix(in srgb, var(--accent) 12%, transparent);
}

.service-card-blue {
  --accent: var(--blue);
  --accent-soft: rgba(56, 189, 248, .16);
}

.service-card-rose {
  --accent: var(--pink);
  --accent-soft: rgba(236, 72, 153, .14);
}

.service-card-violet {
  --accent: var(--purple);
  --accent-soft: rgba(139, 92, 246, .16);
}

.service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 12px 12px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(5, 6, 11, .5);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(5, 6, 11, .28)),
    radial-gradient(circle at 18% 14%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 28%);
  pointer-events: none;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 18px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
}

.service-icon svg,
.service-detail-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(1.08rem, 1rem + .32vw, 1.24rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.service-detail-toggle {
  min-height: 44px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, rgba(255, 255, 255, .14));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, rgba(255, 255, 255, .04));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.service-detail-toggle:hover,
.service-detail-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 54%, transparent);
  background: color-mix(in srgb, var(--accent) 16%, rgba(255, 255, 255, .04));
}

.service-detail-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform .24s ease;
}

.service-card.is-open .service-detail-toggle svg {
  transform: rotate(180deg);
}

.service-detail {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(5, 6, 11, .36);
  opacity: 0;
  transition: max-height .28s ease, margin-top .28s ease, padding .28s ease, opacity .22s ease, border-color .28s ease;
}

.service-detail p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(.9rem, .86rem + .18vw, .98rem);
  line-height: 1.62;
}

.service-card.is-open .service-detail {
  max-height: 680px;
  margin-top: 14px;
  padding: 14px;
  border-color: rgba(255, 255, 255, .11);
  opacity: 1;
}

.portfolio,
.why,
.process,
.contact {
  padding-block: clamp(54px, 9vw, 106px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 5vw, 40px);
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 1.45rem + 3vw, 4.4rem);
}

.section-heading p {
  max-width: 620px;
  margin: 14px 0 0;
  font-size: clamp(.98rem, .93rem + .28vw, 1.12rem);
}

.portfolio-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #080a12;
}

.portfolio-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 18%, rgba(139, 92, 246, .48), transparent 34%),
    linear-gradient(150deg, rgba(139, 92, 246, .22), rgba(236, 72, 153, .12) 48%, rgba(255, 255, 255, .04));
}

.portfolio-visual::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 11, .7) 40%, rgba(5, 6, 11, .96));
}

.portfolio-copy {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.portfolio-copy h3 {
  font-size: clamp(1.2rem, 1rem + .75vw, 1.64rem);
}

.tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(5, 6, 11, .45);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}

.dash-window,
.bar-chart,
.node-map,
.site-preview {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 58px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(5, 6, 11, .34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .25);
}

.dash-window {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
}

.dash-window i {
  background: rgba(255, 255, 255, .12);
}

.dash-window i:first-child {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(236, 72, 153, .4), rgba(139, 92, 246, .16));
}

.portfolio-stock .portfolio-visual {
  background:
    radial-gradient(circle at 35% 18%, rgba(245, 158, 11, .5), transparent 34%),
    linear-gradient(150deg, rgba(245, 158, 11, .2), rgba(255, 255, 255, .04));
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
}

.bar-chart i {
  flex: 1;
  min-width: 0;
  background: linear-gradient(180deg, rgba(245, 158, 11, .78), rgba(245, 158, 11, .16));
}

.bar-chart i:nth-child(1) {
  height: 42%;
}

.bar-chart i:nth-child(2) {
  height: 72%;
}

.bar-chart i:nth-child(3) {
  height: 54%;
}

.bar-chart i:nth-child(4) {
  height: 88%;
}

.portfolio-integration .portfolio-visual {
  background:
    radial-gradient(circle at 30% 18%, rgba(139, 92, 246, .48), transparent 34%),
    radial-gradient(circle at 80% 16%, rgba(236, 72, 153, .24), transparent 30%),
    linear-gradient(150deg, rgba(139, 92, 246, .18), rgba(255, 255, 255, .04));
}

.node-map {
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .12) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, .12) 50%, transparent 51%),
    rgba(5, 6, 11, .34);
}

.node-map i {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(139, 92, 246, .36);
}

.node-map i:nth-child(1) {
  left: 16%;
  top: 26%;
}

.node-map i:nth-child(2) {
  right: 16%;
  top: 22%;
  background: rgba(236, 72, 153, .32);
}

.node-map i:nth-child(3) {
  left: 24%;
  bottom: 18%;
  background: rgba(53, 224, 197, .28);
}

.node-map i:nth-child(4) {
  right: 28%;
  bottom: 20%;
}

.portfolio-corporate .portfolio-visual {
  background:
    radial-gradient(circle at 36% 18%, rgba(56, 189, 248, .48), transparent 34%),
    linear-gradient(150deg, rgba(56, 189, 248, .2), rgba(53, 224, 197, .08));
}

.site-preview {
  padding: 16px;
}

.site-preview i {
  background: rgba(255, 255, 255, .12);
}

.site-preview i:nth-child(1) {
  height: 26px;
  width: 70%;
}

.site-preview i:nth-child(2) {
  height: 62px;
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(56, 189, 248, .44), rgba(53, 224, 197, .2));
}

.site-preview i:nth-child(3) {
  height: 34px;
  width: 52%;
  margin-top: 14px;
}

.feature-card {
  padding: 20px;
}

.process {
  position: relative;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.step {
  position: relative;
  padding: 18px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(53, 224, 197, .28);
  border-radius: 8px;
  background: rgba(53, 224, 197, .08);
  color: #9ff8ec;
  font-size: .82rem;
  font-weight: 800;
}

.contact {
  position: relative;
}

.contact::before {
  inset: 24px calc(50% - 50vw);
  background:
    radial-gradient(ellipse at 14% 48%, rgba(53, 224, 197, .16), transparent 34%),
    radial-gradient(ellipse at 84% 52%, rgba(139, 92, 246, .18), transparent 32%);
  mask-image: linear-gradient(transparent, #000 12%, #000 88%, transparent);
}

.cta-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
  padding: clamp(24px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 16% 28%, rgba(53, 224, 197, .2), transparent 34%),
    radial-gradient(ellipse at 90% 30%, rgba(236, 72, 153, .13), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
}

.cta-wrap::before,
.cta-wrap::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 92px;
  border: 1px solid rgba(53, 224, 197, .12);
  border-radius: 999px;
  pointer-events: none;
}

.cta-wrap::before {
  right: -170px;
  top: 22px;
  transform: rotate(-26deg);
  background: linear-gradient(90deg, rgba(53, 224, 197, .12), transparent);
}

.cta-wrap::after {
  right: -210px;
  bottom: 18px;
  transform: rotate(22deg);
  background: linear-gradient(90deg, rgba(139, 92, 246, .12), transparent);
}

.cta-copy,
.cta-text {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  max-width: 8ch;
  margin-top: 16px;
  font-size: clamp(2.55rem, 1.7rem + 5vw, 5.9rem);
}

.cta-copy .btn {
  margin-top: 22px;
}

.cta-text h3 {
  max-width: 520px;
  margin-top: 0;
  font-size: clamp(1.45rem, 1.05rem + 1.8vw, 2.75rem);
  line-height: 1.08;
}

.cta-text p {
  max-width: 480px;
}

.contact-form {
  margin-top: 18px;
  padding: clamp(18px, 4vw, 28px);
  background: rgba(255, 255, 255, .045);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  outline: none;
  background: rgba(5, 6, 11, .62);
  color: #fff;
  padding: 12px 14px;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea {
  min-height: 122px;
}

input:focus,
textarea:focus {
  border-color: rgba(53, 224, 197, .55);
  background: rgba(5, 6, 11, .78);
  box-shadow: 0 0 0 4px rgba(53, 224, 197, .1);
}

.contact-form .btn {
  width: 100%;
  margin-top: 16px;
}

.form-status {
  min-height: 24px;
  color: #9ff8ec;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #05060b;
}

.footer-inner {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
  display: grid;
  gap: 20px;
  padding-block: 28px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.copyright {
  margin: 0;
  color: var(--muted-2);
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

@media (max-width: 374px) {
  .section-shell,
  .navbar,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero h1 {
    font-size: clamp(2.42rem, 15vw, 2.95rem);
  }

  .hero-kicker {
    max-width: 26ch;
  }

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

  .panel-body {
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }

  .metric-row {
    gap: 7px;
  }
}

@media (min-width: 375px) and (max-width: 520px) {
  .hero-kicker {
    max-width: 27ch;
  }
}

@media (min-width: 640px) {
  .section-shell,
  .navbar,
  .footer-inner {
    width: min(100% - 48px, 1180px);
  }

  .hero-cards,
  .service-grid,
  .feature-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid label:last-child {
    grid-column: 1 / -1;
  }

  .contact-form .btn {
    width: auto;
  }
}

@media (min-width: 760px) {
  .portfolio-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-wrap {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (min-width: 920px) {
  .menu-toggle {
    display: none;
  }

  .site-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    max-height: none;
    padding: 0;
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-menu a {
    padding-inline: 12px;
  }

  .nav-cta {
    margin-left: 6px;
    padding-inline: 18px !important;
    border-radius: 999px !important;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-content: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  }

  .hero-panel {
    justify-self: end;
  }

  .hero-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 39px;
    height: 1px;
    background: linear-gradient(90deg, rgba(53, 224, 197, .35), rgba(139, 92, 246, .28), rgba(236, 72, 153, .22));
  }

  .step {
    z-index: 1;
    background: rgba(7, 9, 17, .86);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1180px) {
  .service-grid,
  .portfolio-grid,
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (hover: none) {
  .service-mini:hover,
  .service-card:hover,
  .portfolio-card:hover,
  .feature-card:hover,
  .btn:hover {
    transform: none;
  }
}

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

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