/* Interstellar AI & Automation Services — strong freelancing landing page (static) */
:root{
  --bg:#070912;
  --card:#0f1426;
  --muted:#aab2c8;
  --text:#eef1f7;
  --accent:#6ee7ff;
  --accent2:#a78bfa;
  --border: rgba(255,255,255,.10);
  --shadow: 0 14px 46px rgba(0,0,0,.50);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(110,231,255,.18), transparent 60%),
    radial-gradient(820px 480px at 82% 18%, rgba(167,139,250,.16), transparent 55%),
    radial-gradient(720px 420px at 50% 88%, rgba(110,231,255,.10), transparent 55%),
    var(--bg);
}

a{color:inherit; text-decoration:none}
a.link{color:var(--accent); text-decoration:underline; text-underline-offset:3px}
.container{max-width:1120px; margin:0 auto; padding:22px 18px}

.header{
  display:flex; align-items:center; justify-content:space-between;
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,9,18,.62);
  border-bottom:1px solid var(--border);
}

.brand{display:flex; gap:12px; align-items:center}
.logo{
  width:46px; height:46px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(110,231,255,.25), rgba(167,139,250,.25));
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight:900;
  letter-spacing:-.02em;
}
.name{font-weight:900; letter-spacing:-.03em}
.tag{font-size:13px; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:14px}
.nav a{font-weight:700; color:rgba(238,241,247,.9)}
.nav a:hover{color:white}

.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-weight:800;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.button:hover{transform: translateY(-1px); transition:.15s ease}
.button.primary{
  background: linear-gradient(135deg, rgba(110,231,255,.26), rgba(167,139,250,.26));
}
.button.ghost{background: transparent}

.hero{display:grid; grid-template-columns: 1.18fr .82fr; gap:18px; padding-top:36px}
.eyebrow{font-weight:700; color:rgba(238,241,247,.78); font-size:13px; margin-bottom:10px}
h1{font-size:46px; line-height:1.05; letter-spacing:-.04em; margin:0 0 12px}
.accent{background: linear-gradient(90deg, var(--accent), var(--accent2)); -webkit-background-clip:text; background-clip:text; color:transparent}
.lead{font-size:17px; color:rgba(238,241,247,.88); max-width:60ch}

.cta-row{display:flex; gap:12px; margin:16px 0 14px}

.trust{
  display:flex; flex-wrap:wrap; gap:10px;
  margin: 10px 0 10px;
}
.trust-item{
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.03);
}
.trust-kpi{font-weight:900; letter-spacing:-.02em}
.trust-label{font-size:12px; color:var(--muted); margin-top:2px}

.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.badge{
  font-size:12px;
  padding:8px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:rgba(238,241,247,.92);
  background: rgba(255,255,255,.03);
}

.card{
  background: rgba(15,20,38,.88);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card-title{font-weight:900; margin-bottom:10px}
.checklist{margin:0; padding-left:18px; color:rgba(238,241,247,.88)}
.checklist li{margin:8px 0}
.mini{margin-top:14px}
.mini-label{font-size:12px; color:var(--muted); margin-bottom:8px}
.mini-grid{display:flex; flex-wrap:wrap; gap:8px}
.mini-pill{
  font-size:12px; padding:7px 10px; border-radius:999px;
  border:1px solid var(--border); background: rgba(255,255,255,.03);
}

.section{padding-top:36px; padding-bottom:36px}
.section-head h2{margin:0 0 8px; font-size:30px; letter-spacing:-.03em}
.section-head p{margin:0; color:var(--muted)}

.grid3{
  margin-top:16px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.tile{
  background: rgba(15,20,38,.55);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
}
.tile h3{margin:0 0 8px}
.tile p{margin:0 0 10px; color:rgba(238,241,247,.86)}
.tile ul{margin:0; padding-left:18px; color:rgba(238,241,247,.82)}
.tile li{margin:6px 0}

.note{
  margin-top:14px;
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:rgba(238,241,247,.90);
}

.pricing-grid{
  margin-top:16px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.price-card{
  background: rgba(15,20,38,.55);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  display:flex; flex-direction:column; gap:10px;
  position:relative;
}
.price-card.featured{
  background: rgba(15,20,38,.78);
  box-shadow: var(--shadow);
  border-color: rgba(110,231,255,.25);
}
.pill{
  display:inline-flex;
  width: fit-content;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(110,231,255,.25);
  background: rgba(110,231,255,.10);
  font-size:12px;
  font-weight:800;
  margin-bottom:8px;
}
.price-top h3{margin:0 0 6px}
.price{font-size:28px; font-weight:900; letter-spacing:-.03em}
.price-sub{font-size:12px; color:var(--muted); margin-top:2px}
.bullets{margin:0; padding-left:18px; color:rgba(238,241,247,.84)}
.bullets li{margin:7px 0}

.work-grid{
  margin-top:16px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.project{
  background: rgba(15,20,38,.55);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  display:flex; flex-direction:column; gap:10px;
}
.project-top{display:flex; flex-direction:column; gap:8px}
.project-title{font-weight:900}
.project-tags{display:flex; flex-wrap:wrap; gap:6px}
.project-tags span{
  font-size:12px; padding:6px 8px; border-radius:999px;
  border:1px solid var(--border); background: rgba(255,255,255,.03);
  color:rgba(238,241,247,.88);
}
.project p{margin:0; color:rgba(238,241,247,.86)}
.project-list{display:flex; flex-direction:column; gap:6px; color:rgba(238,241,247,.82); font-size:13px}
.project-links{display:flex; gap:12px; margin-top:auto}
.project-links a{font-weight:800; color:var(--accent)}
.project-links a:hover{text-decoration:underline; text-underline-offset:3px}

.process{
  margin-top:16px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.process-card{
  background: rgba(15,20,38,.55);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
}

.contact-grid{
  margin-top:16px;
  display:grid; grid-template-columns: 1fr 1.8fr; gap:14px;
}
.contact-card{
  background: rgba(15,20,38,.55);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
}
.contact-card.wide{grid-column:2}
label{display:block; font-size:13px; color:rgba(238,241,247,.88); margin:10px 0}
input,textarea,select{
  width:100%;
  margin-top:6px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
  font-family:inherit;
}
select{appearance:none}
input:focus,textarea:focus,select:focus{border-color: rgba(110,231,255,.45)}
.small{font-size:12px}
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:10px}

.faq{margin-top:16px; display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.faq-item{
  background: rgba(15,20,38,.55);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px 16px;
}
.faq-item summary{cursor:pointer; font-weight:900}
.faq-item p{color:rgba(238,241,247,.86)}

.footer{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:26px; padding-bottom:36px;
  color:rgba(238,241,247,.76);
  border-top:1px solid var(--border);
}
.footer-links{display:flex; gap:12px}
.footer-links a:hover{text-decoration:underline; text-underline-offset:3px}

code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr; padding-top:18px}
  h1{font-size:38px}
  .grid3,.pricing-grid,.work-grid,.process{grid-template-columns:1fr}
  .faq{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .contact-card.wide{grid-column:auto}
  .two-col{grid-template-columns:1fr}
  .nav{display:none}
}
