/* ShurodsHub — Linear-inspired redesign */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #08090d;
  --bg-dim:    #0c0e15;
  --surface:   #0f111a;
  --surface2:  #141720;
  --border:    rgba(255,255,255,.07);
  --border-md: rgba(255,255,255,.11);
  --text:      #e2e4ec;
  --text-muted:#6b7280;
  --text-dim:  #4b5563;
  --accent:    #7C5CFC;
  --accent-h:  #6d4ef0;
  --accent-glow: rgba(124,92,252,.18);
  --green:     #22C55E;
  --radius:    12px;
  --radius-lg: 18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }

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

img { display: block; max-width: 100%; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 9px; font-weight: 600;
  cursor: pointer; transition: all .18s; border: 1px solid transparent;
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.btn-sm  { padding: 7px 16px; font-size: 13px; }
.btn-lg  { padding: 13px 26px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-h); border-color: var(--accent-h);
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-ghost {
  background: transparent; color: var(--text-muted); border-color: var(--border-md);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }

.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border-md);
}
.btn-outline:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8,9,13,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 60px;
}
.brand {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: 17px; letter-spacing: -.3px;
}
.brand-logo {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 900;
  color: #fff; font-family: 'Space Grotesk', sans-serif;
}
.nav-links {
  display: flex; gap: 4px; margin-left: auto;
}
.nav-links a {
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 7px; transition: all .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,.05); }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(124,92,252,.14) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative; display: flex; align-items: center;
  gap: 60px;
}
.hero-content { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--border-md);
  background: rgba(255,255,255,.04);
  font-size: 12px; font-weight: 500;
  color: var(--text-muted); margin-bottom: 28px;
  letter-spacing: .03em;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.5} }

h1 {
  font-size: clamp(42px, 6vw, 68px); font-weight: 800;
  letter-spacing: -1.5px; color: #f0f2f8;
  margin-bottom: 22px;
}
.grad-text {
  background: linear-gradient(135deg, #7C5CFC 0%, #A78BFA 40%, #38BDF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; color: var(--text-muted); line-height: 1.65;
  max-width: 520px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }

.hero-visual { flex: 1; min-width: 0; }
.mock-window {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border-md);
  background: var(--surface);
  box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 0 1px rgba(124,92,252,.08);
}
.mock-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1){background:#ff5f57}
.mock-dots span:nth-child(2){background:#febc2e}
.mock-dots span:nth-child(3){background:#28c840}
.mock-url { font-size: 12px; color: var(--text-dim); font-weight: 500; margin: 0 auto; }
.mock-img { width: 100%; display: block; }

/* ── Niches strip ── */
.niches-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: var(--bg-dim);
}
.niches-label { text-align: center; font-size: 12px; color: var(--text-dim); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.niches-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.niche {
  display: flex; align-items: center; gap: 7px; padding: 6px 20px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: color .15s;
}
.niche:hover { color: var(--text); }
.niche-sep { width: 1px; height: 16px; background: var(--border-md); }

/* ── Section ── */
.section { padding: 100px 0; }
.section-dim { background: var(--bg-dim); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; color: var(--accent); text-transform: uppercase;
  margin-bottom: 14px; padding: 3px 10px;
  border: 1px solid rgba(124,92,252,.25); border-radius: 5px;
  background: rgba(124,92,252,.06);
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  letter-spacing: -.8px; color: #f0f2f8; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── Bento grid ── */
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color .2s, box-shadow .2s;
}
.bento-card:hover { border-color: var(--border-md); box-shadow: 0 8px 40px rgba(0,0,0,.3); }
.bento-wide { grid-column: span 2; }

.bento-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.bento-card h3 { font-size: 17px; font-weight: 700; color: #e8eaf0; margin-bottom: 9px; }
.bento-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.bento-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 18px; }
.bento-tags span {
  font-size: 11px; font-weight: 600; padding: 3px 9px;
  border-radius: 5px; border: 1px solid var(--border-md);
  color: var(--text-dim); background: rgba(255,255,255,.03);
}

/* ── Module grid ── */
.module-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.module-col-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-dim); margin-bottom: 14px;
}
.module-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.module-col li {
  font-size: 13.5px; color: var(--text-muted); padding-left: 16px;
  position: relative;
}
.module-col li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-dim);
}

/* ── Steps ── */
.steps-row {
  display: flex; align-items: flex-start;
}
.step-item {
  flex: 1; padding: 28px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface);
}
.step-arrow {
  font-size: 22px; color: var(--text-dim); padding: 0 16px; align-self: center; flex-shrink: 0;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 800;
  color: rgba(124,92,252,.2); margin-bottom: 14px; line-height: 1;
}
.step-item h3 { font-size: 17px; font-weight: 700; color: #e8eaf0; margin-bottom: 9px; }
.step-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Pricing ── */
.pricing-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: start;
}
.price-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; background: var(--surface);
}
.price-featured {
  border-color: rgba(124,92,252,.4);
  background: rgba(124,92,252,.04);
  box-shadow: 0 0 0 1px rgba(124,92,252,.15), 0 20px 60px rgba(124,92,252,.08);
}
.price-popular {
  font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 8px;
}
.price-tier { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 10px; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 800; color: #f0f2f8; margin-bottom: 8px; letter-spacing: -1px; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--text-dim); }
.price-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.price-list li {
  font-size: 14px; color: var(--text-muted); padding-left: 20px; position: relative;
}
.price-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(34,197,94,.25); border: 1.5px solid var(--green);
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
  overflow: hidden; transition: border-color .15s;
}
.faq-item:hover { border-color: var(--border-md); }
.faq-item[open] { border-color: rgba(124,92,252,.25); }
.faq-item summary {
  padding: 18px 22px; cursor: pointer;
  font-size: 15px; font-weight: 600; color: #e0e2ea;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 20px; font-weight: 300; color: var(--text-dim);
  transition: transform .2s; flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
  position: relative; overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,92,252,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -.8px; color: #f0f2f8; margin-bottom: 12px; }
.cta-inner > p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-meta { margin-top: 18px; font-size: 13px; color: var(--text-dim); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0; background: var(--bg-dim);
}
.footer-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--text-dim); margin-left: auto; }
.footer-links { display: flex; gap: 14px; }
.footer-links a { color: var(--text-dim); transition: color .15s; display: flex; }
.footer-links a:hover { color: var(--text-muted); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .module-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
}
@media (max-width: 768px) {
  h1 { font-size: 38px; }
  .features-bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { flex-direction: column; gap: 12px; }
  .step-arrow { display: none; }
  .pricing-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .niche-sep { display: none; }
  .section { padding: 70px 0; }
}
@media (max-width: 480px) {
  .module-grid { grid-template-columns: 1fr; }
}