*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  /* surfaces */
  --paper: #fafafb;
  --paper-2: #f3f4f8;
  --surface: #ffffff;

  /* text */
  --ink: #0c1022;
  --ink-2: #2a2f45;
  --muted: #5b6175;
  --faint: #9aa0b4;

  /* lines */
  --line: #e7e8ef;
  --line-2: #d3d5e0;

  /* accent (violet) */
  --accent: #5b4bff;
  --accent-deep: #4536d6;
  --accent-soft: #ece9ff;
  --accent-glow: rgba(91, 75, 255, 0.28);

  /* status */
  --ok: #1bc47d;

  /* fonts */
  --fd: "Bricolage Grotesque", system-ui, sans-serif; /* display/headings */
  --fb: "Inter", system-ui, sans-serif; /* body */
  --fm: "JetBrains Mono", ui-monospace, monospace; /* mono/eyebrows */

  /* shadows */
  --sh-s: 0 2px 10px rgba(12, 16, 34, 0.05);
  --sh-m: 0 14px 34px rgba(12, 16, 34, 0.1);
  --sh-l: 0 30px 60px rgba(12, 16, 34, 0.14);

  /* misc */
  --eo: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 70px;
}
/* 🎨 OFFLINE TYPOGRAPHY DEPLOYMENT (Loaded via local relative directory paths) */

/* 🏢 Bricolage Grotesque (Headings & Titles) */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/bricolage-grotesque-v9-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/bricolage-grotesque-v9-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/bricolage-grotesque-v9-latin-700.woff2") format("woff2");
}

/* 📝 Inter (Body Text & Paragraphs) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/inter-v12-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-v12-latin-700.woff2") format("woff2");
}

/* 💻 JetBrains Mono (Technical Captions & Eyebrows) */
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-v13-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-v13-latin-600.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--fb);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--accent-deep);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--accent);
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 120px 0;
}
.mono {
  font-family: var(--fm);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-family: var(--fm);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--accent);
}
.s-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 0;
}
.s-lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 560px;
  margin-top: 18px;
}
.center {
  text-align: center;
}
.center .eyebrow {
  justify-content: center;
}
.center .s-lead {
  margin-left: auto;
  margin-right: auto;
}
.accent {
  color: var(--accent);
}
/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 11px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s,
    border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px var(--accent-glow);
}
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
}
/* nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250, 250, 251, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.nav.scrolled {
  background: rgba(250, 250, 251, 0.93);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 26px rgba(12, 16, 34, 0.05);
}
.nav-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 200deg,
    var(--accent),
    #8b7bff,
    var(--accent)
  );
}
.brand-mark span {
  position: relative;
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 1;
}
.brand b {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 1.7rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--fm);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--eo);
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  display: inline-flex;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
/* hero */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 70px) 0 90px;
  overflow: hidden;
  background: radial-gradient(
      ellipse 60% 60% at 85% 18%,
      var(--accent-soft) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fff, var(--paper));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 30%,
    #000,
    transparent 75%
  );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 4rem;
  align-items: center;
}
.avail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fm);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 7px 14px;
  margin-bottom: 24px;
}
.avail .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(27, 196, 125, 0.18);
  animation: pulse 1.8s infinite;
}
.hero h1 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero h1 .u {
  position: relative;
  white-space: nowrap;
}
.hero h1 .u::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.12em;
  background: var(--accent);
  opacity: 0.85;
  border-radius: 4px;
  z-index: -1;
}
.hero p.lead {
  font-size: 1.13rem;
  color: var(--muted);
  margin: 24px 0 32px;
  max-width: 520px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stat .n {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1;
}
.hero-stat .l {
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
/* browser frame */
.frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--sh-l);
  overflow: hidden;
}
.frame-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #f4f5f9;
  border-bottom: 1px solid var(--line);
}
.frame-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}
.frame-bar i:nth-child(1) {
  background: #ff5f57;
}
.frame-bar i:nth-child(2) {
  background: #febc2e;
}
.frame-bar i:nth-child(3) {
  background: #28c840;
}
.frame-url {
  margin-left: 12px;
  flex: 1;
  height: 22px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--fm);
  font-size: 0.68rem;
  color: var(--muted);
  gap: 7px;
}
.frame-url::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.4px solid var(--ok);
  border-radius: 2px;
  flex-shrink: 0;
}
.frame-view {
  position: relative;
  aspect-ratio: 720/460;
  background: var(--paper-2);
}
.frame-view .pv {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--eo);
  transform: scale(1.01);
}
.frame-view .pv.on {
  opacity: 1;
}
.frame-view .pv svg {
  width: 100%;
  height: 100%;
}
.rotator-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  justify-content: center;
}
.rtab {
  font-family: var(--fm);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 7px 14px;
  cursor: pointer;
  transition: 0.2s;
}
.rtab:hover {
  border-color: var(--line-2);
  color: var(--ink);
}
.rtab.on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.hero-frame-wrap {
  position: relative;
}
.hero-frame-wrap::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 54px;
  height: 54px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-bottom-right-radius: 10px;
  opacity: 0.7;
}
/* marquee */
.marq {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.marq-label {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  background: var(--surface);
  padding-right: 20px;
}
.marq-track {
  display: flex;
  white-space: nowrap;
  animation: marq 32s linear infinite;
  gap: 0;
}
.marq-track span {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0.78;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
.marq-track span::after {
  content: "●";
  color: var(--accent);
  font-size: 0.4rem;
  opacity: 0.6;
}
.marq:hover .marq-track {
  animation-play-state: paused;
}
/* services */
.services {
  background: var(--paper);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 3.5rem;
}
.svc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-m);
  border-color: var(--accent-soft);
}
.svc-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.svc-ic svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.svc-n {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.svc-d {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
}
.svc-tag {
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  color: var(--faint);
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
}
/* work */
.work {
  background: var(--paper-2);
}
.work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2.6rem;
}
.chip {
  font-family: var(--fm);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.2s;
}
.chip:hover {
  border-color: var(--line-2);
  color: var(--ink);
}
.chip.on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}
.proj {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s var(--eo), box-shadow 0.35s, border-color 0.35s;
  display: flex;
  flex-direction: column;
}
.proj.hide {
  display: none;
}
.proj:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-m);
  border-color: var(--accent-soft);
}
.proj .frame {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.proj .frame-bar {
  background: #f7f8fb;
}
.proj-body {
  padding: 1.6rem 1.7rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.proj-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.proj-cat {
  font-family: var(--fm);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 5px 10px;
  border-radius: 20px;
}
.proj-n {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}
.proj-d {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 2px;
}
.proj-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.proj-stack {
  font-family: var(--fm);
  font-size: 0.64rem;
  color: var(--faint);
  letter-spacing: 0.03em;
}
.view-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fm);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.view-live svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  transition: transform 0.25s;
}
.view-live:hover {
  color: var(--accent-deep);
}
.view-live:hover svg {
  transform: translate(3px, -3px);
}
.add-card {
  border: 1.5px dashed var(--line-2);
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  background: transparent;
  min-height: 220px;
}
.add-card .plus {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 auto 12px;
}
.add-card b {
  display: block;
  font-family: var(--fd);
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.add-card span {
  font-size: 0.85rem;
}
/* industries */
.industries {
  background: var(--paper);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 3.2rem;
}
.ind {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  transition: 0.25s;
}
.ind:hover {
  border-color: var(--accent-soft);
  transform: translateY(-3px);
  box-shadow: var(--sh-s);
}
.ind-ic {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.ind h4 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 3px;
}
.ind p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}
/* process */
.process {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 70% 80% at 70% 20%,
    #000,
    transparent 70%
  );
}
.process .eyebrow {
  color: #a99bff;
}
.process .eyebrow::before {
  background: #a99bff;
}
.process .s-title {
  color: #fff;
}
.process .s-lead {
  color: rgba(255, 255, 255, 0.6);
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
  position: relative;
}
.step {
  position: relative;
}
.step .num {
  font-family: var(--fm);
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.step .bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  margin: 14px 0 18px;
  position: relative;
  overflow: hidden;
}
.step .bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: var(--accent);
}
.step h4 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}
/* packages */
.packages {
  background: var(--paper-2);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
  align-items: start;
}
.pkg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-m);
}
.pkg.pop {
  border: 1.5px solid var(--accent);
  box-shadow: 0 20px 50px var(--accent-glow);
}
.pop-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--fm);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}
.pkg-n {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}
.pkg-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 6px 0 18px;
  min-height: 40px;
}
.pkg-price {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pkg-price small {
  font-family: var(--fm);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--faint);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 4px;
}
.pkg ul {
  list-style: none;
  margin: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pkg li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.pkg li svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.pkg .btn {
  width: 100%;
  justify-content: center;
}
/* testimonials */
.testi {
  background: var(--paper);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.quote .stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.quote p {
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.65;
  flex: 1;
}
.quote .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.quote .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.9rem;
}
.quote .who b {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}
.quote .who span {
  font-family: var(--fm);
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
/* contact */
.contact {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  pointer-events: none;
}
.contact .eyebrow {
  color: #a99bff;
}
.contact .eyebrow::before {
  background: #a99bff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}
.contact h2 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 16px;
}
.contact .s-lead {
  color: rgba(255, 255, 255, 0.65);
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}
.c-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: 0.2s;
}
.c-link:hover {
  border-color: var(--accent);
  background: rgba(91, 75, 255, 0.1);
  color: #fff;
}
.c-link .ci {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.c-link .ci svg {
  width: 18px;
  height: 18px;
  stroke: #a99bff;
  stroke-width: 1.9;
  fill: none;
}
.c-link b {
  display: block;
  font-size: 0.92rem;
}
.c-link span {
  font-family: var(--fm);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
}
.form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.2rem;
  backdrop-filter: blur(4px);
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 1.1rem;
}
.fg label {
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.fg input,
.fg select,
.fg textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  font-family: var(--fb);
  font-size: 0.94rem;
  padding: 12px 14px;
  outline: none;
  transition: 0.2s;
  width: 100%;
  appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: rgba(255, 255, 255, 0.08);
}
.fg select option {
  background: #1a1e33;
  color: #fff;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A99BFF' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.fg textarea {
  resize: vertical;
  min-height: 96px;
}
.form .btn {
  width: 100%;
  justify-content: center;
}
.form-ok {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 34, 0.96);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 2rem;
}
.form-ok.on {
  display: flex;
  animation: fade 0.5s var(--eo);
}
.form-ok .ic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 0 0 8px var(--accent-glow);
}
.form-ok h3 {
  font-family: var(--fd);
  font-size: 1.6rem;
  color: #fff;
}
.form-ok p {
  color: rgba(255, 255, 255, 0.7);
}
/* footer */
.footer {
  background: #070912;
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .brand {
  color: #fff;
  margin-bottom: 14px;
}
.footer .brand-mark {
  background: rgba(255, 255, 255, 0.08);
}
.foot-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.6;
}
.foot-avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}
.foot-avail .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}
.foot-col h5 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 14px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-col a,
.foot-col li {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
}
.foot-col a:hover {
  color: var(--accent);
}
.socials {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: var(--fm);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s;
}
.socials a:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(91, 75, 255, 0.15);
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--fm);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}
/* anim */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }
}
@keyframes marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--eo), transform 0.7s var(--eo);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 5px;
}
/* responsive */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .svc-grid,
  .ind-grid,
  .quote-grid,
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
}
@media (max-width: 760px) {
  .section {
    padding: 84px 0;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(250, 250, 251, 0.98);
    border-top: 1px solid var(--line);
    padding: 1.8rem 28px;
    gap: 1.6rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--sh-m);
  }
  .nav-links.open a {
    font-size: 0.85rem;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .svc-grid,
  .ind-grid,
  .quote-grid,
  .pkg-grid,
  .proc-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.6rem;
  }
  .foot-bot {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 460px) {
  .wrap,
  .nav-in {
    padding: 0 18px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
}
