:root {
  --bg: #0B0D10;
  --bg-soft: #111418;
  --surface: #171B20;
  --surface-elevated: #1D2229;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(212, 166, 58, 0.32);
  --text: #F3F0EA;
  --muted: #B7B1A5;
  --muted-2: #8A847A;
  --accent: #D4A63A;
  --accent-soft: #E8C56A;
  --accent-glow: rgba(212, 166, 58, 0.16);
  --accent-glow-strong: rgba(212, 166, 58, 0.28);
  --primary-gold: #E5B83F;
  --bright-gold: #FFD96A;
  --warm-gold: #D8A63A;
  --gold-glow: rgba(255, 190, 58, 0.26);
  --border-glow: rgba(255, 211, 102, 0.48);
  --deep-surface: #0D1117;
  --elevated-surface: #1A2029;
  --cool-shadow: rgba(18, 28, 48, 0.62);
  --danger: #FF6058;
  --yellow: #FFBD2F;
  --green: #27C840;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  /* Shared premium motion tokens */
  --motion-duration-fast: 220ms;
  --motion-duration-base: 420ms;
  --motion-duration-slow: 820ms;
  --motion-duration-ambient: 16s;
  --motion-duration-float: 8.8s;
  --motion-ease: cubic-bezier(.16, 1, .3, 1);
  --motion-ease-soft: cubic-bezier(.22, .61, .36, 1);
  --motion-hover-lift: -9px;
  --motion-reveal-distance: 42px;
  --motion-tilt-strength: 4.5;
  --motion-glow-intensity: 1;
  --motion-glow-opacity: .18;
  --motion-reflection-opacity: .22;
  --motion-stagger: 90ms;
  --motion-stagger-2: 180ms;
  --motion-stagger-3: 270ms;
  --motion-perspective: 1400px;
  --ease: var(--motion-ease);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 75%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(88px, 10vw, 132px) 0;
  position: relative;
}

.site-bg,
.cursor-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -3;
}

.cursor-glow {
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 208, 91, var(--spotlight-alpha-one, .18)) 0%, rgba(229, 160, 42, var(--spotlight-alpha-two, .1)) 24%, transparent 68%);
  transform: translate3d(var(--spot-x, 50vw), var(--spot-y, 35vh), 0) translate(-50%, -50%);
  opacity: var(--spotlight-opacity, 0);
  filter: blur(8px);
  z-index: 8;
  mix-blend-mode: screen;
  transition: opacity 0.35s ease;
  will-change: transform;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-one {
  width: 420px;
  height: 420px;
  background: rgba(212, 166, 58, 0.14);
  right: 8%;
  top: 5%;
}

.orb-two {
  width: 280px;
  height: 280px;
  background: rgba(212, 166, 58, 0.06);
  left: 6%;
  top: 42%;
  animation-delay: -5s;
}

.orb-three {
  width: 240px;
  height: 240px;
  background: rgba(243, 240, 234, 0.04);
  right: 18%;
  bottom: 8%;
  animation-delay: -9s;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes drift {
  to { transform: translate3d(24px, -28px, 0) scale(1.06); }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 76px;
  z-index: 20;
  background:
    linear-gradient(90deg, rgba(212, 166, 58, 0.035), transparent 22% 78%, rgba(89, 111, 150, 0.025)),
    rgba(11, 13, 16, 0.76);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  backdrop-filter: blur(24px) saturate(1.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 166, 58, 0.3), rgba(255, 255, 255, 0.1), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.nav-shell {
  height: 100%;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand span { color: var(--accent); }

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-panel a {
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted-2);
  font-weight: 700;
  font-size: 0.76rem;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 6px 9px;
  line-height: 1;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.lang-flag {
  width: 18px;
  height: 12px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.lang-btn.is-active {
  color: var(--accent-soft);
  background: rgba(212, 166, 58, 0.1);
}

.lang-btn:focus-visible,
.nav-panel a:focus-visible,
.btn:focus-visible,
.text-link:focus-visible,
.contact-list a:focus-visible,
.modal-close:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 11px;
  transition: 0.3s var(--ease);
}

.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { top: 26px; }

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  padding: 15px 26px;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform var(--motion-duration-base) var(--motion-ease), border-color var(--motion-duration-base) var(--motion-ease), background var(--motion-duration-base) var(--motion-ease), box-shadow var(--motion-duration-base) var(--motion-ease), filter var(--motion-duration-base) var(--motion-ease);
}

.btn-primary {
  color: #0B0D10;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-small {
  padding: 12px 20px;
  font-size: 0.86rem;
}

.btn::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -70%;
  left: -55%;
  width: 34%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-22deg) translateX(0);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--motion-duration-slow) var(--motion-ease), opacity var(--motion-duration-fast) ease;
}

.btn > *,
.contact-list a > *,
.text-link > * {
  position: relative;
  z-index: 1;
  transform: translateZ(18px);
}

.btn-secondary::before {
  background: linear-gradient(90deg, transparent, rgba(212, 166, 58, 0.13), transparent);
}

/* Typography */
.eyebrow {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
  max-width: 14ch;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  max-width: 18ch;
  font-weight: 600;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p { color: var(--muted); }

.section-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 72px); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center h2 { margin-inline: auto; }
.section-head.center .section-intro { margin-inline: auto; }

.section-intro {
  margin-top: 20px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
  max-width: 640px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 120px;
  padding-bottom: clamp(76px, 8vw, 112px);
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  inset: -10% -8% -6%;
  background:
    radial-gradient(circle at 78% 36%, rgba(212, 166, 58, 0.19), transparent 27%),
    radial-gradient(circle at 92% 12%, rgba(91, 113, 151, 0.11), transparent 24%),
    radial-gradient(circle at 18% 32%, rgba(212, 166, 58, 0.055), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 45%, rgba(0, 0, 0, 0.2));
  animation: heroAura var(--motion-duration-ambient) var(--motion-ease-soft) infinite alternate;
}

.hero::after {
  z-index: -1;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 68% 62% at 74% 38%, black 0%, rgba(0, 0, 0, 0.72) 42%, transparent 78%);
  mask-image: radial-gradient(ellipse 68% 62% at 74% 38%, black 0%, rgba(0, 0, 0, 0.72) 42%, transparent 78%);
}

@keyframes heroAura {
  0% { transform: translate3d(-1%, 0, 0) scale(1); opacity: 0.86; }
  100% { transform: translate3d(1.5%, -1.5%, 0) scale(1.035); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 260px;
  left: -150px;
  top: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 166, 58, 0.08), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 11px;
  border: 1px solid rgba(212, 166, 58, 0.18);
  border-radius: 999px;
  background: rgba(212, 166, 58, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  margin-bottom: 22px;
}

.hero .eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 14px var(--accent-glow-strong);
}

.hero h1 {
  max-width: 14.5ch;
  line-height: 1.01;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.38);
}

.hero-headline-accent {
  display: inline-block;
  position: relative;
  color: var(--accent-soft);
  background: linear-gradient(105deg, #f4dfa2 2%, var(--accent-soft) 38%, #d5a33b 72%, #f0d58b 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 7px 20px rgba(212, 166, 58, 0.16));
  animation: headlineGold 9s ease-in-out infinite alternate;
}

.hero-headline-accent::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -0.08em;
  height: 0.08em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 197, 106, 0.62), transparent);
  box-shadow: 0 0 16px rgba(212, 166, 58, 0.18);
}

@keyframes headlineGold {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  max-width: 540px;
  margin-top: 27px;
  line-height: 1.75;
  color: #c5bfb4;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-proof {
  margin-top: 38px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 16px 38px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 610px;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(212, 166, 58, 0.42);
  flex-shrink: 0;
}

.hero-proof strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: #c5bfb4;
  white-space: nowrap;
}

/* Hero visual */
.hero-stage {
  min-height: 560px;
  perspective: 1400px;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: min(510px, 88vw);
  aspect-ratio: 1.08;
  border: 1px solid rgba(212, 166, 58, 0.09);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.025), transparent 68%);
  box-shadow: 0 0 80px rgba(212, 166, 58, 0.08), inset 0 0 80px rgba(212, 166, 58, 0.035);
  transform: rotate(-8deg);
  pointer-events: none;
}

.stage-glow {
  width: min(520px, 85vw);
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  background: radial-gradient(circle, rgba(212, 166, 58, 0.3) 0%, var(--accent-glow) 35%, transparent 67%);
  filter: blur(9px);
  animation: pulse 7s ease-in-out infinite alternate;
}

@keyframes pulse {
  to { transform: translate3d(12px, -8px, 0) scale(1.09); opacity: 0.72; }
}

.mockup-3d {
  --hero-tilt-x: 3deg;
  --hero-tilt-y: -4deg;
  width: min(560px, 94vw);
  height: 430px;
  position: relative;
  transform-style: preserve-3d;
  animation: float3d var(--motion-duration-float) var(--motion-ease-soft) infinite;
  will-change: transform;
}

@keyframes float3d {
  0%, 100% { transform: translate3d(0, 0, 0) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y)); }
  50% { transform: translate3d(0, -8px, 0) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y)); }
}

.system-layer,
.system-panel {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(38, 43, 50, 0.98), rgba(18, 21, 26, 0.97));
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.07);
  overflow: hidden;
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.system-layer {
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  color: rgba(243, 240, 232, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.055) 12% 12.3%, transparent 12.3% 100%),
    linear-gradient(180deg, rgba(212, 166, 58, 0.1), transparent 48%);
}

.system-layer::after {
  content: "";
  position: absolute;
  inset: 18px 20px auto;
  height: 38%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(212, 166, 58, 0.12), transparent 48%),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, 0.035) 9px 10px);
}

.system-layer-back {
  inset: 42px -12px -8px 54px;
  transform: translateZ(-48px);
  opacity: 0.48;
}

.system-layer-mid {
  inset: 22px 4px 6px 30px;
  transform: translateZ(14px);
  opacity: 0.76;
}

.system-panel {
  inset: 0 22px 24px 0;
  transform: translateZ(72px);
  z-index: 3;
  padding: 20px;
  background:
    radial-gradient(circle at var(--card-x, 75%) var(--card-y, 20%), rgba(212, 166, 58, 0.15), transparent 31%),
    linear-gradient(155deg, rgba(39, 45, 53, 0.96), rgba(15, 18, 22, 0.97));
  border-color: rgba(212, 166, 58, 0.4);
  box-shadow: 0 38px 88px rgba(0, 0, 0, 0.54), 0 0 46px rgba(212, 166, 58, 0.095), inset 0 1px rgba(255, 255, 255, 0.11);
}

.system-panel::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -1px;
  left: -42%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 167, 0.95), transparent);
  filter: drop-shadow(0 0 8px rgba(212, 166, 58, 0.52));
  animation: dashboardShine 8s var(--ease) infinite;
  pointer-events: none;
}

.system-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.055), transparent 22% 78%, rgba(212, 166, 58, 0.045));
}

@keyframes dashboardShine {
  0%, 14% { transform: translateX(0); opacity: 0; }
  22% { opacity: 0.9; }
  42%, 100% { transform: translateX(340%); opacity: 0; }
}

.system-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.system-identity {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.system-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #0b0d10;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 10px 30px var(--accent-glow);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
}

.system-identity strong,
.system-identity span {
  display: block;
}

.system-identity strong {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.system-identity div > span {
  margin-top: 3px;
  color: #aaa498;
  font-size: 0.64rem;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #cbc5ba;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.64rem;
  font-weight: 600;
}

.system-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow-strong);
  animation: statusPulse 3.8s ease-in-out infinite;
}

@keyframes statusPulse {
  50% { box-shadow: 0 0 20px rgba(212, 166, 58, 0.58); transform: scale(1.12); }
}

.system-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 14px 0;
}

.system-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.13), inset 0 1px rgba(255, 255, 255, 0.045);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.system-step-accent {
  border-color: rgba(212, 166, 58, 0.4);
  background: linear-gradient(110deg, rgba(212, 166, 58, 0.15), rgba(212, 166, 58, 0.045));
  animation: stepGlow 5s ease-in-out infinite alternate;
}

@keyframes stepGlow {
  to { box-shadow: 0 10px 28px rgba(212, 166, 58, 0.1), inset 0 1px rgba(255, 255, 255, 0.06); }
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 166, 58, 0.38);
  border-radius: 13px;
  color: var(--accent-soft);
  background: rgba(212, 166, 58, 0.12);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
}

.system-step h2 {
  max-width: none;
  font-size: 0.96rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.system-step p {
  margin-top: 4px;
  color: #c9c3b7;
  font-size: 0.72rem;
  line-height: 1.45;
}

.step-check,
.step-arrow {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(212, 166, 58, 0.13);
  font-size: 0.72rem;
  font-style: normal;
}

.step-arrow {
  color: #0b0d10;
  background: var(--accent);
  box-shadow: 0 8px 22px var(--accent-glow);
  font-size: 0.9rem;
}

.system-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  color: #aaa498;
  font-size: 0.62rem;
}

.system-outcomes {
  display: flex;
  gap: 5px;
}

.system-outcomes i {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #c3bdb2;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 600;
}

.browser-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.browser-top.mini { height: 36px; padding: 0 12px; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.red { background: var(--danger); }
.yellow { background: var(--yellow); }
.green { background: var(--green); }

.url {
  height: 22px;
  flex: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-2);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.68rem;
  font-weight: 600;
}

/* Floating UI badges */
.floating-ui {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(212, 166, 58, 0.2);
  background: rgba(17, 20, 24, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.78rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 24px rgba(212, 166, 58, 0.055), inset 0 1px rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ui-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow-strong);
}

.ui-badge {
  top: 48px;
  right: -4px;
  animation: floatBadge 5s ease-in-out infinite alternate;
}

.ui-note {
  bottom: 76px;
  right: 4px;
  color: var(--accent);
  animation: floatBadge 4.5s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  to { transform: translateY(-10px); }
}

@media (hover: hover) and (pointer: fine) {
  .nav-panel a:hover {
    color: var(--text);
  }

  .nav-panel a:hover::after {
    transform: scaleX(1);
  }

  .lang-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-1px);
  }

  .system-step:hover {
    transform: translateX(3px);
    border-color: rgba(212, 166, 58, 0.28);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.055);
  }
}

/* Services */
.services { background: var(--bg-soft); }

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

.service-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), transparent 44%),
    radial-gradient(circle at 100% 0%, rgba(212, 166, 58, 0.055), transparent 38%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 290px;
  transform-style: preserve-3d;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  transform-style: preserve-3d;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(212, 166, 58, 0.15);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 10px 26px rgba(0, 0, 0, 0.2);
  transform: translateZ(38px);
  transition: transform 0.55s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.card-number {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(232, 197, 106, 0.36);
  letter-spacing: 0.05em;
  transform: translateZ(26px);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.28rem;
  transform: translateZ(30px);
}

.service-card > p {
  max-width: 58ch;
  font-size: 0.95rem;
  line-height: 1.76;
  transform: translateZ(15px);
}

/* Work / Projects */
.work-section {
  border-block: 1px solid var(--border);
}

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

.project-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.035);
}

.project-preview {
  height: 340px;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.project-preview .browser-top { height: 40px; }

/* Sport preview */
.sport-nav {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 10px;
}

.sport-logo {
  width: 40px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  opacity: 0.75;
}

.sport-nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.sport-nav-links i {
  display: block;
  width: 24px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.sport-cart {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.sport-banner {
  margin: 0 14px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(212, 166, 58, 0.22), rgba(50, 80, 120, 0.18));
  border: 1px solid var(--border);
  padding: 14px;
  display: flex;
  align-items: center;
}

.sport-banner-text span {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 6px;
}

.sport-banner-text span.short { width: 55%; }
.sport-banner-btn {
  width: 48px !important;
  height: 18px !important;
  border-radius: 8px !important;
  background: var(--accent) !important;
  opacity: 0.8;
  margin-top: 4px;
}

.sport-pills {
  display: flex;
  gap: 6px;
  padding: 12px 14px 0;
}

.sport-pills span {
  height: 20px;
  width: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.sport-pills span.active {
  background: var(--accent-glow);
  border-color: rgba(212, 166, 58, 0.25);
}

.sport-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 14px 14px;
}

.sport-product {
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.product-img {
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  margin-bottom: 8px;
}

.product-img.alt {
  background: linear-gradient(145deg, rgba(212, 166, 58, 0.15), rgba(255, 255, 255, 0.04));
}

.sport-product span {
  display: block;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 4px;
}

.sport-product span.price {
  width: 40%;
  background: var(--accent);
  opacity: 0.5;
}

/* Barber preview */
.barber-hero {
  margin: 12px 14px;
  height: 88px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(212, 166, 58, 0.18), rgba(80, 50, 30, 0.25));
  border: 1px solid var(--border);
  padding: 14px;
  display: flex;
  align-items: flex-end;
}

.barber-hero-content { width: 100%; }

.barber-tag {
  display: block;
  width: 36px;
  height: 5px;
  border-radius: 99px;
  background: var(--accent);
  opacity: 0.7;
  margin-bottom: 8px;
}

.barber-title {
  display: block;
  width: 70%;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 6px;
}

.barber-sub {
  display: block;
  width: 50%;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.barber-book-btn {
  display: block;
  width: 64px;
  height: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  opacity: 0.85;
}

.barber-services {
  padding: 0 14px;
  display: grid;
  gap: 8px;
}

.barber-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.barber-service span {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  flex: 1;
  max-width: 60%;
}

.barber-service span.svc-price {
  max-width: 28px;
  background: var(--accent);
  opacity: 0.45;
}

.barber-cta-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
}

.barber-cta {
  flex: 1;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  opacity: 0.8;
}

.barber-cta.ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  opacity: 1;
}

.project-content {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tags span {
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(212, 166, 58, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
}

.project-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.project-content > p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.project-meta div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
}

.project-meta dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--muted-2);
}

.project-meta dd {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  background: transparent;
  border: 0;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0;
  transition: color 0.25s ease;
}

.text-link::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s var(--ease);
}

.text-link:hover::after { transform: translateX(5px); }


/* Pricing */
.pricing-section {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, var(--accent-glow), transparent 58%),
    var(--bg-soft);
}

.pricing-note {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(212, 166, 58, 0.2);
  background: rgba(212, 166, 58, 0.08);
  border-radius: 999px;
  color: var(--muted);
  margin-bottom: 28px;
}

.pricing-note strong { color: var(--accent); }

.pricing-list {
  display: grid;
  gap: 22px;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
}

.pricing-card > * { position: relative; z-index: 1; }

.pricing-card-featured {
  border-color: rgba(212, 166, 58, 0.26);
  background:
    radial-gradient(ellipse 70% 50% at 72% 20%, rgba(212, 166, 58, 0.12), transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    var(--surface-elevated);
}

.pricing-card-wide {
  grid-template-columns: 1fr 1fr;
}

.pricing-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.pricing-number {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 166, 58, 0.24);
  background: rgba(212, 166, 58, 0.11);
  color: var(--accent);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.pricing-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 4px;
}

.price {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
}

.pricing-copy > p {
  max-width: 650px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.package-features {
  display: grid;
  gap: 10px;
  list-style: none;
}

.package-features li {
  position: relative;
  color: var(--muted);
  padding-left: 20px;
  font-size: 0.94rem;
}

.package-features li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow-strong);
  position: absolute;
  left: 0;
  top: 0.7em;
}

.package-preview {
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.preview-window-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -16px -16px 16px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
}

.preview-window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
}

.preview-window-bar span:nth-child(2) { background: var(--yellow); }
.preview-window-bar span:nth-child(3) { background: var(--green); }

.preview-landing-hero,
.preview-business-hero,
.premium-glow-card {
  height: 74px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 166, 58, 0.36), rgba(243, 240, 234, 0.06));
  border: 1px solid rgba(212, 166, 58, 0.18);
}

.preview-landing-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.preview-landing-lines i,
.preview-business-contact,
.preview-landing-cta {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.preview-landing-lines i:nth-child(1) { width: 80%; }
.preview-landing-lines i:nth-child(2) { width: 58%; }
.preview-landing-lines i:nth-child(3) { width: 70%; }
.preview-landing-cta { width: 120px; height: 34px; margin-top: 22px; background: var(--accent); }

.preview-business-grid,
.premium-stat-row,
.shop-grid,
.app-main {
  display: grid;
  gap: 12px;
}

.preview-business-grid { grid-template-columns: repeat(3, 1fr); margin-top: 18px; }
.preview-business-grid i,
.premium-stat-row i,
.shop-grid i,
.app-main i {
  display: block;
  min-height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.055);
}

.preview-business-contact { width: 66%; height: 28px; margin-top: 18px; }
.premium-ui-row { display: grid; grid-template-columns: 1.3fr .7fr; gap: 12px; margin-top: 16px; }
.premium-ui-row i { display: block; height: 72px; border-radius: 16px; background: rgba(255, 255, 255, 0.08); }
.premium-stat-row { grid-template-columns: repeat(3, 1fr); margin-top: 12px; }
.premium-stat-row i { min-height: 46px; }
.shop-pills { display: flex; gap: 8px; margin-bottom: 14px; }
.shop-pills i { width: 70px; height: 20px; border-radius: 999px; background: rgba(212, 166, 58, 0.18); }
.shop-grid { grid-template-columns: repeat(2, 1fr); }
.shop-grid i { min-height: 62px; }
.shop-cart { width: 42%; height: 30px; margin-top: 14px; border-radius: 12px; background: var(--accent); }
.app-preview { display: grid; grid-template-columns: 76px 1fr; gap: 14px; }
.app-preview .preview-window-bar { grid-column: 1 / -1; }
.app-sidebar { border-radius: 16px; background: rgba(212, 166, 58, 0.14); border: 1px solid rgba(212, 166, 58, 0.14); }
.app-main { grid-template-columns: repeat(2, 1fr); }
.app-main i { min-height: 78px; }

/* Process signature scene styles live at the end of this file so they can
   remain isolated from the reusable premium card interaction system. */

/* Why section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 220px;
  transform-style: preserve-3d;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26), inset 0 1px rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.why-index {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.85;
}

.why-item h3 { margin-bottom: 12px; font-size: 1.08rem; }
.why-item p { font-size: 0.92rem; line-height: 1.7; }

/* Contact */
.contact-section { text-align: center; }

.contact-wrap {
  max-width: 820px;
  position: relative;
  padding: clamp(56px, 8vw, 80px) clamp(32px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-glow), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--accent-glow), transparent 50%);
  pointer-events: none;
}

.contact-orbit {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(212, 166, 58, 0.1);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
  animation: spin 20s linear infinite;
  pointer-events: none;
}

.contact-orbit::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -5px;
  box-shadow: 0 0 20px var(--accent-glow-strong);
}

@keyframes spin {
  to { transform: translateX(-50%) rotate(360deg); }
}

.contact-wrap h2 { margin-inline: auto; max-width: 16ch; }
.contact-lead {
  max-width: 580px;
  margin: 20px auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 12px;
  max-width: 580px;
  margin: 40px auto;
  position: relative;
  z-index: 1;
}

.contact-list a {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  padding: 18px 22px;
  text-align: left;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--motion-duration-base) var(--motion-ease), border-color var(--motion-duration-base) var(--motion-ease), background var(--motion-duration-base) var(--motion-ease), box-shadow var(--motion-duration-base) var(--motion-ease);
}

.contact-list a::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 218, 126, .12) 48%, transparent 72%);
  transform: translateX(-110%);
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}

.contact-list span {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.contact-list strong {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-wrap .btn { position: relative; z-index: 1; }

/* Modal */
.project-modal {
  width: min(680px, calc(100% - 36px));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: linear-gradient(180deg, var(--surface-elevated), var(--surface));
  color: var(--text);
  box-shadow: var(--shadow);
  position: relative;
}

.project-modal::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-soft);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: border-color 0.25s ease;
}

.modal-close:hover { border-color: var(--border-strong); }

.project-modal h2 { margin: 8px 0 16px; font-size: 1.6rem; }
.project-modal > p { margin-bottom: 20px; line-height: 1.7; }

.modal-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.modal-meta div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
}

.modal-meta dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--muted-2);
}

.modal-meta dd {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.modal-points {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.modal-points div {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--bg-soft);
  font-size: 0.92rem;
}

.modal-cta { width: 100%; }

/* Footer */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer strong {
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
}

/* One-time, token-driven scroll choreography */
.reveal {
  --reveal-y: 0px;
  opacity: 1;
  transform: translateY(var(--reveal-y));
}

.motion-ready .reveal {
  --reveal-y: var(--motion-reveal-distance);
  opacity: 0;
  filter: blur(6px);
  transition: opacity var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease), filter var(--motion-duration-slow) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
  filter: blur(0);
  transform: translateY(var(--reveal-y));
}

.reveal-delay-1 { --reveal-delay: var(--motion-stagger); }
.reveal-delay-2 { --reveal-delay: var(--motion-stagger-2); }
.reveal-delay-3 { --reveal-delay: var(--motion-stagger-3); }

.motion-heading {
  clip-path: inset(0 0 0 0);
  will-change: transform, clip-path, opacity;
}

.reveal.is-revealing { transition: none !important; }

/* Reusable premium card interaction system */
[data-premium-card] {
  --card-x: 50%;
  --card-y: 18%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: perspective(var(--motion-perspective)) translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform var(--motion-duration-base) var(--motion-ease), border-color var(--motion-duration-base) var(--motion-ease), box-shadow var(--motion-duration-base) var(--motion-ease), background-color var(--motion-duration-base) var(--motion-ease);
  will-change: auto;
}

[data-premium-card].reveal {
  transform: perspective(var(--motion-perspective)) translate3d(0, calc(var(--reveal-y) + var(--card-lift)), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: opacity var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-base) var(--motion-ease), filter var(--motion-duration-slow) var(--motion-ease), border-color var(--motion-duration-base) var(--motion-ease), box-shadow var(--motion-duration-base) var(--motion-ease), background-color var(--motion-duration-base) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-premium-card].premium-ready {
  transition-delay: 0s;
}

[data-premium-card].is-pointer-active {
  transition-duration: 100ms, var(--motion-duration-fast), var(--motion-duration-base), var(--motion-duration-fast);
  transition-timing-function: ease-out, var(--motion-ease-soft), var(--motion-ease), var(--motion-ease-soft);
  will-change: transform;
}

[data-premium-card] > * {
  position: relative;
  z-index: 1;
}

[data-premium-card]::before,
[data-premium-card]::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

[data-premium-card]::before {
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(420px circle at var(--card-x) var(--card-y), rgba(255, 222, 125, 0.34), rgba(229, 166, 45, 0.12) 30%, transparent 64%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 32% 68%, rgba(229, 174, 54, 0.08));
  background-size: 100% 100%, 180% 180%;
  opacity: var(--motion-reflection-opacity);
  transition: opacity var(--motion-duration-base) ease;
}

[data-premium-card]::after {
  z-index: 4;
  inset: -1px;
  padding: 1.5px;
  background: conic-gradient(from var(--beam-angle, 0deg), transparent 0 68%, rgba(255, 218, 111, 0.08) 74%, var(--bright-gold) 82%, rgba(255, 177, 39, 0.46) 88%, transparent 96%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
}

.service-card .icon-box,
.service-card .card-number,
.service-card h3,
.service-card > p,
.pricing-card .pricing-copy,
.pricing-card .package-preview,
.project-card .project-preview,
.project-card .project-content,
.why-item .why-index,
.why-item h3,
.why-item p,
.pricing-number,
.price,
.project-content h3 {
  backface-visibility: hidden;
}

.pricing-card .pricing-copy { transform: translateZ(22px); }
.pricing-card .package-preview { transform: translateZ(12px); }
.pricing-number, .price { transform: translateZ(38px); }
.project-card .project-preview { transform: translateZ(12px); }
.project-card .project-content { transform: translateZ(24px); }
.project-content h3 { transform: translateZ(34px); }
.why-item .why-index { transform: translateZ(22px); }
.why-item h3 { transform: translateZ(16px); }
.why-item p { transform: translateZ(8px); }

@keyframes premium-card-shine {
  from { --beam-angle: 0deg; }
  to { --beam-angle: 360deg; }
}

@keyframes premium-surface-drift {
  from { background-position: 0 0, 0% 0%; }
  to { background-position: 0 0, 100% 100%; }
}

@property --beam-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@media (hover: hover) and (pointer: fine) {
  [data-premium-card]:hover,
  [data-premium-card]:focus-within {
    --card-lift: var(--motion-hover-lift);
    border-color: var(--border-glow);
    background-color: var(--elevated-surface);
    box-shadow:
      0 42px 96px rgba(0, 0, 0, 0.58),
      0 22px 54px var(--cool-shadow),
      0 0 0 1px rgba(255, 218, 111, 0.17),
      0 0 52px rgba(235, 169, 40, var(--motion-glow-opacity)),
      inset 0 1px rgba(255, 255, 255, 0.12);
  }

  [data-premium-card]:hover::before,
  [data-premium-card]:focus-within::before {
    opacity: 1;
    animation: premium-surface-drift 6s var(--motion-ease-soft) infinite alternate;
  }

  [data-premium-card]:hover::after,
  [data-premium-card]:focus-within::after {
    opacity: 1;
    animation: premium-card-shine 4.8s linear infinite;
  }

  .service-card:hover .icon-box {
    transform: translateZ(58px) translateY(-4px) rotate(-2deg) scale(1.045);
    color: var(--bright-gold);
    border-color: rgba(255, 218, 111, 0.58);
    background: rgba(229, 172, 48, 0.22);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.34), 0 0 34px rgba(242, 180, 48, 0.28), inset 0 1px rgba(255, 255, 255, 0.14);
  }

}

/* Cohesive cinematic lighting */
.section-pad { --section-light: .58; }

.services,
.pricing-section,
.work-section,
.process-section,
.why-section,
.contact-section {
  isolation: isolate;
  overflow: hidden;
  background-color: var(--deep-surface);
}

.services::before,
.pricing-section::before,
.work-section::before,
.process-section::before,
.why-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: min(980px, 88vw);
  height: 680px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(16px);
  opacity: var(--section-light);
  background: radial-gradient(ellipse, rgba(229, 166, 44, 0.18), rgba(229, 166, 44, 0.055) 38%, transparent 70%);
  animation: section-light-drift var(--motion-duration-ambient) var(--motion-ease-soft) infinite alternate;
}

.services::after,
.pricing-section::after,
.work-section::after,
.process-section::after,
.why-section::after,
.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--section-grid-light, .34);
  background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 65% 55% at var(--grid-x, 75%) 45%, #000 0%, transparent 72%);
}

.services::before { top: -220px; right: -180px; }
.pricing-section::before { top: -250px; left: 12%; animation-delay: -4s; }
.work-section::before { top: 8%; right: -280px; animation-delay: -8s; }
.process-section::before { top: -260px; left: -220px; animation-delay: -2s; }
.why-section::before { bottom: -260px; right: 2%; animation-delay: -6s; }
.contact-section::before { bottom: -300px; left: 8%; animation-delay: -10s; }
.services { --grid-x: 82%; }
.pricing-section { --grid-x: 35%; }
.work-section { --grid-x: 78%; }
.process-section { --grid-x: 22%; }
.why-section { --grid-x: 68%; }
.contact-section { --grid-x: 38%; }

@keyframes section-light-drift {
  to { transform: translate3d(54px, 36px, 0) scale(1.08); }
}

.services-grid,
.pricing-list,
.work-grid,
.process-timeline,
.why-grid {
  perspective: var(--motion-perspective);
}

.service-card,
.pricing-card,
.project-card,
.why-item {
  background-color: var(--elevated-surface);
}

.services-grid .service-card {
  transition: opacity var(--motion-duration-base) ease, filter var(--motion-duration-base) ease, transform var(--motion-duration-base) var(--motion-ease), border-color var(--motion-duration-base) ease, box-shadow var(--motion-duration-base) var(--motion-ease), background-color var(--motion-duration-base) ease;
}

.btn,
.text-link,
.contact-list a {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
}

@media (hover: hover) and (pointer: fine) {
  .btn {
    transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  }

  .btn:hover {
    transform: perspective(800px) translate3d(var(--magnetic-x), calc(var(--magnetic-y) + var(--motion-hover-lift)), 12px) scale(1.012);
  }

  .btn:hover::before { transform: skewX(-22deg) translateX(470%); opacity: .9; }

  .btn-primary:hover {
    box-shadow: 0 22px 58px rgba(229, 169, 45, 0.42), 0 6px 18px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 223, 132, 0.2);
  }

  .text-link {
    transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
    transition: transform 0.28s var(--ease), color 0.25s ease, text-shadow 0.25s ease;
  }

  .contact-list a {
    transform: perspective(900px) translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  }

  .contact-list a:hover,
  .contact-list a:focus-visible {
    transform: perspective(900px) translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 5px), 10px);
    border-color: var(--border-glow);
    background: var(--surface-elevated);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .42), 0 0 28px rgba(229, 169, 45, .1);
  }

  .contact-list a:hover::before,
  .contact-list a:focus-visible::before { transform: translateX(110%); }

  .text-link:hover {
    color: var(--bright-gold);
    transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 3px), 8px);
    text-shadow: 0 0 20px rgba(255, 197, 65, 0.32);
  }

  .btn:active {
    transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 1px), 0) scale(0.97);
    filter: brightness(0.98);
    transition-duration: 0.1s;
  }
}


/* Real project screenshots in Selected Work cards */
.project-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-preview-image--mobile { display: none; }

/* Desktop screenshots share one stable viewport ratio, so neither project is cropped differently. */
.project-preview-wrap .project-preview {
  height: auto;
  aspect-ratio: 1520 / 900;
  background: #0b0d10;
}

.project-preview-wrap .project-preview.is-mobile {
  width: min(230px, 78%);
  height: auto;
  aspect-ratio: 390 / 844;
  background: #0b0d10;
}

.project-preview-wrap .project-preview.is-mobile .project-preview-image--desktop { display: none; }
.project-preview-wrap .project-preview.is-mobile .project-preview-image--mobile {
  display: block;
  object-fit: cover;
  object-position: top center;
}

@media (hover: none), (pointer: coarse) {
  [data-premium-card],
  [data-premium-card].reveal {
    --card-lift: 0px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transform: perspective(var(--motion-perspective)) translate3d(0, var(--reveal-y, 0px), 0);
    will-change: auto;
  }

  [data-premium-card]:active {
    transform: perspective(var(--motion-perspective)) translate3d(0, var(--reveal-y, 0px), 0) scale(0.992);
    border-color: rgba(212, 166, 58, 0.32);
  }

  .mockup-3d { --hero-tilt-x: 0deg; --hero-tilt-y: 0deg; }
  .btn, .text-link, .contact-list a { --magnetic-x: 0px; --magnetic-y: 0px; }
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { margin-inline: auto; }
  .hero-stage { min-height: 500px; margin-top: 16px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .pricing-card,
  .pricing-card-wide { grid-template-columns: 1fr; }
  .process-timeline::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1023px) and (min-width: 821px) {
  .nav-shell { gap: 16px; }
  .nav-panel { gap: 16px; font-size: .82rem; }
  .nav-actions { gap: 10px; }
  .nav-actions .btn { display: none; }
}

@media (max-width: 820px) {
  .site-header { height: 70px; }
  .nav-toggle { display: block; order: 3; }
  .nav-actions { margin-left: auto; gap: 12px; }
  .nav-actions .btn { display: none; }
  .nav-panel {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 80px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(11, 13, 16, 0.96);
    backdrop-filter: blur(20px);
  }
  .nav-panel.is-open { display: flex; }
  .nav-panel a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
  }
  .nav-panel a:last-child { border-bottom: 0; }
  .section-pad { padding: 80px 0; }
  h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .hero { padding-top: 104px; padding-bottom: 76px; min-height: auto; }
  .mockup-3d { height: 420px; }
  .work-grid,
  .services-grid,
  .why-grid,
  .process-timeline { grid-template-columns: 1fr; }
  .pricing-note { align-items: flex-start; border-radius: var(--radius-md); }
  .package-preview { min-height: 220px; }
  .project-preview { height: auto; }
  .contact-list a { grid-template-columns: 1fr; gap: 6px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 820px) {
  .cursor-glow { display: none; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 32px, 1180px); }
  .hero::after { background-size: 46px 46px; opacity: 0.34; }
  .hero-copy::before { width: 260px; height: 220px; left: -90px; top: 70px; }
  .hero .eyebrow { margin-bottom: 19px; }
  .hero h1 { line-height: 1.04; }
  .hero-headline-accent::after { bottom: -0.04em; }
  .hero-lead { margin-top: 23px; }
  .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 16px; padding: 14px; }
  .hero-proof div { justify-content: flex-start; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; min-width: 140px; }
  .hero-stage { min-height: 430px; }
  .mockup-3d { height: 390px; }
  .system-layer-back { inset: 34px -6px -4px 28px; }
  .system-layer-mid { inset: 18px 0 4px 14px; }
  .system-layer::after { opacity: 0.65; }
  .system-panel { inset: 0 10px 14px 0; padding: 16px; border-radius: 20px; }
  .system-topbar { padding-bottom: 13px; }
  .system-mark { width: 34px; height: 34px; }
  .system-identity strong { font-size: 0.78rem; }
  .system-identity div > span { display: none; }
  .system-status { padding: 6px 8px; }
  .system-step { grid-template-columns: 36px minmax(0, 1fr) 25px; min-height: 64px; gap: 9px; padding: 9px 10px; }
  .step-number { width: 36px; height: 36px; border-radius: 11px; }
  .system-step h2 { font-size: 0.82rem; }
  .system-step p { font-size: 0.64rem; }
  .step-check, .step-arrow { width: 25px; height: 25px; }
  .system-footer { align-items: flex-start; }
  .system-footer > span { display: none; }
  .system-outcomes { width: 100%; justify-content: space-between; }
  .floating-ui { font-size: 0.7rem; padding: 8px 12px; }
  .ui-badge { top: 30px; right: -6px; }
  .ui-note { bottom: 46px; right: -2px; }
  .service-card,
  .project-content,
  .pricing-card,
  .contact-wrap { padding: 24px; }
  .project-meta div { grid-template-columns: 1fr; gap: 4px; }
  .sport-products { gap: 6px; }
  .product-img { height: 40px; }
}

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

  .cursor-glow { display: none; }
  .reveal { opacity: 1; transform: none; }

  [data-premium-card],
  [data-premium-card].reveal {
    --card-lift: 0px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transform: none !important;
    will-change: auto;
  }

  [data-premium-card]::before { opacity: 0.24; }
  [data-premium-card]::after { display: none; }

  .service-card .icon-box,
  .service-card:hover .icon-box {
    transform: none;
  }
}

/* Hero cinematic choreography */
.hero {
  --hero-reflect-x: 68%;
  --hero-reflect-y: 32%;
  z-index: 1;
  overflow: visible;
  background: #080a0d;
}

.js .hero { visibility: hidden; }
.js .hero.hero-motion-ready,
.js .hero.hero-static { visibility: visible; }

.hero-amber-source {
  position: absolute;
  z-index: -1;
  top: -24%;
  left: 43%;
  width: min(980px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: .9;
  filter: blur(18px);
  background: radial-gradient(circle, rgba(255, 196, 62, .31) 0, rgba(211, 139, 25, .15) 23%, rgba(114, 72, 13, .055) 44%, transparent 70%);
  mix-blend-mode: screen;
  will-change: transform;
}

.hero-light-trail {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: -50px;
  width: 1px;
  height: clamp(94px, 13vh, 148px);
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-light-trail span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(238, 177, 48, .3) 20%, #f8c859 68%, rgba(232, 169, 41, .08));
  box-shadow: 0 0 14px rgba(239, 181, 55, .42);
  transform-origin: top;
}

.hero-light-trail i {
  position: absolute;
  left: 50%;
  bottom: 13%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffe5a1;
  box-shadow: 0 0 8px #ffd36b, 0 0 26px rgba(237, 171, 42, .85);
  transform: translateX(-50%);
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.65rem, 4.65vw, 4.2rem);
  line-height: .98;
}

.hero-line-mask {
  display: block;
  overflow: hidden;
  padding: .03em .04em .18em 0;
  margin-bottom: -.15em;
}

.hero-line {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  will-change: transform;
}

.hero-headline-accent {
  overflow: hidden;
}

.hero-line.hero-headline-accent { width: fit-content; }

.hero-headline-accent::after {
  transform: scaleX(var(--hero-underline, 1));
  transform-origin: left center;
}

.hero-headline-accent::before {
  content: '';
  position: absolute;
  z-index: 2;
  inset: -12% auto -12% -35%;
  width: 26%;
  background: linear-gradient(100deg, transparent, rgba(255, 250, 222, .92), rgba(255, 202, 67, .32), transparent);
  filter: blur(3px);
  transform: translateX(var(--hero-sweep, -120%)) skewX(-16deg);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-stage {
  transform-style: preserve-3d;
  isolation: isolate;
}

.hero-stage::before { transform: translateZ(-90px) rotate(-8deg); }

.hero-reflection {
  position: absolute;
  z-index: 8;
  inset: 3%;
  border-radius: 44%;
  opacity: .52;
  pointer-events: none;
  background: radial-gradient(circle at var(--hero-reflect-x) var(--hero-reflect-y), rgba(255, 224, 142, .23), rgba(225, 159, 34, .08) 16%, transparent 38%);
  mix-blend-mode: screen;
  filter: blur(4px);
}

.hero-orbit {
  position: absolute;
  z-index: 5;
  width: min(610px, 100%);
  aspect-ratio: 1.12;
  border: 1px solid rgba(238, 181, 55, .22);
  border-radius: 50%;
  transform: translateZ(18px) rotate(-10deg);
  box-shadow: inset 0 0 70px rgba(222, 153, 29, .04), 0 0 70px rgba(222, 153, 29, .055);
  pointer-events: none;
}

.hero-orbit span {
  position: absolute;
  inset: 7%;
  border: 1px dashed rgba(255, 214, 112, .17);
  border-radius: 50%;
}

.hero-orbit i,
.hero-orbit b {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffe3a0;
  box-shadow: 0 0 9px #ffd05a, 0 0 25px rgba(245, 177, 39, .78);
}

.hero-orbit i { top: 13%; left: 19%; }
.hero-orbit b { right: 11%; bottom: 26%; width: 5px; height: 5px; }

.hero-connectors {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  transform: translateZ(-12px);
}

.hero-connectors path {
  fill: none;
  stroke: rgba(239, 181, 54, .52);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 5px rgba(239, 181, 54, .5));
}

.hero-connectors circle {
  fill: #f6c75d;
  stroke: rgba(255, 232, 167, .75);
  stroke-width: 1;
}

.mockup-3d {
  perspective: 1500px;
  transform-style: preserve-3d;
}

.hero-motion-ready .mockup-3d { animation: none; }
.hero-motion-ready .stage-glow { animation: none; }
.hero-motion-ready .floating-ui { animation: none; }

.hero-stage [data-hero-depth] {
  will-change: transform;
  transform-style: preserve-3d;
}

.hero-stage .system-layer-back { transform: translateZ(-74px); }
.hero-stage .system-layer-mid { transform: translateZ(12px); }
.hero-browser-frame {
  position: absolute;
  z-index: 2;
  inset: -38px 8px 13px -12px;
  display: grid;
  grid-template-columns: 62px 1fr 62px;
  align-items: start;
  height: calc(100% + 25px);
  padding: 11px 14px 0;
  border: 1px solid rgba(228, 181, 73, .28);
  border-radius: 27px;
  color: #77736c;
  background: linear-gradient(180deg, rgba(33, 37, 44, .98) 0 37px, rgba(12, 15, 19, .82) 37px);
  box-shadow: 0 46px 90px rgba(0, 0, 0, .48), 0 0 46px rgba(214, 149, 31, .07), inset 0 1px rgba(255, 255, 255, .1);
  transform: translateZ(47px);
}

.hero-browser-frame span { display: flex; gap: 6px; padding-top: 3px; }
.hero-browser-frame span i { width: 7px; height: 7px; border-radius: 50%; background: #575a60; }
.hero-browser-frame span i:first-child { background: #a77822; }
.hero-browser-frame b {
  justify-self: center;
  min-width: 190px;
  padding: 3px 18px;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 20px;
  background: rgba(5,7,10,.38);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
}
.hero-browser-frame em {
  justify-self: end;
  color: #d5a53c;
  font-size: .48rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
}
.hero-stage .system-panel { transform: translateZ(92px); }
.hero-stage .ui-badge { transform: translateZ(150px); }
.hero-stage .ui-note { transform: translateZ(185px); }

.hero-stage .system-topbar,
.hero-stage .system-step,
.hero-stage .system-footer,
.hero-stage .step-number,
.hero-stage .step-check,
.hero-stage .step-arrow,
.hero-stage .system-mark,
.hero-stage .system-status { will-change: transform, opacity; }

@media (min-width: 1081px) {
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(460px, .92fr); gap: clamp(34px, 4vw, 64px); }
  .hero-copy { min-width: 0; margin-top: -8px; position: relative; z-index: 6; }
  .hero-copy h1,
  .hero-line-mask { max-width: 100%; }
}

@media (max-width: 1080px) {
  .hero-line { margin-inline: auto; }
  .hero-amber-source { left: 12%; top: 18%; width: 90vw; }
  .hero-light-trail { height: 86px; }
}

@media (max-width: 520px) {
  .hero { padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2rem, 8.55vw, 2.5rem); line-height: 1.01; }
  .hero-line-mask { padding-bottom: .1em; }
  .hero-stage { min-height: 405px; margin-top: 4px; }
  .hero-orbit { width: 112%; }
  .hero-connectors { inset: 2% -8%; width: 116%; }
  .hero-browser-frame { inset: -32px 5px 9px -7px; grid-template-columns: 45px 1fr 42px; padding-inline: 10px; border-radius: 23px; }
  .hero-browser-frame b { min-width: 0; width: 100%; padding-inline: 7px; font-size: .46rem; }
  .hero-reflection { display: none; }
  .hero-light-trail { bottom: -24px; height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-amber-source,
  .hero-line,
  .hero .eyebrow,
  .hero-lead,
  .hero-actions,
  .hero-proof,
  .hero-stage,
  .hero-stage *,
  .site-header,
  .hero-light-trail span,
  .hero-light-trail i { opacity: 1 !important; transform: none !important; }
  .hero-headline-accent::before { display: none; }
  .hero-reflection { display: none; }
}

/* Process — one evolving browser story */
.process-section {
  --process-progress: 0;
  position: relative;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
  background: #080b10;
}

.process-section::before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(235, 182, 59, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 182, 59, 0.038) 1px, transparent 1px),
    radial-gradient(circle at 74% 46%, rgba(236, 167, 35, 0.12), transparent 34%);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.process-section::after { opacity: 0.16; }

.process-ambient { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.process-ambient span { position: absolute; border: 1px solid rgba(255, 198, 61, 0.11); border-radius: 50%; }
.process-ambient span:first-child { width: 54vw; aspect-ratio: 1; right: -19vw; top: -26vw; box-shadow: 0 0 120px rgba(255, 184, 38, 0.06); }
.process-ambient span:last-child { width: 32vw; aspect-ratio: 1; left: 35%; bottom: -26vw; }

.process-section .process-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(540px, 1.28fr);
  align-items: center;
  gap: clamp(40px, 5.4vw, 90px);
}

.process-section .process-intro { position: relative; z-index: 4; min-width: 0; }
.process-section .process-intro h2 { max-width: 560px; margin-top: 14px; font-size: clamp(2.2rem, 3.8vw, 4.25rem); line-height: .99; letter-spacing: -.055em; }
.process-section .process-intro .section-intro { max-width: 510px; margin-top: 22px; font-size: .98rem; line-height: 1.72; }

.process-section .process-steps { display: grid; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.08); }
.process-section .process-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  opacity: .36;
  transition: opacity var(--motion-duration-fast) ease, transform var(--motion-duration-base) var(--motion-ease), border-color var(--motion-duration-fast) ease;
}
.process-section .process-step-number { padding-top: 3px; color: #817b70; font-family: var(--font-head); font-size: .66rem; font-weight: 700; letter-spacing: .12em; transition: color var(--motion-duration-fast) ease; }
.process-section .process-step h3 { margin: 0; color: #aaa69f; font-size: .92rem; line-height: 1.3; letter-spacing: -.015em; transition: color var(--motion-duration-fast) ease; }
.process-section .process-step p { display: none; margin: 7px 0 0; color: #8f8c85; font-size: .76rem; line-height: 1.55; }
.process-section .process-step.is-active { opacity: 1; transform: translateX(8px); border-color: rgba(250,193,59,.28); }
.process-section .process-step.is-active .process-step-number { color: var(--bright-gold); text-shadow: 0 0 14px rgba(255,198,56,.65); }
.process-section .process-step.is-active h3 { color: #fff; }
.process-section .process-step.is-active p { display: block; animation: process-copy-in var(--motion-duration-base) var(--motion-ease) both; }
@keyframes process-copy-in { from { opacity: 0; transform: translateY(5px); } }

.process-section .process-progress { display: grid; grid-template-columns: 28px 1fr 28px; align-items: center; gap: 12px; width: 100%; margin-top: 24px; color: #8b867d; font-family: var(--font-head); font-size: .62rem; font-weight: 700; letter-spacing: .12em; }
.process-section .process-progress-track { height: 2px; overflow: hidden; background: rgba(255,255,255,.09); }
.process-section .process-progress-fill { display: block; width: 100%; height: 100%; transform: scaleX(var(--process-progress)); transform-origin: left; background: linear-gradient(90deg, #8b5912, #ffbf32, #fff3c4); box-shadow: 0 0 18px rgba(255,187,42,.8); }
.process-progress-current { color: #f6c34f; }

.process-visual { position: relative; min-width: 0; perspective: 1400px; }
.process-depth-grid { position: absolute; inset: 42% -18% -32%; z-index: -1; opacity: .28; background-image: linear-gradient(rgba(255,194,48,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255,194,48,.17) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(ellipse, #000, transparent 68%); transform: rotateX(66deg) scale(1.25); transform-origin: center top; }

.process-browser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,224,149,.28);
  border-radius: clamp(20px, 2vw, 30px);
  background: #11151c;
  box-shadow: 0 54px 110px rgba(0,0,0,.68), 0 0 80px rgba(224,145,20,.1), inset 0 1px rgba(255,255,255,.13);
  transform: rotateY(-2.5deg) rotateX(1deg);
  transform-style: preserve-3d;
  will-change: transform;
}
.process-browser::after { content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.035); }
.process-browser-bar { display: grid; grid-template-columns: 80px 1fr 80px; align-items: center; height: 46px; padding: 0 15px; border-bottom: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg,#1a1e25,#11151b); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #3e4147; }
.browser-dots i:first-child { background: #a8761b; }
.browser-address { justify-self: center; min-width: 230px; padding: 6px 18px; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; color: #7f8288; background: rgba(5,7,10,.44); text-align: center; font-size: .61rem; letter-spacing: .08em; }
.browser-address i { display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: #b78422; }
.browser-live-light { justify-self: end; width: 7px; height: 7px; border-radius: 50%; background: #494c52; transition: background .25s, box-shadow .25s; }

.process-browser-canvas { position: relative; aspect-ratio: 1.36 / 1; min-height: 430px; overflow: hidden; background: #0b0f15; }
.process-stage { position: absolute; inset: 0; overflow: hidden; }

.stage-discovery { padding: clamp(26px,3vw,44px); background: radial-gradient(circle at 20% 14%,rgba(255,193,54,.12),transparent 30%), linear-gradient(135deg,#11161d,#090c11); }
.discovery-title span { color: #d5a53a; font-size: .58rem; font-weight: 700; letter-spacing: .2em; }
.discovery-title strong { display: block; margin-top: 10px; color: #f6f2e9; font-family: var(--font-head); font-size: clamp(1.9rem,3.3vw,3.25rem); line-height: .94; letter-spacing: -.055em; }
.brief-note { position: absolute; width: 38%; padding: 16px 18px; border: 1px solid rgba(255,213,112,.19); border-radius: 14px; background: linear-gradient(135deg,rgba(35,38,44,.97),rgba(17,20,26,.94)); box-shadow: 0 18px 34px rgba(0,0,0,.34); }
.brief-note span { color: #a48237; font-size: .5rem; letter-spacing: .15em; }
.brief-note b { display: block; margin-top: 8px; color: #ece9e2; font-size: .75rem; }
.brief-note i { display: block; width: 44%; height: 2px; margin-top: 13px; background: #d99c27; box-shadow: 0 0 10px rgba(255,186,43,.5); }
.note-one { right: 7%; top: 10%; transform: rotate(2deg); }.note-two { right: 14%; top: 42%; transform: rotate(-2deg); }.note-three { right: 5%; bottom: 8%; transform: rotate(1deg); }
.brief-tags { position: absolute; left: 7%; bottom: 10%; display: flex; gap: 7px; }
.brief-tags span { padding: 7px 10px; border: 1px solid rgba(255,195,57,.25); border-radius: 20px; color: #c99b39; font-size: .48rem; letter-spacing: .1em; }

.stage-structure { opacity: 0; background: #0c1016; clip-path: inset(0 100% 0 0); }
.sitemap { position: absolute; inset: 5% 6% 49%; }
.sitemap-lines { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: #e5aa2c; stroke-width: 1.5; filter: drop-shadow(0 0 6px rgba(255,190,43,.45)); }
.site-node { position: absolute; display: grid; place-items: center; width: 21%; height: 38px; border: 1px solid rgba(255,205,85,.36); border-radius: 8px; color: #d8d3c8; background: #171b22; font-size: .52rem; font-weight: 700; letter-spacing: .1em; }
.node-home { left: 39.5%; top: 0; color: #17130b; background: #eab139; }.node-services{left:7%;top:52%;}.node-work{left:39.5%;top:52%;}.node-contact{right:7%;top:52%;}.node-sub-one{left:7%;bottom:0;opacity:.55}.node-sub-two{left:39.5%;bottom:0;opacity:.55}.node-sub-three{right:7%;bottom:0;opacity:.55}
.wireframe { position: absolute; left: 6%; right: 6%; bottom: -2%; height: 46%; padding: 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px 14px 0 0; background: #12171e; }
.wire-nav { display:flex; align-items:center; gap:9px; height:22px; }.wire-nav i{width:44px;height:7px;background:#d3a238}.wire-nav span{width:25px;height:3px;margin-left:auto;background:#4a4e54}.wire-nav span+span{margin-left:0}
.wire-hero{display:grid;grid-template-columns:1.25fr .75fr;gap:18px;margin-top:22px}.wire-hero div b{display:block;width:80%;height:9px;margin-bottom:8px;background:#73767a}.wire-hero div b+ b{width:62%}.wire-hero em{display:block;width:48px;height:16px;margin-top:14px;border:1px solid #b5872c}.wire-hero>i{height:94px;border:1px solid #555a62;background:repeating-linear-gradient(45deg,transparent,transparent 6px,rgba(255,255,255,.035) 6px,rgba(255,255,255,.035) 7px)}
.wire-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:16px}.wire-cards i{height:52px;border:1px solid #444a52;border-radius:4px}

.stage-build { opacity: 0; background: #090c11; clip-path: inset(100% 0 0 0); }
.site-ui { position:absolute; inset:0; overflow:hidden; background:radial-gradient(circle at 78% 48%,rgba(248,177,35,.16),transparent 31%),linear-gradient(135deg,#131820,#090c11); }
.site-nav{display:flex;align-items:center;justify-content:space-between;height:62px;padding:0 5.5%;border-bottom:1px solid rgba(255,255,255,.07)}.site-nav>b{font-family:var(--font-head);font-size:1rem;color:#fff}.site-nav>b span{color:#f4b52e}.site-nav div{display:flex;gap:14px}.site-nav div i{width:25px;height:3px;background:#62656a}.site-nav em{padding:8px 12px;border:1px solid #c58d25;border-radius:20px;color:#f0bd4e;font-size:.5rem;font-style:normal;letter-spacing:.1em}
.site-hero-copy{position:absolute;left:6%;top:24%;z-index:2}.site-hero-copy>span{color:#e4ad36;font-size:.52rem;font-weight:700;letter-spacing:.2em}.site-hero-copy strong{display:block;margin-top:11px;color:#f8f5ef;font-family:var(--font-head);font-size:clamp(1.75rem,3.1vw,3.05rem);line-height:.97;letter-spacing:-.055em}.site-hero-copy strong i{color:#efb235;font-style:normal}.site-hero-copy p{width:152px;height:3px;margin-top:16px;background:#686a6c}.site-hero-copy p+p{width:104px;margin-top:7px}.site-hero-copy button{margin-top:22px;padding:10px 14px;border:0;border-radius:20px;color:#151006;background:#efb537;font-size:.5rem;font-weight:700;letter-spacing:.08em}.site-hero-copy button b{margin-left:8px}
.site-hero-art{position:absolute;right:5%;top:19%;width:43%;aspect-ratio:1}.art-ring{position:absolute;inset:0;border:1px solid rgba(255,193,55,.35);border-radius:50%;box-shadow:0 0 70px rgba(246,169,28,.12),inset 0 0 60px rgba(246,169,28,.08)}.art-ring::after{content:'';position:absolute;inset:12%;border:1px dashed rgba(255,220,136,.25);border-radius:50%}.art-core{position:absolute;inset:28%;display:grid;place-items:center;border-radius:50%;color:#f7d583;background:radial-gradient(circle at 35% 30%,#815313,#1c160b 68%);box-shadow:0 0 46px rgba(255,182,34,.3);font-family:var(--font-head);font-size:1.4rem;font-weight:700}.art-spark{position:absolute;width:6px;height:6px;border-radius:50%;background:#fff1b9;box-shadow:0 0 18px #ffbd31}.spark-one{left:8%;top:50%}.spark-two{right:13%;top:14%}
.site-stat{position:absolute;right:7%;bottom:7%;display:flex;gap:8px;align-items:center;padding:10px 13px;border:1px solid rgba(255,210,100,.2);border-radius:10px;background:rgba(20,23,29,.84)}.site-stat strong{color:#f0b334;font-family:var(--font-head);font-size:1.2rem}.site-stat span{color:#aaa;font-size:.45rem;line-height:1.3;letter-spacing:.09em}
.component-rail{position:absolute;right:2%;top:18%;display:grid;gap:7px;padding:11px;border:1px solid rgba(255,205,84,.22);border-radius:10px;background:#181c23;transform:translateX(130%)}.component-rail span{color:#a88231;font-size:.38rem;letter-spacing:.1em}.component-rail i{width:42px;height:15px;border:1px solid #66552f;border-radius:3px}.component-rail i:nth-child(3){background:#d49b28}.component-rail i:nth-child(4){border-radius:10px}
.code-panel{position:absolute;right:4%;bottom:5%;display:grid;gap:5px;width:48%;padding:14px;border:1px solid rgba(255,255,255,.11);border-radius:10px;background:rgba(7,9,13,.94);box-shadow:0 20px 45px rgba(0,0,0,.45);transform:translateY(140%)}.code-panel span{color:#b4b7bc;font-family:monospace;font-size:.48rem}.code-panel b{color:#efb435;font-weight:400}

.launch-layer{position:absolute;inset:0;z-index:8;display:grid;place-items:center;opacity:0;background:rgba(7,10,14,.28)}.launch-ring{position:absolute;width:130px;aspect-ratio:1;border:1px solid rgba(255,195,52,.6);border-radius:50%;opacity:0}.launch-badge{position:absolute;right:5%;top:6%;display:flex;align-items:center;gap:7px;padding:8px 11px;border:1px solid rgba(255,214,111,.35);border-radius:18px;background:rgba(10,13,18,.86);transform:translateY(-30px);opacity:0}.launch-badge i{width:6px;height:6px;border-radius:50%;background:#43dd83;box-shadow:0 0 12px #43dd83}.launch-badge span{color:#54df8d;font-size:.48rem;font-weight:700;letter-spacing:.12em}.launch-badge b{color:#c9c8c3;font-size:.53rem}.launch-check{display:grid;place-items:center;width:84px;aspect-ratio:1;border:1px solid rgba(255,218,126,.6);border-radius:50%;background:#eeb337;box-shadow:0 0 0 12px rgba(239,178,52,.09),0 0 70px rgba(255,183,31,.48);transform:scale(.4);opacity:0}.launch-check svg{width:46px;fill:none;stroke:#171006;stroke-width:5;stroke-linecap:round;stroke-linejoin:round}.launch-title{position:absolute;top:64%;color:#fff2c4;font-family:var(--font-head);font-size:.72rem;letter-spacing:.28em;transform:translateY(10px);opacity:0}
.process-cursor{position:absolute;z-index:12;left:79%;top:73%;width:18px;height:24px;filter:drop-shadow(0 0 8px rgba(255,197,57,.7));}.process-cursor::before{content:'';position:absolute;border-left:8px solid #fff2c7;border-top:11px solid transparent;border-bottom:3px solid transparent;transform:rotate(-35deg)}.process-cursor span{position:absolute;left:-7px;top:-7px;width:24px;height:24px;border:1px solid #f0b333;border-radius:50%;opacity:.45}
.process-scanline{position:absolute;z-index:10;left:0;right:0;top:-2px;height:2px;opacity:0;background:linear-gradient(90deg,transparent,#fff4c7,transparent);box-shadow:0 0 14px #f1b638}
.process-visual-caption{display:flex;justify-content:space-between;margin-top:16px;color:#7d7971;font-family:var(--font-head);font-size:.58rem;font-weight:700;letter-spacing:.16em}.caption-state{color:#d9a538}

@media (min-width: 901px) {
  .process-section.process-enhanced { padding: 0; }
  .process-section.process-enhanced .process-shell { min-height: 100svh; padding-top: 78px; padding-bottom: 54px; }
  .process-section.process-enhanced .process-intro { position: relative; top: auto; }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .process-section .process-shell { grid-template-columns: minmax(280px,.78fr) minmax(480px,1.22fr); gap: 34px; }
  .process-browser-canvas { min-height: 390px; }
  .process-section .process-intro h2 { font-size: clamp(2.15rem,3.7vw,3.4rem); }
}

@media (max-width: 900px) {
  .process-section { min-height: 0; padding: 90px 0; overflow: hidden; }
  .process-section .process-shell { grid-template-columns: 1fr; gap: 46px; }
  .process-section .process-intro h2 { max-width: 660px; font-size: clamp(2.1rem,8vw,3.7rem); }
  .process-section .process-steps { margin-top: 30px; }
  .process-section .process-step { opacity: 1; transform: none; }
  .process-section .process-step h3 { color: #eeeae2; }
  .process-section .process-step p { display: block; }
  .process-section .process-step.is-active { transform: none; }
  .process-section .process-progress { display: none; }
  .process-browser { transform: none; }
  .process-browser-canvas { min-height: 410px; }
  .stage-discovery,.stage-structure { display:none; }
  .stage-build { opacity:1;clip-path:none; }
  .component-rail,.code-panel,.process-cursor,.process-scanline { display:none; }
  .launch-layer { opacity:1;background:transparent;pointer-events:none; }
  .launch-layer .launch-ring,.launch-layer .launch-title,.launch-layer .launch-check { display:none; }
  .launch-badge { opacity:1;transform:none; }
  .browser-live-light { background:#48dc85;box-shadow:0 0 12px #48dc85; }
  .process-depth-grid { display:none; }
}

@media (max-width: 560px) {
  .process-section { padding: 76px 0; }
  .process-section .process-shell { gap: 34px; }
  .process-section .process-intro .section-intro { font-size:.91rem; }
  .process-section .process-step { grid-template-columns:28px 1fr;padding:12px 0; }
  .process-section .process-step p { font-size:.72rem; }
  .process-browser-bar { grid-template-columns:48px 1fr 28px;height:40px;padding:0 10px; }
  .browser-address { min-width:0;width:100%;padding:5px 8px;font-size:.48rem; }
  .process-browser-canvas { min-height:290px;aspect-ratio:1.12/1; }
  .site-nav { height:48px; }.site-nav div{display:none}.site-hero-copy{top:24%;}.site-hero-copy strong{font-size:clamp(1.4rem,7.2vw,2.2rem)}.site-hero-art{right:-2%;top:26%;width:49%}.site-stat{right:4%;bottom:5%;}.site-hero-copy p{width:115px}.process-visual-caption{font-size:.48rem; }
}

@media (prefers-reduced-motion: reduce) {
  .process-section.process-enhanced { padding: 90px 0; }
  .process-section.process-enhanced .process-shell { min-height: auto; padding: 0; }
  .process-browser { transform: none !important; }
  .stage-discovery,.stage-structure { display:none; }
  .stage-build { opacity:1 !important;clip-path:none !important; }
  .launch-layer { opacity:1 !important;background:transparent; }
  .launch-badge { opacity:1 !important;transform:none !important; }
  .launch-ring,.launch-check,.launch-title,.component-rail,.code-panel,.process-cursor,.process-scanline { display:none; }
}

/* Production content and interaction layer */
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #171006;
  background: var(--bright-gold);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--motion-duration-fast) var(--motion-ease);
}

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

.js .hero,
.js .hero.hero-motion-ready,
.js .hero.hero-static { visibility: visible; }

.hero,
.hero-grid,
.hero-copy,
.hero-stage,
.mockup-3d { min-width: 0; }

.hero { overflow: clip; }
.mockup-3d { max-width: 100%; }

.system-step-title {
  display: block;
  margin: 0;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.96rem;
  line-height: 1.25;
}

.site-hero-copy .site-ui-cta {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 20px;
  color: #151006;
  background: #efb537;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.site-hero-copy .site-ui-cta b { margin-left: 8px; }

.pricing-card { align-items: start; }
.pricing-copy,
.package-preview { min-width: 0; }

.package-summary {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.package-summary > span,
.package-spec-grid span,
.package-list-label,
.project-brief span,
.project-feature-block > span,
.project-tech > span {
  color: var(--accent);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.package-summary p {
  max-width: 64ch;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.7;
}

.package-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.package-spec-grid > div {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 13px;
  background: rgba(5, 8, 12, .34);
}

.package-spec-grid span { display: block; margin-bottom: 7px; color: var(--muted-2); }
.package-spec-grid strong { display: block; color: var(--text); font-size: .79rem; line-height: 1.45; }
.package-list-label { margin-bottom: 10px; }

.package-actions,
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.package-actions .btn,
.project-actions .btn {
  min-height: 46px;
  padding: 12px 17px;
  text-align: center;
}

.timeline-note {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(212, 166, 58, .2);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(212, 166, 58, .065);
  font-size: .9rem;
  line-height: 1.65;
  text-align: center;
}

.project-preview-wrap {
  padding: 14px 14px 0;
  background: #0b0d10;
  border-bottom: 1px solid var(--border);
}

.project-preview-wrap .project-preview {
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  transition: width var(--motion-duration-base) var(--motion-ease), border-radius var(--motion-duration-base) var(--motion-ease);
}

.project-preview-wrap .project-preview.is-mobile {
  width: min(238px, 76%);
  border-inline: 7px solid #1c2026;
  border-radius: 28px 28px 0 0;
}

.device-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 10, 14, .78);
}

.device-switch button {
  min-height: 34px;
  padding: 7px 11px;
  border: 0;
  border-radius: 999px;
  color: var(--muted-2);
  background: transparent;
  font-size: .71rem;
  font-weight: 700;
  transition: color var(--motion-duration-fast) ease, background var(--motion-duration-fast) ease;
}

.device-switch button.is-active {
  color: var(--accent-soft);
  background: rgba(212, 166, 58, .13);
}

.card-device-switch { display: flex; width: max-content; margin: 0 0 12px auto; }
.project-content { padding-top: 26px; }

.concept-disclaimer {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 17px;
  padding: 7px 10px;
  border: 1px solid rgba(212, 166, 58, .2);
  border-radius: 10px;
  color: var(--accent-soft);
  background: rgba(212, 166, 58, .07);
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.45;
}

.project-brand {
  margin-bottom: 5px;
  color: var(--muted-2);
  font-family: var(--font-head);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.project-content h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }

.project-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.project-brief > div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}

.project-brief p { margin-top: 7px; color: var(--muted); font-size: .81rem; line-height: 1.55; }
.project-feature-block { margin-bottom: 18px; }
.project-feature-block ul { display: grid; gap: 7px; margin-top: 10px; padding-left: 18px; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.project-feature-block li::marker { color: var(--accent); }
.project-tech { display: grid; gap: 7px; }
.project-tech strong { color: var(--text); font-size: .8rem; line-height: 1.55; }

.contact-section { text-align: left; }

.contact-wrap {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(38px, 6vw, 68px);
}

.contact-intro,
.contact-form { position: relative; z-index: 1; min-width: 0; }
.contact-wrap h2 { max-width: 13ch; margin-inline: 0; }
.contact-lead { max-width: 52ch; margin: 20px 0 0; }

.contact-primary-note {
  max-width: 48ch;
  margin-top: 24px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-size: .9rem;
}

.contact-list { max-width: none; margin: 28px 0 0; }
.contact-list:empty { display: none; margin: 0; }

.contact-form {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  background: rgba(7, 10, 14, .72);
  box-shadow: inset 0 1px rgba(255, 255, 255, .045), 0 24px 50px rgba(0, 0, 0, .22);
}

.contact-form h3 { font-size: 1.35rem; }
.form-required-note { margin: 5px 0 22px; color: var(--muted-2); font-size: .78rem; }

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

.form-field { min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }

.form-field label,
.consent-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: .78rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  outline: 0;
  color: var(--text);
  background: #0d1116;
  font: inherit;
  font-size: .9rem;
  transition: border-color var(--motion-duration-fast) ease, box-shadow var(--motion-duration-fast) ease, background var(--motion-duration-fast) ease;
}

.form-field input,
.form-field select { padding: 0 13px; }
.form-field textarea { min-height: 132px; padding: 12px 13px; resize: vertical; }
.form-field select { color-scheme: dark; }

/* V14.6 — final technical cleanup: native selects + browser autofill */
.form-field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-color: #0d1116;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1.5 7 7.5l6-6' fill='none' stroke='%23e8c56a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px 8px;
}

.form-field select::-ms-expand { display: none; }

/* Brave/Chrome on Windows otherwise opens a white menu with pale options. */
.form-field select option,
.form-field select optgroup {
  color: #f1ece3;
  background: #10151b;
}

.form-field select option:checked {
  color: #07090c;
  background: #e2bd64;
}

.form-field select:required:invalid { color: #9a958c; }
.form-field select:required:invalid option { color: #f1ece3; }

/* Preserve the dark premium form design when Chrome/Brave autofills fields. */
.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus,
.form-field textarea:-webkit-autofill,
.form-field textarea:-webkit-autofill:hover,
.form-field textarea:-webkit-autofill:focus,
.form-field select:-webkit-autofill,
.form-field select:-webkit-autofill:hover,
.form-field select:-webkit-autofill:focus {
  -webkit-text-fill-color: #f1ece3 !important;
  caret-color: #f1ece3;
  -webkit-box-shadow: 0 0 0 1000px #10151b inset !important;
  box-shadow: 0 0 0 1000px #10151b inset !important;
  border-color: rgba(232, 197, 106, .68) !important;
  transition: background-color 9999s ease-out 0s;
}

.form-field input:autofill,
.form-field textarea:autofill,
.form-field select:autofill {
  color: #f1ece3;
  background: #10151b;
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(232, 197, 106, .68);
  box-shadow: 0 0 0 3px rgba(212, 166, 58, .11);
  background: #10151b;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.consent-field input[aria-invalid="true"] {
  border-color: rgba(255, 105, 97, .76);
}

.field-error {
  display: block;
  min-height: 1.25em;
  margin-top: 5px;
  color: #ff9a94;
  font-size: .72rem;
  line-height: 1.35;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent-field label { margin: 0; color: var(--muted); font-weight: 500; line-height: 1.55; }
.consent-error { margin-left: 30px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-submit:disabled { cursor: wait; opacity: .62; filter: saturate(.65); }

.form-status {
  min-height: 1.5em;
  margin-top: 13px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}

.form-status.is-success { color: #7be5a8; }
.form-status.is-error { color: #ff9a94; }

body.modal-open { overflow: hidden; }

.site-modal {
  position: fixed;
  inset: 0;
  width: min(1200px, calc(100% - 28px));
  max-width: none;
  max-height: calc(100dvh - 28px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 166, 58, .32);
  border-radius: 26px;
  color: var(--text);
  background: linear-gradient(180deg, #171c23, #0e1217);
  box-shadow: 0 50px 140px rgba(0, 0, 0, .8), 0 0 70px rgba(212, 166, 58, .12);
}

.site-modal::backdrop {
  background: rgba(2, 4, 7, .86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal-toolbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 10px 14px 10px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 17, 22, .93);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.modal-lang-switch { width: max-content; }

.site-modal .modal-close {
  position: static;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, .11);
}

.modal-scroll {
  max-height: calc(100dvh - 92px);
  padding: clamp(24px, 4vw, 46px);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.modal-heading { margin-bottom: 28px; padding-right: 32px; }
.modal-heading h2 { max-width: 22ch; margin: 8px 0 7px; font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.05; }
.modal-heading > p:last-child { max-width: 74ch; color: var(--muted); line-height: 1.7; }
.modal-price { color: var(--accent-soft) !important; font-weight: 700; }

.modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.modal-preview-panel,
.modal-details { min-width: 0; }

.modal-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.modal-section-head h3 { font-size: .92rem; }

.modal-preview-frame {
  width: 100%;
  height: clamp(330px, 49vh, 520px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: #080b0f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .05);
  transition: width var(--motion-duration-base) var(--motion-ease), height var(--motion-duration-base) var(--motion-ease), border-radius var(--motion-duration-base) var(--motion-ease);
}

.modal-preview-frame.is-mobile {
  width: min(350px, 100%);
  height: min(600px, 62vh);
  border: 8px solid #252a31;
  border-radius: 30px;
}

.preview-mount,
.preview-mount iframe { width: 100%; height: 100%; }
.preview-mount iframe { display: block; border: 0; background: #fff; }
.preview-mount img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #080b0f;
}

.modal-preview-frame.is-static-preview {
  height: auto;
  aspect-ratio: 1520 / 900;
}

.modal-preview-frame.is-static-preview.is-mobile {
  width: min(290px, 100%);
  height: auto;
  aspect-ratio: 390 / 844;
  border: 8px solid #252a31;
  border-radius: 30px;
}

.preview-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted-2);
  background: rgba(255, 255, 255, .025);
  font-size: .72rem;
}

.preview-fallback[hidden] { display: none; }
.preview-fallback a { flex: 0 0 auto; color: var(--accent-soft); font-weight: 700; }

.modal-details {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(6, 9, 13, .45);
}

.site-modal .modal-meta { margin-bottom: 20px; }
.site-modal .modal-meta div { grid-template-columns: 118px minmax(0, 1fr); }
.modal-list-block + .modal-list-block { margin-top: 20px; }
.modal-list-block h3 { margin-bottom: 10px; font-size: .84rem; }
.modal-list-block ul { display: grid; gap: 8px; padding-left: 19px; color: var(--muted); font-size: .83rem; line-height: 1.55; }
.modal-list-block li::marker { color: var(--accent); }

.modal-note {
  margin: 22px 0;
  padding: 14px;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  background: rgba(212, 166, 58, .055);
  font-size: .8rem;
  line-height: 1.6;
}

.modal-choose-package,
#project-modal-live { width: 100%; }

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.case-study-grid > div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--bg-soft);
}

.case-study-grid h3 { margin-bottom: 7px; color: var(--accent); font-size: .71rem; letter-spacing: .09em; text-transform: uppercase; }
.case-study-grid p { color: var(--muted); font-size: .8rem; line-height: 1.55; }
.modal-details .project-tech { margin: 22px 0; }

.package-concept {
  min-height: 100%;
  color: #f4f0e8;
  background: radial-gradient(circle at 74% 18%, rgba(224, 164, 47, .2), transparent 30%), #0c1015;
  font-family: var(--font-body);
}

.mini-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #171b21;
}

.mini-browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #b68326; }
.mini-browser-bar span { margin-left: auto; color: #8c877d; font-size: .5rem; letter-spacing: .1em; }
.concept-nav { display: flex; align-items: center; justify-content: space-between; padding: 13px 5%; border-bottom: 1px solid rgba(255,255,255,.06); }
.concept-nav strong { color: #efbb4c; font-family: var(--font-head); font-size: .74rem; }
.concept-nav div { display: flex; gap: 10px; color: #918c82; font-size: .5rem; }
.concept-hero { display: grid; grid-template-columns: 1.12fr .88fr; gap: 18px; align-items: center; padding: 7% 7% 5%; }
.concept-kicker { color: #dba943; font-size: .48rem; font-weight: 700; letter-spacing: .16em; }
.concept-hero h4 { max-width: 14ch; margin: 8px 0; font-family: var(--font-head); font-size: clamp(1.25rem, 3vw, 2.2rem); line-height: 1; }
.concept-hero p { max-width: 38ch; color: #aaa69d; font-size: .62rem; line-height: 1.55; }
.concept-button { display: inline-flex; margin-top: 13px; padding: 8px 11px; border-radius: 20px; color: #171006; background: #e7b23f; font-size: .5rem; font-weight: 700; }
.concept-art { min-height: 150px; border: 1px solid rgba(225,173,61,.25); border-radius: 20px; background: linear-gradient(135deg,rgba(233,177,57,.22),rgba(255,255,255,.025)); box-shadow: inset 0 1px rgba(255,255,255,.08); }
.concept-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; padding: 0 7% 6%; }
.concept-benefits article { min-height: 72px; padding: 11px; border: 1px solid rgba(255,255,255,.075); border-radius: 12px; background: rgba(255,255,255,.03); }
.concept-benefits strong { display:block; margin-bottom:5px; color:#e8c56a; font-size:.55rem; }.concept-benefits p{color:#8f8b83;font-size:.5rem;line-height:1.4}
.business-concept .concept-art { background: linear-gradient(145deg,rgba(255,255,255,.08),rgba(215,159,44,.13)); }
.concept-contact-strip { margin: 0 7% 6%; padding: 13px; border: 1px solid rgba(212,166,58,.18); border-radius: 12px; color:#c5bfae; background:rgba(212,166,58,.07); font-size:.55rem; text-align:center; }
.app-concept {
  display: grid;
  grid-template-columns: 84px 1fr;
  min-height: 100%;
  padding-top: 34px;
  position: relative;
}

.app-concept .mini-browser-bar { position: absolute; inset: 0 0 auto; }
.concept-sidebar { padding: 16px 10px; background: #12171d; border-right: 1px solid rgba(255,255,255,.07); }
.concept-sidebar strong { color: #e8b84e; font-size: .62rem; }
.concept-sidebar i { display: block; height: 7px; margin-top: 14px; border-radius: 8px; background: rgba(255,255,255,.08); }
.concept-dashboard { padding: 20px; }
.concept-dashboard > p { color: #d7aa48; font-size: .5rem; letter-spacing: .14em; }
.concept-dashboard h4 { margin: 5px 0 16px; font-size: 1.25rem; }
.dashboard-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.dashboard-cards div { padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: #151a21; }
.dashboard-cards span { display: block; color: #8c8e91; font-size: .48rem; }
.dashboard-cards strong { display: block; margin-top: 6px; color: #f2c45d; }
.concept-table { margin-top: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.concept-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(54px, .7fr) minmax(88px, .7fr);
  gap: 8px;
  align-items: center;
  padding: 9px 11px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #a5a7aa;
  font-size: .49rem;
}
.concept-table div:last-child { border-bottom: 0; }
.concept-status { color: #79dca1 !important; }

.nav-toggle:focus-visible,
.lang-btn:focus-visible,
.device-switch button:focus-visible,
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible,
.consent-field input:focus-visible,
.preview-fallback a:focus-visible,
.site-modal a:focus-visible,
.site-modal button:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .package-spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .modal-layout { grid-template-columns: 1fr; }
  .modal-details { max-width: none; }
}

@media (max-width: 900px) {
  .process-section { padding: 72px 0; }
  .process-section .process-shell { gap: 38px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-wrap h2 { max-width: 16ch; }
  .contact-form { width: 100%; }
}

@media (max-width: 700px) {
  .package-spec-grid { grid-template-columns: 1fr; }
  .project-brief,
  .case-study-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .modal-scroll { padding: 22px 18px 28px; }
  .modal-section-head { align-items: flex-start; flex-direction: column; }
  .preview-fallback { align-items: flex-start; flex-direction: column; }
  .site-modal .modal-meta div { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 560px) {
  .process-section { padding: 64px 0; }
  .process-section .process-shell { gap: 30px; }
  .hero-orbit { width: 104%; }
  .hero-connectors { inset-inline: 0; width: 100%; }
  .package-actions,
  .project-actions { display: grid; grid-template-columns: 1fr; }
  .package-actions .btn,
  .project-actions .btn { width: 100%; }
  .contact-wrap { padding: 24px 18px; border-radius: 24px; }
  .contact-form { padding: 20px 16px; }
  .site-modal { width: 100%; height: 100dvh; max-height: 100dvh; border-radius: 0; }
  .modal-scroll { max-height: calc(100dvh - 62px); }
  .modal-heading { padding-right: 0; }
  .modal-preview-frame { height: 360px; }
  .modal-preview-frame.is-mobile { height: min(540px, 64vh); }
  .modal-details { padding: 16px; }
  .concept-hero { grid-template-columns: 1fr; padding-top: 9%; }
  .concept-art { min-height: 105px; }
  .concept-benefits { grid-template-columns: 1fr; }
  .app-concept { grid-template-columns: 58px 1fr; }
  .concept-dashboard { padding: 13px 10px; }
  .dashboard-cards { grid-template-columns: 1fr; }
  .dashboard-cards div:nth-child(n+3) { display: none; }
}

@media (max-width: 380px) {
  .nav-shell { width: calc(100% - 24px); gap: 6px; }
  .brand { font-size: 1rem; white-space: nowrap; }
  .nav-actions { gap: 0; }
  .lang-switch { flex: 0 0 auto; gap: 2px; white-space: nowrap; padding: 3px; }
  .lang-btn { min-height: 30px; gap: 5px; padding: 5px 6px; }
  .lang-flag { width: 18px; height: 12px; }
  .nav-toggle { width: 40px; height: 40px; flex: 0 0 40px; }
  .nav-toggle span { left: 9px; }
  .nav-panel { left: 12px; right: 12px; top: 76px; }
  .hero h1 { font-size: clamp(1.9rem, 8.1vw, 2.2rem); }
  .hero-proof { gap: 10px; }
  .project-preview-wrap .project-preview.is-mobile { width: min(220px, 84%); }
}

@media (hover: none), (pointer: coarse) {
  .btn,
  .mockup-3d,
  .hero-amber-source,
  .hero-line,
  .hero-stage [data-hero-depth],
  .hero-stage .system-topbar,
  .hero-stage .system-step,
  .hero-stage .system-footer,
  .process-browser { will-change: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .process-section { min-height: 0; padding: 72px 0; }
  .process-section .process-step { opacity: 1; transform: none; }
  .process-section .process-step p { display: block; }
  .btn,
  .mockup-3d,
  .hero-amber-source,
  .hero-line,
  .hero-stage [data-hero-depth],
  .hero-stage .system-topbar,
  .hero-stage .system-step,
  .hero-stage .system-footer,
  .process-browser { will-change: auto; }
}

/* Process descriptions remain available when JavaScript or motion is unavailable. */
.process-section .process-step { opacity: 1; }
.process-section .process-step p { display: block; }
.process-section.process-enhanced .process-step { opacity: .36; }
.process-section.process-enhanced .process-step p { display: none; }
.process-section.process-enhanced .process-step.is-active { opacity: 1; }
.process-section.process-enhanced .process-step.is-active p { display: block; }

.concept-row-action {
  min-width: 0;
  min-height: 32px;
  padding: 6px 8px;
  border: 1px solid rgba(231, 178, 63, .3);
  border-radius: 8px;
  color: #e8c56a;
  background: rgba(212, 166, 58, .08);
  font-size: .66rem;
  line-height: 1.2;
}

.concept-form-state {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 7px;
  align-items: center;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: #11161c;
}

.concept-form-state i { height: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 6px; background: #0d1116; }
.concept-form-state span { padding: 6px 8px; border-radius: 7px; color: #171006; background: #e7b23f; font-size: .45rem; font-weight: 700; }


/* =========================================================
   STEP 2 — clearer package communication and previews
   ========================================================= */
.pricing-explainers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 30px;
}

.pricing-explainers article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .028);
}

.pricing-explainer-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 166, 58, .24);
  border-radius: 13px;
  color: var(--accent-soft);
  background: rgba(212, 166, 58, .09);
  font-family: var(--font-head);
  font-weight: 700;
}

.pricing-explainers h3 {
  margin-bottom: 6px;
  font-size: .93rem;
}

.pricing-explainers p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.62;
}

/* Actual, readable mini-sites replace abstract skeleton previews. */
.package-card-demo,
.package-real-example {
  position: relative;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
}

.package-demo-browser {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(18, 24, 31, .1);
  background: rgba(255, 255, 255, .84);
}
.package-demo-browser i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e67861;
}
.package-demo-browser i:nth-child(2) { background: #e4b53f; }
.package-demo-browser i:nth-child(3) { background: #5aba88; }
.package-demo-browser span {
  margin-left: auto;
  color: #746d62;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.package-demo-nav {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 6%;
  border-bottom: 1px solid rgba(18, 24, 31, .08);
  color: #495361;
  font-size: .52rem;
}
.package-demo-nav strong { margin-right: auto; color: #1e2935; font-size: .62rem; }

.package-card-demo--landing {
  color: #27231f;
  background: linear-gradient(135deg, #fbf5eb, #f4e5d6);
}
.package-demo-hero {
  min-height: 203px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
  align-items: center;
  padding: 7%;
}
.package-demo-hero small,
.package-business-hero small,
.package-app-shell small {
  display: block;
  margin-bottom: 8px;
  color: #b45136;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.package-demo-hero b,
.package-business-hero b,
.package-app-shell b {
  display: block;
  max-width: 14ch;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.3vw, 1.8rem);
  line-height: 1.03;
}
.package-demo-hero p {
  max-width: 30ch;
  margin-top: 8px;
  color: #6f655b;
  font-size: .58rem;
  line-height: 1.5;
}
.package-demo-hero em,
.package-business-hero em {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: #b45136;
  font-size: .5rem;
  font-style: normal;
  font-weight: 800;
}
.package-demo-art {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 48% 48% 18px 18px;
  background: linear-gradient(145deg, #d8ab85, #8a5945);
  box-shadow: 0 18px 34px rgba(93, 54, 39, .18);
}
.package-demo-art::before,
.package-demo-art::after,
.package-demo-art span {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
}
.package-demo-art::before { width: 74%; height: 74%; left: 13%; top: 16%; }
.package-demo-art::after { width: 40%; height: 40%; right: -8%; top: -4%; background: rgba(255, 244, 221, .46); }
.package-demo-art span { width: 44%; height: 18%; left: 28%; bottom: 11%; background: rgba(70, 38, 29, .25); }

.package-card-demo--business {
  color: #12233b;
  background: linear-gradient(145deg, #f2f7ff, #e5eefb);
}
.package-card-demo--business .package-demo-browser { background: rgba(255,255,255,.92); }
.package-business-hero {
  min-height: 125px;
  padding: 7% 7% 5%;
  background: linear-gradient(135deg, #173a68, #285c91);
  color: #fff;
}
.package-business-hero small { color: #a8d7ff; }
.package-business-hero b { max-width: 23ch; font-size: clamp(1.05rem, 2.1vw, 1.65rem); }
.package-business-hero em { background: #fff; color: #173a68; }
.package-business-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 7% 18px;
}
.package-business-services span {
  min-height: 48px;
  border: 1px solid rgba(23,58,104,.11);
  border-radius: 11px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 18px rgba(31,71,114,.07);
}

.package-real-example { background: #080b0f; }
.package-real-example img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.package-real-example span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,8,12,.82);
  backdrop-filter: blur(10px);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.package-card-demo--app {
  color: #eaf4f2;
  background: #0d1720;
}
.package-card-demo--app .package-demo-browser {
  border-bottom-color: rgba(255,255,255,.08);
  background: #15212c;
}
.package-card-demo--app .package-demo-browser span { color: #8ca2a8; }
.package-app-shell {
  min-height: 246px;
  display: grid;
  grid-template-columns: 62px 1fr;
}
.package-app-shell aside {
  padding: 18px 11px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: #111f29;
}
.package-app-shell aside strong { color: #64d7bd; font-size: .62rem; }
.package-app-shell aside i {
  display: block;
  height: 6px;
  margin-top: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.09);
}
.package-app-shell main { padding: 20px; }
.package-app-shell small { color: #64d7bd; }
.package-app-shell b { max-width: none; font-size: 1.2rem; }
.package-app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 17px;
}
.package-app-stats > span {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
}
.package-app-stats i { display: block; height: 5px; border-radius: 8px; background: rgba(255,255,255,.12); }
.package-app-stats i:last-child { width: 48%; background: #64d7bd; }
.package-app-list { display: grid; gap: 7px; margin-top: 11px; }
.package-app-list i { display: block; height: 18px; border-radius: 7px; background: rgba(255,255,255,.055); }

/* Package-modal concepts intentionally use different visual directions.
   They illustrate scope, not a reusable NC Studio template. */
.landing-concept {
  color: #28221e;
  background: radial-gradient(circle at 75% 22%, rgba(181,83,54,.18), transparent 31%), #fbf4e9;
}
.landing-concept .mini-browser-bar,
.business-concept .mini-browser-bar { background: rgba(255,255,255,.86); border-bottom-color: rgba(20,30,42,.1); }
.landing-concept .mini-browser-bar span,
.business-concept .mini-browser-bar span { color: #777168; }
.landing-concept .concept-nav { border-bottom-color: rgba(38,31,26,.09); }
.landing-concept .concept-nav strong { color: #a44931; }
.landing-concept .concept-nav div,
.landing-concept .concept-hero p { color: #6e655d; }
.landing-concept .concept-kicker { color: #a44931; }
.landing-concept .concept-button { color: #fff; background: #a44931; }
.landing-concept .concept-art { border-color: rgba(164,73,49,.18); background: linear-gradient(145deg,#ddb494,#875945); }
.landing-concept .concept-benefits article { border-color: rgba(38,31,26,.09); background: rgba(255,255,255,.52); }
.landing-concept .concept-benefits strong { color: #a44931; }
.landing-concept .concept-benefits p { color: #746b63; }
.landing-concept .concept-contact-strip { border-color: rgba(164,73,49,.16); color:#6e6258; background:rgba(164,73,49,.07); }

.business-concept {
  color: #11243d;
  background: radial-gradient(circle at 74% 18%, rgba(49,119,190,.17), transparent 31%), #eef5ff;
}
.business-concept .concept-nav { border-bottom-color: rgba(17,36,61,.09); }
.business-concept .concept-nav strong { color: #20558a; }
.business-concept .concept-nav div,
.business-concept .concept-hero p { color: #587087; }
.business-concept .concept-kicker { color: #2371ba; }
.business-concept .concept-button { color: #fff; background: #205f9e; }
.business-concept .concept-art { border-color: rgba(32,95,158,.18); background: linear-gradient(145deg,#65a5de,#174b7d); }
.business-concept .concept-benefits article { border-color: rgba(17,36,61,.09); background: rgba(255,255,255,.6); }
.business-concept .concept-benefits strong { color: #205f9e; }
.business-concept .concept-benefits p { color: #5e7385; }
.business-concept .concept-contact-strip { border-color: rgba(32,95,158,.16); color:#506d87; background:rgba(32,95,158,.07); }

.app-concept { background: #0b1620; }
.app-concept .mini-browser-bar { background: #15232e; }
.concept-sidebar strong,
.concept-dashboard > p { color: #65d9bf; }
.concept-status { color: #72e0b7 !important; }
.concept-row-action { color: #071712; background: #65d9bf; }

@media (max-width: 700px) {
  .pricing-explainers { grid-template-columns: 1fr; }
  .package-demo-hero { grid-template-columns: 1fr 110px; padding: 7% 6%; }
  .package-demo-art { min-height: 120px; }
}

@media (max-width: 480px) {
  .pricing-explainers article { grid-template-columns: 36px minmax(0, 1fr); padding: 15px; }
  .pricing-explainer-icon { width: 36px; height: 36px; }
  .package-demo-hero { grid-template-columns: 1fr; }
  .package-demo-art { display: none; }
  .package-business-services { gap: 6px; }
  .package-app-shell { grid-template-columns: 48px 1fr; }
  .package-app-shell main { padding: 15px 11px; }
}

/* Real Landing and Business package demos */
.package-real-example img[src*="landing-desktop"],
.package-real-example img[src*="business-desktop"] {
  object-fit: cover;
  object-position: top center;
}
.package-modal .preview-mount iframe[src*="assets/demos/"] {
  background: #f5f5f2;
}

.premium-value-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(212, 166, 58, .32);
  border-radius: 999px;
  color: var(--accent-soft);
  background: rgba(11, 14, 18, .8);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .09em;
}
@media (max-width: 760px) {
  .premium-value-badge { position: static; display: inline-flex; width: max-content; margin-bottom: 10px; }
}


/* FINAL package redesign — compact premium comparison layout */
.brand-with-mark{display:inline-flex!important;align-items:center;gap:10px}.brand-with-mark img{width:34px;height:34px}.brand-with-mark>span{font-family:var(--font-head);font-weight:750}.brand-with-mark strong{color:var(--accent)}
.pricing-section{background:radial-gradient(circle at 50% 10%,rgba(212,166,58,.08),transparent 34%),#0a0f15}.pricing-section .section-head{text-align:center;max-width:900px;margin-inline:auto}.pricing-section .section-intro{margin-inline:auto}.pricing-note,.pricing-explainers{display:none}
.pricing-benefits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;max-width:860px;margin:0 auto 34px}.pricing-benefits>div{display:grid;grid-template-columns:38px 1fr;column-gap:12px;padding:16px 18px;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:rgba(255,255,255,.025)}.pricing-benefits span{grid-row:1/3;display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(212,166,58,.32);border-radius:12px;color:var(--accent);font-size:.7rem;font-weight:800}.pricing-benefits strong{font-size:.84rem}.pricing-benefits small{color:var(--muted);font-size:.72rem;line-height:1.45}
.pricing-list-compact{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px;align-items:stretch}.pricing-list-compact .package-tile{display:block;padding:16px;border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018));box-shadow:none;min-width:0}.pricing-list-compact .package-tile:hover{border-color:rgba(212,166,58,.34)}.pricing-list-compact .pricing-card-featured{border-color:rgba(212,166,58,.68);box-shadow:0 0 0 1px rgba(212,166,58,.16),0 20px 50px rgba(0,0,0,.28)}
.pricing-list-compact .pricing-head{display:block;margin:0;text-align:center}.pricing-list-compact .pricing-number{display:none}.pricing-list-compact .pricing-copy h3{font-size:1.13rem;margin:6px 0 8px}.pricing-list-compact .package-tagline{min-height:54px;margin:0 auto 10px;color:var(--muted);font-size:.74rem;line-height:1.45;text-align:center}.pricing-list-compact .price{font-size:1.28rem;margin-bottom:14px;text-align:center}.pricing-list-compact .package-preview{min-height:0;height:176px;border:1px solid rgba(255,255,255,.1);border-radius:12px;margin-bottom:16px;background:#080b0f}.pricing-list-compact .package-real-example img{min-height:0;height:100%;object-fit:cover;object-position:top center}.pricing-list-compact .package-real-example span{left:8px;bottom:8px;padding:5px 7px;font-size:.42rem}.pricing-list-compact .package-features{gap:8px;min-height:175px}.pricing-list-compact .package-features li{padding-left:17px;font-size:.72rem;line-height:1.45}.pricing-list-compact .package-features li::before{width:6px;height:6px;box-shadow:none}.pricing-list-compact .tile-meta{display:grid;gap:8px;margin-top:15px;padding-top:12px;border-top:1px solid rgba(255,255,255,.09)}.pricing-list-compact .tile-meta>div{display:flex;justify-content:space-between;gap:8px;align-items:start}.pricing-list-compact .tile-meta span{color:var(--muted);font-size:.64rem}.pricing-list-compact .tile-meta strong{max-width:58%;text-align:right;font-size:.66rem;line-height:1.35}.pricing-list-compact .package-actions{display:grid;gap:8px;margin-top:16px}.pricing-list-compact .package-actions .btn{width:100%;min-height:42px;padding:8px 9px;font-size:.68rem}.pricing-list-compact .premium-value-badge{top:8px;right:50%;transform:translateX(50%);background:var(--accent);color:#151006;border:0;font-size:.52rem}.pricing-list-compact .package-card-demo{height:176px;min-height:0;margin-bottom:16px;border-radius:12px}.pricing-list-compact .package-app-shell{height:144px}.pricing-list-compact .package-app-shell main{padding:12px 8px}.pricing-list-compact .package-app-shell b{font-size:.82rem}.pricing-bottom-info{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:18px;padding:20px;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:rgba(255,255,255,.025)}.pricing-bottom-info strong{font-size:.82rem}.pricing-bottom-info p{margin:6px 0 0;color:var(--muted);font-size:.72rem;line-height:1.55}.timeline-note{margin-top:18px}
@media(max-width:1250px){.pricing-list-compact{grid-template-columns:repeat(3,minmax(0,1fr))}.pricing-list-compact .package-tile:nth-child(4),.pricing-list-compact .package-tile:nth-child(5){grid-column:span 1}}
@media(max-width:900px){.pricing-list-compact{grid-template-columns:repeat(2,minmax(0,1fr))}.pricing-benefits{grid-template-columns:1fr}.pricing-bottom-info{grid-template-columns:1fr}}
@media(max-width:580px){.pricing-list-compact{grid-template-columns:1fr}.pricing-list-compact .package-preview,.pricing-list-compact .package-card-demo{height:220px}.pricing-list-compact .package-features{min-height:0}.brand-with-mark img{width:30px;height:30px}}


/* ===== Final portfolio polish V4 ===== */
.hidden-field{position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip:rect(0 0 0 0)!important;white-space:nowrap!important}

.service-card{display:flex;flex-direction:column}
.service-card>p{flex:1}
.service-link{display:inline-flex;margin-top:18px;color:var(--accent-soft);font-size:.78rem;font-weight:800;letter-spacing:.01em}
.service-link:hover{color:var(--ivory)}

.hero-project-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin:14px 0 12px;padding:8px;border:1px solid rgba(255,255,255,.08);border-radius:13px;background:rgba(4,7,10,.48)}
.hero-project-strip figure{position:relative;margin:0;min-width:0;overflow:hidden;border:1px solid rgba(255,255,255,.08);border-radius:8px;background:#090b0e}
.hero-project-strip img{width:100%;height:58px;object-fit:cover;object-position:top center;opacity:.82;transition:opacity .2s ease,transform .25s ease}
.hero-project-strip figure:hover img{opacity:1;transform:scale(1.035)}
.hero-project-strip figcaption{position:absolute;inset:auto 4px 4px;padding:3px 5px;border-radius:5px;background:rgba(5,7,10,.8);color:#eee8dc;font-size:.46rem;font-weight:800;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.pricing-section .container{width:min(1560px,calc(100% - 36px))}
.pricing-list-compact{grid-template-columns:repeat(5,minmax(230px,1fr));gap:14px}
.pricing-list-compact .package-tile{position:relative;padding:24px 18px 18px;border-radius:20px}
.pricing-list-compact .pricing-copy h3{font-size:1.2rem}
.pricing-list-compact .package-tagline{min-height:64px;font-size:.78rem}
.pricing-list-compact .price{font-size:1.42rem}
.pricing-list-compact .package-preview,.pricing-list-compact .package-card-demo{height:190px}
.pricing-list-compact .package-real-example{display:grid;place-items:center;overflow:hidden}
.pricing-list-compact .package-real-example img{width:100%;height:100%;object-fit:contain!important;object-position:center top!important;background:#080b0f;padding:5px}
.pricing-list-compact .package-features{min-height:190px;gap:9px}
.pricing-list-compact .package-features li{font-size:.75rem;line-height:1.48}
.pricing-list-compact .tile-meta strong{max-width:62%;font-size:.69rem}
.pricing-list-compact .premium-value-badge{top:-11px;right:18px;transform:none;z-index:4;box-shadow:0 8px 22px rgba(0,0,0,.32);white-space:nowrap}
.package-app-process{display:flex;flex-direction:column;padding:0 12px 12px;background:linear-gradient(150deg,#10141a,#090b0f)}
.package-app-process ol{display:grid;gap:7px;margin:10px 0 8px;padding:0;list-style:none}
.package-app-process li{display:grid;grid-template-columns:30px 1fr;align-items:center;gap:8px;padding:7px 8px;border:1px solid rgba(255,255,255,.08);border-radius:8px;background:rgba(255,255,255,.035)}
.package-app-process li span{color:var(--accent-soft);font-size:.6rem;font-weight:900}
.package-app-process li strong{font-size:.68rem}
.package-app-process>p{margin:auto 0 0;color:var(--muted);font-size:.59rem;line-height:1.4}

.work-grid-four{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.project-card-compact{display:flex;flex-direction:column;min-width:0}
.project-card-compact .project-preview-wrap{padding:14px 14px 0}
.project-card-compact .project-preview{height:300px}
.project-card-compact .project-content{display:flex;flex:1;flex-direction:column;padding:25px}
.project-card-compact .project-content>p:not(.concept-disclaimer):not(.project-brand){color:var(--muted);line-height:1.65}
.project-card-compact .project-content h3{font-size:clamp(1.35rem,2vw,1.9rem)}
.project-card-compact .project-actions{margin-top:auto;padding-top:20px}
.project-card-compact .project-preview-image{object-fit:contain;background:#080b0f}
.project-card-compact .project-preview.is-mobile .project-preview-image--mobile{object-fit:contain}
.project-card-compact .concept-disclaimer{width:max-content;max-width:100%}

.site-modal{width:min(1180px,calc(100% - 28px));max-height:min(92vh,900px)}
.modal-scroll{padding:28px 32px 32px}
.modal-heading{margin-bottom:20px}
.modal-heading h2{font-size:clamp(1.75rem,3vw,2.65rem)}
.modal-heading>p:last-child{line-height:1.55}
.modal-layout{grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);gap:22px}
.modal-preview-frame{height:500px}
.modal-details{padding:18px}
.site-modal .modal-meta{margin-bottom:15px}
.site-modal .modal-meta div{padding:9px 0}
.modal-list-block+.modal-list-block{margin-top:14px}
.modal-list-block ul{gap:6px;font-size:.79rem;line-height:1.45}
.modal-note{margin:15px 0;padding:14px;font-size:.78rem;line-height:1.5}
.preview-fallback{padding:12px 14px}
.preview-fallback p{font-size:.75rem}
.preview-mount img{object-fit:contain;background:#080b0f}

.app-process-concept{display:flex;flex-direction:column;gap:18px;padding-bottom:22px}
.app-process-intro{padding:22px 22px 0}
.app-process-intro p{max-width:70ch;margin:0;color:var(--muted);line-height:1.65}
.app-process-steps{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;padding:0 22px;list-style:none}
.app-process-steps li{display:grid;gap:12px;min-height:110px;padding:16px;border:1px solid var(--border);border-radius:12px;background:rgba(255,255,255,.035)}
.app-process-steps span{color:var(--accent);font-size:.72rem;font-weight:900}
.app-process-steps strong{align-self:end;font-size:.85rem}
.app-process-note{margin:0 22px;padding:15px;border-left:2px solid var(--accent);background:rgba(212,166,58,.07);color:var(--muted);line-height:1.6}

.contact-list:not([hidden]){display:grid;gap:10px;margin-top:24px}
.contact-list a{display:grid;gap:3px;padding:13px 15px;border:1px solid var(--border);border-radius:12px;background:rgba(255,255,255,.025)}
.contact-list span{color:var(--muted);font-size:.68rem;text-transform:uppercase;letter-spacing:.12em}
.contact-list strong{font-size:.9rem}

@media(max-width:1380px){
  .pricing-list-compact{grid-template-columns:repeat(3,minmax(0,1fr))}
  .pricing-list-compact .package-features{min-height:0}
}
@media(max-width:980px){
  .work-grid-four{grid-template-columns:1fr}
  .modal-layout{grid-template-columns:1fr}
  .modal-preview-frame{height:440px}
  .app-process-steps{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:760px){
  .hero-project-strip{display:none}
  .pricing-list-compact{grid-template-columns:repeat(2,minmax(0,1fr))}
  .project-card-compact .project-preview{height:270px}
}
@media(max-width:580px){
  .pricing-section .container{width:min(100% - 22px,1560px)}
  .pricing-list-compact{grid-template-columns:1fr}
  .pricing-list-compact .package-preview,.pricing-list-compact .package-card-demo{height:220px}
  .pricing-list-compact .package-tagline{min-height:0}
  .pricing-list-compact .premium-value-badge{top:-10px;right:12px}
  .project-card-compact .project-content{padding:20px}
  .modal-scroll{padding:20px 14px 24px}
  .modal-preview-frame{height:340px}
  .app-process-steps{grid-template-columns:1fr}
  .app-process-steps li{min-height:74px}
}

/* ===== Final interaction and package polish V5 ===== */
#contact { scroll-margin-top: 92px; }
.contact-section.is-package-selected .contact-wrap {
  border-color: rgba(224, 177, 70, .75);
  box-shadow: 0 0 0 3px rgba(224, 177, 70, .1), 0 30px 90px rgba(0, 0, 0, .35);
}

.pricing-list-compact .package-tile {
  display: flex !important;
  flex-direction: column;
}
.pricing-list-compact .pricing-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
}
.pricing-list-compact .package-actions {
  margin-top: auto;
  padding-top: 16px;
}
.pricing-list-compact .package-actions .btn {
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: .73rem;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
}
.pricing-list-compact .package-actions .btn-secondary {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .025);
}
.pricing-list-compact .package-actions .btn-secondary:hover {
  border-color: rgba(212, 166, 58, .65);
  color: var(--ivory);
  background: rgba(212, 166, 58, .08);
}
.pricing-list-compact .package-actions .btn-primary {
  box-shadow: 0 10px 26px rgba(212, 166, 58, .14);
}
.pricing-list-compact .tile-meta span {
  min-width: 58px;
}
.pricing-list-compact .tile-meta strong {
  max-width: 68%;
}

.site-modal[open] { display: block; }
.modal-toolbar { flex: 0 0 auto; }
.modal-scroll {
  scroll-padding-top: 28px;
  min-height: 0;
}
.modal-heading {
  padding-top: 2px;
}
.modal-heading .eyebrow { margin-top: 0; }
.modal-heading h2 {
  scroll-margin-top: 80px;
}
.modal-choose-package {
  min-height: 50px;
}

.project-card-compact .concept-disclaimer {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: .62rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

@media (max-width: 1380px) {
  .pricing-list-compact .package-actions .btn { font-size: .76rem; }
}

@media (max-width: 760px) {
  .pricing-list-compact .package-actions {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-list-compact .package-actions .btn {
    min-height: 48px;
    font-size: .78rem;
  }
  .site-modal .modal-toolbar {
    min-height: 58px;
    padding: 7px 10px 7px 12px;
  }
  .site-modal .modal-close {
    width: 42px;
    height: 42px;
  }
  .modal-scroll {
    max-height: calc(100dvh - 58px);
    padding-top: 24px;
  }
}

@media (max-width: 580px) {
  .pricing-list-compact .package-actions {
    grid-template-columns: 1fr;
  }
  .pricing-list-compact .package-actions .btn {
    min-height: 50px;
    font-size: .82rem;
  }
  .modal-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }
  .modal-price { font-size: .95rem; }
}

/* Package action buttons stay stable and easy to click. */
.package-actions .package-preview-open,
.package-actions .package-choose,
.modal-choose-package {
  --magnetic-x: 0px !important;
  --magnetic-y: 0px !important;
  position: relative;
  z-index: 2;
  transform: none !important;
}
.package-actions .package-preview-open:focus-visible,
.package-actions .package-choose:focus-visible,
.modal-choose-package:focus-visible {
  z-index: 3;
}

/* Keep pricing-card hit areas identical to their visible positions. */
.pricing-list-compact .pricing-copy,
.pricing-list-compact .package-actions,
.pricing-list-compact .package-actions .btn {
  transform: none !important;
  transform-style: flat !important;
  backface-visibility: visible;
}

/* ===== NC Studio final visual system V6 ===== */
:root {
  --bg: #090c10;
  --bg-soft: #0d1117;
  --surface: #12171e;
  --surface-elevated: #171d25;
  --border: rgba(255,255,255,.085);
  --muted: #b9b3a8;
}

/* Calm, consistent section rhythm */
.hero,
.work-section,
.why-section { background-color: #090c10; }
.services,
.process-section,
.contact-section { background-color: #0d1117; }
.pricing-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(212,166,58,.08), transparent 30%),
    #090c10 !important;
}
.services::before,
.pricing-section::before,
.work-section::before,
.process-section::before,
.why-section::before,
.contact-section::before { opacity: .32; }
.services::after,
.pricing-section::after,
.work-section::after,
.process-section::after,
.why-section::after,
.contact-section::after { opacity: .10; }

/* Hero copy */
.hero-copy { max-width: 690px; }
.hero h1 { font-size: clamp(2.7rem, 4.25vw, 4.05rem); letter-spacing: -.055em; }
.hero-lead { max-width: 620px; color: #c9c3b8; }
.hero .eyebrow { color: #e7c978; }

/* Services: concrete, preview-led cards */
.services .section-head { max-width: 850px; }
.services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.service-card-v6 {
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(190px,.82fr) minmax(0,1.18fr);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018)), #11161c;
  overflow: hidden;
  transform: none !important;
}
.service-card-v6::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.service-card-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-right: 1px solid var(--border);
  background: #080b0f;
}
.service-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 45%, rgba(9,12,16,.75) 100%), linear-gradient(180deg, transparent 60%, rgba(9,12,16,.72));
  pointer-events: none;
}
.service-card-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.service-number {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 15px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232,197,106,.4);
  border-radius: 12px;
  color: var(--accent-soft);
  background: rgba(8,11,15,.84);
  font: 700 .72rem var(--font-head);
  letter-spacing: .08em;
}
.service-card-body { display: flex; flex-direction: column; padding: 28px; min-width: 0; }
.service-kicker { margin-bottom: 12px; color: var(--accent); font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.service-card-v6 h3 { margin: 0 0 12px; font-size: clamp(1.35rem,2vw,1.75rem); }
.service-card-v6 .service-card-body > p:not(.service-kicker) { font-size: .9rem; line-height: 1.68; }
.service-result {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding: 14px 15px;
  border-left: 2px solid var(--accent);
  background: rgba(212,166,58,.055);
}
.service-result span { color: var(--accent); font-size: .58rem; font-weight: 800; letter-spacing: .13em; }
.service-result strong { color: #eae5dc; font-size: .78rem; line-height: 1.45; }
.service-card-v6 .service-link { margin-top: auto; padding-top: 20px; color: var(--accent-soft); font-size: .78rem; font-weight: 750; }
.service-app-visual { position:absolute; inset:24px; display:grid; align-content:center; gap:12px; }
.service-app-visual span { display:grid; grid-template-columns:38px 1fr; align-items:center; gap:12px; padding:14px; border:1px solid rgba(255,255,255,.1); border-radius:12px; background:rgba(255,255,255,.035); }
.service-app-visual b { color:var(--accent); font-size:.68rem; }
.service-app-visual em { color:#e7e2da; font-size:.78rem; font-style:normal; font-weight:700; }

/* Pricing: readable comparison, aligned headings, visible badge */
.pricing-section .section-head { max-width: 860px; margin-inline: auto; text-align: center; }
.pricing-section .section-head h2,
.pricing-section .section-intro { margin-inline: auto; }
.pricing-benefits { max-width: 980px; margin-inline: auto; }
.pricing-list-compact { align-items: stretch; }
.pricing-list-compact .package-tile { overflow: hidden; padding: 24px 18px 19px; }
.pricing-list-compact .pricing-card-featured { padding-top: 54px; }
.pricing-list-compact .pricing-head { min-height: 128px; display:flex; justify-content:center; align-items:flex-start; }
.pricing-list-compact .pricing-head > div { width:100%; }
.pricing-list-compact .pricing-copy h3 { min-height: 2.9em; display:grid; place-items:center; margin:0 0 8px; font-size:1.12rem; line-height:1.22; text-align:center; }
.pricing-list-compact .package-tagline { min-height: 52px; margin:0 auto 8px; max-width:28ch; font-size:.72rem; line-height:1.42; }
.pricing-list-compact .price { margin:0; font-size:1.38rem; }
.pricing-list-compact .package-preview,
.pricing-list-compact .package-card-demo { height: 176px; margin: 0 0 15px; }
.pricing-list-compact .package-real-example img { padding: 4px; object-fit: contain !important; object-position: center top !important; }
.pricing-list-compact .package-real-example span { max-width:calc(100% - 16px); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.pricing-list-compact .package-features { min-height: 142px; gap: 8px; }
.pricing-list-compact .package-features li { font-size:.71rem; line-height:1.43; }
.pricing-list-compact .tile-meta { margin-top:14px; }
.pricing-list-compact .tile-meta > div { align-items:center; }
.pricing-list-compact .tile-meta span { font-size:.62rem; }
.pricing-list-compact .tile-meta strong { font-size:.66rem; line-height:1.3; }
.pricing-list-compact .premium-value-badge {
  top: 13px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  max-width: calc(100% - 28px);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .5rem;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pricing-list-compact .package-actions { gap:9px; }
.pricing-list-compact .package-actions .btn {
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:47px;
  padding:10px 12px;
  font-size:.72rem;
  line-height:1.25;
  transform:none !important;
}
.pricing-list-compact .package-actions .btn:hover { transform:none !important; }
.pricing-bottom-info { max-width: 1100px; margin-inline:auto; }

/* Work intro is direct and positive */
.work-section .section-head { max-width: 850px; }

/* Process copy */
.process-section .process-intro .section-intro { max-width: 560px; }

/* Why: one strong promise + three concrete commitments */
.why-section .section-head { max-width: 840px; }
.why-composition { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr); gap:22px; }
.why-featured,
.why-compact {
  position:relative;
  border:1px solid var(--border);
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018)),#11161c;
  box-shadow:0 22px 56px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.04);
}
.why-featured { min-height:100%; padding:38px; background:radial-gradient(circle at 80% 15%,rgba(212,166,58,.12),transparent 35%),linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.018)),#11161c; }
.why-featured h3 { max-width:16ch; margin:58px 0 18px; font-size:clamp(1.8rem,3vw,2.8rem); line-height:1.04; }
.why-featured p { max-width:56ch; line-height:1.75; }
.why-feature-list { display:grid; gap:10px; margin-top:28px; list-style:none; }
.why-feature-list li { position:relative; padding-left:21px; color:#ded8ce; font-size:.86rem; }
.why-feature-list li::before { content:'✓'; position:absolute; left:0; color:var(--accent); font-weight:900; }
.why-stack { display:grid; gap:14px; }
.why-compact { display:grid; grid-template-columns:44px 1fr; gap:4px 16px; padding:22px; }
.why-index { display:grid; place-items:center; width:38px; height:38px; border:1px solid rgba(212,166,58,.3); border-radius:11px; color:var(--accent); background:rgba(212,166,58,.07); font-size:.65rem; font-weight:800; }
.why-compact h3 { align-self:center; font-size:1rem; }
.why-compact p { grid-column:2; font-size:.82rem; line-height:1.58; }
.why-trust-strip { display:flex; flex-wrap:wrap; justify-content:center; gap:9px; margin-top:20px; padding:16px; border:1px solid var(--border); border-radius:16px; background:rgba(255,255,255,.02); }
.why-trust-strip span { display:inline-flex; align-items:center; gap:7px; padding:7px 10px; border-radius:999px; color:#d8d2c8; background:rgba(255,255,255,.035); font-size:.7rem; }
.why-trust-strip span::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--accent); box-shadow:0 0 10px rgba(212,166,58,.5); }

/* Contact selection and form clarity */
.selected-package-summary {
  margin: 10px 0 18px;
  padding: 11px 13px;
  border: 1px solid rgba(212,166,58,.28);
  border-radius: 10px;
  color: #eadcae;
  background: rgba(212,166,58,.07);
  font-size: .78rem;
  font-weight: 700;
}
.budget-compatibility { margin-top:10px; padding:10px 12px; border-left:2px solid var(--accent); color:#d9c99a; background:rgba(212,166,58,.055); font-size:.72rem; line-height:1.5; }

/* Modals: no clipped copy, less scrolling, stable controls */
.site-modal { background:linear-gradient(180deg,#121820,#0b0f14); }
.modal-scroll { scroll-padding-top:24px; }
.modal-heading { padding-right:0; }
.modal-layout { grid-template-columns:minmax(0,1.28fr) minmax(310px,.72fr); gap:20px; }
.modal-details { padding:17px; }
.modal-note { display:block; overflow:visible; max-height:none; white-space:normal; line-height:1.55; }
.modal-choose-package { display:flex; justify-content:center; align-items:center; width:100%; }

/* Footer */
.footer { border-top:1px solid var(--border); background:#080b0f; }
.footer-v6 { min-height:90px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:28px; }
.footer-brand { display:flex; align-items:center; gap:10px; }
.footer-brand img { width:34px; height:34px; }
.footer-brand strong { color:#f1ede6; font-family:var(--font-head); }
.footer-nav { display:flex; justify-content:center; gap:24px; }
.footer-nav a { color:var(--muted); font-size:.76rem; transition:color .2s ease; }
.footer-nav a:hover { color:var(--accent-soft); }
.footer-v6 > p { font-size:.68rem; }

@media (max-width: 1380px) {
  .pricing-list-compact { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .pricing-list-compact .pricing-head { min-height:112px; }
}

@media (max-width: 980px) {
  .service-card-v6 { grid-template-columns: 210px 1fr; }
  .why-composition { grid-template-columns:1fr; }
  .why-featured { min-height:0; }
  .modal-layout { grid-template-columns:1fr; }
}

@media (max-width: 820px) {
  .hero-copy { max-width:none; }
  .hero h1 { font-size:clamp(2.2rem,7.8vw,3.5rem); }
  .services-grid { grid-template-columns:1fr; }
  .service-card-v6 { grid-template-columns:minmax(150px,.72fr) minmax(0,1.28fr); }
  .service-card-visual { min-height:280px; }
  .pricing-list-compact { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .footer-v6 { grid-template-columns:1fr; justify-items:center; padding-block:28px; text-align:center; }
  .footer-nav { flex-wrap:wrap; }
}

@media (max-width: 580px) {
  .section-pad { padding:76px 0; }
  .container { width:min(100% - 26px,1180px); }
  .hero { padding-top:104px; }
  .hero h1 { font-size:clamp(1.98rem,9.2vw,2.55rem); line-height:1.02; }
  .hero-line { white-space:normal; }
  .hero-line-mask { overflow:visible; margin-bottom:0; padding-bottom:.02em; }
  .hero-lead { margin-top:22px; font-size:.94rem; line-height:1.68; }
  .hero-actions { display:grid; grid-template-columns:1fr; gap:10px; }
  .hero-actions .btn { width:100%; }
  .hero-proof { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .hero-proof strong { white-space:normal; font-size:.72rem; }

  .services .section-head,
  .pricing-section .section-head,
  .work-section .section-head,
  .why-section .section-head { margin-bottom:38px; }
  .service-card-v6 { grid-template-columns:1fr; }
  .service-card-visual { min-height:190px; border-right:0; border-bottom:1px solid var(--border); }
  .service-card-visual::after { background:linear-gradient(180deg,transparent 35%,rgba(9,12,16,.74)); }
  .service-card-body { padding:22px; }
  .service-card-v6 h3 { font-size:1.42rem; }

  .pricing-section .container { width:min(100% - 22px,1560px); }
  .pricing-list-compact { grid-template-columns:1fr; }
  .pricing-list-compact .package-tile,
  .pricing-list-compact .pricing-card-featured { padding:22px 16px 18px; }
  .pricing-list-compact .pricing-card-featured { padding-top:52px; }
  .pricing-list-compact .pricing-head { min-height:0; }
  .pricing-list-compact .pricing-copy h3 { min-height:0; font-size:1.3rem; }
  .pricing-list-compact .package-tagline { min-height:0; font-size:.8rem; }
  .pricing-list-compact .package-preview,
  .pricing-list-compact .package-card-demo { height:220px; }
  .pricing-list-compact .package-features { min-height:0; }
  .pricing-list-compact .package-features li { font-size:.78rem; }
  .pricing-list-compact .premium-value-badge { top:14px; font-size:.54rem; }
  .pricing-list-compact .package-actions { grid-template-columns:1fr; }
  .pricing-list-compact .package-actions .btn { min-height:50px; font-size:.82rem; }

  .why-featured { padding:26px; }
  .why-featured h3 { margin-top:42px; font-size:2rem; }
  .why-compact { grid-template-columns:38px 1fr; padding:18px; }
  .why-compact p { grid-column:1 / -1; margin-top:8px; }
  .why-trust-strip { justify-content:flex-start; }

  .modal-toolbar { min-height:56px; }
  .modal-scroll { max-height:calc(100dvh - 56px); padding:20px 14px 26px; }
  .modal-heading h2 { font-size:clamp(1.65rem,8.5vw,2.2rem); }
  .modal-preview-frame { height:320px; }
  .modal-details { padding:15px; }
  .modal-section-head { gap:10px; }
  .device-switch button { min-height:38px; padding-inline:11px; }

  .footer-nav { gap:14px 18px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size:1.88rem; }
  .hero-proof { grid-template-columns:1fr; }
  .service-card-body { padding:19px; }
  .pricing-list-compact .package-preview,
  .pricing-list-compact .package-card-demo { height:195px; }
  .modal-scroll { padding-inline:11px; }
}

@media (max-width: 580px) {
  .site-header .brand-with-mark { white-space: nowrap; flex-shrink: 0; gap: 7px; }
  .site-header .brand-with-mark > span { white-space: nowrap; font-size: .96rem; }
  .site-header .brand-with-mark img { width: 28px; height: 28px; flex: 0 0 28px; }
}


/* ===== NC Studio V7: continuous backgrounds, non-repetitive services and pricing ===== */
main {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(900px 620px at 86% 3%, rgba(212,166,58,.105), transparent 64%),
    radial-gradient(780px 560px at 8% 25%, rgba(52,72,94,.19), transparent 68%),
    radial-gradient(900px 680px at 92% 52%, rgba(212,166,58,.065), transparent 68%),
    radial-gradient(820px 600px at 5% 78%, rgba(49,66,85,.17), transparent 70%),
    linear-gradient(180deg, #090c10 0%, #0c1117 23%, #090d12 47%, #0d1117 72%, #080b0f 100%);
}
.hero,
.services,
.pricing-section,
.work-section,
.process-section,
.why-section,
.contact-section {
  position: relative;
  background: transparent !important;
}
.services::before,
.services::after,
.pricing-section::before,
.pricing-section::after,
.work-section::before,
.work-section::after,
.process-section::before,
.process-section::after,
.why-section::before,
.why-section::after,
.contact-section::before,
.contact-section::after {
  display: none !important;
}
.services {
  background: linear-gradient(180deg, transparent 0%, rgba(13,17,23,.54) 22%, rgba(13,17,23,.54) 78%, transparent 100%) !important;
}
.pricing-section {
  background:
    radial-gradient(700px 360px at 50% 12%, rgba(212,166,58,.085), transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(8,12,17,.46) 18%, rgba(8,12,17,.46) 82%, transparent 100%) !important;
}
.process-section {
  background: linear-gradient(180deg, transparent 0%, rgba(14,19,25,.46) 20%, rgba(14,19,25,.46) 80%, transparent 100%) !important;
}
.why-section {
  background:
    radial-gradient(700px 460px at 14% 28%, rgba(55,75,96,.12), transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(9,13,18,.42) 25%, rgba(9,13,18,.42) 75%, transparent 100%) !important;
}

/* Services are now an editorial capability list; project previews live only in Work and modals. */
.services .section-head { max-width: 800px; }
.services-list-v7 {
  border-top: 1px solid rgba(255,255,255,.1);
}
.service-row-v7 {
  display: grid;
  grid-template-columns: 64px minmax(190px,.8fr) minmax(250px,1.15fr) minmax(220px,.85fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 164px;
  padding: 28px 8px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: background .25s ease, padding-inline .25s ease, border-color .25s ease;
}
.service-row-v7:hover {
  padding-inline: 18px;
  border-color: rgba(212,166,58,.28);
  background: linear-gradient(90deg, rgba(212,166,58,.045), rgba(255,255,255,.018), transparent);
}
.service-row-index {
  color: rgba(232,197,106,.72);
  font: 700 .76rem var(--font-head);
  letter-spacing: .12em;
}
.service-row-title .service-kicker { margin: 0 0 8px; }
.service-row-title h3 { margin: 0; font-size: clamp(1.35rem,2vw,1.9rem); line-height: 1.08; }
.service-row-copy { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.72; }
.service-row-result {
  display: grid;
  gap: 5px;
  padding-left: 16px;
  border-left: 1px solid rgba(212,166,58,.32);
}
.service-row-result span { color: var(--accent); font-size: .58rem; font-weight: 800; letter-spacing: .13em; }
.service-row-result strong { color: #e7e1d7; font-size: .78rem; line-height: 1.5; }
.service-link-v7 { color: var(--accent-soft); font-size: .74rem; font-weight: 800; white-space: nowrap; }

/* Pricing cards show scope, not the same four websites again. */
.pricing-card-v7 .package-scope-visual {
  position: relative;
  height: 166px;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    #0d1218;
}
.package-scope-orbit {
  position: absolute;
  right: -42px;
  top: -54px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(212,166,58,.22);
  border-radius: 50%;
}
.package-scope-orbit--two { right: 26px; top: 72px; width: 92px; height: 92px; opacity: .5; }
.package-scope-copy { position: absolute; z-index: 2; inset: 22px 18px auto; display: grid; gap: 7px; }
.package-scope-copy small { color: var(--accent); font-size: .57rem; font-weight: 850; letter-spacing: .14em; }
.package-scope-copy strong { max-width: 14ch; color: #f1ede6; font-size: 1.05rem; line-height: 1.15; }
.package-scope-copy span { color: var(--muted); font-size: .68rem; line-height: 1.45; }
.package-scope-bars { position: absolute; left: 18px; right: 18px; bottom: 18px; display: grid; gap: 6px; }
.package-scope-bars i { display: block; height: 4px; border-radius: 99px; background: rgba(255,255,255,.08); }
.package-scope-bars i:nth-child(1) { width: 82%; background: linear-gradient(90deg, rgba(212,166,58,.7), rgba(212,166,58,.08)); }
.package-scope-bars i:nth-child(2) { width: 61%; }
.package-scope-bars i:nth-child(3) { width: 42%; }
.package-scope-visual--business { background: linear-gradient(145deg, rgba(64,79,96,.18), rgba(255,255,255,.012)), #0d1218; }
.package-scope-visual--premium { background: radial-gradient(circle at 80% 20%, rgba(212,166,58,.16), transparent 42%), #0d1218; }
.package-scope-visual--ecommerce { background: linear-gradient(135deg, rgba(35,82,132,.17), rgba(255,255,255,.01)), #0d1218; }
.package-scope-visual--webapp { background: linear-gradient(135deg, rgba(69,52,105,.18), rgba(255,255,255,.01)), #0d1218; }
.pricing-list-compact .package-scope-visual { height: 166px; }

/* Modal content remains visible and compact. */
.site-modal { overflow: hidden; }
.modal-scroll {
  height: calc(100% - 62px);
  max-height: none;
  padding-bottom: 48px;
  overflow-anchor: none;
}
.modal-heading { margin-bottom: 22px; }
.modal-layout { align-items: start; }
.modal-details {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0;
  overflow: visible;
}
.modal-details .modal-meta { margin-bottom: 14px; }
.modal-list-block + .modal-list-block { margin-top: 16px; }
.modal-note { margin: 16px 0; }
.modal-choose-package { margin-top: 2px; }

@media (max-width: 1180px) {
  .service-row-v7 { grid-template-columns: 54px minmax(170px,.75fr) minmax(240px,1.15fr) minmax(190px,.8fr); }
  .service-link-v7 { grid-column: 2 / -1; justify-self: start; margin-top: -6px; }
}
@media (max-width: 820px) {
  .service-row-v7 {
    grid-template-columns: 48px 1fr;
    gap: 12px 18px;
    padding: 25px 4px;
  }
  .service-row-title { align-self: center; }
  .service-row-copy,
  .service-row-result,
  .service-link-v7 { grid-column: 2; }
  .service-row-result { margin-top: 2px; }
  .service-row-v7:hover { padding-inline: 8px; }
}
@media (max-width: 580px) {
  .service-row-v7 { grid-template-columns: 38px 1fr; gap: 10px 13px; }
  .service-row-title h3 { font-size: 1.35rem; }
  .service-row-copy { font-size: .84rem; line-height: 1.65; }
  .service-row-result strong { font-size: .75rem; }
  .pricing-list-compact .package-scope-visual { height: 178px; }
  .modal-scroll { height: calc(100% - 56px); padding-bottom: 54px; }
}

/* Final V7 mobile modal cleanup. */
@media (max-width: 580px) {
  .preview-fallback {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 12px;
  }
  .preview-fallback p { margin: 0; }
  .preview-fallback a { justify-self: start; }
  .preview-fallback .concept-disclaimer { justify-self: start; }
  .modal-details { margin-top: 4px; }
}


/* ===== NC Studio V9 pre-deploy refinement ===== */
/* One visual background system; sections blend instead of changing as solid blocks. */
main {
  background:
    radial-gradient(900px 620px at 88% 2%, rgba(212,166,58,.10), transparent 66%),
    radial-gradient(760px 560px at 4% 26%, rgba(48,67,88,.16), transparent 70%),
    radial-gradient(820px 560px at 94% 55%, rgba(212,166,58,.055), transparent 72%),
    radial-gradient(760px 520px at 8% 82%, rgba(48,67,88,.12), transparent 72%),
    linear-gradient(180deg,#090c10 0%,#0a0e13 18%,#0c1117 38%,#090d12 58%,#0b1016 78%,#080b0f 100%);
}
.hero,.services,.pricing-section,.work-section,.process-section,.why-section,.contact-section {
  background: transparent !important;
}
.services,.pricing-section,.process-section,.why-section {
  box-shadow: inset 0 1px rgba(255,255,255,.018), inset 0 -1px rgba(255,255,255,.012);
}
.services { background: linear-gradient(180deg,transparent,rgba(15,20,27,.26) 42%,rgba(15,20,27,.19) 72%,transparent) !important; }
.pricing-section { background: radial-gradient(720px 360px at 50% 10%,rgba(212,166,58,.07),transparent 74%) !important; }
.process-section { background: linear-gradient(180deg,transparent,rgba(14,19,26,.24) 45%,transparent) !important; }
.why-section { background: radial-gradient(700px 460px at 12% 35%,rgba(52,70,92,.09),transparent 76%) !important; }

/* Pricing cards show the actual quality level; detailed project storytelling stays in Work. */
.pricing-list-compact .package-real-example {
  position: relative;
  display: block;
  overflow: hidden;
  background: #080b0f;
}
.pricing-list-compact .package-real-example img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: top center !important;
  transform: scale(1.002);
}
.pricing-list-compact .package-real-example::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg,transparent,rgba(5,7,10,.36));
}
.pricing-list-compact .package-real-example span {
  z-index: 2;
}
.pricing-list-compact .package-preview,
.pricing-list-compact .package-card-demo {
  height: 184px;
  border-radius: 13px;
}
.pricing-list-compact .pricing-head { min-height: 132px; }
.pricing-list-compact .package-features { min-height: 150px; }
.pricing-list-compact .package-actions { margin-top: auto; }
.pricing-list-compact .premium-value-badge {
  top: 14px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

/* Dialog content always starts below the toolbar and remains fully reachable. */
.site-modal { max-height: min(94dvh, 980px); }
.modal-toolbar { position: sticky; top: 0; }
.modal-scroll {
  height: calc(100% - 62px);
  max-height: calc(94dvh - 62px);
  padding-top: clamp(30px,4vw,46px);
  padding-bottom: 72px;
  scroll-padding-top: 30px;
}
.modal-heading {
  position: relative;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
}
.modal-heading h2,
.modal-heading .modal-price,
.modal-details,
.modal-note,
.modal-choose-package { overflow: visible; }
.modal-note { display: block; max-height: none; -webkit-line-clamp: unset; }
.modal-details { padding-bottom: 6px; }
.modal-choose-package { position: relative; z-index: 2; }

@media (max-width: 1250px) {
  .pricing-list-compact { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .pricing-list-compact .package-features { min-height: 0; }
}
@media (max-width: 900px) {
  .pricing-list-compact { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pricing-list-compact .pricing-head { min-height: 116px; }
  .pricing-list-compact .package-preview,
  .pricing-list-compact .package-card-demo { height: 210px; }
}
@media (max-width: 580px) {
  .pricing-list-compact { grid-template-columns: 1fr; }
  .pricing-list-compact .pricing-head { min-height: 0; }
  .pricing-list-compact .package-preview,
  .pricing-list-compact .package-card-demo { height: 225px; }
  .pricing-list-compact .premium-value-badge { top: 14px; }
  .modal-scroll {
    height: calc(100% - 58px);
    max-height: calc(100dvh - 58px);
    padding: 24px 12px 76px;
  }
  .modal-heading { padding-right: 0; }
}

/* ===== NC Studio V10 final pre-publish stabilization ===== */
/* Consistent package cards and readable controls. */
.pricing-list-compact .pricing-card {
  min-width: 0;
  overflow: visible;
}
.pricing-list-compact .pricing-head {
  display: flex;
  align-items: flex-start;
}
.pricing-list-compact .pricing-head > div {
  width: 100%;
  text-align: center;
}
.pricing-list-compact .pricing-head h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45em;
  margin-inline: auto;
  line-height: 1.18;
}
.pricing-list-compact .package-tagline {
  min-height: 3.35em;
  text-align: center;
}
.pricing-list-compact .price {
  text-align: center;
}
.pricing-list-compact .premium-value-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  right: auto;
  z-index: 4;
  width: max-content;
  max-width: calc(100% - 24px);
  transform: translateX(-50%);
  padding-inline: 12px;
  white-space: nowrap;
}
.pricing-list-compact .pricing-card-featured .pricing-copy {
  padding-top: 32px;
}
.pricing-list-compact .package-real-example {
  aspect-ratio: 16 / 9;
  height: auto;
}
.pricing-list-compact .package-real-example img {
  object-fit: cover !important;
  object-position: top center !important;
}
.pricing-list-compact .package-features {
  display: grid;
  align-content: start;
  gap: 10px;
}
.pricing-list-compact .tile-meta strong {
  overflow-wrap: anywhere;
}
.pricing-list-compact .package-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.pricing-list-compact .package-actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  transform: none !important;
}
.pricing-list-compact .package-actions .btn:hover {
  transform: none !important;
}

/* Dialogs always open with a visible heading and a reachable final action. */
.site-modal {
  width: min(1180px, calc(100% - 28px));
  max-height: min(94dvh, 940px);
  overflow: hidden;
}
.site-modal .modal-toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 60px;
  background: rgba(9, 13, 18, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-modal .modal-scroll {
  height: calc(100% - 60px);
  max-height: calc(94dvh - 60px);
  padding: 30px 30px 76px;
  scroll-padding-top: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.site-modal .modal-heading {
  margin: 0 0 20px;
  padding: 0;
}
.site-modal .modal-heading h2 {
  max-width: none;
  margin-top: 6px;
  overflow-wrap: anywhere;
}
.site-modal .modal-layout {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
  align-items: start;
  gap: 22px;
}
.site-modal .modal-details {
  align-self: start;
  overflow: visible;
}
.site-modal .modal-note {
  display: block;
  max-height: none;
  overflow: visible;
  white-space: normal;
}
.site-modal .modal-choose-package,
.site-modal #project-modal-live {
  min-height: 50px;
  margin-top: 8px;
}

/* Contact form is ready for real contact methods without leaving empty space. */
#studio-contact-methods:empty {
  display: none;
}
.contact-list a {
  overflow-wrap: anywhere;
}
.form-submit[disabled] {
  cursor: wait;
  opacity: .72;
}
.form-status:empty {
  min-height: 0;
  margin: 0;
}

/* Mobile final pass. */
@media (max-width: 900px) {
  .site-modal .modal-layout {
    grid-template-columns: 1fr;
  }
  .site-modal .modal-preview-frame {
    height: 440px;
  }
  .pricing-list-compact .pricing-head h3,
  .pricing-list-compact .package-tagline {
    min-height: 0;
  }
}
@media (max-width: 580px) {
  .pricing-list-compact .pricing-card-featured .pricing-copy {
    padding-top: 38px;
  }
  .pricing-list-compact .premium-value-badge {
    top: 11px;
    max-width: calc(100% - 20px);
    font-size: .58rem;
  }
  .pricing-list-compact .package-real-example {
    aspect-ratio: 16 / 10;
  }
  .site-modal {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }
  .site-modal .modal-toolbar {
    min-height: 56px;
  }
  .site-modal .modal-scroll {
    height: calc(100dvh - 56px);
    max-height: calc(100dvh - 56px);
    padding: 20px 14px 84px;
  }
  .site-modal .modal-heading h2 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
    line-height: 1.08;
  }
  .site-modal .modal-preview-frame {
    height: 330px;
  }
  .site-modal .modal-preview-frame.is-mobile {
    height: min(560px, 66vh);
  }
  .site-modal .modal-details {
    padding: 15px;
  }
  .site-modal .modal-choose-package,
  .site-modal #project-modal-live {
    position: relative;
    z-index: 2;
  }
}


/* ===== NC Studio V11 final package title, demo-link and web-app polish ===== */
.pricing-list-compact .pricing-head h3 {
  min-height: 2.55em !important;
  font-size: clamp(1rem, 1.02vw, 1.1rem) !important;
  line-height: 1.2 !important;
  font-weight: 750 !important;
  letter-spacing: -.025em;
}
.pricing-list-compact .package-preview-link {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
.pricing-list-compact .package-preview-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(229,181,64,.35), inset 0 0 0 1px var(--gold);
}
.pricing-list-compact .package-preview-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid transparent;
  border-radius: inherit;
  transition: border-color .2s ease, background .2s ease;
  pointer-events: none;
}
.pricing-list-compact .package-preview-link:hover::before {
  border-color: rgba(229,181,64,.55);
  background: linear-gradient(180deg,rgba(229,181,64,.035),transparent 48%);
}
.pricing-list-compact .package-preview-link-label {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  border: 1px solid rgba(229,181,64,.36);
  border-radius: 999px;
  background: rgba(7,10,14,.88);
  color: #f2c95f;
  font-size: .56rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity .2s ease, transform .2s ease;
}
.pricing-list-compact .package-preview-link:hover .package-preview-link-label,
.pricing-list-compact .package-preview-link:focus-visible .package-preview-link-label {
  opacity: 1;
  transform: translateY(0);
}

.pricing-list-compact .package-app-dashboard {
  aspect-ratio: 16 / 9;
  height: auto !important;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 82% 12%,rgba(229,181,64,.12),transparent 38%),
    linear-gradient(145deg,#111922,#0a0f15 64%);
  color: #f6f2e8;
}
.app-dashboard-top {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(5,8,12,.58);
}
.app-dashboard-top > strong {
  color: rgba(242,201,95,.9);
  font-size: .5rem;
  letter-spacing: .1em;
  white-space: nowrap;
}
.app-dashboard-dots { display:flex; gap:4px; }
.app-dashboard-dots i { width:5px; height:5px; border-radius:50%; background:#ef645f; }
.app-dashboard-dots i:nth-child(2) { background:#e5b540; }
.app-dashboard-dots i:nth-child(3) { background:#55c978; }
.app-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 6px;
  padding: 9px 9px 6px;
}
.app-dashboard-metrics > div {
  min-width: 0;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}
.app-dashboard-metrics small {
  display:block;
  overflow:hidden;
  color:rgba(220,216,206,.68);
  font-size:.48rem;
  line-height:1.2;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.app-dashboard-metrics b {
  display:block;
  margin-top:3px;
  color:#fff;
  font-size:.9rem;
  line-height:1;
}
.app-dashboard-list {
  display:grid;
  gap:5px;
  padding:0 9px;
}
.app-dashboard-list > div {
  display:grid;
  grid-template-columns:36px 1fr 8px;
  align-items:center;
  gap:7px;
  min-width:0;
  padding:6px 8px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:7px;
  background:rgba(2,5,8,.32);
}
.app-dashboard-list time { color:#e5b540; font-size:.52rem; font-weight:800; }
.app-dashboard-list span { overflow:hidden; color:rgba(246,242,232,.86); font-size:.54rem; font-weight:650; white-space:nowrap; text-overflow:ellipsis; }
.app-dashboard-list i { width:7px; height:7px; border-radius:50%; background:#e5b540; box-shadow:0 0 0 3px rgba(229,181,64,.1); }
.app-dashboard-list i.is-confirmed { background:#55c978; box-shadow:0 0 0 3px rgba(85,201,120,.1); }
.package-app-dashboard > p {
  margin:7px 9px 0;
  padding:6px 8px;
  border-left:2px solid rgba(229,181,64,.72);
  color:rgba(224,220,211,.72);
  background:rgba(229,181,64,.045);
  font-size:.47rem;
  line-height:1.3;
}

@media (max-width: 580px) {
  .pricing-list-compact .pricing-head h3 {
    min-height: 0 !important;
    font-size: 1.25rem !important;
  }
  .pricing-list-compact .package-preview-link-label {
    opacity: 1;
    transform: none;
  }
  .app-dashboard-top { height:34px; }
  .app-dashboard-top > strong { font-size:.58rem; }
  .app-dashboard-metrics small { font-size:.57rem; }
  .app-dashboard-metrics b { font-size:1.05rem; }
  .app-dashboard-list time { font-size:.62rem; }
  .app-dashboard-list span { font-size:.65rem; }
  .package-app-dashboard > p { font-size:.58rem; }
}


/* ===== NC Studio V12: clear portfolio and process visuals ===== */
/* Reserve the same top area on every package card so all titles align. */
.pricing-list-compact .pricing-card {
  padding-top: 50px !important;
}
.pricing-list-compact .pricing-card-featured .pricing-copy {
  padding-top: 0 !important;
}
.pricing-list-compact .premium-value-badge {
  top: 14px !important;
}

/* Hero: replace the abstract system placeholder with real project previews. */
.hero-work-showcase {
  width: min(590px, 96vw);
  height: 470px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-work-panel {
  inset: 0 !important;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-work-head { padding-bottom: 12px; }
.hero-work-eyebrow {
  color: var(--accent-soft) !important;
  font-size: .55rem !important;
  font-weight: 800;
  letter-spacing: .17em;
}
.hero-work-head strong { margin-top: 4px; font-size: .95rem; }
.hero-work-link {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(212,166,58,.28);
  border-radius: 999px;
  color: var(--accent-soft);
  font-size: .58rem;
  font-weight: 800;
}
.hero-work-intro {
  margin: 0;
  color: #aaa59b;
  font-size: .7rem;
  line-height: 1.5;
}
.hero-work-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: minmax(0, 1fr) 118px;
  gap: 9px;
}
.hero-work-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  background: #080b0f;
  box-shadow: inset 0 1px rgba(255,255,255,.035);
}
.hero-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .82;
  transition: transform .35s ease, opacity .25s ease;
}
.hero-work-card:hover img { transform: scale(1.025); opacity: 1; }
.hero-work-card::after {
  content: '';
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(transparent, rgba(3,5,8,.94));
  pointer-events: none;
}
.hero-work-card span,
.hero-work-card strong {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 10px;
}
.hero-work-card span {
  bottom: 29px;
  color: var(--accent-soft);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-work-card strong {
  bottom: 11px;
  color: #fff;
  font-size: .72rem;
}
.hero-work-card-main { grid-row: 1 / 3; }
.hero-work-card-sport img { object-fit: cover; object-position: top center; }
.hero-work-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  min-width: 0;
}
.hero-work-mini-grid .hero-work-card span { display: none; }
.hero-work-mini-grid .hero-work-card strong { font-size: .58rem; }
.hero-work-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 0;
  border: 0;
}
.hero-work-footer span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #b8b2a7;
  background: rgba(255,255,255,.025);
  font-size: .52rem;
  font-weight: 700;
}

/* Process: tangible deliverables instead of a fake website placeholder. */
.process-deliverables { perspective: none; }
.process-deliverables-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(212,166,58,.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 12%, rgba(212,166,58,.13), transparent 31%),
    linear-gradient(155deg, rgba(28,33,40,.98), rgba(10,13,18,.98));
  box-shadow: 0 40px 90px rgba(0,0,0,.52), inset 0 1px rgba(255,255,255,.07);
}
.process-deliverables-head span {
  color: var(--accent-soft);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.process-deliverables-head h3 {
  margin: 10px 0 8px;
  color: #f4f0e8;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  letter-spacing: -.04em;
}
.process-deliverables-head p {
  max-width: 560px;
  margin: 0;
  color: #aaa69d;
  font-size: .82rem;
  line-height: 1.6;
}
.process-output-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.process-output {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: rgba(3,6,10,.38);
  opacity: .58;
  transition: opacity .25s ease, border-color .25s ease, transform .3s ease, background .25s ease;
}
.process-output.is-active {
  opacity: 1;
  transform: translateX(8px);
  border-color: rgba(212,166,58,.46);
  background: linear-gradient(90deg, rgba(212,166,58,.095), rgba(255,255,255,.025));
}
.process-output > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212,166,58,.28);
  border-radius: 11px;
  color: var(--accent-soft);
  font-size: .65rem;
  font-weight: 800;
}
.process-output h4 { margin: 0; color: #f4f1ea; font-size: .86rem; }
.process-output p { margin: 5px 0 0; color: #99958d; font-size: .68rem; line-height: 1.45; }
.process-output b {
  padding: 6px 9px;
  border-radius: 999px;
  color: #b9b4aa;
  background: rgba(255,255,255,.045);
  font-size: .53rem;
  white-space: nowrap;
}
.process-output.is-active b { color: #171108; background: var(--accent-soft); }
.process-deliverables-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 15px;
  border-left: 2px solid var(--accent);
  background: rgba(212,166,58,.055);
}
.process-deliverables-note span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #151006;
  background: var(--accent-soft);
  font-size: .72rem;
  font-weight: 900;
}
.process-deliverables-note p { margin: 0; color: #c4beb3; font-size: .72rem; line-height: 1.5; }

@media (max-width: 900px) {
  .hero-work-showcase { height: 455px; }
  .process-output { opacity: 1; transform: none !important; }
}
@media (max-width: 580px) {
  .pricing-list-compact .pricing-card { padding-top: 50px !important; }
  .hero-work-showcase { width: 100%; height: 420px; }
  .hero-work-panel { padding: 13px; gap: 9px; }
  .hero-work-link { display: none; }
  .hero-work-intro { font-size: .64rem; }
  .hero-work-grid { grid-template-columns: 1fr .72fr; grid-template-rows: minmax(0,1fr) 96px; gap: 7px; }
  .hero-work-mini-grid { gap: 7px; }
  .hero-work-card span { font-size: .42rem; bottom: 26px; }
  .hero-work-card strong { font-size: .61rem; bottom: 9px; }
  .hero-work-footer span { font-size: .46rem; padding: 5px 7px; }
  .process-deliverables-panel { padding: 18px 14px; border-radius: 20px; }
  .process-output { grid-template-columns: 36px 1fr; gap: 10px; padding: 12px; }
  .process-output b { grid-column: 2; justify-self: start; margin-top: 2px; }
  .process-output > span { width: 34px; height: 34px; }
}

/* V13 final brand consistency */
.system-mark-logo{display:block;width:42px;height:42px;border-radius:13px;box-shadow:0 12px 30px rgba(0,0,0,.32)}
.process-brand-mark{display:block;margin-bottom:12px;border-radius:11px;box-shadow:0 10px 24px rgba(0,0,0,.22)}
.work-concept-note{max-width:760px;margin:12px 0 28px;color:var(--muted);font-size:.84rem;line-height:1.65}
.package-preview.package-real-example>span[data-i18n]{display:none!important}
.brand-with-mark img,.footer-brand img{object-fit:contain}
@media(max-width:600px){.system-mark-logo{width:36px;height:36px}.process-brand-mark{width:34px;height:34px}.work-concept-note{font-size:.8rem}}

/* =========================================================
   NC STUDIO V14 — PREMIUM STUDIO DIRECTION
   Visual refinement layer. Existing interactions remain intact.
   ========================================================= */

.nc-v14 {
  --bg: #060708;
  --bg-soft: #0b0c0e;
  --surface: #101215;
  --surface-elevated: #15181c;
  --border: rgba(255,255,255,.09);
  --border-strong: rgba(205,166,86,.34);
  --text: #f4f0e8;
  --muted: #aaa59b;
  --muted-2: #77736b;
  --accent: #d5ad5b;
  --accent-soft: #e5c77f;
  --accent-glow: rgba(213,173,91,.14);
  --accent-glow-strong: rgba(213,173,91,.24);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  background: #060708;
}

.nc-v14::before {
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.28) 60%, transparent 92%);
}

.nc-v14 .orb { opacity: .2; filter: blur(120px); }
.nc-v14 .orb-one { background: rgba(205,166,86,.12); width: 520px; height: 520px; right: -4%; top: -3%; }
.nc-v14 .orb-two { background: rgba(255,255,255,.025); }
.nc-v14 .orb-three { background: rgba(205,166,86,.05); }
.nc-v14 .grain { opacity: .022; }
.nc-v14 .cursor-glow { opacity: calc(var(--spotlight-opacity, 0) * .65); }

.nc-v14 .container { width: min(1260px, calc(100% - 64px)); }
.nc-v14 .section-pad { padding: clamp(92px, 9vw, 138px) 0; }

/* Header and brand */
.nc-v14 .site-header {
  height: 82px;
  background: rgba(6,7,8,.74);
  border-bottom: 1px solid rgba(255,255,255,.075);
  box-shadow: 0 12px 42px rgba(0,0,0,.22);
}
.nc-v14 .site-header::after {
  left: 0;
  right: 0;
  background: linear-gradient(90deg, transparent 4%, rgba(213,173,91,.26), rgba(255,255,255,.08), transparent 96%);
  opacity: .46;
}
.nc-v14 .nav-shell { width: min(1260px, calc(100% - 64px)); gap: 32px; }
.nc-v14 .brand-with-mark,
.nc-v14 .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.nc-v14 .brand-monogram {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(213,173,91,.12));
}
.nc-v14 .brand > span,
.nc-v14 .footer-brand > strong {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}
.nc-v14 .brand > span strong { color: var(--accent); font-weight: 600; }
.nc-v14 .nav-panel { gap: 30px; }
.nc-v14 .nav-panel a {
  color: #d0cbc2;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.nc-v14 .nav-panel a:hover { color: #fff; }
.nc-v14 .lang-switch {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
}
.nc-v14 .lang-btn { font-size: .72rem; letter-spacing: .06em; }

/* Shared type and buttons */
.nc-v14 h1,
.nc-v14 h2,
.nc-v14 h3 { text-wrap: balance; }
.nc-v14 .eyebrow {
  color: var(--accent-soft);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
}
.nc-v14 .section-head { max-width: 870px; margin-bottom: 54px; }
.nc-v14 .section-head h2 {
  max-width: 820px;
  font-family: var(--font-head);
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.045em;
}
.nc-v14 .section-intro {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.8;
}
.nc-v14 .btn {
  min-height: 49px;
  border-radius: 999px;
  padding-inline: 23px;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.nc-v14 .btn-primary {
  color: #0a0a0a;
  background: linear-gradient(135deg, #ebd18d, #c79b48);
  border-color: rgba(238,210,145,.72);
  box-shadow: 0 12px 34px rgba(197,151,69,.2);
}
.nc-v14 .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 42px rgba(197,151,69,.28);
}
.nc-v14 .btn-secondary {
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.14);
}
.nc-v14 .btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(213,173,91,.5);
  background: rgba(213,173,91,.06);
}

/* Hero */
.nc-v14 .hero {
  min-height: 100svh;
  padding-top: 152px;
  padding-bottom: 94px;
  display: flex;
  align-items: center;
}
.nc-v14 .hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
}
.nc-v14 .hero-copy { max-width: 690px; }
.nc-v14 .hero-copy .eyebrow { margin-bottom: 27px; }
.nc-v14 #hero-title {
  max-width: 780px;
  font-family: var(--font-head);
  font-size: clamp(4.3rem, 7.2vw, 7.8rem);
  font-weight: 600;
  line-height: .83;
  letter-spacing: -.06em;
}
.nc-v14 .hero-line-mask { padding: .05em .03em .08em; margin: -.04em -.03em -.06em; }
.nc-v14 .hero-line { display: block; }
.nc-v14 .hero-headline-accent {
  color: transparent;
  background: linear-gradient(105deg, #f1d99e 8%, #d4a956 46%, #f0cd77 88%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 60px rgba(208,164,78,.08);
}
.nc-v14 .hero-lead {
  max-width: 620px;
  margin-top: 34px;
  color: #bbb5aa;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.78;
}
.nc-v14 .hero-actions { margin-top: 36px; gap: 12px; }
.nc-v14 .hero-proof {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  gap: 22px 28px;
}
.nc-v14 .hero-proof > div { color: #aaa49a; }
.nc-v14 .hero-proof strong {
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nc-v14 .proof-dot { width: 4px; height: 4px; background: var(--accent); box-shadow: 0 0 16px rgba(213,173,91,.65); }
.nc-v14 .hero-stage { perspective: 1600px; }
.nc-v14 .hero-work-panel {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018) 34%, rgba(213,173,91,.035)),
    #0a0c0e;
  box-shadow: 0 45px 110px rgba(0,0,0,.52), inset 0 1px rgba(255,255,255,.07);
}
.nc-v14 .hero-work-head { padding: 22px 24px 18px; }
.nc-v14 .hero-work-head .brand-monogram { width: 48px; height: 48px; }
.nc-v14 .hero-work-eyebrow { color: var(--accent-soft); letter-spacing: .18em; }
.nc-v14 .hero-work-head strong {
  font-family: var(--font-head);
  font-size: 1.45rem;
  letter-spacing: -.025em;
}
.nc-v14 .hero-work-intro { color: #aaa59c; padding-inline: 24px; }
.nc-v14 .hero-work-card {
  border-radius: 15px;
  border-color: rgba(255,255,255,.1);
  background: #0d0f12;
}
.nc-v14 .hero-work-card img { filter: saturate(.92) contrast(1.02); }
.nc-v14 .hero-work-card span { color: #b9b2a6; }
.nc-v14 .hero-work-card strong { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: -.02em; }
.nc-v14 .hero-work-footer { color: #8f8a81; }

/* Services */
.nc-v14 .services { background: linear-gradient(to bottom, transparent, rgba(255,255,255,.012), transparent); }
.nc-v14 .services-list-v7 {
  border-top: 1px solid rgba(255,255,255,.11);
}
.nc-v14 .service-row-v7 {
  grid-template-columns: 60px minmax(230px,.8fr) minmax(280px,1.2fr) minmax(230px,.8fr) auto;
  gap: clamp(24px,3vw,48px);
  min-height: 174px;
  padding: 36px 0;
  border-bottom-color: rgba(255,255,255,.085);
}
.nc-v14 .service-row-index {
  color: rgba(213,173,91,.72);
  font-family: var(--font-head);
  font-size: 1.8rem;
}
.nc-v14 .service-kicker { color: #8d887f; letter-spacing: .16em; }
.nc-v14 .service-row-title h3 {
  font-family: var(--font-head);
  font-size: clamp(2rem,3vw,3.05rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
}
.nc-v14 .service-row-copy { color: #aaa59b; line-height: 1.75; }
.nc-v14 .service-row-result span { color: var(--accent); }
.nc-v14 .service-row-result strong { color: #d9d4cb; line-height: 1.55; }
.nc-v14 .service-link-v7 { color: var(--accent-soft); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.nc-v14 .service-row-v7:hover { background: linear-gradient(90deg, transparent, rgba(213,173,91,.035), transparent); }

/* Pricing */
.nc-v14 .pricing-section {
  background: linear-gradient(180deg, rgba(213,173,91,.025), transparent 24%, transparent 80%, rgba(255,255,255,.012));
}
.nc-v14 .pricing-note {
  border: 1px solid rgba(213,173,91,.22);
  background: rgba(213,173,91,.04);
  border-radius: 16px;
}
.nc-v14 .pricing-explainers { margin-top: 18px; }
.nc-v14 .pricing-explainers article {
  border-radius: 18px;
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.018);
}
.nc-v14 .pricing-explainers h3 { font-family: var(--font-body); font-size: .92rem; letter-spacing: -.015em; }
.nc-v14 .pricing-explainers p { color: #969188; }
.nc-v14 .pricing-benefits {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: transparent;
}
.nc-v14 .pricing-benefits > div { padding-block: 24px; }
.nc-v14 .pricing-benefits span { color: var(--accent); }
.nc-v14 .pricing-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 18px;
  align-items: stretch;
}
.nc-v14 .pricing-card { grid-column: span 2; }
.nc-v14 .pricing-card[data-package="ecommerce"],
.nc-v14 .pricing-card[data-package="webapp"] { grid-column: span 3; }
.nc-v14 .pricing-card-v7 {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.013) 34%, transparent 70%),
    #0d0f11;
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.nc-v14 .pricing-card-v7::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(213,173,91,.08), transparent 34%);
  opacity: 0;
  transition: opacity .35s ease;
}
.nc-v14 .pricing-card-v7:hover { border-color: rgba(213,173,91,.32); transform: translateY(-5px); }
.nc-v14 .pricing-card-v7:hover::before { opacity: 1; }
.nc-v14 .pricing-card-featured {
  border-color: rgba(213,173,91,.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(213,173,91,.12), transparent 42%),
    linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.014) 42%),
    #0e1012;
}
.nc-v14 .pricing-copy { padding: 26px; }
.nc-v14 .pricing-head h3 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
}
.nc-v14 .package-tagline { min-height: 54px; color: #9e998f; line-height: 1.55; }
.nc-v14 .price {
  margin-top: 18px;
  color: #f2ddaa;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.02em;
}
.nc-v14 .premium-value-badge {
  top: 17px;
  right: 17px;
  border: 1px solid rgba(213,173,91,.35);
  border-radius: 999px;
  color: #e4c77f;
  background: rgba(213,173,91,.08);
  font-size: .61rem;
  letter-spacing: .13em;
}
.nc-v14 .package-preview { border-radius: 15px; border-color: rgba(255,255,255,.08); }
.nc-v14 .package-preview::after { background: linear-gradient(to top, rgba(3,4,5,.78), transparent 60%); }
.nc-v14 .package-preview-link-label { color: #f0d99f; }
.nc-v14 .package-features { border-top-color: rgba(255,255,255,.08); }
.nc-v14 .package-features li { color: #c6c0b6; }
.nc-v14 .package-features li::before { color: var(--accent); }
.nc-v14 .tile-meta { border-top-color: rgba(255,255,255,.08); }
.nc-v14 .tile-meta span { color: #827e76; }
.nc-v14 .tile-meta strong { color: #ded9d0; }
.nc-v14 .pricing-bottom-info { display: none; }
.nc-v14 .timeline-note { color: #8f8a82; }

/* Work hierarchy */
.nc-v14 .work-grid-four {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 20px;
}
.nc-v14 .project-card[data-project="premium"],
.nc-v14 .project-card[data-project="ecommerce"] { grid-column: span 6; }
.nc-v14 .project-card[data-project="landing"],
.nc-v14 .project-card[data-project="business"] { grid-column: span 6; }
.nc-v14 .project-card {
  border-radius: 25px;
  border-color: rgba(255,255,255,.09);
  background: #0d0f11;
  overflow: hidden;
}
.nc-v14 .project-card:hover { border-color: rgba(213,173,91,.3); transform: translateY(-5px); }
.nc-v14 .project-card[data-project="premium"],
.nc-v14 .project-card[data-project="ecommerce"] {
  background:
    linear-gradient(150deg, rgba(213,173,91,.055), transparent 40%),
    #0d0f11;
}
.nc-v14 .project-preview-wrap { background: #090a0c; }
.nc-v14 .project-preview { border-radius: 18px; }
.nc-v14 .project-content { padding: 26px 28px 30px; }
.nc-v14 .project-brand { color: var(--accent); letter-spacing: .18em; }
.nc-v14 .project-content h3 {
  font-family: var(--font-head);
  font-size: clamp(2rem,3vw,3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.nc-v14 .project-content > p:not(.project-brand) { color: #aaa59b; line-height: 1.72; }
.nc-v14 .device-switch { border-color: rgba(255,255,255,.09); background: rgba(3,4,5,.75); }
.nc-v14 .device-switch button.is-active { background: rgba(213,173,91,.12); color: #f3ddaa; }
.nc-v14 .work-concept-note {
  border-left: 2px solid rgba(213,173,91,.55);
  color: #8e8980;
  background: transparent;
}

/* Process and collaboration */
.nc-v14 .process-section,
.nc-v14 .why-section { border-top: 1px solid rgba(255,255,255,.055); }
.nc-v14 .process-card,
.nc-v14 .process-showcase,
.nc-v14 .why-card,
.nc-v14 .why-spotlight {
  border-color: rgba(255,255,255,.09);
  background-color: #0d0f11;
}
.nc-v14 .process-list-v7 > article { border-bottom-color: rgba(255,255,255,.085); }
.nc-v14 .process-list-v7 h3,
.nc-v14 .why-card h3,
.nc-v14 .why-spotlight h3 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -.035em;
}
.nc-v14 .process-list-v7 h3 { font-size: 2rem; }
.nc-v14 .process-list-v7 p,
.nc-v14 .why-card p,
.nc-v14 .why-spotlight p { color: #a7a198; }
.nc-v14 .process-brand-mark { width: 48px; height: 48px; }

/* Contact */
.nc-v14 .contact-section {
  background:
    radial-gradient(circle at 14% 40%, rgba(213,173,91,.08), transparent 34%),
    linear-gradient(to bottom, transparent, rgba(255,255,255,.012));
}
.nc-v14 .contact-grid { gap: clamp(36px,6vw,86px); }
.nc-v14 .contact-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(3.2rem,5.4vw,6rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.05em;
}
.nc-v14 .contact-copy > p { color: #aca69c; line-height: 1.78; }
.nc-v14 .contact-form {
  border-radius: 28px;
  border-color: rgba(255,255,255,.11);
  background:
    linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.012) 35%),
    #0c0e10;
  box-shadow: 0 34px 86px rgba(0,0,0,.32);
}
.nc-v14 .contact-form input,
.nc-v14 .contact-form select,
.nc-v14 .contact-form textarea {
  border-color: rgba(255,255,255,.11);
  background: rgba(255,255,255,.025);
  border-radius: 12px;
}
.nc-v14 .contact-form input:focus,
.nc-v14 .contact-form select:focus,
.nc-v14 .contact-form textarea:focus {
  border-color: rgba(213,173,91,.62);
  box-shadow: 0 0 0 3px rgba(213,173,91,.09);
}

/* Modals */
.nc-v14 .site-modal {
  border-color: rgba(255,255,255,.13);
  background: #090b0d;
}
.nc-v14 .modal-heading h2,
.nc-v14 .modal-details h3 { font-family: var(--font-head); }
.nc-v14 .modal-heading h2 { font-size: clamp(2.8rem,5vw,5rem); font-weight: 600; letter-spacing: -.045em; }
.nc-v14 .modal-preview-panel,
.nc-v14 .modal-details { background: #0d0f11; border-color: rgba(255,255,255,.09); }

/* Footer */
.nc-v14 .footer {
  border-top-color: rgba(255,255,255,.08);
  background: #050607;
}
.nc-v14 .footer-v6 { min-height: 124px; }
.nc-v14 .footer-brand .brand-monogram { width: 43px; height: 43px; }
.nc-v14 .footer-nav a { color: #99948b; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.nc-v14 .footer-nav a:hover { color: var(--accent-soft); }

/* Responsive */
@media (max-width: 1120px) {
  .nc-v14 .container,
  .nc-v14 .nav-shell { width: min(100% - 44px, 1060px); }
  .nc-v14 .hero-grid { grid-template-columns: 1fr; }
  .nc-v14 .hero-copy { max-width: 840px; }
  .nc-v14 #hero-title { max-width: 930px; font-size: clamp(4.6rem, 10vw, 7.5rem); }
  .nc-v14 .hero-stage { max-width: 860px; width: 100%; margin-inline: auto; }
  .nc-v14 .service-row-v7 {
    grid-template-columns: 50px minmax(210px,.8fr) minmax(260px,1.2fr) auto;
  }
  .nc-v14 .service-row-result { display: none; }
  .nc-v14 .pricing-card { grid-column: span 3; }
  .nc-v14 .pricing-card[data-package="premium"] { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nc-v14 .container,
  .nc-v14 .nav-shell { width: calc(100% - 32px); }
  .nc-v14 .site-header { height: 72px; }
  .nc-v14 .brand-monogram { width: 38px; height: 38px; }
  .nc-v14 .brand > span { font-size: 1.38rem; }
  .nc-v14 .hero { min-height: auto; padding-top: 122px; }
  .nc-v14 #hero-title { font-size: clamp(3.8rem, 13.5vw, 6rem); }
  .nc-v14 .hero-lead { font-size: 1rem; }
  .nc-v14 .section-head h2 { font-size: clamp(3.1rem, 10.5vw, 5rem); }
  .nc-v14 .service-row-v7 {
    grid-template-columns: 42px 1fr auto;
    min-height: auto;
    padding: 30px 0;
  }
  .nc-v14 .service-row-copy { grid-column: 2 / -1; }
  .nc-v14 .service-row-title h3 { font-size: 2.3rem; }
  .nc-v14 .pricing-explainers { grid-template-columns: 1fr; }
  .nc-v14 .pricing-list { grid-template-columns: 1fr; }
  .nc-v14 .pricing-card,
  .nc-v14 .pricing-card[data-package="premium"],
  .nc-v14 .pricing-card[data-package="ecommerce"],
  .nc-v14 .pricing-card[data-package="webapp"] { grid-column: 1; }
  .nc-v14 .work-grid-four { grid-template-columns: 1fr; }
  .nc-v14 .project-card[data-project] { grid-column: 1; }
}

@media (max-width: 560px) {
  .nc-v14 .container,
  .nc-v14 .nav-shell { width: calc(100% - 24px); }
  .nc-v14 .section-pad { padding: 78px 0; }
  .nc-v14 .nav-actions .btn { display: none; }
  .nc-v14 .brand-with-mark { gap: 8px; }
  .nc-v14 .brand-monogram { width: 35px; height: 35px; }
  .nc-v14 .brand > span { font-size: 1.25rem; }
  .nc-v14 .hero { padding-top: 108px; padding-bottom: 74px; }
  .nc-v14 .hero-grid { gap: 46px; }
  .nc-v14 #hero-title { font-size: clamp(3.35rem, 15.3vw, 4.85rem); line-height: .86; }
  .nc-v14 .hero-copy .eyebrow { margin-bottom: 20px; }
  .nc-v14 .hero-lead { margin-top: 26px; line-height: 1.66; }
  .nc-v14 .hero-actions { display: grid; grid-template-columns: 1fr; }
  .nc-v14 .hero-actions .btn { width: 100%; }
  .nc-v14 .hero-proof { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 12px; }
  .nc-v14 .hero-work-panel { border-radius: 21px; }
  .nc-v14 .hero-work-grid { gap: 8px; }
  .nc-v14 .hero-work-head { padding: 16px; }
  .nc-v14 .hero-work-head .brand-monogram { width: 40px; height: 40px; }
  .nc-v14 .hero-work-head strong { font-size: 1.2rem; }
  .nc-v14 .hero-work-intro { padding-inline: 16px; font-size: .85rem; }
  .nc-v14 .hero-work-footer { gap: 8px; padding-inline: 16px; font-size: .64rem; }
  .nc-v14 .section-head { margin-bottom: 38px; }
  .nc-v14 .section-head h2 { font-size: clamp(2.8rem, 13vw, 4.1rem); }
  .nc-v14 .service-row-v7 { grid-template-columns: 34px 1fr; gap: 12px 14px; }
  .nc-v14 .service-row-title { grid-column: 2; }
  .nc-v14 .service-row-copy { grid-column: 2; }
  .nc-v14 .service-link-v7 { grid-column: 2; justify-self: start; margin-top: 4px; }
  .nc-v14 .service-row-index { font-size: 1.45rem; }
  .nc-v14 .service-row-title h3 { font-size: 2.05rem; }
  .nc-v14 .pricing-note { align-items: flex-start; }
  .nc-v14 .pricing-benefits { grid-template-columns: 1fr; }
  .nc-v14 .pricing-benefits > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nc-v14 .pricing-benefits > div:last-child { border-bottom: 0; }
  .nc-v14 .pricing-copy { padding: 21px; }
  .nc-v14 .pricing-head h3 { font-size: 2rem; }
  .nc-v14 .package-tagline { min-height: auto; }
  .nc-v14 .package-features li:nth-child(n+4) { display: none; }
  .nc-v14 .package-actions { grid-template-columns: 1fr; }
  .nc-v14 .project-content { padding: 22px 20px 24px; }
  .nc-v14 .project-content h3 { font-size: 2.1rem; }
  .nc-v14 .project-actions { grid-template-columns: 1fr; }
  .nc-v14 .project-actions .btn { width: 100%; }
  .nc-v14 .contact-copy h2 { font-size: clamp(3rem,14vw,4.6rem); }
  .nc-v14 .contact-form { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .nc-v14 .pricing-card-v7:hover,
  .nc-v14 .project-card:hover,
  .nc-v14 .btn:hover { transform: none; }
}

/* V14 project grid correction for actual project identifiers */
.nc-v14 .project-card[data-project="barber"],
.nc-v14 .project-card[data-project="sport"] { grid-column: span 6; }
.nc-v14 .project-card[data-project="barber"],
.nc-v14 .project-card[data-project="sport"] {
  background:
    linear-gradient(150deg, rgba(213,173,91,.055), transparent 40%),
    #0d0f11;
}
@media (max-width: 820px) {
  .nc-v14 .project-card[data-project="barber"],
  .nc-v14 .project-card[data-project="sport"] { grid-column: 1; }
}

/* =========================================================
   NC STUDIO V14.1 — FINAL POLISH
   Targeted fixes only; the approved V14 visual direction stays intact.
   ========================================================= */

/* Fixed-header anchor accuracy */
html { scroll-padding-top: 96px; }
.nc-v14 main section[id] { scroll-margin-top: 96px; }

/* Hero text must remain fully visible at desktop widths. */
.nc-v14 .hero-copy { max-width: 760px; }
.nc-v14 .hero-line-mask {
  width: max-content;
  max-width: none;
  overflow: visible;
}
.nc-v14 .hero-line {
  width: auto;
  max-width: none;
}

/* Reduce only the oversized transition between Services and Pricing. */
.nc-v14 .services { padding-bottom: clamp(56px, 6vw, 78px); }
.nc-v14 .pricing-section { padding-top: clamp(76px, 7vw, 96px); }

/* Subtle logo balance: slightly stronger mark, cleaner alignment, more breathing room. */
.nc-v14 .site-header .brand-with-mark { gap: 14px; }
.nc-v14 .site-header .brand-monogram {
  width: 48px;
  height: 48px;
  transform: translateY(-1px);
  filter: drop-shadow(0 7px 14px rgba(213,173,91,.10));
}

@media (max-width: 1120px) {
  .nc-v14 .hero-line-mask {
    width: auto;
    max-width: 100%;
    overflow: visible;
  }
  .nc-v14 .hero-line {
    white-space: normal;
    width: auto;
  }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 88px; }
  .nc-v14 main section[id] { scroll-margin-top: 88px; }
  .nc-v14 .site-header .brand-with-mark { gap: 11px; }
  .nc-v14 .site-header .brand-monogram { width: 41px; height: 41px; }
}

@media (max-width: 560px) {
  .nc-v14 .services { padding-bottom: 48px; }
  .nc-v14 .pricing-section { padding-top: 62px; }
  .nc-v14 .site-header .brand-with-mark { gap: 9px; }
  .nc-v14 .site-header .brand-monogram { width: 36px; height: 36px; transform: none; }
}


/* =========================================================
   NC STUDIO V14.2 — COPY FIT AND FINAL HERO BALANCE
   ========================================================= */
.nc-v14 #hero-title {
  max-width: 820px;
  font-size: clamp(3.55rem, 5.75vw, 6.45rem);
  line-height: .86;
}
.nc-v14 .hero-copy { max-width: 820px; }
.nc-v14 .hero-line-mask { width: max-content; max-width: 100%; }
.nc-v14 .hero-line { white-space: nowrap; }

@media (max-width: 1120px) {
  .nc-v14 #hero-title { max-width: 900px; font-size: clamp(3.9rem, 8.7vw, 6.4rem); }
  .nc-v14 .hero-line { white-space: normal; }
}

@media (max-width: 820px) {
  .nc-v14 #hero-title { font-size: clamp(3.15rem, 11.8vw, 5rem); line-height: .89; }
}

@media (max-width: 560px) {
  .nc-v14 #hero-title { font-size: clamp(2.75rem, 12.7vw, 4.15rem); line-height: .9; }
}


/* =========================================================
   NC STUDIO V14.3 — VERIFIED HERO FIT + DIRECT CONTACT LINKS
   ========================================================= */
.nc-v14 .hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: none;
}
.nc-v14 .hero-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.nc-v14 #hero-title {
  width: 100%;
  max-width: 100%;
  font-size: clamp(3.5rem, 5vw, 5.85rem);
  line-height: .87;
}
.nc-v14 .hero-line-mask {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.nc-v14 .hero-line {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
}
.nc-v14 .hero-line:empty,
.nc-v14 .hero-line-mask:has(.hero-line:empty) { display: none; }

.nc-v14 .contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.nc-v14 .contact-list a { min-width: 0; }
.nc-v14 .contact-list strong { overflow-wrap: anywhere; }

.nc-v14 .footer-v6 {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}
.nc-v14 .footer-contact-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.nc-v14 .footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #aaa59b;
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.nc-v14 .footer-contact-links a:hover,
.nc-v14 .footer-contact-links a:focus-visible {
  color: #f0d99f;
  border-color: rgba(213,173,91,.42);
  background: rgba(213,173,91,.055);
}
.nc-v14 .footer-contact-links strong {
  color: #d8d2c8;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1250px) {
  .nc-v14 .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .95fr);
    gap: clamp(36px, 4vw, 64px);
  }
  .nc-v14 #hero-title { font-size: clamp(3.35rem, 4.75vw, 5.45rem); }
  .nc-v14 .footer-v6 { grid-template-columns: auto 1fr auto; }
  .nc-v14 .footer-contact-links { grid-column: 2; grid-row: 2; justify-content: center; }
  .nc-v14 .footer-v6 > p { grid-column: 3; grid-row: 1 / span 2; }
}

@media (max-width: 1120px) {
  .nc-v14 .hero-grid { grid-template-columns: 1fr; }
  .nc-v14 #hero-title { max-width: 900px; font-size: clamp(3.9rem, 8.5vw, 6.15rem); }
  .nc-v14 .hero-line-mask { overflow: visible; }
  .nc-v14 .hero-line { white-space: normal; }
}

@media (max-width: 820px) {
  .nc-v14 #hero-title { font-size: clamp(3.05rem, 11.5vw, 4.9rem); line-height: .9; }
  .nc-v14 .footer-v6 { grid-template-columns: 1fr; justify-items: center; }
  .nc-v14 .footer-contact-links,
  .nc-v14 .footer-v6 > p { grid-column: 1; grid-row: auto; }
  .nc-v14 .footer-contact-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .nc-v14 #hero-title { font-size: clamp(2.7rem, 12.35vw, 4rem); }
  .nc-v14 .contact-list { grid-template-columns: 1fr; }
  .nc-v14 .footer-contact-links { width: 100%; }
  .nc-v14 .footer-contact-links a { justify-content: center; flex: 1 1 140px; }
}


/* =========================================================
   NC STUDIO V14.4 — CONTACT READABILITY, HERO SAFETY, FLAT WEB MARK
   ========================================================= */

/* Detailed metallic monogram stays for social/profile use.
   The website uses the same silhouette with a restrained flat-gold finish. */
.nc-v14 .brand-monogram {
  filter: drop-shadow(0 7px 14px rgba(213,173,91,.09));
}
.nc-v14 .site-header .brand-with-mark { gap: 11px; }
.nc-v14 .site-header .brand-monogram {
  width: 40px;
  height: 40px;
  transform: none;
}
.nc-v14 .brand > span { font-size: 1.43rem; }

/* Quiet dark holder for the showcase mark instead of a bright gold tile. */
.nc-v14 .system-mark-logo {
  width: 50px !important;
  height: 50px !important;
  box-sizing: border-box;
  object-fit: contain;
  padding: 11px !important;
  border: 1px solid rgba(213,173,91,.36);
  border-radius: 14px;
  background: #080a0c !important;
  box-shadow: inset 0 1px rgba(255,255,255,.045), 0 12px 28px rgba(0,0,0,.32);
  filter: drop-shadow(0 6px 12px rgba(213,173,91,.06));
}
.nc-v14 .process-brand-mark {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 7px 14px rgba(213,173,91,.08));
}
.nc-v14 .footer-brand .brand-monogram { width: 39px; height: 39px; }

/* Keep every desktop headline glyph safely inside the text column. */
@media (min-width: 1121px) {
  .nc-v14 .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(470px, .96fr);
    gap: clamp(46px, 4.5vw, 70px);
  }
  .nc-v14 #hero-title {
    font-size: clamp(3.2rem, 4.15vw, 4.55rem);
    line-height: .9;
    letter-spacing: -.05em;
  }
  .nc-v14 .hero-line-mask {
    width: calc(100% + .18em);
    max-width: calc(100% + .18em);
    padding-right: .18em;
    overflow: hidden;
  }
}

/* Direct contacts are full-width rows, not two narrow cards. */
.nc-v14 .contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: 28px;
}
.nc-v14 .contact-list a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 68px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 15px;
  background: rgba(255,255,255,.018);
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.nc-v14 .contact-list a::after {
  content: '↗';
  color: var(--accent-soft);
  font-size: 1rem;
  line-height: 1;
  justify-self: end;
}
.nc-v14 .contact-list a:hover,
.nc-v14 .contact-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(213,173,91,.42);
  background: rgba(213,173,91,.045);
}
.nc-v14 .contact-list span {
  color: #99948b;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nc-v14 .contact-list strong {
  min-width: 0;
  color: #eee9df;
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 820px) {
  .nc-v14 .site-header .brand-monogram { width: 37px; height: 37px; }
  .nc-v14 .brand > span { font-size: 1.33rem; }
}

@media (max-width: 560px) {
  .nc-v14 .site-header .brand-monogram { width: 34px; height: 34px; }
  .nc-v14 .brand > span { font-size: 1.2rem; }
  .nc-v14 .contact-list a {
    grid-template-columns: minmax(0, 1fr) 20px;
    gap: 5px 12px;
    padding: 15px 16px;
  }
  .nc-v14 .contact-list span,
  .nc-v14 .contact-list strong { grid-column: 1; }
  .nc-v14 .contact-list a::after { grid-column: 2; grid-row: 1 / span 2; }
  .nc-v14 .contact-list strong { white-space: normal; overflow: visible; text-overflow: clip; }
}

/* =========================================================
   NC STUDIO V14.5 — CLEAR TYPOGRAPHY HIERARCHY
   Hero remains the dominant headline; section titles are intentionally smaller.
   ========================================================= */
@media (min-width: 1121px) {
  .nc-v14 .section-head {
    max-width: 790px;
  }
  .nc-v14 .section-head h2 {
    max-width: 740px;
    font-size: clamp(2.75rem, 3.7vw, 3.9rem);
    line-height: .99;
    letter-spacing: -.042em;
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .nc-v14 .section-head h2 {
    max-width: 760px;
    font-size: clamp(2.9rem, 6.9vw, 4.45rem);
    line-height: .98;
  }
}

@media (max-width: 820px) {
  .nc-v14 .section-head h2 {
    font-size: clamp(2.75rem, 9.4vw, 4.2rem);
    line-height: .98;
  }
}

@media (max-width: 560px) {
  .nc-v14 .section-head h2 {
    font-size: clamp(2.45rem, 10.8vw, 3.55rem);
  }
}
