/* ============================================================
   hire.skyphaze.com — dark, premium, conversion-focused
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-alt: #0f1115;
  --card: #14171c;
  --card-hover: #181c22;
  --border: #23272f;
  --text: #f4f6f8;
  --text-dim: #9aa3ad;
  --accent: #0ea5e9;
  --accent-soft: rgba(14, 165, 233, 0.12);
  --accent-glow: rgba(14, 165, 233, 0.35);
  --radius: 16px;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}
.container-narrow { width: min(780px, 92%); }

.accent { color: var(--accent); }
.desktop-only { display: inline; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  background: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-block { display: block; width: 100%; }

.btn[disabled] { opacity: 0.6; cursor: wait; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px var(--accent-glow); }
  50% { box-shadow: 0 4px 40px rgba(14, 165, 233, 0.55); }
}
.btn-pulse { animation: pulse 2.6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-pulse, .hero-orb-1, .hero-orb-2 { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============ Navigation ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  width: min(1140px, 92%);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #38bdf8; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(14,165,233,0.45), transparent 70%);
  top: -120px; left: -120px;
  animation: drift1 14s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(56,189,248,0.3), transparent 70%);
  bottom: -100px; right: -80px;
  animation: drift2 18s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0, 0); } to { transform: translate(80px, 60px); } }
@keyframes drift2 { from { transform: translate(0, 0); } to { transform: translate(-70px, -50px); } }

.hero-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: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* ============ Sections ============ */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
}
.section-title-left {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 56px;
}

/* ============ Proof / Stats ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 56px 0 48px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.stat:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}
.stat-number {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 6px;
}

.live-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 48px;
}
.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.proof-link { text-align: center; }
.proof-link a {
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.proof-link a:hover { border-bottom-color: var(--accent); }
.proof-sub { color: var(--text-dim); margin-top: 12px; font-size: 1.05rem; }

/* ============ Skills ============ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.skill-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.skill-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
}
.skill-icon, .product-icon, .service-icon, .step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.12), inset 0 0 12px rgba(14, 165, 233, 0.06);
}
.skill-icon svg, .product-icon svg, .service-icon svg, .step-icon svg {
  width: 26px;
  height: 26px;
}
.skill-icon { margin: 0 auto 18px; }
.skill-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.skill-card p { color: var(--text-dim); font-size: 0.95rem; }

.skills-tagline {
  text-align: center;
  margin-top: 48px;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ============ Product cards ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.product-icon { margin-bottom: 16px; }
.product-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.product-sub { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 20px; }

.check-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.check-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text-dim);
  font-size: 0.93rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.product-price {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.product-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-top: 10px;
}

.guarantee-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}
.service-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 60px rgba(14, 165, 233, 0.12);
}
.badge-popular { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }

.service-icon { margin-bottom: 16px; }
.service-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.service-price {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.timeline-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(14, 165, 233, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* ============ Managed plan ============ */
.managed-card {
  background: linear-gradient(160deg, var(--card) 0%, #10151c 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 56px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.managed-head { text-align: center; }
.managed-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.managed-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.managed-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
}
.managed-price {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.managed-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dim);
}
.managed-pricing .timeline-badge { margin-bottom: 0; align-self: center; }

.managed-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  max-width: 680px;
  margin: 0 auto 40px;
}
.managed-features .check-list { margin-bottom: 0; }

.managed-cta { text-align: center; }
.guarantee-row-inline {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ============ Steps ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
}
.step-num {
  position: absolute;
  top: 18px; left: 22px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { margin: 0 auto 16px; }
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.93rem; }

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p { color: var(--text-dim); margin-bottom: 16px; font-size: 1.05rem; }
.about-text strong { color: var(--text); }
.about-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 1.05rem;
}
.about-link:hover { text-decoration: underline; }

.about-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

/* ============ FAQ ============ */
.faq-list { margin-top: 48px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.open { border-color: var(--accent); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-arrow {
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-dim);
  font-size: 0.96rem;
}

/* ============ Final CTA ============ */
.final-cta {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(14, 165, 233, 0.12), transparent),
    var(--bg);
}
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-dim); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }

/* ============ Modal ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.modal-sub { color: var(--text-dim); margin-bottom: 28px; font-size: 0.95rem; }

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}
.modal-close:hover { color: var(--text); }

#contactForm label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
}
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm select,
#contactForm textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  resize: vertical;
}
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-label {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500 !important;
  cursor: pointer;
}
.checkbox-label input { margin-top: 4px; accent-color: var(--accent); }

.form-error { color: #f87171; margin-top: 14px; font-size: 0.9rem; text-align: center; }

.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
#modalSuccessView { text-align: center; }
#modalSuccessView .btn { margin-top: 20px; }

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 920px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .skills-grid, .steps-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .skills-grid { margin-top: 56px; }
  .services-grid { grid-template-columns: 1fr; max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 320px; margin: 0 auto; }
  .managed-card { padding: 48px 28px; }
  .managed-features { grid-template-columns: 1fr; gap: 0; }
  .desktop-only { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { text-align: center; }
  .nav-links a { display: block; padding: 13px 0; font-size: 1.05rem; }
  .nav-links .nav-cta { margin: 10px 24px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .modal { padding: 28px 22px; }
}

/* ============ Premium motion ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, #0ea5e9, #7dd3fc);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.6);
  z-index: 200;
  pointer-events: none;
}

/* Hero entrance sequence */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.hero-content > * {
  opacity: 0;
  animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content > h1 { animation-delay: 0.05s; }
.hero-content > .hero-sub { animation-delay: 0.2s; }
.hero-content > .hero-ctas { animation-delay: 0.35s; }
.hero-content > .hero-trust { animation-delay: 0.5s; }

/* Shimmer on the hero accent */
.hero h1 .accent {
  background: linear-gradient(90deg, #0ea5e9, #7dd3fc, #38bdf8, #0ea5e9);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: -250% 0; } }

/* Shine sweep on primary buttons */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; height: 100%; width: 40%;
  left: -60%;
  transform: skewX(-20deg);
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
}
.btn-primary:hover::after { animation: shine 0.8s ease; }
@keyframes shine { to { left: 160%; } }

/* Section title underline grows on reveal */
.section-title::after {
  content: "";
  display: block;
  width: 0; height: 3px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  transition: width 0.8s 0.25s ease;
}
.section-title.visible::after { width: 64px; }

/* Nav link underline */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

/* Smoother transforms for tilt cards */
.product-card, .service-card, .skill-card, .stat, .step { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation: none !important; opacity: 1 !important; }
  .hero h1 .accent { animation: none; }
  .btn-primary::after { display: none; }
  .scroll-progress { display: none; }
}
