/* ===== DESIGN SYSTEM — LauchAR Premium Dark ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 212, 255, 0.15);

  --text-primary: #f1f1f4;
  --text-secondary: #8b8b9e;
  --text-muted: #5a5a6e;

  --accent-cyan: #00d4ff;
  --accent-violet: #7c3aed;
  --accent-emerald: #10b981;
  --gradient-main: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --gradient-hover: linear-gradient(135deg, #00e5ff 0%, #8b5cf6 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(0,212,255,.08) 0%, rgba(124,58,237,.08) 100%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, .4);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, .08);
  --shadow-btn: 0 8px 32px rgba(0, 212, 255, .25);

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', 'Inter', Arial, sans-serif;

  --container-max: 1140px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html:focus-within { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 4vw + 1rem, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { color: var(--text-secondary); line-height: 1.7; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-cyan); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container { width: min(var(--container-max), 90%); margin: 0 auto; }

.sr-only {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { position: static; width: auto; height: auto; padding: .5rem; background: var(--bg-secondary); color: var(--text-primary); }

/* ===== GRADIENT TEXT UTILITY ===== */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, .7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  transition: background .3s ease;
}

.header-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 101;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .3px;
}
.brand__text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav__toggle {
  display: none;
  padding: .6rem .9rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
  font-size: .9rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.nav__menu a {
  padding: .55rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text-secondary);
  transition: color .2s, background .2s;
}
.nav__menu a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,.04);
}

@media (max-width: 880px) {
  .nav__toggle { display: inline-block; }
  .nav__menu {
    display: none;
    position: absolute;
    right: 5%;
    top: 68px;
    flex-direction: column;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    padding: .8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    min-width: 220px;
  }
  .nav__menu[aria-expanded="true"] { display: flex; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-btn);
  border: none;
}
.btn--primary:hover {
  background: var(--gradient-hover);
  box-shadow: 0 8px 40px rgba(0, 212, 255, .35);
  transform: translateY(-2px);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}
.btn--ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, .05);
}

.btn--outline-glow {
  background: transparent;
  border: 1px solid rgba(0, 212, 255, .3);
  color: var(--accent-cyan);
}
.btn--outline-glow:hover {
  background: rgba(0, 212, 255, .08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 24px rgba(0, 212, 255, .15);
}

/* ===== HERO ===== */
.hero {
  padding: calc(6rem + 60px) 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, .08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, .06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border-radius: 100px;
  background: rgba(0, 212, 255, .08);
  border: 1px solid rgba(0, 212, 255, .15);
  color: var(--accent-cyan);
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  width: fit-content;
}
.hero__badge .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero__title { margin-bottom: .8rem; }
.hero__title .highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  max-width: 50ch;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero__cta {
  display: flex;
  gap: .8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__metrics {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.metric {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.metric__value {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric__label {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
}
.hero-mockup__bar {
  height: 36px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.hero-mockup__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: .5;
}
.hero-mockup__dot:nth-child(1) { background: #ef4444; opacity: .7; }
.hero-mockup__dot:nth-child(2) { background: #f59e0b; opacity: .7; }
.hero-mockup__dot:nth-child(3) { background: #22c55e; opacity: .7; }
.hero-mockup__body {
  padding: 20px;
}
.hero-mockup__header {
  height: 24px;
  width: 60%;
  border-radius: 6px;
  background: var(--gradient-subtle);
  margin-bottom: 12px;
}
.hero-mockup__hero-block {
  height: 100px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  opacity: .25;
  margin-bottom: 16px;
}
.hero-mockup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-mockup__grid > div {
  height: 60px;
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-subtle);
}
.hero-mockup__stats {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.hero-mockup__stat-bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.04);
  overflow: hidden;
  position: relative;
}
.hero-mockup__stat-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  border-radius: 4px;
  background: var(--gradient-main);
  animation: stat-fill 2s ease-out forwards;
}
.hero-mockup__stat-bar:nth-child(1)::after { width: 92%; }
.hero-mockup__stat-bar:nth-child(2)::after { width: 87%; animation-delay: .2s; }
.hero-mockup__stat-bar:nth-child(3)::after { width: 95%; animation-delay: .4s; }

@keyframes stat-fill {
  from { width: 0; }
}

/* Floating glow behind mockup */
.hero__visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__badge { margin-left: auto; margin-right: auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__metrics { justify-content: center; }
  .hero__visual { margin-top: 2rem; }
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section--alt {
  background: var(--bg-secondary);
}
.section__header {
  margin-bottom: 3rem;
}
.section__header p {
  margin-top: .5rem;
  max-width: 55ch;
}
.section__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-cyan);
  margin-bottom: .5rem;
}

.section--centered .section__header {
  text-align: center;
}
.section--centered .section__header p {
  margin-left: auto;
  margin-right: auto;
}

/* ===== VALUE PROPS (3 PILLARS) ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity .3s ease;
}
.pillar:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.pillar:hover::before { opacity: 1; }

.pillar__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-subtle);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border-subtle);
}

.pillar h3 { margin-bottom: .6rem; }
.pillar p { font-size: .92rem; }

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

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-subtle);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-subtle);
}

.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .92rem; margin-bottom: 1rem; }

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: auto;
}
.tag {
  padding: .3rem .7rem;
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-subtle);
  font-size: .75rem;
  color: var(--text-muted);
}

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

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gradient-main);
  opacity: .15;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  margin: 0 auto 1rem;
  transition: border-color .3s, background .3s;
  color: var(--accent-cyan);
}
.process-step:hover .process-step__num {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, .08);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.process-step p { font-size: .85rem; }

@media (max-width: 760px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.project-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
  color: inherit;
}

.project-card__preview {
  height: 200px;
  background: var(--gradient-subtle);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card__preview-label {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  opacity: .3;
  letter-spacing: .02em;
}

.project-card__body { padding: 1.5rem; }
.project-card__body h3 { margin-bottom: .3rem; }
.project-card__body p { font-size: .9rem; margin-bottom: .8rem; }
.project-card__meta {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.project-card__meta .tag { font-size: .72rem; }

.project-card__result {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .8rem;
  font-size: .82rem;
  color: var(--accent-emerald);
  font-weight: 500;
}

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

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 2.5rem;
  align-items: start;
}

.about__copy p { margin-bottom: 1rem; }

.list-check { margin-top: .5rem; }
.list-check li {
  padding: .4rem 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-secondary);
}
.list-check li::before {
  content: "✦";
  color: var(--accent-cyan);
  font-size: .8rem;
}

.about__stats {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: grid;
  gap: 1.5rem;
}
.stat { display: grid; gap: .2rem; }
.stat__num {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label { color: var(--text-muted); font-size: .85rem; }

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.2rem;
}
.tech-tag {
  padding: .4rem .8rem;
  border-radius: 100px;
  background: rgba(0, 212, 255, .06);
  border: 1px solid rgba(0, 212, 255, .12);
  font-size: .78rem;
  color: var(--accent-cyan);
  font-weight: 500;
}

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

/* ===== FAQ ===== */
.faq-list { max-width: 720px; }

details {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin-bottom: .8rem;
  transition: border-color .3s;
}
details:hover { border-color: var(--border-glow); }
details[open] { border-color: rgba(0, 212, 255, .2); }

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent-cyan);
  transition: transform .2s ease;
  flex-shrink: 0;
}
details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin-top: .8rem;
  font-size: .92rem;
}

/* ===== CTA SECTION ===== */
.section--cta {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.cta-content h2 { margin-bottom: .6rem; }
.cta-content > p { margin-bottom: 2rem; }

.cta-buttons {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 2rem;
  align-items: start;
}

.form { width: 100%; }
.form__row { display: grid; gap: .4rem; margin-bottom: 1rem; }

label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

input, textarea {
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, .1);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }

.form__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form__hint { color: var(--text-muted); font-size: .85rem; }

.contact__info {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.contact__info h3 { margin-bottom: 1rem; }
.contact__info-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: .92rem;
}
.contact__info-item:last-child { border-bottom: none; }
.contact__info-item span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.contact__info-item a { color: var(--accent-cyan); }
.contact__info-item a:hover { text-decoration: underline; }

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

/* ===== FOOTER ===== */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer p { font-size: .85rem; color: var(--text-muted); }
.site-footer nav { display: flex; gap: 1.2rem; }
.site-footer a { color: var(--text-muted); font-size: .85rem; }
.site-footer a:hover { color: var(--accent-cyan); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ===== RESPONSIVE UTILITIES ===== */
.center { text-align: center; }
.mt-24 { margin-top: 1.5rem; }

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

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta-mobile {
  display: none;
}
@media (max-width: 880px) {
  .sticky-cta-mobile {
    display: inline-flex;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
  }
}
