:root{
  --bg:#08090d;
  --surface:#0d0f14;
  --surface-2:#11141b;
  --line:rgba(255,255,255,.09);
  --line-strong:rgba(255,255,255,.16);
  --text:#f4f5f7;
  --muted:#9096a3;
  --soft:#c7cad1;
  --accent:#d7ff72;
  --radius:22px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(132,155,255,.09), transparent 32%),
    var(--bg);
  color:var(--text);
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
.container{width:min(calc(100% - 40px),var(--container));margin-inline:auto}

.page-glow{
  position:fixed;
  width:360px;height:360px;
  border-radius:50%;
  filter:blur(120px);
  opacity:.10;
  pointer-events:none;
  z-index:-1;
}
.glow-one{background:#90a9ff;top:-200px;left:10%}
.glow-two{background:#d7ff72;right:-240px;top:42%}

.site-header{
  height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}
.brand{display:flex;align-items:center;gap:13px}
.brand-mark{
  width:39px;height:39px;
  border:1px solid var(--line-strong);
  border-radius:11px;
  display:grid;place-items:center;
  font-family:"Manrope",sans-serif;
  font-weight:700;
  background:linear-gradient(145deg,#171a22,#0b0d12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.brand-copy{display:flex;flex-direction:column;gap:1px}
.brand-copy strong{
  font-size:12px;
  letter-spacing:.13em;
  font-weight:700;
}
.brand-copy small{font-size:11px;color:#727886}
.top-nav{display:flex;align-items:center;gap:15px}
.top-nav a{
  font-size:12px;
  color:#a1a6b1;
  transition:.2s ease;
}
.top-nav a:hover{color:#fff}
.status-dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 12px rgba(215,255,114,.6);
}

.hero{
  padding:110px 0 86px;
  position:relative;
}
.eyebrow{
  display:inline-flex;
  gap:9px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#b7bbc4;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:rgba(255,255,255,.02);
}
.eyebrow span:first-child{color:var(--accent)}
.hero h1{
  max-width:930px;
  margin:26px 0 24px;
  font-family:"Manrope",sans-serif;
  font-size:clamp(48px,7.2vw,96px);
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:600;
}
.hero h1 span{
  color:#a9adb6;
  background:linear-gradient(90deg,#f5f6f8,#757b88);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-copy{
  max-width:580px;
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px;
}
.btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  padding:0 18px;
  border-radius:12px;
  font-size:13px;
  font-weight:600;
  transition:.22s ease;
}
.btn-primary{
  color:#0a0b0d;
  background:#f5f6f7;
}
.btn-primary:hover{transform:translateY(-2px);background:#fff}
.btn-secondary{
  border:1px solid var(--line-strong);
  color:#c4c8d0;
  background:rgba(255,255,255,.025);
}
.btn-secondary:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.28);
  color:#fff;
}
.hero-line{
  margin-top:92px;
  width:100%;
  height:1px;
  background:linear-gradient(90deg,var(--line),rgba(255,255,255,.03),transparent);
}

.workspace{padding:6px 0 110px}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:25px;
}
.section-label{
  font-size:10px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:#696f7c;
}
.section-head h2{
  margin:8px 0 0;
  font-family:"Manrope",sans-serif;
  font-size:27px;
  letter-spacing:-.035em;
}
.tool-count{
  padding-bottom:5px;
  font-size:11px;
  color:#6f7581;
}

.tool-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:13px;
}
.tool-card{
  min-height:245px;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:24px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:
    linear-gradient(145deg,rgba(255,255,255,.025),rgba(255,255,255,.009)),
    var(--surface);
  transition:transform .25s ease,border-color .25s ease,background .25s ease;
}
.tool-card::before{
  content:"";
  position:absolute;
  width:170px;height:170px;
  right:-100px;bottom:-110px;
  border-radius:50%;
  background:rgba(215,255,114,.07);
  filter:blur(25px);
  transition:.25s ease;
}
.tool-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.2);
  background:var(--surface-2);
}
.tool-card:hover::before{right:-65px;bottom:-85px}
.card-top{display:flex;justify-content:space-between;align-items:center}
.tool-icon{
  width:40px;height:40px;
  display:grid;place-items:center;
  border-radius:12px;
  border:1px solid var(--line);
  color:var(--accent);
  background:#0a0c10;
  font-size:17px;
}
.tool-number{
  color:#555b66;
  font-size:11px;
  letter-spacing:.12em;
}
.card-copy{margin-top:auto;padding-top:52px}
.card-copy h3{
  margin:0 0 10px;
  font-family:"Manrope",sans-serif;
  font-size:20px;
  letter-spacing:-.025em;
}
.card-copy p{
  max-width:360px;
  margin:0;
  color:#7d838f;
  font-size:13px;
  line-height:1.65;
}
.card-arrow{
  position:absolute;
  right:24px;bottom:24px;
  color:#555b66;
  font-size:18px;
  transition:.22s ease;
}
.tool-card:hover .card-arrow{color:#fff;transform:translate(2px,-2px)}

footer{
  min-height:88px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  color:#555b65;
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

@media (max-width:760px){
  .container{width:min(calc(100% - 28px),var(--container))}
  .site-header{height:78px}
  .hero{padding:78px 0 58px}
  .hero h1{font-size:clamp(46px,15vw,68px)}
  .hero-copy{font-size:14px}
  .hero-line{margin-top:62px}
  .tool-grid{grid-template-columns:1fr}
  .tool-card{min-height:215px}
  .workspace{padding-bottom:70px}
}
@media (max-width:480px){
  .brand-copy small{display:none}
  .top-nav a{display:none}
  .hero-actions{flex-direction:column}
  .btn{width:100%;justify-content:space-between}
  .section-head h2{font-size:24px}
  footer{flex-direction:column;justify-content:center;align-items:flex-start}
}
