:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-deep: #f7f7fb;
  --bg-soft: #fafaff;
  --bg-card: #ffffff;
  --bg-card-soft: #fbfbfe;
  --bg-card-strong: #f4f4fa;
  --primary: #6643f6;
  --primary-hover: #7a5bff;
  --primary-deep: #5318eb;
  --primary-soft: #ad99ff;
  --primary-tint: #f0ecff;
  --primary-glow: rgba(102, 67, 246, 0.45);
  --text: #0a0e2a;
  --text-soft: #1a1f3a;
  --text-muted: #5a5f7a;
  --text-dim: #8a8da0;
  --border: rgba(10, 14, 42, 0.08);
  --border-strong: rgba(10, 14, 42, 0.14);
  --border-nav: rgba(102, 67, 246, 0.18);
  --surface-muted: #f4f4f8;
  --max: 1208px;
  --max-narrow: 1184px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 12px 32px rgba(10, 14, 42, 0.06), 0 2px 8px rgba(10, 14, 42, 0.04);
  --shadow-card-strong: 0 20px 60px rgba(10, 14, 42, 0.1);
  --button-glow: inset 8px 0 10px rgba(83, 24, 235, 0.35), inset 0 2px 10px rgba(146, 121, 253, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

p, h1, h2, h3, h4, dl, dd, ol, ul {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

/* Page background  -  soft dot pattern + glow accents */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-bg-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(102, 67, 246, 0.12), transparent 50%),
    radial-gradient(1px 1px at 65% 12%, rgba(102, 67, 246, 0.08), transparent 50%),
    radial-gradient(1px 1px at 85% 45%, rgba(102, 67, 246, 0.1), transparent 50%),
    radial-gradient(1px 1px at 12% 65%, rgba(102, 67, 246, 0.07), transparent 50%),
    radial-gradient(1px 1px at 45% 78%, rgba(102, 67, 246, 0.1), transparent 50%);
  background-size: 1200px 900px;
  background-repeat: repeat;
  opacity: 0.7;
}

.page-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.55;
}

.page-bg-glow-1 {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(173, 153, 255, 0.45) 0%, transparent 70%);
}

.page-bg-glow-2 {
  top: 30%;
  right: -250px;
  background: radial-gradient(circle, rgba(244, 178, 255, 0.35) 0%, transparent 70%);
}

/* Header / Navigation - floating pill */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 8px 16px;
  background: transparent;
  border: 0;
  pointer-events: none;
}

.site-header-inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 14px 9px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  backdrop-filter: saturate(180%) blur(28px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 30px rgba(10, 14, 42, 0.06),
    0 2px 6px rgba(10, 14, 42, 0.04);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled .site-header-inner {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 38px rgba(10, 14, 42, 0.08),
    0 3px 8px rgba(10, 14, 42, 0.05);
}

/* legacy scrolled rule no longer applies on the bar itself */
.site-header.is-scrolled {
  background: transparent;
}

.site-nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: start;
}

.site-nav-left a {
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.15s ease, background 0.15s ease;
}

.site-nav-left a:hover,
.site-nav-left a[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-tint);
}

.site-nav-left a[aria-current="page"] {
  font-weight: 600;
}

.mobile-nav a[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-tint);
  font-weight: 600;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Right-side actions cluster (pill + behance + cta) */
.site-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Status pill */
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  background: rgba(30, 167, 111, 0.1);
  border: 1px solid rgba(30, 167, 111, 0.22);
  color: #1a7a52;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-pill-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1ea76f;
  box-shadow: 0 0 0 3px rgba(30, 167, 111, 0.18);
}

.brand-pill-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: rgba(30, 167, 111, 0.45);
  animation: pulseDot 2.2s ease-out infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Behance link in header */
.header-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 2px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.18s ease;
}

.header-link::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 16px;
  bottom: 4px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.header-link:hover {
  color: var(--primary);
}

.header-link:hover::after {
  transform: scaleX(1);
}

.header-link-arrow {
  display: inline-block;
  font-size: 12px;
  transform: translateY(-1px);
  transition: transform 0.22s ease;
}

.header-link:hover .header-link-arrow {
  transform: translate(2px, -3px);
}

/* Premium gradient CTA - full pill */
.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(120deg, #6643f6 0%, #5318eb 60%, #8a5cff 100%);
  color: #ffffff;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow:
    0 8px 22px rgba(102, 67, 246, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 45%);
  pointer-events: none;
}

.header-cta > * {
  position: relative;
  z-index: 1;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px rgba(102, 67, 246, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.mobile-nav {
  display: none;
}

/* Buttons - full pill radius */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.button-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: var(--button-glow), 0 8px 24px rgba(102, 67, 246, 0.25);
}

.button-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--button-glow), 0 12px 30px rgba(102, 67, 246, 0.32);
}

.button-secondary {
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--border-strong);
}

.button-secondary:hover {
  background: var(--surface-muted);
  border-color: var(--primary);
  color: var(--primary);
}

.button-icon {
  padding: 12px;
  gap: 0;
  border-radius: 999px;
}

.button-with-icon {
  padding-left: 18px;
}

.button-sm {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 999px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 14, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 14, 42, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 35%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 35%, #000 0%, transparent 75%);
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1100px;
  height: 600px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(173, 153, 255, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 30%, rgba(244, 178, 255, 0.2) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-top: 60px;
}

/* Scarcity / availability indicator — minimal: dot + label, no fill/border */
.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0d6b48;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.hero-availability-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1ea76f;
  box-shadow: 0 0 0 3px rgba(30, 167, 111, 0.2);
}

.hero-availability-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: rgba(30, 167, 111, 0.5);
  animation: pulseDot 2.2s ease-out infinite;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-tagline-text {
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-pills {
  display: inline-flex;
  gap: 6px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  box-shadow: 0 2px 8px rgba(10, 14, 42, 0.04);
}

h1 {
  max-width: 1062px;
  color: var(--text);
  font-size: 62px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(97.4deg, #6643f6 30%, #ad99ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-lead {
  max-width: 542px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.hero-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-top: 80px;
  width: 100%;
  max-width: 1200px;
}

.logo-item {
  color: rgba(10, 14, 42, 0.4);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.logo-item:hover {
  opacity: 1;
  color: var(--text-soft);
}

/* Sections */
.section {
  position: relative;
  padding: 96px 24px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto 56px;
}

.section-heading.center {
  text-align: center;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(10, 14, 42, 0.04);
}

.section-heading:not(.center) .eyebrow {
  align-self: flex-start;
}

h2 {
  max-width: 760px;
  color: var(--text);
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-heading.center h2 {
  margin: 0 auto;
}

.section-lead {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.section-heading.center .section-lead {
  margin: 0 auto;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-strong);
}

.service-card-lg {
  grid-column: span 3;
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 295px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.service-card:not(.service-card-lg) {
  grid-column: span 2;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-content: start;
  justify-content: space-between;
}

.service-card-lg .service-card-body {
  padding: 32px;
  gap: 18px;
  width: 280px;
}

.service-card-body-sm {
  padding: 0 24px 24px;
  gap: 8px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--primary-tint);
  border: 1px solid var(--border);
  color: var(--primary);
  margin-bottom: 4px;
}

.service-card h3 {
  color: var(--text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-card-body-sm h3 {
  font-size: 20px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface-muted);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  align-self: flex-start;
  margin-top: 4px;
  transition: color 0.18s ease, background 0.18s ease;
}

.text-link:hover {
  color: var(--primary);
  background: var(--primary-tint);
}

.text-link-arrow {
  display: inline-flex;
  color: currentColor;
}

.service-card-art {
  position: relative;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
}

.service-card:not(.service-card-lg) .service-card-art {
  margin: 24px 24px 16px;
  min-height: 180px;
  border-radius: 14px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
}

/* Card 1 - Website Dev: browser/window mockup */
.service-card-art-erp {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 38px 0 0 0;
  margin-right: -36px;
}

.mock-window {
  width: 100%;
  max-width: 363px;
  height: 280px;
  border-radius: 18px 0 0 0;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-right: 0;
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.mock-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot-red { background: #ff5f57; }
.mock-dot-yellow { background: #febc2e; }
.mock-dot-green { background: #28c840; }

.mock-url {
  flex: 1;
  height: 16px;
  margin-left: 12px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.mock-window-body {
  flex: 1;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.mock-window-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-window-lines span {
  height: 8px;
  border-radius: 6px;
  background: #e6e6f0;
}

.mock-window-lines span:nth-child(1) { width: 100%; }
.mock-window-lines span:nth-child(2) { width: 92%; }
.mock-window-lines span:nth-child(3) { width: 70%; }

/* Card 2 - UI/UX Design: phone/dashboard mockup */
.service-card-art-ui {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 46px 16px 0 0;
}

.mock-phone {
  width: 100%;
  max-width: 262px;
  height: 280px;
  border-radius: 22px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
  overflow: hidden;
}

.mock-phone-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  flex-shrink: 0;
}

.mock-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-lines span {
  height: 8px;
  border-radius: 6px;
  background: #e6e6f0;
}

.mock-lines span:nth-child(1) { width: 48px; }
.mock-lines span:nth-child(2) { width: 95px; }

.mock-phone-content {
  height: 100px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 30px;
}

.mock-phone-content span {
  height: 6px;
  border-radius: 6px;
  background: #e6e6f0;
}

.mock-phone-content span:nth-child(1) { width: 34px; }
.mock-phone-content span:nth-child(2) { width: 100%; }
.mock-phone-content span:nth-child(3) { width: 60px; }

.mock-phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mock-phone-grid span {
  aspect-ratio: 1;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
}

/* Card 3 - Social Marketing: orbiting social icons */
.service-card-art-social {
  display: grid;
  place-items: center;
  padding: 28px 0 12px;
  min-height: 220px;
}

.social-orbit {
  position: relative;
  width: 220px;
  height: 220px;
}

.orbit-ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1.5px dashed rgba(102, 67, 246, 0.2);
}

.orbit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  margin: -65px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(173, 153, 255, 0.45) 0%, rgba(173, 153, 255, 0) 70%);
  filter: blur(10px);
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  margin: -39px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--primary-soft), var(--primary));
  border: 1.5px solid #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(102, 67, 246, 0.3);
}

.orbit-portrait {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0%, #ffffff 28%, transparent 30%),
    linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.7) 55%, rgba(255, 255, 255, 0.4) 100%);
  position: relative;
}

.orbit-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(10, 14, 42, 0.15);
}

.orbit-icon-x {
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0e2a;
}

.orbit-icon-pin {
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  background: #e60023;
}

.orbit-icon-discord {
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: #5865f2;
}

.orbit-icon-fb {
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  background: #1877f2;
}

/* Card 4 - Product Design: stacked logos */
.service-card-art-product {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-head {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-head-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
}

.product-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.product-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  flex-shrink: 0;
}

.product-icon-linear { background: linear-gradient(135deg, #ffd84c, #f2a93b); }
.product-icon-voda { background: #e60023; }
.product-icon-zen { background: #03363d; }

.product-row-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.product-row-title {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.product-row-sub {
  color: var(--text-dim);
  font-size: 10px;
}

/* Card 5 - Logo design & motions: tool grid */
.service-card-art-logo {
  display: grid;
  place-items: center;
  padding: 20px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 48px);
  grid-template-rows: repeat(2, 48px);
  gap: 14px;
}

.tool {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  box-shadow: 0 2px 6px rgba(10, 14, 42, 0.04);
}

.tool-red {
  background: linear-gradient(160deg, #ff5959, #c93434);
  border-color: rgba(255, 89, 89, 0.4);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 89, 89, 0.3);
}

.tool-pink {
  background: linear-gradient(160deg, #ff8ad8, #e14ee9);
  border-color: rgba(225, 78, 233, 0.4);
  color: #fff;
  box-shadow: 0 8px 24px rgba(225, 78, 233, 0.35);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.stat-num {
  color: var(--text);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.how-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.how-work-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 24px;
}

.how-work-head h3 {
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.how-work-head p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.how-work-head .button {
  align-self: flex-start;
  margin-top: 4px;
}

.how-work-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.how-work-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-tint);
  color: var(--primary);
}

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-strong);
}

.why-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-tint);
  color: var(--primary);
  margin-bottom: 4px;
}

.why-card h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.why-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Work / Portfolio */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.work-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-strong);
}

.work-card-link {
  display: block;
  color: inherit;
}

.work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 12px 12px 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #f0ecff, #fafaff);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Real Behance cover image */
.work-thumb-real {
  background: #f4f4fa;
}

.work-thumb-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-card:hover .work-thumb-real img {
  transform: scale(1.04);
}

.work-meta {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-meta h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.work-meta p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.4;
}

.work-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.work-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(-45deg);
}

.work-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  text-align: center;
}

.work-foot-credit {
  margin: 0;
  color: var(--text-dim);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Pricing */
.price-toggle {
  display: inline-flex;
  padding: 4px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
}

.price-toggle button {
  padding: 8px 20px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.price-toggle button.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(102, 67, 246, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.price-card-featured {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-color: transparent;
  box-shadow: 0 24px 70px rgba(102, 67, 246, 0.35);
  color: #ffffff;
}

.price-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-name {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.price-card-featured .plan-name {
  color: #ffffff;
}

.plan-pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.price-card-featured .plan-pill {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.plan-tag {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.price-card-featured .plan-tag {
  color: rgba(255, 255, 255, 0.8);
}

.plan-price {
  color: var(--text);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-card-featured .plan-price {
  color: #ffffff;
}

.plan-cycle {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 400;
}

.price-card-featured .plan-cycle {
  color: rgba(255, 255, 255, 0.7);
}

.plan-price-custom {
  background: linear-gradient(97deg, var(--primary), var(--primary-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.plan-note {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.5;
}

.price-card-featured .plan-note {
  color: rgba(255, 255, 255, 0.7);
}

.plan-cta {
  width: 100%;
  margin-top: 4px;
  padding: 12px 16px;
  font-size: 15px;
}

.price-card-featured .plan-cta {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-card-featured .plan-cta:hover {
  background: #f4f4fa;
  color: var(--primary-deep);
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.price-card-featured .plan-list {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.plan-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.price-card-featured .plan-list li {
  color: rgba(255, 255, 255, 0.92);
}

.plan-list li::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236643f6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.price-card-featured .plan-list li::before {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* FAQ */
.faq {
  padding-bottom: 64px;
}

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 8px;
  text-align: left;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-toggle::before {
  width: 16px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1.5px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.faq-q[aria-expanded="true"] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-q[aria-expanded="true"] + .faq-a {
  max-height: 240px;
}

.faq-a p {
  padding: 0 8px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 720px;
}

/* Reviews */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.review-tag {
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.review-quote {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.review-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, #6643f6, #ad99ff); }
.avatar-2 { background: linear-gradient(135deg, #e14ee9, #6643f6); }
.avatar-3 { background: linear-gradient(135deg, #41c7d9, #6643f6); }
.avatar-4 { background: linear-gradient(135deg, #52c994, #6643f6); }

.review-author {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.review-role {
  color: var(--text-dim);
  font-size: 12px;
}

/* CTA */
.cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-head {
  max-width: var(--max);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.cta-head h2 {
  max-width: 620px;
  font-size: 52px;
}

.cta-head p {
  grid-column: 1 / 2;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.cta-actions {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: end;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.cta-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.cta-step-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-tint);
  color: var(--primary);
  margin-bottom: 4px;
}

.cta-step h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.cta-step p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 80px 24px 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, var(--bg-deep));
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 240px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.brand-footer .brand-name {
  font-size: 22px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-h {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-contact {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-h {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-watermark {
  position: relative;
  margin: 56px auto 24px;
  max-width: var(--max);
  font-size: 200px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(102, 67, 246, 0.12) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  user-select: none;
  pointer-events: none;
}

.footer-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 1280px) {
  .brand-pill {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-header-inner {
    padding: 16px 32px;
  }

  .header-link {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-lg,
  .service-card:not(.service-card-lg) {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .site-header {
    padding: 6px 12px;
  }

  .site-header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 8px 10px 8px 18px;
    gap: 12px;
  }

  .site-nav-left,
  .header-cta,
  .site-actions {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
    pointer-events: auto;
    margin: 10px 6px 0;
    padding: 10px 12px 14px;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    backdrop-filter: saturate(180%) blur(24px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      0 16px 38px rgba(10, 14, 42, 0.1),
      0 3px 8px rgba(10, 14, 42, 0.06);
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-nav a:hover {
    background: var(--surface-muted);
    color: var(--primary);
  }

  .mobile-nav-cta {
    margin-top: 8px;
    padding: 14px 18px !important;
    text-align: center;
    border-radius: 999px !important;
    background: linear-gradient(120deg, #6643f6 0%, #5318eb 60%, #8a5cff 100%) !important;
    color: #fff !important;
    box-shadow:
      0 10px 24px rgba(102, 67, 246, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
  }

  .hero {
    padding: 40px 20px 80px;
  }

  .hero-inner {
    padding-top: 24px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.1;
  }

  .hero-logos {
    gap: 32px;
    margin-top: 56px;
  }

  .logo-item {
    font-size: 18px;
  }

  .section {
    padding: 64px 20px;
  }

  h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .how-work {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-work-head {
    padding-right: 0;
  }

  .cta-head {
    grid-template-columns: 1fr;
  }

  .cta-head h2 {
    font-size: 36px;
  }

  .cta-actions {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-watermark {
    font-size: 120px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-tagline {
    flex-direction: column;
    gap: 8px;
  }

  .services-grid,
  .why-grid,
  .work-grid,
  .pricing-grid,
  .reviews-track,
  .cta-steps {
    grid-template-columns: 1fr;
  }

  /* Large service cards keep a 2-column (text | art) grid by default.
     On phones that squeezes the decorative mock into a thin sliver and
     leaves a big blank strip, so stack the body over the art instead. */
  .service-card-lg {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-card-lg .service-card-body {
    width: auto;
  }

  .service-card-lg .service-card-art {
    min-height: 200px;
    margin: 0 24px 24px;
    border-radius: 14px;
    overflow: hidden;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card {
    padding: 24px;
  }

  .stat-num {
    font-size: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-watermark {
    font-size: 80px;
  }

  .price-card {
    padding: 24px;
  }

  .plan-price {
    font-size: 32px;
  }

  .button {
    font-size: 16px;
    padding: 12px 18px;
  }
}

/* ============================================================
   Dedicated page hero - smaller banner used on About / Work /
   Service / Pricing / Contact pages.
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 24px 70px;
}

/* Decorative background for every dedicated-page hero */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 14, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 14, 42, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 65% 70% at 50% 35%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 65% 70% at 50% 35%, #000 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
  width: 1100px;
  height: 600px;
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(173, 153, 255, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 30% 30%, rgba(244, 178, 255, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

/* Per-page tinted hero accent (override .page-hero::after gradients) */
.page-hero-work::after {
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(102, 67, 246, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 70% 30%, rgba(65, 199, 217, 0.18) 0%, transparent 70%);
}

.page-hero-service::after {
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(102, 67, 246, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 30% 30%, rgba(82, 201, 148, 0.16) 0%, transparent 70%);
}

.page-hero-pricing::after {
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(225, 78, 233, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 70% 30%, rgba(102, 67, 246, 0.24) 0%, transparent 70%);
}

.page-hero-contact::after {
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(65, 199, 217, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 30% 30%, rgba(102, 67, 246, 0.24) 0%, transparent 70%);
}

.page-hero .eyebrow {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}

.page-hero-lead {
  max-width: 640px;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.page-hero .gradient-text {
  background: linear-gradient(120deg, #6643f6 0%, #8a5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 720px) {
  .page-hero {
    padding: 100px 18px 48px;
  }
  .page-hero h1 {
    font-size: 38px;
  }
  .page-hero-lead {
    font-size: 16px;
  }
}

/* ============================================================
   Dedicated-page utility blocks
   ============================================================ */

/* Two-column layout for content pages */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.split-narrow {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

@media (max-width: 880px) {
  .split,
  .split-narrow {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Prose blocks (about, FAQ etc.) */
.prose {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

/* Stat blocks */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.stat-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.stat-card .stat-num {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stat-card .stat-label {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 880px) {
  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Detailed service block for service.html */
.service-detailed {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  column-gap: 44px;
  row-gap: 16px;
  align-items: start;
  max-width: var(--max);
  margin-inline: auto;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.service-detailed + .service-detailed {
  margin-top: 18px;
}

/* Offset anchored jumps so the floating header doesn't cover the target */
.service-detailed[id],
#newsletter {
  scroll-margin-top: 100px;
}

.service-detailed h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}

.service-detailed-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detailed-meta dt {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detailed-meta dd {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  margin: 2px 0 0;
}

.service-detailed-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
}

.service-detailed-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.service-detailed-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 880px) {
  .service-detailed {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 22px;
  }
  .service-detailed h3 {
    font-size: 24px;
  }
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-item[open] {
  background: var(--bg-card-soft);
  border-color: var(--primary-soft);
}

.faq-item p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-block h3 {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-info-block a,
.contact-info-block p {
  color: var(--text-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-info-block a:hover {
  color: var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 67, 246, 0.14);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .button {
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 880px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 22px;
  }
}

/* Pricing-page card overrides (additive on .price-card) */
.plan-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
}

.plan-card-featured {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7f5ff 100%);
  border: 1px solid var(--primary-soft);
  box-shadow: 0 24px 64px rgba(102, 67, 246, 0.18);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-head .plan-name {
  display: block;
  margin: 0 0 6px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.plan-blurb {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-price-row .plan-price {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}

.plan-price-row .plan-cycle {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.plan-features li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--primary-tint);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18'><path d='m6 12 4 4 8-9' stroke='%236643f6' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.plan-card .plan-cta {
  align-self: stretch;
  margin-top: auto;
}

/* Pricing comparison table */
.compare-table-wrap {
  max-width: var(--max);
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.compare-table thead th {
  padding: 18px 20px;
  background: var(--bg-card-strong);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--text-soft);
}

.compare-table tbody td,
.compare-table tbody th {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.compare-table tbody td {
  font-weight: 500;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table tbody tr:hover {
  background: var(--bg-card-soft);
}

/* CTA band shown near the bottom of dedicated pages */
.cta-band {
  position: relative;
  padding: 70px 24px 90px;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(173, 153, 255, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card-strong);
  text-align: center;
}

.cta-band-inner .hero-actions {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .cta-band-inner {
    padding: 32px 22px;
  }
}

/* Process steps - simple 3-column grid used on Service page */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.process-steps article {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  min-height: 200px;
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-steps h3 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-steps p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Form note line */
.form-note {
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.5;
}

/* Work-page filter chips */
.work-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: var(--max);
  margin: 0 auto 32px;
}

.work-filters .chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.work-filters .chip:hover {
  border-color: var(--primary-soft);
  color: var(--primary);
}

.work-filters .chip.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* ============================================================
   PAGE-SPECIFIC VISUAL COMPONENTS
   ============================================================ */

/* ----- Founder card (About + Contact pages) ----- */
.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto;
}

.founder-avatar {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6643f6 0%, #8a5cff 60%, #f4b2ff 100%);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 28px rgba(102, 67, 246, 0.35);
  flex-shrink: 0;
}

.founder-avatar::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #1ea76f;
  border: 3px solid #fff;
  z-index: 1;
}

/* Real photo inside the avatar (sits above the gradient fallback, under the dot) */
.founder-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}

.founder-meta .name {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.founder-meta .role {
  margin: 2px 0 12px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.founder-meta blockquote {
  margin: 0;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: 14px;
  border-left: 2px solid var(--primary);
}

@media (max-width: 600px) {
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-avatar {
    margin: 0 auto;
  }
  .founder-meta blockquote {
    padding-left: 0;
    border-left: 0;
    border-top: 2px solid var(--primary);
    padding-top: 14px;
  }
}

/* ----- Visual icons inside stat-card / plan features ----- */
.stat-icon,
.plan-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary);
}

.plan-icon {
  background: linear-gradient(135deg, var(--primary-tint) 0%, rgba(173, 153, 255, 0.35) 100%);
}

.plan-card-featured .plan-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #8a5cff 100%);
  color: #ffffff;
}

/* ----- "Ribbon" decoration on the featured pricing plan ----- */
.plan-card-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(102, 67, 246, 0.5), rgba(225, 78, 233, 0.5), rgba(102, 67, 246, 0.5));
  z-index: -1;
  filter: blur(10px);
  opacity: 0.4;
}

/* ----- Service-page art alongside each .service-detailed ----- */
.service-art {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(173, 153, 255, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f7f5ff 100%);
  border: 1px solid var(--border);
  overflow: hidden;
}

.service-art-window,
.service-art-phone,
.service-art-cards {
  width: 100%;
  max-width: 320px;
}

/* Mini browser window for service art */
.svc-window {
  position: relative;
  padding: 0;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  box-shadow: 0 18px 40px rgba(10, 14, 42, 0.1);
  overflow: hidden;
}

.svc-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  background: #f9f9fc;
}

.svc-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d6d6df;
}

.svc-window-bar span:nth-child(1) { background: #ff5f57; }
.svc-window-bar span:nth-child(2) { background: #febc2e; }
.svc-window-bar span:nth-child(3) { background: #28c840; }

.svc-window-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: var(--bg-card-strong);
}

.svc-row .svc-thumb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #8a5cff);
}

.svc-row .svc-bars {
  flex: 1;
  display: grid;
  gap: 6px;
}

.svc-row .svc-bars span {
  height: 6px;
  border-radius: 4px;
  background: var(--primary-soft);
}

.svc-row .svc-bars span:nth-child(2) {
  width: 60%;
  background: var(--border-strong);
}

.svc-row .svc-tag {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Mini phone for service art */
.svc-phone {
  position: relative;
  width: 180px;
  height: 280px;
  margin: 0 auto;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 40px rgba(10, 14, 42, 0.12);
  padding: 18px 14px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.svc-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  border-radius: 999px;
  background: var(--border-strong);
}

.svc-phone-card {
  padding: 12px;
  border-radius: 10px;
  background: var(--bg-card-strong);
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.svc-phone-card-strong {
  background: linear-gradient(135deg, var(--primary) 0%, #8a5cff 100%);
  color: #ffffff;
}

.svc-phone-card span {
  height: 5px;
  border-radius: 4px;
  background: var(--border-strong);
}

.svc-phone-card span:first-child {
  width: 60%;
}

.svc-phone-card-strong span {
  background: rgba(255, 255, 255, 0.5);
}

/* Stat card with diagram for service-art-cards */
.svc-card-stack {
  display: grid;
  gap: 10px;
}

.svc-card {
  padding: 14px 16px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(10, 14, 42, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary-tint);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.svc-card-body {
  flex: 1;
  display: grid;
  gap: 4px;
}

.svc-card-body span {
  height: 5px;
  border-radius: 4px;
  background: var(--border-strong);
}

.svc-card-body span:first-child {
  width: 70%;
  background: var(--text);
}

/* Art spans full width as a banner on top of each block.
   This works for normal blocks (DOM = art, meta, content) AND for
   .service-reverse blocks (DOM = meta, content, art) — in the reverse
   case the art lands on the second row, naturally creating a visual
   rhythm where the art alternates top/bottom. */
/* Art fills one whole column (both rows); the eyebrow/title/meta div
   and the description/list div stack in the other column. Normal blocks
   put the art on the left, .service-reverse puts it on the right — so the
   eye zig-zags down the page. */
.service-detailed .service-art {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: stretch;
  min-height: 300px;
}

.service-detailed.service-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-detailed.service-reverse .service-art {
  grid-column: 2;
}

@media (max-width: 880px) {
  .service-detailed,
  .service-detailed.service-reverse {
    grid-template-columns: 1fr;
    padding: 24px;
    row-gap: 20px;
  }
  /* On mobile every block stacks art-on-top for a consistent rhythm. */
  .service-detailed .service-art,
  .service-detailed.service-reverse .service-art {
    grid-column: 1;
    grid-row: auto;
    order: -1;
    min-height: 200px;
  }
}

/* ----- Featured project hero on /work ----- */
.work-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto 56px;
  padding: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card-strong);
  overflow: hidden;
}

.work-featured-media {
  position: relative;
  min-height: 320px;
  background: #f0ecff;
}

.work-featured-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-featured:hover .work-featured-media img {
  transform: scale(1.04);
}

.work-featured-body {
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.work-featured-body .eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-featured-body h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}

.work-featured-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.work-featured-stats {
  display: flex;
  gap: 18px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.work-featured-stats > div .num {
  display: block;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.work-featured-stats > div .lbl {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .work-featured {
    grid-template-columns: 1fr;
  }
  .work-featured-body {
    padding: 24px 22px 28px;
  }
  .work-featured-body h2 {
    font-size: 24px;
  }
  .work-featured-media {
    min-height: 240px;
  }
}

/* ----- Calendar widget mock (Contact page) ----- */
.cal-widget {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.cal-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.cal-widget-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}

.cal-widget-head .cal-month {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.cal-grid .day-label {
  text-align: center;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 0;
}

.cal-grid .day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-card-strong);
}

.cal-grid .day.dim {
  color: var(--text-dim);
  background: transparent;
}

.cal-grid .day.avail {
  background: rgba(30, 167, 111, 0.1);
  color: #0d6b48;
}

.cal-grid .day.avail::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #1ea76f;
  margin-top: 2px;
}

.cal-grid .day.selected {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(102, 67, 246, 0.35);
}

.cal-foot {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.cal-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg-card-strong);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}

.cal-slot.is-on {
  background: var(--primary-tint);
  color: var(--primary);
  font-weight: 600;
}

.cal-slot .cal-tz {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ----- World-clock band (Contact page) ----- */
.clock-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 20px auto 0;
}

.clock-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.clock-face {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--bg-card-strong);
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
}

.clock-face::before,
.clock-face::after {
  content: "";
  position: absolute;
  background: var(--text);
  border-radius: 2px;
  left: 50%;
  top: 50%;
  transform-origin: 50% 0;
}

.clock-face::before {
  width: 2px;
  height: 12px;
  margin-left: -1px;
  transform: rotate(35deg);
}

.clock-face::after {
  width: 2px;
  height: 16px;
  margin-left: -1px;
  margin-top: -2px;
  transform: rotate(-110deg);
}

.clock-meta {
  display: grid;
  gap: 2px;
}

.clock-meta .zone {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.clock-meta .status {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.clock-meta .status.is-online {
  color: #0d6b48;
}

@media (max-width: 720px) {
  .clock-row {
    grid-template-columns: 1fr;
  }
}

/* ----- Visual stat-card icons row (About) ----- */
.stat-card-visual {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
}

.stat-card-visual .stat-icon {
  margin-bottom: 0;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.stat-card-visual .stat-text {
  display: grid;
  gap: 4px;
}

/* ============================================================
   BLOG — index + article + cards
   ============================================================ */

/* Hero variant tint */
.page-hero-blog::after {
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(225, 78, 233, 0.26) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 30% 30%, rgba(102, 67, 246, 0.24) 0%, transparent 70%);
}

/* ----- Featured post tile (blog index) ----- */
.post-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card-strong);
  overflow: hidden;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
}

.post-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(10, 14, 42, 0.12);
}

.post-featured-art {
  position: relative;
  min-height: 360px;
  background:
    radial-gradient(ellipse 60% 80% at 30% 20%, rgba(102, 67, 246, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 70%, rgba(225, 78, 233, 0.22) 0%, transparent 60%),
    linear-gradient(135deg, #f7f5ff 0%, #fafaff 100%);
  display: grid;
  place-items: center;
  padding: 38px;
  overflow: hidden;
}

.post-featured-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.post-featured-shape-1 {
  width: 220px;
  height: 220px;
  top: -40px;
  left: -50px;
  background: rgba(173, 153, 255, 0.5);
}

.post-featured-shape-2 {
  width: 180px;
  height: 180px;
  bottom: -30px;
  right: -30px;
  background: rgba(244, 178, 255, 0.45);
}

.post-featured-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.post-featured-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
}

.post-featured-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.post-featured-body h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.post-featured-body p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ----- Post grid ----- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 1040px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-soft);
  box-shadow: 0 26px 60px rgba(10, 14, 42, 0.1);
}

.post-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  height: 100%;
}

.post-card-art {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #f0ecff 0%, #fafaff 100%);
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
}

.post-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  flex: 1;
}

.post-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.post-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}

.post-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}

.post-meta .post-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--text-dim);
}

.post-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-author strong {
  color: var(--text);
  font-weight: 600;
}

.post-author-avatar {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6643f6 0%, #8a5cff 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Card art variants */
.post-art-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 120px;
  height: 120px;
}

.post-art-grid > div {
  border-radius: 16px;
}

.post-art-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 200px;
  height: 130px;
}

.post-art-bars > div {
  flex: 1;
  background: linear-gradient(180deg, #6643f6 0%, #8a5cff 100%);
  border-radius: 10px 10px 0 0;
}

.post-art-bars > div:nth-child(even) {
  background: linear-gradient(180deg, #e14ee9 0%, #f4b2ff 100%);
}

.post-art-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 220px;
}

.post-art-bubble {
  height: 18px;
  width: 60%;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(10, 14, 42, 0.05);
}

.post-art-bubble:nth-child(2) {
  width: 75%;
}

.post-art-bubble.post-art-bubble-right {
  align-self: flex-end;
  background: linear-gradient(135deg, #6643f6, #8a5cff);
  border-color: transparent;
  width: 55%;
}

.post-art-stack {
  position: relative;
  width: 140px;
  height: 130px;
}

.post-art-stack > div {
  position: absolute;
  left: 0; right: 0;
  height: 30px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  box-shadow: 0 8px 20px rgba(10, 14, 42, 0.06);
}

.post-art-stack > div:nth-child(1) {
  top: 0;
  background: linear-gradient(135deg, #6643f6, #8a5cff);
  border-color: transparent;
}

.post-art-stack > div:nth-child(2) {
  top: 38px;
}

.post-art-stack > div:nth-child(3) {
  top: 76px;
}

.post-art-orb {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 40%),
    linear-gradient(135deg, #6643f6 0%, #e14ee9 100%);
  box-shadow: 0 20px 40px rgba(102, 67, 246, 0.4);
  position: relative;
}

.post-art-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.2), transparent 50%);
}

.post-art-doc {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 160px;
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  box-shadow: 0 10px 22px rgba(10, 14, 42, 0.06);
}

.post-art-doc > div {
  height: 7px;
  border-radius: 4px;
  background: var(--border-strong);
}

.post-art-doc > div:nth-child(1) {
  width: 70%;
  background: var(--primary);
}

.post-art-doc > div:nth-child(3) {
  width: 60%;
}

.post-art-doc > div:nth-child(4) {
  width: 90%;
}

/* ----- Newsletter signup band ----- */
.newsletter-band {
  padding: 60px 24px 100px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(102, 67, 246, 0.16) 0%, transparent 65%),
    linear-gradient(135deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card-strong);
}

.newsletter-card h2 {
  margin: 8px 0 6px;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}

.newsletter-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 67, 246, 0.14);
}

@media (max-width: 880px) {
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .button {
    width: 100%;
  }
}

/* ----- Article (single blog post) ----- */
.post {
  position: relative;
}

.post-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 50px;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(102, 67, 246, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
}

.post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 14, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 14, 42, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 65% 70% at 50% 35%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 65% 70% at 50% 35%, #000 0%, transparent 70%);
  pointer-events: none;
}

.post-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  align-items: center;
}

.post-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.post-breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.post-breadcrumb a:hover {
  text-decoration: underline;
}

.post-hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  max-width: 720px;
}

.post-lead {
  max-width: 620px;
  margin: 0;
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.55;
}

.post-hero-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.post-hero-meta .post-author-avatar {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.post-hero-meta .post-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--text-dim);
}

@media (max-width: 720px) {
  .post-hero {
    padding: 100px 18px 40px;
  }
  .post-hero h1 {
    font-size: 32px;
  }
  .post-lead {
    font-size: 16px;
  }
}

/* ----- Article body typography (prose) ----- */
.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  color: var(--text-soft);
  font-size: 17.5px;
  line-height: 1.75;
}

.post-body > * + * {
  margin-top: 1.2em;
}

.post-body p {
  margin: 0;
}

.post-body .post-drop {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
}

.post-body .post-drop strong {
  color: var(--text);
  font-weight: 700;
}

.post-body h2 {
  margin-top: 2.2em;
  margin-bottom: 0.4em;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.post-body h3 {
  margin-top: 1.5em;
  margin-bottom: 0.4em;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.post-body strong {
  color: var(--text);
  font-weight: 700;
}

.post-body em {
  font-style: italic;
}

.post-body a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(102, 67, 246, 0.35);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.post-body a:hover {
  color: var(--primary-deep);
  text-decoration-color: currentColor;
}

.post-body ul,
.post-body ol {
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-body ul li,
.post-body ol li {
  position: relative;
  padding-left: 28px;
  list-style: none;
}

.post-body ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.post-body ol {
  counter-reset: post-ol;
}

.post-body ol li {
  counter-increment: post-ol;
}

.post-body ol li::before {
  content: counter(post-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.post-body code {
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--bg-card-strong);
  border: 1px solid var(--border);
  color: var(--primary);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.88em;
}

.post-body hr {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.post-callout {
  margin: 1.6em 0;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(102, 67, 246, 0.14) 0%, transparent 65%),
    linear-gradient(135deg, #f7f5ff 0%, #fafaff 100%);
  border: 1px solid var(--primary-soft);
  border-left: 4px solid var(--primary);
}

.post-callout p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .post-body {
    padding: 36px 18px 60px;
    font-size: 16.5px;
    line-height: 1.7;
  }
  .post-body .post-drop {
    font-size: 18px;
  }
  .post-body h2 {
    font-size: 24px;
  }
}

/* ============================================================
   Accessibility / a11y polish
   ============================================================ */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--primary-soft);
  outline-offset: 2px;
}

/* Universal focus ring */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 6px;
}

a:focus-visible,
button:focus-visible {
  outline-offset: 3px;
}

/* Visually-hidden helper */
.visually-hidden,
.visually-hidden-h2 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Responsive fine-tuning (senior polish)
   ============================================================ */

/* Tablet — about/work/service/pricing/contact heroes */
@media (max-width: 1040px) {
  .page-hero {
    padding: 110px 24px 56px;
  }
  .page-hero h1 {
    font-size: 48px;
  }
  .post-featured {
    grid-template-columns: 1fr;
  }
  .post-featured-art {
    min-height: 280px;
  }
  .post-featured-body {
    padding: 28px 26px 32px;
  }
  .post-featured-body h3 {
    font-size: 24px;
  }
}

/* Phone */
@media (max-width: 640px) {
  .page-hero h1 {
    font-size: 36px;
  }
  .page-hero-lead {
    font-size: 15.5px;
  }
  .post-featured-art {
    min-height: 220px;
    padding: 22px;
  }
  .post-featured-mock {
    max-width: 280px;
  }
  .newsletter-card h2 {
    font-size: 22px;
  }
  .stat-card {
    padding: 18px;
  }
  .stat-card .stat-num {
    font-size: 28px;
  }
  .founder-card {
    padding: 22px;
  }
  .founder-avatar {
    width: 72px;
    height: 72px;
    font-size: 22px;
  }
  .service-art {
    padding: 22px;
    min-height: 200px;
  }
  .work-featured {
    margin-bottom: 32px;
  }
  .compare-table {
    font-size: 13px;
  }
  .compare-table thead th,
  .compare-table tbody th,
  .compare-table tbody td {
    padding: 10px 12px;
  }
}

/* Very narrow phones */
@media (max-width: 380px) {
  .page-hero h1,
  .post-hero h1 {
    font-size: 30px;
  }
  .cal-grid .day {
    font-size: 12px;
  }
  .header-cta {
    display: none; /* nav-toggle handles it */
  }
}

/* ----- Sticker / decoration for callouts ----- */
.sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transform: rotate(-4deg);
  z-index: 2;
}

.sticker .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1ea76f;
}

/* ============================================================
   AUDIT / PARTNERS / CAREERS pages
   ============================================================ */

/* Hero tints */
.page-hero-audit::after {
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(82, 201, 148, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 30% 30%, rgba(102, 67, 246, 0.2) 0%, transparent 70%);
}
.page-hero-partners::after {
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(242, 201, 76, 0.26) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 70% 30%, rgba(102, 67, 246, 0.22) 0%, transparent 70%);
}
.page-hero-careers::after {
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(65, 199, 217, 0.26) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 30% 30%, rgba(225, 78, 233, 0.18) 0%, transparent 70%);
}

/* ----- Audit report-card mockup ----- */
.audit-card {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border-strong);
  box-shadow: 0 22px 50px rgba(10, 14, 42, 0.12);
  overflow: hidden;
}

.audit-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, #6643f6 0%, #8a5cff 100%);
  color: #fff;
}

.audit-card-head .audit-title {
  font-size: 14px;
  font-weight: 700;
}

.audit-score {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 800;
}

.audit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
}

.audit-row:last-child { border-bottom: 0; }

.audit-row .audit-label {
  flex: 1;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.audit-grade {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}
.audit-grade.a { background: rgba(30, 167, 111, 0.14); color: #0d6b48; }
.audit-grade.b { background: rgba(242, 201, 76, 0.2); color: #8a6418; }
.audit-grade.c { background: rgba(225, 78, 233, 0.16); color: #8a1a92; }

.audit-bar {
  width: 70px;
  height: 6px;
  border-radius: 999px;
  background: var(--surface-muted);
  overflow: hidden;
}
.audit-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #6643f6, #8a5cff);
}

/* ----- Careers: open-role rows ----- */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
}

.job-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.job-row:hover {
  border-color: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-strong);
}

.job-row .job-info { min-width: 0; }

.job-row .job-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.job-row .job-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.job-tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.job-tag.is-remote {
  background: rgba(30, 167, 111, 0.12);
  color: #0d6b48;
}

@media (max-width: 720px) {
  .job-row {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  .job-row .job-cta {
    justify-self: stretch;
  }
  .job-row .job-cta .button {
    width: 100%;
  }
}

/* ----- Partner tier cards (reuse price-card look, lighter) ----- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.partner-card .partner-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-tint);
  color: var(--primary);
  margin-bottom: 4px;
}

.partner-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.partner-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.partner-card .partner-rate {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.partner-card .partner-rate strong {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 880px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICE OVERVIEW — card grid (service.html)
   ============================================================ */
.svc-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  color: inherit;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.svc-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(102, 67, 246, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.svc-tile:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft);
  box-shadow: 0 26px 60px rgba(10, 14, 42, 0.12);
}

.svc-tile:hover::after { opacity: 1; }

.svc-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-tile-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, #8a5cff 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(102, 67, 246, 0.3);
}

.svc-tile-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.svc-tile h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.2;
}

.svc-tile p {
  flex: 1;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.svc-tile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.svc-chip {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.svc-chip.is-price {
  background: var(--primary-tint);
  color: var(--primary);
}

.svc-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.svc-tile-cta span {
  transition: transform 0.22s ease;
}

.svc-tile:hover .svc-tile-cta span {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .svc-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .svc-tiles { grid-template-columns: 1fr; }
}

/* ============================================================
   PER-SERVICE PAGE
   ============================================================ */
/* Hero meta strip (timeline · price · stack under the hero) */
.svc-meta-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.svc-meta-strip .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.svc-meta-strip .meta-item .meta-k {
  color: var(--text-muted);
  font-weight: 600;
}

/* Breadcrumb (reuse post-breadcrumb styling) */
.svc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}
.svc-breadcrumb a { color: var(--primary); font-weight: 600; }
.svc-breadcrumb a:hover { text-decoration: underline; }

/* "What's included" 2-col checklist */
.svc-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.svc-include {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.svc-include .svc-check {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--primary-tint);
  color: var(--primary);
}

.svc-include .svc-include-body h4 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.svc-include .svc-include-body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .svc-includes { grid-template-columns: 1fr; }
}

/* "Is it a fit?" two cards */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.fit-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.fit-card .fit-badge {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
}
.fit-card.is-good .fit-badge { background: rgba(30, 167, 111, 0.14); color: #0d6b48; }
.fit-card.is-bad .fit-badge { background: rgba(225, 78, 233, 0.14); color: #8a1a92; }

.fit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.55;
  list-style: none;
}

.fit-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 15px;
  font-weight: 800;
}
.fit-card.is-good .fit-list li::before { content: "✓"; color: #1ea76f; }
.fit-card.is-bad .fit-list li::before { content: "—"; color: var(--text-dim); }

@media (max-width: 760px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* Related strip (link cards to blog/work) */
.svc-related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.svc-related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.svc-related-card:hover { border-color: var(--primary-soft); transform: translateY(-2px); }
.svc-related-card .rel-k { color: var(--text-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.svc-related-card h4 { margin: 4px 0 0; font-size: 16px; font-weight: 700; color: var(--text); }
.svc-related-card .rel-arrow { color: var(--primary); font-weight: 700; flex-shrink: 0; }

@media (max-width: 760px) {
  .svc-related { grid-template-columns: 1fr; }
}


/* ============================================================
   FORM SUCCESS BANNER (lead-capture confirmation)
   ============================================================ */
.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(30, 167, 111, 0.16) 0%, transparent 65%),
    linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid rgba(30, 167, 111, 0.4);
  border-left: 4px solid #1ea76f;
  box-shadow: var(--shadow-card);
}
.form-success.is-visible { display: flex; }
.form-success .fs-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(30, 167, 111, 0.14);
  color: #0d6b48;
}
.form-success .fs-text strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.form-success .fs-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Submit-in-progress state */
.button[aria-busy="true"] {
  opacity: 0.7;
  pointer-events: none;
}

/* honeypot — visually + a11y hidden, but present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================================
   404 / error page
   ============================================================ */
.error-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 130px 24px 80px;
  text-align: center;
}
.error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 14, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 14, 42, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 0%, transparent 72%);
  pointer-events: none;
}
.error-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.error-code {
  font-size: 120px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #6643f6 0%, #8a5cff 60%, #e14ee9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.error-hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.error-hero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .error-code { font-size: 84px; }
  .error-hero h1 { font-size: 28px; }
}

/* ============================================================
   Footer legal links (privacy / terms in footer-meta)
   ============================================================ */
.footer-legal {
  display: inline-flex;
  gap: 18px;
  margin-left: 18px;
}
.footer-legal a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}
.footer-legal a:hover { color: var(--primary); }

@media (max-width: 640px) {
  .footer-legal { margin-left: 0; margin-top: 8px; }
}

/* Real photo inside small author avatars (blog) */
.post-author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}
.post-author-avatar:has(img) { background: none; }

/* ============================================================
   Mobile performance optimizations
   Large `filter: blur()` layers and a scroll-sticky
   `backdrop-filter` are the main sources of jank / dropped
   frames on phones, so we lighten them below 880px. The look
   stays close because the glows are already soft radial
   gradients and the header just leans on a more opaque fill.
   ============================================================ */
@media (max-width: 880px) {
  /* Fixed full-viewport glows: drop the 180px blur (extremely
     expensive on mobile GPUs). The radial gradients already
     read as soft glows on their own. */
  .page-bg-glow {
    filter: none;
    opacity: 0.4;
  }

  /* Hero glow: the 40px blur on a 1100px-wide layer is costly;
     the underlying gradient keeps the effect. */
  .hero-glow {
    filter: none;
  }

  /* Sticky header: backdrop-filter is recomputed on every
     scroll frame. Swap it for a more opaque solid fill so the
     bar stays legible without per-frame blur work. */
  .site-header-inner {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.92);
  }

  .site-header.is-scrolled .site-header-inner {
    background: rgba(255, 255, 255, 0.96);
  }
}

/* ============================================================
   V3 REDESIGN LAYER — typography, motion, micro-interactions
   Additive: overrides ride the cascade; nothing above changes.
   ============================================================ */

:root {
  --v3-display: 'Bricolage Grotesque', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --v3-serif: 'Fraunces', Georgia, serif;
  --v3-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --v3-magenta: #e14ee9;
}

/* ---------- Display typography ---------- */
h1, h2, h3 {
  font-family: var(--v3-display);
  font-optical-sizing: auto;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 1.02;
}

h2 {
  letter-spacing: -0.03em;
}

.stat-num,
.plan-price,
.brand-name,
.footer-watermark {
  font-family: var(--v3-display);
  font-optical-sizing: auto;
}

.eyebrow {
  font-family: var(--v3-serif);
  font-style: italic;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* ---------- Hero entrance choreography ---------- */
.hl-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.hl-inner {
  display: inline-block;
}

html.js .hl-inner {
  transform: translateY(112%);
}

html.js.is-loaded .hl-inner {
  animation: v3-line-rise 1s var(--v3-ease) forwards;
}

html.js.is-loaded .hl-line:nth-child(1) .hl-inner { animation-delay: 0.12s; }
html.js.is-loaded .hl-line:nth-child(2) .hl-inner { animation-delay: 0.24s; }

@keyframes v3-line-rise {
  to { transform: translateY(0); }
}

html.js .hero-availability,
html.js .hero-tagline,
html.js .hero-lead,
html.js .hero-actions,
html.js .hero-logos {
  opacity: 0;
}

html.js.is-loaded .hero-availability { animation: v3-fade-up 0.9s var(--v3-ease) 0.05s forwards; }
html.js.is-loaded .hero-tagline { animation: v3-fade-up 0.9s var(--v3-ease) 0.15s forwards; }
html.js.is-loaded .hero-lead { animation: v3-fade-up 0.9s var(--v3-ease) 0.5s forwards; }
html.js.is-loaded .hero-actions { animation: v3-fade-up 0.9s var(--v3-ease) 0.62s forwards; }
html.js.is-loaded .hero-logos { animation: v3-fade-up 0.9s var(--v3-ease) 0.74s forwards; }

@keyframes v3-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero glow gains a slow breathing drift */
.hero-glow {
  animation: v3-glow-drift 18s ease-in-out infinite alternate;
}

@keyframes v3-glow-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(3%, 5%, 0) scale(1.08); }
}

/* ---------- Marquee ---------- */
.v3-marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding-block: 18px;
  background: var(--bg-soft);
}

.v3-marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: v3-marquee-scroll 28s linear infinite;
}

.v3-marquee:hover .v3-marquee-track {
  animation-play-state: paused;
}

.v3-marquee-track span {
  font-family: var(--v3-display);
  font-weight: 600;
  font-size: clamp(17px, 2.1vw, 24px);
  letter-spacing: -0.01em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.v3-marquee-track span:hover {
  color: var(--primary);
}

.v3-marquee-track i {
  font-style: normal;
  color: var(--primary);
  font-size: 0.75em;
  opacity: 0.7;
}

@keyframes v3-marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Scroll reveal system ---------- */
html.js .v3-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s var(--v3-ease) var(--d, 0ms),
    transform 0.85s var(--v3-ease) var(--d, 0ms);
  will-change: opacity, transform;
}

html.js .v3-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Halo cursor (soft follower, native cursor kept) ---------- */
.v3-halo {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 1.5px solid rgba(102, 67, 246, 0.45);
  background: rgba(102, 67, 246, 0.06);
  pointer-events: none;
  opacity: 0;
  transition:
    width 0.35s var(--v3-ease),
    height 0.35s var(--v3-ease),
    margin 0.35s var(--v3-ease),
    opacity 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.v3-halo.is-on {
  opacity: 1;
}

.v3-halo.is-hover {
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  border-color: rgba(102, 67, 246, 0.8);
  background: rgba(102, 67, 246, 0.1);
}

/* ---------- Card micro-interactions ---------- */
.service-card,
.why-card,
.price-card,
.post-card,
.work-card,
.stat-card,
.cta-step {
  transition:
    transform 0.55s var(--v3-ease),
    box-shadow 0.55s var(--v3-ease),
    border-color 0.35s ease;
}

.service-card:hover,
.why-card:hover,
.post-card:hover,
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-strong);
}

.price-card:hover {
  transform: translateY(-6px);
}

.stat-card:hover,
.cta-step:hover {
  transform: translateY(-4px);
}

.work-thumb {
  overflow: hidden;
}

.work-thumb img {
  transition: transform 0.8s var(--v3-ease);
}

.work-card:hover .work-thumb img {
  transform: scale(1.05);
}

.post-card-art {
  overflow: hidden;
}

/* Buttons: spring + glow */
.button {
  transition:
    transform 0.45s var(--v3-ease),
    box-shadow 0.45s var(--v3-ease),
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
  will-change: transform;
}

.button svg {
  transition: transform 0.45s var(--v3-ease);
}

.button:hover svg {
  transform: translate(2px, -2px);
}

.button-primary:hover {
  box-shadow: 0 14px 40px -10px var(--primary-glow);
}

.text-link .text-link-arrow svg {
  transition: transform 0.45s var(--v3-ease);
}

.text-link:hover .text-link-arrow svg {
  transform: translate(3px, -3px);
}

/* Footer watermark: stronger presence */
.footer-watermark {
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(102, 67, 246, 0.18) 0%, rgba(225, 78, 233, 0.04) 80%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* FAQ icon spin */
.faq-q .faq-toggle {
  transition: transform 0.5s var(--v3-ease);
}

.faq-q[aria-expanded="true"] .faq-toggle {
  transform: rotate(135deg);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html.js .hl-inner,
  html.js .hero-availability,
  html.js .hero-tagline,
  html.js .hero-lead,
  html.js .hero-actions,
  html.js .hero-logos {
    transform: none;
    opacity: 1;
    animation: none;
  }

  html.js .v3-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .v3-marquee-track,
  .hero-glow {
    animation: none;
  }

  .v3-halo {
    display: none;
  }
}

/* ---------- Custom selects (contact + audit forms) ---------- */
.contact-form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%236643f6' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
  accent-color: var(--primary);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.contact-form select:hover {
  border-color: var(--primary-soft);
}

/* Muted "placeholder" tone until a real option is chosen (JS toggles it) */
.contact-form select.is-empty {
  color: var(--text-dim);
}

.contact-form select option {
  color: var(--text);
  background: #fff;
  font-weight: 400;
}

.contact-form select option[value=""] {
  color: var(--text-dim);
}

/* ============================================================
   Sprints page (pricing.html) — fixed-scope offering.
   Reuses the shared system; adds only what it lacks: a hero
   trust line, a callout box, and a 4-up "how it works" strip.
   ============================================================ */
.sprint-trust {
  max-width: 580px;
  margin: 2px auto 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.sprint-callout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 880px;
  margin: 40px auto 0;
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--primary-tint) 0%, var(--bg-card) 100%);
  box-shadow: var(--shadow-card);
}

.sprint-callout-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
}

.sprint-callout h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.sprint-callout p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* "How it works" — 4-up strip reusing .process-steps card styling */
.process-steps.sprint-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1040px) {
  .process-steps.sprint-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .process-steps.sprint-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sprint-callout {
    padding: 22px 20px;
    gap: 14px;
  }
}

/* Long-label CTAs wrap (instead of overflowing) on narrow screens */
.hero-actions.sprint-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Proof link cards as a semantic list; <a> fills each <li> grid cell */
.svc-related li {
  display: grid;
}

.svc-related-card h3 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* Crisp white week lead-ins on the featured MVP card */
.price-card-featured .plan-list li strong {
  color: #fff;
}

/* ============================================================
   Language switcher
   ============================================================ */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(10, 14, 42, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-btn {
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 7px;
  color: var(--text-muted);
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  line-height: 1.6;
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(10, 14, 42, 0.06);
}

.lang-btn.is-active {
  background: var(--bg);
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(10, 14, 42, 0.12);
}

/* Hide switcher on very small screens (burger menu takes over) */
@media (max-width: 960px) {
  .lang-switcher {
    display: none;
  }
}

/* ============================================================
   RTL support (Arabic)
   ============================================================ */
[dir="rtl"] {
  font-family: 'Noto Sans Arabic', 'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* Header grid flips naturally in RTL; keep nav start-aligned */
[dir="rtl"] .site-nav-left {
  justify-self: end;
}

[dir="rtl"] .site-actions {
  justify-self: start;
}

/* Body text alignment */
[dir="rtl"] .section-heading,
[dir="rtl"] .section-heading.center,
[dir="rtl"] .section-lead,
[dir="rtl"] .eyebrow,
[dir="rtl"] p,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3 {
  text-align: right;
}

[dir="rtl"] .section-heading.center,
[dir="rtl"] .section-heading.center .section-lead,
[dir="rtl"] .section-heading.center .eyebrow,
[dir="rtl"] .section-heading.center h2 {
  text-align: center;
}

/* Flip inline arrows */
[dir="rtl"] .text-link-arrow,
[dir="rtl"] .work-arrow,
[dir="rtl"] .rel-arrow {
  transform: scaleX(-1);
  display: inline-block;
}

/* Plan list checkmarks stay on the logical left (visual right in RTL) */
[dir="rtl"] .plan-list li {
  padding-right: 20px;
  padding-left: 0;
}

[dir="rtl"] .plan-list li::before {
  right: 0;
  left: auto;
}

/* Why cards text */
[dir="rtl"] .why-card,
[dir="rtl"] .cta-step {
  text-align: right;
}

/* FAQ */
[dir="rtl"] .faq-q {
  flex-direction: row-reverse;
  text-align: right;
}

/* How-work steps */
[dir="rtl"] .how-work-steps li {
  text-align: right;
}

/* Footer */
[dir="rtl"] .footer-brand,
[dir="rtl"] .footer-col,
[dir="rtl"] .footer-contact {
  text-align: right;
}

/* Price card */
[dir="rtl"] .price-head,
[dir="rtl"] .price-card {
  text-align: right;
}

[dir="rtl"] .plan-price {
  justify-content: flex-end;
}

/* Hero pills */
[dir="rtl"] .hero-tagline {
  flex-direction: row-reverse;
  justify-content: center;
}

/* Process steps */
[dir="rtl"] .process-steps article {
  text-align: right;
}
