*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0F172A; --bg2: #111827;
  --surface: #1E293B; --surface2: #162032;
  --emerald: #10B981; --emerald-dim: #059669;
  --emerald-glow: rgba(16,185,129,0.15);
  --emerald-glow2: rgba(16,185,129,0.07);
  --cyan: #22D3EE;
  --white: #F8FAFC; --muted: #94A3B8;
  --border: rgba(16,185,129,0.18);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; line-height: 1.7; overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}
section { position: relative; z-index: 1; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 5%;
  background: rgba(15,23,42,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.05rem; letter-spacing: 0.05em;
  text-decoration: none; display: flex; align-items: center; gap: 0.3rem;
}
.nav-logo .lp { color: var(--cyan); }
.nav-logo .rest { color: var(--emerald); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 0.75rem;
  color: var(--muted); text-decoration: none;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--emerald); }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 10rem 5% 6rem; overflow: hidden;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.11) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--emerald); background: var(--emerald-glow2);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem; border-radius: 999px;
  margin-bottom: 2rem; animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald); animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 1.5rem; animation: fadeUp 0.7s 0.1s ease both;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
h1 .lp { color: var(--cyan); }
h1 .accent { color: var(--emerald); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--muted);
  max-width: 540px; margin: 0 auto 2.8rem; font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}
.btn-group {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.8rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  font-weight: 500; text-decoration: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary { background: var(--emerald); color: #0F172A; border: none; }
.btn-primary:hover { background: #0ea472; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.35); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.btn-secondary:hover { border-color: var(--emerald); color: var(--emerald); transform: translateY(-2px); }

.hero-stat-bar {
  display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center;
  margin-top: 5rem; padding-top: 3rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.5s ease both;
}
.stat { text-align: center; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--emerald); }
.stat-label { font-size: 0.75rem; color: var(--muted); font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; }

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

/* SECTION COMMON */
.section-label {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem;
}

/* PRODUCTS */
#products {
  padding: 7rem 5%;
  background: var(--surface2);
  border-top: 1px solid var(--border);
}
.products-header { text-align: center; margin-bottom: 3.5rem; }
.products-header p { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid > *:last-child:nth-child(3n+1) { grid-column: 2; }
}
.prod-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.8rem;
  transition: all 0.25s; cursor: pointer; position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); border-color: rgba(16,185,129,0.38); }
.prod-card.placeholder { cursor: default; opacity: 0.6; }
.prod-card.placeholder:hover { transform: none; box-shadow: none; border-color: var(--border); }
.prod-card.featured { border-color: rgba(16,185,129,0.38); background: var(--emerald-glow2); }
.prod-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}
.prod-tag {
  display: inline-block; font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.2rem 0.65rem;
  border-radius: 4px; margin-bottom: 1rem; font-weight: 500;
}
.tag-live { background: rgba(16,185,129,0.15); color: var(--emerald); border: 1px solid rgba(16,185,129,0.3); }
.tag-soon { background: rgba(34,211,238,0.1); color: var(--cyan); border: 1px solid rgba(34,211,238,0.25); }
.tag-svc  { background: rgba(148,163,184,0.1); color: var(--muted); border: 1px solid rgba(148,163,184,0.2); }
.tag-dev  { background: rgba(139,92,246,0.1); color: #A78BFA; border: 1px solid rgba(139,92,246,0.25); }
.tag-cli  { background: rgba(6,182,212,0.1); color: #22D3EE; border: 1px solid rgba(6,182,212,0.25); }
.tag-lab  { background: rgba(125,211,252,0.08); color: #7DD3FC; border: 1px solid rgba(125,211,252,0.2); }
.prod-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.prod-icon-mono { font-family: 'DM Mono', monospace; font-size: 1.1rem; font-weight: 500; letter-spacing: -0.03em; }
.pi-lockedpages { color: #10B981; }
.pi-ai          { color: #F59E0B; }
.pi-games    { color: #8B5CF6; }
.pi-milife   { color: #F43F5E; }
.pi-clip     { color: #06B6D4; }
.pi-compress { color: #7DD3FC; }
.pi-services { color: #10B981; }
.pi-blog     { color: #F59E0B; }
.prod-name {
  font-family: 'Syne', sans-serif; font-size: 1.05rem;
  font-weight: 700; margin-bottom: 0.3rem;
}
.prod-domain {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: var(--muted); margin-bottom: 0.8rem;
}
.prod-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.prod-cta-hint {
  margin-top: 0.9rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.70rem;
  letter-spacing: 0.04em;
  color: var(--emerald);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.prod-card:hover .prod-cta-hint { opacity: 1; }
.prod-arrow {
  position: absolute; right: 1.2rem; top: 1.2rem;
  color: var(--muted); font-size: 0.85rem; opacity: 0.45;
}

/* SERVICES */
#services { padding: 7rem 5%; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-header { margin-bottom: 3rem; }
.services-header p { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin-top: 0.5rem; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.svc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem; transition: all 0.2s;
  display: flex; flex-direction: column;
}
.svc-card:hover { border-color: rgba(16,185,129,0.35); transform: translateY(-3px); }
.svc-icon { margin-bottom: 0.9rem; display: flex; }
.svc-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.svc-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; flex: 1; }
.svc-timeline {
  margin-top: 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--emerald);
  opacity: 0.8;
}
.svc-cta {
  margin-top: 3rem;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 16px;
  background: var(--surface);
  text-align: center;
}
.svc-cta-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.70rem;
  letter-spacing: 0.1em;
  color: var(--emerald);
  margin-bottom: 0.8rem;
}
.svc-cta-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1.6rem;
}
.svc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* CONTACT */
#contact {
  padding: 6rem 5%;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.contact-box {
  max-width: 540px; margin: 2rem auto 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 2.5rem;
}
.contact-box p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; }
.contact-email {
  display: inline-block;
  font-family: 'DM Mono', monospace; font-size: 0.95rem;
  color: var(--emerald); text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border); border-radius: 6px;
  margin: 0.3rem; transition: border-color 0.2s;
}
.contact-email:hover { border-color: var(--emerald); }

/* FOOTER */
footer {
  padding: 2.5rem 5%;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem;
  text-decoration: none;
}
.footer-logo .lp { color: var(--cyan); }
.footer-logo .rest { color: var(--emerald); }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--emerald); }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted); opacity: 0.5; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; transition: all 0.2s; }
.nav-mobile { display: none; flex-direction: column; gap: 0; background: rgba(15,23,42,0.97); border-top: 1px solid var(--border); padding: 1rem 5%; }
.nav-mobile a { font-family: 'DM Mono', monospace; font-size: 0.85rem; color: var(--muted); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--emerald); }
.nav-mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #hero { padding: 7rem 5% 4rem; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); line-height: 1.25; }
  .hero-sub { font-size: 0.95rem; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-stat-bar { gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.1rem; }
  #products { padding: 4rem 5%; }
  .prod-grid { grid-template-columns: 1fr; }
  #services { padding: 4rem 5%; }
  .svc-grid { grid-template-columns: 1fr; }
  #contact { padding: 4rem 5%; }
  .contact-box { padding: 1.8rem; }
  .contact-email { display: block; margin: 0.4rem 0; }
  footer { flex-direction: column; text-align: center; align-items: center; }
  .footer-links { justify-content: center; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* Utility classes replacing inline styles */
.nav-logo-img { height: 48px; width: auto; display: block; }
.footer-logo-img { height: 40px; width: auto; display: block; }
.hero-h1-brand { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.hero-status-dot { width: 18px; height: 18px; border-radius: 50%; background: #10B981; display: inline-block; flex-shrink: 0; }
.hero-platform-sub { font-size: 0.65em; opacity: 0.7; font-weight: 600; letter-spacing: 0.06em; }
.prod-icon-img { width: 44px; height: 44px; border-radius: 10px; }
.prod-market-row { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.prod-market-label { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 1rem; }
.prod-card-market { max-width: 340px; border-color: rgba(249,115,22,0.18); }
.prod-card-market:hover { border-color: rgba(249,115,22,0.45); }

/* Skip-to-content — WCAG 2.4.1 Level A */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  background: #10B981;
  color: #0F172A;
  padding: 0.5rem 1.1rem;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; outline: 2px solid #0F172A; outline-offset: 2px; }
