:root {
  --bg: #0d0f13;
  --panel: #131722;
  --surface: #171c29;
  --ink: #f4f6fb;
  --muted: #aab2c2;
  --accent: #3dd6c6;
  --accent-2: #ff7a3d;
  --line: #242b3b;
  --radius: 18px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(900px 700px at 10% -10%, rgba(61, 214, 198, 0.12), transparent 60%),
    radial-gradient(900px 700px at 100% 0%, rgba(255, 122, 61, 0.12), transparent 60%),
    var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(13, 15, 19, 0.7);
  border-bottom: 1px solid var(--line);
}
.topbar .container {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 18px; padding: 16px 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 84px;
  height: auto;
  display: block;
  object-fit: contain;
}
.brand-text { display: grid; gap: 2px; }
.brand-name { font-weight: 800; letter-spacing: 0.2px; }
.brand-tag { font-size: 12px; color: var(--muted); }

.nav { display: flex; justify-content: center; gap: 18px; font-size: 14px; }
.nav a { color: var(--muted); padding: 6px 10px; border-radius: 999px; }
.nav a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: 10px; border: 1px solid transparent;
  font-weight: 700; letter-spacing: 0.2px;
}
.btn-primary { background: var(--accent); color: #0b0f14; }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.top-actions { display: inline-flex; gap: 10px; align-items: center; }

.hero { padding: 70px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center; }
.eyebrow {
  color: var(--accent); font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  font-size: 12px; margin-bottom: 12px;
}
.hero h1 { font-size: clamp(34px, 6vw, 64px); margin: 0 0 14px; }
.lede { color: var(--muted); font-size: 18px; margin: 0 0 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.hero-badges span {
  font-size: 12px; color: var(--muted); border: 1px solid var(--line);
  padding: 6px 10px; border-radius: 999px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(23, 28, 41, 0.85), rgba(19, 23, 34, 0.85));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.hero-card ul { margin: 0; padding-left: 18px; color: var(--muted); }

.mini-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px;
}
.mini-stats div {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px; text-align: center;
}
.mini-stats strong { display: block; font-size: 16px; }
.mini-stats span { color: var(--muted); font-size: 12px; }

.section { padding: 70px 0; }
.section-alt { background: rgba(255, 255, 255, 0.03); }
.section-head { margin-bottom: 26px; }
.section-head p { color: var(--muted); margin: 0; }
.section h2 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 36px); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.card, .panel, .price {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px;
}
.card ul, .price ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }

.work-link-card {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    radial-gradient(220px 140px at 80% 0%, rgba(61, 214, 198, 0.15), transparent 60%),
    rgba(19, 23, 34, 0.75);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.work-link-title { font-weight: 700; color: var(--ink); }
.work-link-url { font-size: 13px; color: var(--muted); }
.work-link-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent);
}
.work-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(61, 214, 198, 0.6);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.price {
  position: relative;
}
.price-value {
  font-size: 32px; font-weight: 800; margin: 10px 0;
}
.price-value span { font-size: 16px; color: var(--muted); }
.featured {
  border-color: rgba(61, 214, 198, 0.5);
  box-shadow: 0 0 0 1px rgba(61, 214, 198, 0.35), 0 16px 30px rgba(0, 0, 0, 0.35);
}
.ribbon {
  position: absolute; top: 16px; right: -36px; transform: rotate(35deg);
  background: var(--accent); color: #0b0f14; font-weight: 900; font-size: 13px;
  padding: 6px 40px;
}

.contact {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.contact label { display: block; margin: 10px 0 6px; font-weight: 700; }
.contact input, .contact textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); border-radius: 10px; padding: 10px; font-family: inherit;
}
.contact textarea { min-height: 120px; resize: vertical; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.contact-details p { color: var(--muted); }

.footer { border-top: 1px solid var(--line); padding: 26px 0; color: var(--muted); }

/* Splash screen */
.splash {
  position: fixed; inset: 0; background: #0b0f14; color: #fff; z-index: 9999;
  display: grid; place-items: center; transition: opacity 0.5s ease, visibility 0.5s ease;
}
.splash.hide { opacity: 0; visibility: hidden; }
.splash-inner { text-align: center; max-width: 520px; padding: 24px; }
.splash-logo {
  font-size: clamp(28px, 5vw, 48px); font-weight: 800; letter-spacing: 1px;
}
.splash-loading {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 12px;
  color: rgba(255, 255, 255, 0.8); font-size: 14px;
}
.loading-text { display: inline-flex; align-items: center; gap: 4px; }
.dots span {
  display: inline-block; width: 6px; text-align: center; opacity: 0.2;
  animation: dot 1.2s infinite;
}
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
.spinner {
  width: 14px; height: 14px; border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}
.splash-bar {
  margin: 16px auto 0; width: 240px; height: 10px; border: 2px solid #fff; border-radius: 999px;
  overflow: hidden;
}
.splash-bar span {
  display: block; height: 100%; width: 0%; background: var(--accent);
  animation: load 1.2s ease forwards;
}
@keyframes load { to { width: 100%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dot {
  0%, 60%, 100% { opacity: 0.2; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

@media (max-width: 980px) {
  .topbar .container { grid-template-columns: 1fr; justify-items: start; }
  .nav { justify-content: flex-start; flex-wrap: wrap; }
  .hero-grid, .grid-3, .grid-2, .contact { grid-template-columns: 1fr; }
}

