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

:root {
  --blue-dark:   #050d1f;
  --blue-mid:    #0a1a3a;
  --blue-bright: #1a56db;
  --blue-glow:   #3b82f6;
  --cyan:        #06b6d4;
  --accent:      #00e5ff;
  --text:        #e2e8f0;
  --text-muted:  #94a3b8;
  --card-bg:     rgba(10,26,58,0.7);
  --border:      rgba(59,130,246,0.25);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--blue-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── CANVAS BG ─────────────────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── NOISE OVERLAY ─────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* ── WRAPPER ───────────────────────────────────────────────── */
.wrapper { position: relative; z-index: 2; }

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(5,13,31,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img { height: 44px; display: block; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(59,130,246,0.25);
  background: rgba(10,26,58,0.25);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(226,232,240,0.95);
  transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .25s;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.82rem !important;
  transition: box-shadow .3s, transform .2s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 20px rgba(6,182,212,0.5);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

@media (max-width: 560px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: start center;
  padding: 10px 0 0;
  pointer-events: auto;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(6px);
}
.nav-mobile-panel {
  position: relative;
  width: min(100%, 420px);
  max-height: calc(100vh - 96px);
  margin: 0 12px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(5,13,31,0.92);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
  overflow: hidden;
  animation: menuDrop .18s ease both;
}
.nav-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(59,130,246,0.16);
}
.nav-mobile-title {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}
.nav-mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(59,130,246,0.25);
  background: rgba(10,26,58,0.25);
  color: rgba(226,232,240,0.95);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
}
.nav-mobile-links {
  list-style: none;
  padding: 10px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}
.nav-mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(10,26,58,0.18);
  border: 1px solid rgba(59,130,246,0.12);
  transition: border-color .2s, transform .15s, background .2s;
}
.nav-mobile-links a:hover { border-color: rgba(0,229,255,0.35); background: rgba(0,229,255,0.06); transform: translateY(-1px); }
.nav-mobile-links a.active { border-color: rgba(0,229,255,0.45); color: var(--accent); }
.nav-cta.nav-cta-mobile {
  justify-content: center;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem !important;
  padding: 14px 16px;
}

body.nav-open { overflow: hidden; }

@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 8% 80px;
  position: relative;
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.35);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s infinite;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  animation: fadeUp .7s .1s ease both;
}
.hero h1 .hl {
  background: linear-gradient(90deg, var(--blue-glow), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 22px;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: box-shadow .3s, transform .2s;
  box-shadow: 0 4px 20px rgba(26,86,219,0.4);
}
.btn-primary:hover { box-shadow: 0 6px 32px rgba(6,182,212,0.55); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: border-color .3s, color .3s, background .3s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,229,255,0.05); }

.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp .7s .4s ease both;
}
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.hero-visual-img {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 44vw;
  max-width: 560px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,.55));
  opacity: 0.9;
  animation: floatY 4s ease-in-out infinite;
}
@media (max-width: 900px) { .hero-visual-img { display: none; } }
@media (max-width: 560px) {
  .hero { padding: 110px 6% 68px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 22px; }
}

/* ── MARQUEE ───────────────────────────────────────────────── */
.marquee-section {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-item svg { flex-shrink: 0; }

/* ── SECTION COMMON ────────────────────────────────────────── */
section { padding: 100px 8%; }

.section-tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ── SIMPLE PAGE HERO ───────────────────────────────────────── */
.page-hero {
  padding: 120px 8% 52px;
  position: relative;
}
.page-hero-inner {
  max-width: 900px;
}
.breadcrumbs {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 16px;
}
.breadcrumbs a { color: inherit; text-decoration: none; border-bottom: 1px dashed rgba(0,229,255,0.25); }
.breadcrumbs a:hover { color: var(--accent); border-bottom-color: rgba(0,229,255,0.55); }
.page-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #fff;
}
.page-sub {
  margin-top: 14px;
  color: var(--text-muted);
  max-width: 620px;
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(59,130,246,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--blue-glow); box-shadow: 0 8px 40px rgba(59,130,246,0.2); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(26,86,219,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.service-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.72rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,229,255,0.3);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ── PROCESS ───────────────────────────────────────────────── */
.process-section { background: var(--blue-mid); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 0 30px rgba(6,182,212,0.4);
  z-index: 1;
}
.step h4 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); }

/* ── TECH STACK ────────────────────────────────────────────── */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 50px;
}
.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color .25s, color .25s, box-shadow .25s, transform .2s;
  cursor: default;
}
.tech-pill:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 14px rgba(0,229,255,0.2); transform: translateY(-2px); }
.tech-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ── PORTFOLIO / CARD GRID ─────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  border: 1px solid var(--border);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: transform .3s, box-shadow .3s;
}
.portfolio-card:hover { transform: scale(1.025); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.portfolio-card .card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px 20px;
  background: linear-gradient(to top, rgba(5,13,31,.95), transparent);
}
.card-label h4 { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1rem; }
.card-label span { font-size: 0.78rem; color: var(--text-muted); }
.card-visual { width: 80%; height: 70%; border-radius: 10px; display: flex; align-items: center; justify-content: center; }

/* ── WHY US ────────────────────────────────────────────────── */
.why-section { background: var(--blue-mid); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }

.why-items { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(26,86,219,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; }
.why-item h4 { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 0.97rem; margin-bottom: 4px; }
.why-item p { font-size: 0.87rem; color: var(--text-muted); }

.circuit-art { width: 100%; display: flex; align-items: center; justify-content: center; animation: floatSoft 5s ease-in-out infinite; }

/* ── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(26,86,219,0.22) 0%, transparent 65%);
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
}
.cta-section p { color: var(--text-muted); max-width: 520px; margin: 0 auto 36px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── CONTENT HELPERS ───────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-top: 44px;
  align-items: start;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
}
.card h3 { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.01em; font-size: 1.05rem; color: #fff; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.92rem; }
.card + .card { margin-top: 18px; }

.list-clean { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.list-clean li { color: var(--text-muted); }
.list-clean b { color: #fff; font-weight: 700; }

.form {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form .full { grid-column: 1 / -1; }
.input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  background: rgba(5, 13, 31, 0.55);
  border: 1px solid rgba(59,130,246,0.22);
  color: var(--text);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.input:focus { border-color: rgba(0,229,255,0.55); box-shadow: 0 0 0 4px rgba(0,229,255,0.08); }
.textarea { min-height: 120px; resize: vertical; }
.form-actions { grid-column: 1 / -1; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hint { color: rgba(148,163,184,0.9); font-size: 0.86rem; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: rgba(5,13,31,0.95);
  border-top: 1px solid var(--border);
  padding: 56px 8% 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { height: 40px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 320px; }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { text-decoration: none; font-size: 0.87rem; color: var(--text-muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 14px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, background .25s, transform .2s;
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover { border-color: var(--accent); background: rgba(0,229,255,0.08); transform: translateY(-2px); }
.social-btn svg { width: 16px; height: 16px; fill: var(--text-muted); }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50%       { transform: translateY(-50%) translateY(-18px); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* subtle page enter */
.page-enter { animation: pageEnter .55s ease both; }
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
