:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.54);
  --shadow: 0 20px 80px rgba(0,0,0,.55);
  --shadow2: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 22px;
  --max: 1180px;
  --glowA: rgba(120, 95, 255, .22);
  --glowB: rgba(0, 200, 255, .18);
  --glowC: rgba(35, 255, 170, .12);
  --accent: #7B61FF;
  --accent2: #00C8FF;
  --good: #23FFAA;
  --warn: #FFD36B;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(123,97,255,.20), transparent 60%),
              radial-gradient(900px 700px at 80% 20%, rgba(0,200,255,.18), transparent 55%),
              radial-gradient(900px 700px at 60% 95%, rgba(35,255,170,.08), transparent 55%),
              var(--bg);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.mono{font-family:var(--mono); color:var(--muted)}

.bg-orb{
  position:fixed; inset:auto auto 0 0;
  width:540px; height:540px; border-radius:50%;
  filter: blur(45px);
  opacity:.7;
  pointer-events:none;
  z-index:-1;
  transform: translate3d(0,0,0);
}
.orb-1{
  left:-180px; top:120px;
  background: radial-gradient(circle at 30% 30%, rgba(123,97,255,.45), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(0,200,255,.28), transparent 55%);
}
.orb-2{
  right:-220px; top:520px; left:auto;
  background: radial-gradient(circle at 40% 40%, rgba(35,255,170,.22), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(123,97,255,.20), transparent 55%);
}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(7,10,18,.75), rgba(7,10,18,.45));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:64px;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:10px; min-width: 200px;}
.brand-mark{
  width:34px; height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(123,97,255,.95), rgba(0,200,255,.75));
  display:grid; place-items:center;
  box-shadow: 0 14px 35px rgba(123,97,255,.22), 0 12px 30px rgba(0,200,255,.12);
  position:relative;
  overflow:hidden;
}
.brand-dot{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,.95);
  position:absolute; left:10px; top:10px;
}
.brand-bar{
  width:16px; height:4px; border-radius:4px;
  background: rgba(255,255,255,.92);
  position:absolute; left:10px; bottom:10px;
  opacity:.95;
}

.brand-text{display:flex; flex-direction:column; line-height:1.05}
.brand-name{font-weight:750; letter-spacing:.2px}
.brand-domain{font-weight:650; color: var(--muted2); font-size:12px; margin-top:3px}

.nav{display:flex; align-items:center; gap:14px}
.nav-link{
  font-size:14px;
  color: var(--muted);
  padding:10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-link:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  transform: translateY(-1px);
}
.nav-cta{
  margin-left:6px;
  font-size:14px;
  font-weight:650;
  padding:10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123,97,255,.95), rgba(0,200,255,.85));
  box-shadow: 0 16px 40px rgba(123,97,255,.18), 0 12px 35px rgba(0,200,255,.12);
  border:1px solid rgba(255,255,255,.16);
  transition: transform .2s ease, filter .2s ease;
}
.nav-cta:hover{transform: translateY(-1px); filter:saturate(1.1)}

.nav-toggle{
  display:none;
  width:42px; height:42px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: var(--text);
  cursor:pointer;
  padding:0;
  align-items:center; justify-content:center;
  gap:5px;
  flex-direction:column;
}
.nav-toggle span{
  width:18px; height:2px; border-radius:2px;
  background: rgba(255,255,255,.9);
  display:block;
}

.mobile-nav{
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(7,10,18,.72);
  backdrop-filter: blur(14px);
}
.mobile-nav-inner{
  padding:14px 20px 18px;
  display:grid;
  gap:10px;
}
.mobile-link{
  padding:12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight:600;
}
.mobile-cta{
  padding:12px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123,97,255,.95), rgba(0,200,255,.85));
  border:1px solid rgba(255,255,255,.16);
  font-weight:750;
  text-align:center;
}

.hero{padding:52px 0 20px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.hero-copy{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding:26px 24px;
  position:relative;
  overflow:hidden;
}
.hero-copy:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 240px at 20% 10%, rgba(123,97,255,.22), transparent 60%),
              radial-gradient(520px 240px at 85% 0%, rgba(0,200,255,.18), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.hero-copy > *{position:relative}

.hero-pill{
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px;
  color: rgba(255,255,255,.84);
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 14px;
}
.pill-dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(35,255,170,.12);
}

.hero-title{
  margin:0;
  font-size: 42px;
  letter-spacing: -0.7px;
  line-height: 1.06;
}
.hero-subtitle{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 62ch;
}
.hero-actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  font-weight: 750;
  font-size: 14px;
  letter-spacing:.2px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, filter .2s ease;
  min-width: 160px;
}
.btn-primary{
  background: linear-gradient(135deg, rgba(123,97,255,.95), rgba(0,200,255,.85));
  box-shadow: 0 18px 50px rgba(123,97,255,.18), 0 14px 40px rgba(0,200,255,.12);
}
.btn-primary:hover{transform: translateY(-1px); filter:saturate(1.08)}
.btn-ghost{
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
}
.btn-ghost:hover{transform: translateY(-1px); background: rgba(255,255,255,.06)}

.hero-stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.stat{
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.stat-value{
  font-size:18px;
  font-weight:800;
  letter-spacing:.2px;
}
.stat-label{
  margin-top:4px;
  font-size:12px;
  color: var(--muted2);
}

.hero-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow2);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 100%;
}
.card-top{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.dots{display:flex; gap:6px}
.dots span{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,.18);
}
.dots span:nth-child(1){background: rgba(255, 105, 180, .38)}
.dots span:nth-child(2){background: rgba(255, 211, 107, .38)}
.dots span:nth-child(3){background: rgba(35, 255, 170, .32)}
.card-title{font-weight:750; color: rgba(255,255,255,.88); font-size:14px}

.card-body{padding:16px}
.mini{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
}
.mini-k{font-size:13px; color: rgba(255,255,255,.78); font-weight:650}
.mini-v{font-size:13px; color: rgba(255,255,255,.92); font-weight:800}
.divider{
  height:1px;
  background: rgba(255,255,255,.08);
  margin: 14px 0;
}
.note{
  color: var(--muted);
  line-height:1.7;
  font-size: 14px;
}

.section{padding: 34px 0}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 16px;
  flex-wrap:wrap;
}
.section-title{
  margin:0;
  font-size: 24px;
  letter-spacing:-.2px;
}
.section-desc{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
  line-height:1.65;
  font-size: 14px;
}

.tag-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag{
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight:700;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.tag:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}

.tool-groups{display:grid; gap:18px}
.group{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  box-shadow: 0 16px 60px rgba(0,0,0,.35);
  overflow:hidden;
}
.group-head{
  padding: 18px 18px 0;
}
.group-title{
  margin:0;
  font-size: 18px;
  letter-spacing: -0.2px;
  font-weight: 850;
}
.group-desc{
  margin:8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.cards{
  padding: 14px 14px 16px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.tool-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  min-height: 126px;
  position:relative;
  overflow:hidden;
}
.tool-card:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(380px 140px at 0% 0%, rgba(123,97,255,.14), transparent 60%),
              radial-gradient(320px 140px at 100% 0%, rgba(0,200,255,.10), transparent 60%);
  opacity:0;
  transition: opacity .2s ease;
  pointer-events:none;
}
.tool-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.12);
}
.tool-card:hover:before{opacity:1}
.tool-card > *{position:relative}

.tool-name{font-weight:850; letter-spacing:-.2px}
.tool-desc{color: var(--muted); font-size: 13px; line-height: 1.6}
.tool-meta{margin-top:auto; display:flex; gap:8px; flex-wrap:wrap}
.badge{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-weight: 750;
}

.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-item{
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding: 12px 14px;
}
.faq-item summary{
  cursor:pointer;
  font-weight: 850;
  letter-spacing:-.1px;
  outline:none;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-body{
  margin-top:10px;
  color: var(--muted);
  line-height:1.7;
  font-size: 14px;
}

.footer{
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,.01));
  padding: 26px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr .9fr;
  gap: 18px;
  align-items:start;
}
.footer-brand{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 16px 16px;
}
.brand-row{display:flex; align-items:center; gap:10px}
.brand-small{font-size:12px; color: var(--muted2); margin-top:3px}
.footer-note{
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.footer-badges{display:flex; gap:8px; flex-wrap:wrap; margin-top: 12px}
.foot-badge{
  font-size:12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-weight: 750;
}

.footer-col{padding: 6px 8px}
.footer-title{font-weight:850; margin-bottom: 10px}
.footer-link{
  display:block;
  padding: 8px 0;
  color: rgba(255,255,255,.78);
  transition: color .2s ease;
  font-size: 14px;
}
.footer-link:hover{color: rgba(255,255,255,.95)}
.footer-text{color: var(--muted); line-height:1.65; font-size: 14px; margin: 8px 0}
.footer-link.inline{display:inline; padding:0; text-decoration:underline; text-underline-offset:3px}

.footer-mini{display:flex; align-items:center; gap:8px; color: var(--muted2); font-size: 12px; margin-top: 12px}
.footer-mini .dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(35,255,170,.12);
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
  color: var(--muted2);
  font-size: 13px;
}
.footer-bottom-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-bottom-links a{
  color: rgba(255,255,255,.70);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 2px;
}
.footer-bottom-links a:hover{color: rgba(255,255,255,.92)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-title{font-size: 38px}
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .faq{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr 1fr}
}

@media (max-width: 720px){
  .nav{display:none}
  .nav-toggle{display:flex}
  .hero{padding: 44px 0 16px}
  .hero-title{font-size: 32px}
  .hero-copy{padding: 20px 18px}
  .hero-stats{grid-template-columns: 1fr}
  .btn{min-width: 0; width: 100%}
  .cards{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
}
/* =========================
   404 Error Page
========================= */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-wrap {
  width: 100%;
  padding: 40px 20px;
}

.error-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 28px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}

.error-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(420px 200px at 20% 0%, rgba(123,97,255,.25), transparent 60%),
    radial-gradient(380px 200px at 80% 0%, rgba(0,200,255,.18), transparent 60%);
  opacity: .8;
  pointer-events: none;
}

.error-card > * {
  position: relative;
}

.error-code {
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #7B61FF, #00C8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.error-title {
  margin: 0;
  font-size: 26px;
  font-weight: 850;
}

.error-text {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.error-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-hint {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .error-code {
    font-size: 72px;
  }
  .error-card {
    padding: 26px 20px;
  }
}
/* =========================================
   SEO Text Block (Homepage)
   ========================================= */
.text-tools {
  padding: 70px 0;
  position: relative;
}

.text-tools .text-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 46px;
}

.text-tools .text-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.text-tools .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: var(--gold-primary);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.04);
}

.text-tools .kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
}

.text-tools h2 {
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  margin: 14px 0 0;
  letter-spacing: -0.5px;
}

.text-tools .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-top: 12px;
  max-width: 900px;
}

.text-tools h3 {
  margin-top: 26px;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  border-left: 3px solid rgba(212,175,55,0.65);
  padding-left: 12px;
}

.text-tools p {
  color: #d1d5db;
  font-size: 1.02rem;
  line-height: 1.9;
  margin-top: 12px;
}

.text-tools ul {
  margin-top: 14px;
  padding-left: 18px;
}

.text-tools li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  color: #cbd5e1;
  line-height: 1.8;
}

.text-tools li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.text-tools .mini-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.text-tools .mini-card {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
}

.text-tools .mini-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.text-tools .mini-text {
  color: #e5e7eb;
  line-height: 1.7;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .text-tools .text-wrap { padding: 28px; }
  .text-tools .mini-grid { grid-template-columns: 1fr; }
}
