:root {
  --bg: #07080a;
  --bg-soft: #0d0f13;
  --surface: rgba(255,255,255,0.045);
  --surface-hover: rgba(255,255,255,0.075);
  --border: rgba(255,255,255,0.09);
  --border-hover: rgba(255,255,255,0.18);
  --text: #f3f4f0;
  --muted: #9497a1;
  --muted-2: #6b6e78;
  --accent: #7c5cff;
  --accent-soft: rgba(124,92,255,0.15);
  --accent-2: #4dffd1;
  --radius: 18px;
  --radius-sm: 10px;
  --ff-display: "Unbounded", sans-serif;
  --ff-body: "Inter", sans-serif;
  --ease: cubic-bezier(.16,.84,.44,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Noise + cursor glow ---------- */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed; width: 480px; height: 480px; border-radius: 50%;
  pointer-events: none; z-index: 1; top: 0; left: 0;
  background: radial-gradient(circle, rgba(124,92,255,0.10) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: opacity .3s;
  will-change: transform;
  display: none;
}
@media (min-width: 1024px) { .cursor-glow { display: block; } }

.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 999; transition: width .1s linear;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .1s; }
.reveal-delay-2.in-view { transition-delay: .2s; }
.reveal-delay-3.in-view { transition-delay: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 100px; border: 1px solid transparent;
  font-family: var(--ff-body); font-weight: 600; font-size: 15px;
  transition: transform .35s var(--ease), background .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--text); color: #0a0a0c;
  box-shadow: 0 0 0 0 rgba(124,92,255,0);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(124,92,255,0.5); background: var(--accent); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--border-hover); background: var(--surface); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }
.btn-full { width: 100%; justify-content: center; padding: 16px 26px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(7,8,10,0.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #4a37b8);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; letter-spacing: -0.5px;
  box-shadow: 0 4px 18px -4px rgba(124,92,255,0.6);
}
.logo-text { font-size: 14px; font-weight: 600; letter-spacing: 0.2px; }

.main-nav { display: none; align-items: center; gap: 34px; }
.nav-link {
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  position: relative; transition: color .3s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions .btn-primary { display: none; }

.burger {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.burger span { width: 16px; height: 1.5px; background: var(--text); transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 84vw);
  background: #0b0c10; border-left: 1px solid var(--border);
  z-index: 99; padding: 110px 32px 40px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .5s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link { padding: 14px 0; font-size: 20px; font-family: var(--ff-display); font-weight: 500; border-bottom: 1px solid var(--border); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 90px; overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 40%, transparent 90%);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none;
}
.blob-1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(124,92,255,0.45), transparent 70%); top: -120px; right: -80px; }
.blob-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(77,255,209,0.22), transparent 70%); bottom: -100px; left: -100px; }
.blob-3 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(124,92,255,0.28), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(110px); }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center;
}
.hero-left, .hero-right { min-width: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.4px; color: var(--muted);
  padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px;
  background: var(--surface); margin-bottom: 28px;
}
.dot-live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(77,255,209,0.6); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(77,255,209,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(77,255,209,0); }
  100% { box-shadow: 0 0 0 0 rgba(77,255,209,0); }
}

.hero-title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(29px, 7vw, 66px); line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 28px;
  overflow-wrap: break-word;
}
.hero-title .line { display: block; }
.line-accent {
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-text {
  max-width: 540px; color: var(--muted); font-size: 17px; line-height: 1.65;
  margin-bottom: 38px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: 32px 40px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-display); font-size: clamp(26px, 3.4vw, 36px); font-weight: 700;
  color: var(--text); line-height: 1;
}
.stat-label { font-size: 12.5px; color: var(--muted-2); margin-top: 8px; line-height: 1.4; }

.hero-right { position: relative; display: flex; justify-content: center; }
.portrait-frame {
  position: relative; width: min(400px, 100%); aspect-ratio: 4/5;
  border-radius: 28px; overflow: visible;
}
.portrait-glow {
  position: absolute; inset: -10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,0.5) 0%, rgba(77,255,209,0.18) 45%, transparent 72%);
  filter: blur(40px); z-index: 0; animation: glow-breathe 6s ease-in-out infinite;
}
@keyframes glow-breathe { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: 0.85; } }

.portrait-img, .portrait-fallback {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover;
  border-radius: 28px; border: 1px solid var(--border);
  background: linear-gradient(160deg, #14151b, #0a0a0d);
}
.portrait-fallback {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--muted-2); text-align: center; padding: 20px; font-size: 12.5px;
}
.portrait-frame.no-photo .portrait-img { display: none; }
.portrait-frame.no-photo .portrait-fallback { display: flex; }

.floating-badge {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-radius: 100px;
  background: rgba(13,15,19,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border); font-size: 12.5px; font-weight: 600;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6);
  animation: float-badge 4.5s ease-in-out infinite;
}
.badge-status { bottom: 14%; left: -8%; }
.badge-role { top: 10%; right: -10%; animation-delay: 1.2s; }
.badge-emoji { font-size: 14px; }
@keyframes float-badge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2);
}
.scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--muted-2), transparent); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: linear-gradient(var(--accent-2), transparent);
  animation: scroll-run 2s infinite;
}
@keyframes scroll-run { to { top: 100%; } }

/* ---------- Marquee ---------- */
.marquee-section {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 26px 0; overflow: hidden; background: var(--bg-soft);
}
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-content { display: flex; align-items: center; flex-shrink: 0; }
.marquee-content span {
  font-family: var(--ff-display); font-size: 17px; font-weight: 500; color: var(--muted);
  padding: 0 22px; white-space: nowrap;
}
.marquee-content .sep { color: var(--accent); padding: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section shared ---------- */
section { position: relative; padding: 130px 0; }
.section-head { margin-bottom: 64px; max-width: 640px; }
.section-kicker {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--accent-2); margin-bottom: 16px; text-transform: uppercase;
}
.section-title {
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.12; letter-spacing: -0.5px;
}
.accent-text { color: var(--accent); }
.section-note { margin-top: 16px; font-size: 13.5px; color: var(--muted-2); font-style: italic; }
.section-note-lg { margin-top: 20px; font-size: 16px; color: var(--muted); max-width: 420px; }

/* ---------- About ---------- */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
.about-grid > * { min-width: 0; }
.about-text p { color: var(--muted); font-size: 16.5px; line-height: 1.75; margin-bottom: 20px; }
.about-quote {
  margin-top: 30px; padding: 26px 28px; border-left: 2px solid var(--accent);
  background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--ff-display); font-size: 17px; font-weight: 400; line-height: 1.5;
  color: var(--text);
}

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--border); position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--ff-display); font-weight: 700; font-size: 15px; color: var(--accent-2); }
.timeline-body h4 { font-size: 17px; margin-bottom: 6px; font-weight: 600; }
.timeline-body p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.services-grid > * { min-width: 0; }
.service-card {
  padding: 34px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); transition: transform .45s var(--ease), border-color .4s, background .4s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-hover); background: var(--surface-hover); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
}
.service-card h3 { font-family: var(--ff-display); font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; }
.service-tag { font-size: 12px; color: var(--muted-2); letter-spacing: 0.3px; }

/* ---------- Process ---------- */
.process { background: var(--bg-soft); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.process-grid > * { min-width: 0; }
.process-card { padding: 32px 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: start; }
.process-grid .process-card:last-child { border-bottom: 1px solid var(--border); }
.process-num { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--muted-2); }
.process-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.process-card p { color: var(--muted); font-size: 14.5px; max-width: 480px; line-height: 1.6; }

/* ---------- Work ---------- */
.work-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.work-grid > * { min-width: 0; }
.work-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: var(--surface); transition: transform .45s var(--ease), border-color .4s;
}
.work-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.work-thumb {
  height: 220px; position: relative; display: flex; align-items: flex-end; padding: 18px;
  overflow: hidden; background: #14151b;
}
.work-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,8,10,0) 40%, rgba(7,8,10,0.85) 100%);
}
.work-tag {
  position: relative; z-index: 1; font-size: 12px; font-weight: 600; padding: 7px 14px;
  border-radius: 100px; background: rgba(7,8,10,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.work-body { padding: 26px; }
.work-body h3 { font-family: var(--ff-display); font-size: 18px; margin-bottom: 10px; }
.work-body p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.work-stack { display: flex; flex-wrap: wrap; gap: 8px; }
.work-stack span { font-size: 11.5px; color: var(--muted-2); padding: 5px 11px; border: 1px solid var(--border); border-radius: 100px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-soft); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.reviews-grid > * { min-width: 0; }
.review-card {
  padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface);
}
.stars { color: var(--accent-2); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.review-card p { font-size: 15.5px; line-height: 1.65; color: var(--text); margin-bottom: 26px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar-img {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; border: 1px solid var(--border);
}
.review-author strong { display: block; font-size: 14.5px; font-weight: 600; }
.review-author span { font-size: 12.5px; color: var(--muted-2); }

/* ---------- Contact ---------- */
.contact { overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; position: relative; z-index: 1; }
.contact-info, .contact-form { min-width: 0; }
.contact-links { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface);
  transition: border-color .3s, transform .3s var(--ease), background .3s;
  min-width: 0;
}
.contact-link > div { min-width: 0; }
.contact-link span { overflow-wrap: break-word; word-break: break-word; }
.contact-link:hover { border-color: var(--border-hover); transform: translateX(6px); background: var(--surface-hover); }
.contact-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-2);
}
.contact-link strong { display: block; font-size: 14.5px; font-weight: 600; }
.contact-link span { font-size: 13.5px; color: var(--muted); }

.contact-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; color: var(--text); font-size: 14.5px; outline: none;
  transition: border-color .3s, box-shadow .3s;
  resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,92,255,0.15);
}
.form-note { font-size: 11.5px; color: var(--muted-2); text-align: center; line-height: 1.5; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.footer-nav { display: flex; gap: 26px; }
.footer-nav a { font-size: 13.5px; color: var(--muted); transition: color .3s; }
.footer-nav a:hover { color: var(--text); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: border-color .3s, color .3s;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent-2); }
.footer-copy { font-size: 12.5px; color: var(--muted-2); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--text); color: #0a0a0c; padding: 15px 26px; border-radius: 100px;
  font-size: 14px; font-weight: 600; z-index: 999; opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.6);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 32px 56px; }
}

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-actions .btn-primary { display: inline-flex; }
  .burger { display: none; }
  .scroll-cue { display: flex; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-card { grid-template-columns: 1fr; border-top: none; border-left: 1px solid var(--border); padding: 0 28px; }
  .process-grid .process-card:last-child { border-bottom: none; }
  .process-card:first-child { border-left: none; padding-left: 0; }
}

/* Two-column hero only once there's enough room for the headline word
   to fit without mid-word breaking (checked against the longest line). */
@media (min-width: 1280px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}

@media (max-width: 1023px) {
  .container { padding: 0 24px; }
  .hero { padding: 130px 0 70px; }
  section { padding: 90px 0; }
}

@media (max-width: 639px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .floating-badge { font-size: 11px; padding: 9px 13px; }
  .badge-status { left: 0; bottom: -6%; }
  .badge-role { right: 0; top: -6%; }
}

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