:root {
  --bg: #0b0f1a;
  --fg: #e6e9f0;
  --muted: #9aa4b2;
  --brand: #7c5cff;
  --brand-2: #00e0ff;
  --accent: #ff7bd7;
  --hero-orange: #ff8c00;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
}
* { box-sizing: border-box }
html, body { height: 100% }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fg);
  background: radial-gradient(1000px 400px at 10% 0%, #0e1330 0%, var(--bg) 40%), radial-gradient(800px 300px at 90% 0%, #09122c 0%, var(--bg) 40%);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}

html.no-scrollbar, body.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html.no-scrollbar::-webkit-scrollbar,
body.no-scrollbar::-webkit-scrollbar {
  display: none;
}
a { color: var(--fg); text-decoration: none }
h1, h2, h3 { margin: 0 0 12px }
p { margin: 0 0 12px; line-height: 1.7 }

.container {
  max-width: 1080px;
  padding: 0 24px;
  margin: 0 auto;
}
.section {
  padding: 96px 0;
}

.nav {
  position: sticky;
  top: 0;
  backdrop-filter: saturate(180%) blur(16px);
  background: linear-gradient(180deg, rgba(9,13,22,0.8), rgba(9,13,22,0.6));
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 24px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--hero-orange);
}
.nav-links {
  display: flex;
  gap: 16px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a[aria-current="page"],
.nav-links a:hover {
  background: var(--card);
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-title {
  font-size: clamp(32px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--hero-orange);
  text-shadow: 0 0 12px rgba(255,140,0,0.25);
}
.typing::after {
  content: '|';
  margin-left: 6px;
  color: var(--hero-orange);
  animation: blink 1s steps(1, end) infinite;
}
@keyframes blink { 50% { opacity: 0 } }
.hero-subtitle {
  color: var(--muted);
  margin-top: 8px;
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}
.orb-1 { top: -120px; left: -120px; background: radial-gradient(circle, var(--brand), transparent) }
.orb-2 { bottom: -160px; right: -160px; background: radial-gradient(circle, var(--brand-2), transparent) }
.orb-3 { top: 20%; right: 20%; background: radial-gradient(circle, var(--accent), transparent) }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.card:hover {
  transform: translateY(-2px);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 12px 36px rgba(0,0,0,0.34);
}
.page-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  color: var(--hero-orange);
}
.grid {
  display: grid;
  gap: 18px;
}
.grid.two { grid-template-columns: repeat(2, 1fr) }
.grid.three { grid-template-columns: repeat(3, 1fr) }

.editable {
  min-height: 140px;
  padding: 12px;
  border-radius: 12px;
  outline: none;
  background: rgba(255,255,255,0.03);
}
.editable:focus {
  box-shadow: 0 0 0 2px rgba(124,92,255,0.5);
}
.edit-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 14px;
}
.progress {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress .bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.hide { display: none }

.contact-card {
  display: grid;
  gap: 12px;
}
.contact-item {
  display: grid;
  grid-template-columns: 28px 90px 1fr;
  align-items: center;
  gap: 12px;
}
.label { font-weight: 800 }
.contact-link {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px dashed var(--border);
}

.cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #0b0f1a;
  font-weight: 700;
}
.cta-btn:hover {
  filter: brightness(1.05);
}

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

@media (max-width: 860px) {
  .grid.two { grid-template-columns: 1fr }
  .grid.three { grid-template-columns: 1fr }
  .nav-toggle { display: inline-flex }
  .nav-links { display: none }
  .nav.open .nav-links {
    display: flex;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(8px);
  }
  .nav.open .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
