/* ============================================
   UTKARSH PORTFOLIO — STYLES
   Palette: Acid Neon Dark
   Fonts: Syne + DM Sans
   ============================================ */

:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #181818;
  --surface: #1A1A1A;
  --surface-2: #222222;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(204,255,0,0.3);

  --lime: #CCFF00;
  --lime-dim: rgba(204,255,0,0.12);
  --lime-glow: rgba(204,255,0,0.25);
  --pink: #FF3CAC;
  --pink-dim: rgba(255,60,172,0.12);

  --text-primary: #F0EDE8;
  --text-secondary: #888888;
  --text-muted: #555555;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(204,255,0,0.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 18px; height: 18px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; border-color: var(--lime); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 2px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--lime);
  color: #000;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
}
.logo-text { font-size: 15px; letter-spacing: 0.12em; color: var(--text-primary); }
.nav-links {
  display: flex; gap: 36px;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--lime);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--lime); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--lime); color: #000;
  padding: 10px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--lime-glow);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-link {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--lime); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    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: 60px 60px;
  pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204,255,0,0.08) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,60,172,0.06) 0%, transparent 70%);
  bottom: -50px; right: 10%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content {
  flex: 1; max-width: 640px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,255,0,0.08);
  border: 1px solid rgba(204,255,0,0.2);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--lime);
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--lime); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 24px;
}
.line-wrap { display: block; overflow: hidden; }
.reveal-line {
  display: block;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.line-wrap:nth-child(1) .reveal-line { animation-delay: 0.1s; font-size: clamp(20px, 3vw, 28px); color: var(--text-secondary); font-weight: 400; }
.line-wrap:nth-child(2) .reveal-line { animation-delay: 0.2s; font-size: clamp(56px, 9vw, 100px); color: var(--text-primary); }
.line-wrap:nth-child(3) .reveal-line { animation-delay: 0.3s; font-size: clamp(28px, 4.5vw, 52px); color: var(--lime); }

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* GLITCH */
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  font-family: inherit; font-size: inherit; font-weight: inherit;
}
.glitch::before {
  color: var(--pink);
  animation: glitch1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::after {
  color: var(--lime);
  animation: glitch2 4s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(-3px, 1px); opacity: 0.7; }
  94% { transform: translate(3px, -1px); opacity: 0.7; }
  96% { transform: translate(-2px, 2px); opacity: 0.7; }
}
@keyframes glitch2 {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  93% { transform: translate(3px, -1px); opacity: 0.7; }
  95% { transform: translate(-3px, 1px); opacity: 0.7; }
  97% { transform: translate(2px, -2px); opacity: 0.7; }
}

.hero-desc {
  font-size: 17px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-desc em { color: var(--lime); font-style: normal; font-weight: 500; }

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 100px;
  font-size: 13px; color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition);
}
.tag:hover { border-color: var(--lime); color: var(--lime); }

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.7s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: none;
}
.btn-primary {
  background: var(--lime); color: #000;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--lime-glow);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
}
.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- HERO VISUAL ---- */
.hero-visual {
  flex: 0 0 380px;
  position: relative; z-index: 2;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--pink));
}
.card-inner {
  display: flex; gap: 24px; margin-bottom: 28px;
}
.card-stat {
  flex: 1; text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--lime);
  display: block;
}
.stat-plus { font-size: 20px; color: var(--lime); font-weight: 700; }
.stat-label {
  display: block; font-size: 11px;
  color: var(--text-muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.card-divider {
  width: 1px; background: var(--border);
}
.card-workflow {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.workflow-step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 12px; color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.workflow-step.active { color: var(--lime); }
.ws-icon { font-size: 20px; }
.workflow-arrow { color: var(--text-muted); font-size: 14px; }

/* ---- SCROLL HINT ---- */
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 48px;
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeInUp 1s ease 1s both;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 60px; opacity: 0.5; }
}

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--lime);
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ticker {
  display: flex; gap: 40px; align-items: center;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.ticker span {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: #000; letter-spacing: 0.1em;
}
.ticker-dot { color: #000 !important; font-size: 10px !important; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--lime); letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 48px;
}
.accent { color: var(--lime); }
.section-header { margin-bottom: 56px; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: none;
}
.service-card::before {
  content: attr(data-index);
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 48px; font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.service-card.featured {
  border-color: rgba(204,255,0,0.2);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(204,255,0,0.04) 100%);
}
.service-card.featured:hover {
  box-shadow: 0 20px 48px var(--lime-glow);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  margin-bottom: 20px;
  transition: background var(--transition), border-color var(--transition);
}
.service-card:hover .service-icon {
  background: var(--lime-dim);
  border-color: rgba(204,255,0,0.3);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px; color: var(--text-primary);
}
.service-card p {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 20px;
}
.service-features {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 20px;
}
.service-features li {
  font-size: 13px; color: var(--text-muted);
  padding-left: 16px; position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--lime); font-size: 11px;
}
.service-tag {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-tag.popular {
  background: var(--lime-dim);
  border-color: rgba(204,255,0,0.3);
  color: var(--lime);
}

/* ============================================
   WORK
   ============================================ */
.work {
  padding: 100px 0;
  background: var(--bg-2);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.work-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
  cursor: none;
}
.work-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.work-item-large { grid-column: span 2; }
.work-item-wide { grid-column: span 2; }

.work-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.work-item-large .work-thumb { aspect-ratio: 16/8; }

.work-thumb-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.5s ease;
}
.work-item:hover .work-thumb-inner { transform: scale(1.04); }

/* Thumb backgrounds */
.reel-thumb {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b69 50%, #11998e 100%);
}
.shorts-thumb {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}
.brand-thumb {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.yt-thumb {
  background: linear-gradient(135deg, #200122 0%, #6f0000 100%);
}
.thumb-design {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.play-btn {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.work-item:hover .play-btn {
  background: var(--lime);
  color: #000;
  transform: scale(1.1);
}

.work-label-overlay {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
  color: white; letter-spacing: 0.04em;
}

/* Thumbnail preview decoration */
.thumbnail-preview {
  width: 80%; height: 70%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.tp-bar {
  position: absolute; border-radius: 4px;
  background: linear-gradient(90deg, var(--lime), var(--pink));
}
.tp-bar-1 { width: 70%; height: 8px; top: 20%; left: 15%; opacity: 0.6; }
.tp-bar-2 { width: 50%; height: 6px; top: 45%; left: 15%; opacity: 0.4; }
.tp-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.2;
  position: absolute; right: 10%; top: 10%;
}
.tp-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: white; letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(204,255,0,0.5);
}

.work-info {
  padding: 20px 24px;
}
.work-type {
  font-size: 11px; font-weight: 600;
  color: var(--lime); letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.work-info h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 4px;
}
.work-info p {
  font-size: 13px; color: var(--text-muted);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--bg);
}
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-text {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 20px;
}
.about-workflow {
  display: flex; align-items: center; gap: 0;
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.aw-step {
  display: flex; align-items: center; gap: 14px; flex: 1;
}
.aw-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--lime); opacity: 0.4;
  line-height: 1;
}
.aw-content { display: flex; flex-direction: column; gap: 2px; }
.aw-content strong {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--text-primary);
}
.aw-content span { font-size: 12px; color: var(--text-muted); }
.aw-connector {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
  flex-shrink: 0;
}

/* ---- TOOLS CARD ---- */
.tools-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}
.tools-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 24px;
}
.tools-grid {
  display: flex; flex-direction: column; gap: 14px;
}
.tool-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--text-secondary);
  transition: color var(--transition);
}
.tool-item:hover { color: var(--text-primary); }
.tool-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.premiere { background: #9999FF; color: #000; }
.ae { background: #9999FF; color: #000; background: linear-gradient(135deg, #00005B, #9999FF); color: #9999FF; border: 1px solid #9999FF; }
.ae { background: #1a1a4e; color: #9999FF; }
.ps { background: #001E36; color: #31A8FF; border: 1px solid #31A8FF22; }
.lr { background: #001C33; color: #31A8FF; border: 1px solid #31A8FF22; }
.premiere { background: #1a0a3e; color: #9999FF; border: 1px solid #9999FF22; }
.canva { background: #1a0a1a; color: #7D2AE8; border: 1px solid #7D2AE822; }

.promise-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(204,255,0,0.05) 100%);
  border: 1px solid rgba(204,255,0,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.promise-icon { font-size: 32px; margin-bottom: 12px; }
.promise-card h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--lime); margin-bottom: 10px;
}
.promise-card p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.contact-bg-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(204,255,0,0.04) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  position: relative; z-index: 1;
}
.contact-desc {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 36px;
}
.contact-info {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.contact-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.ci-icon {
  width: 40px; height: 40px;
  background: var(--lime-dim);
  border: 1px solid rgba(204,255,0,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); flex-shrink: 0;
}
.ci-text { display: flex; flex-direction: column; gap: 2px; }
.ci-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ci-value { font-size: 14px; color: var(--text-primary); font-weight: 500; }
.contact-badges {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cbadge {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 100px;
  font-size: 13px; color: var(--text-secondary);
}

/* ---- FORM ---- */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px; color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(204,255,0,0.4);
  box-shadow: 0 0 0 3px rgba(204,255,0,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: none; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.1em;
}
.footer-role {
  font-size: 12px; color: var(--text-muted);
  padding-left: 10px;
  border-left: 1px solid var(--border);
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links {
  display: flex; gap: 24px;
}
.footer-links a {
  font-size: 13px; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--lime); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1; transform: translateY(0);
}
.service-card, .work-item, .tool-item, .contact-item {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color var(--transition), box-shadow var(--transition);
}
.service-card.visible, .work-item.visible, .tool-item.visible, .contact-item.visible {
  opacity: 1; transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { padding: 120px 32px 80px; flex-direction: column; gap: 48px; }
  .hero-visual { flex: none; width: 100%; max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-item-large, .work-item-wide { grid-column: span 2; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-scroll-hint { left: 24px; }
  .container { padding: 0 24px; }
  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .work { padding: 72px 0; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item-large, .work-item-wide { grid-column: span 1; }
  .about { padding: 72px 0; }
  .about-workflow { flex-direction: column; gap: 16px; }
  .aw-connector { width: 1px; height: 24px; background: linear-gradient(180deg, var(--lime), transparent); }
  .contact { padding: 72px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

@media (max-width: 480px) {
  .card-inner { flex-direction: column; gap: 16px; }
  .card-divider { width: 100%; height: 1px; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}