:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --line: rgba(255,255,255,0.12);
  --accent: #7AA7FF;
  --accent2:#B49CFF;
  --ink:#0b1220;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.55;
  color:var(--text);
  background: var(--bg);
}

/* Subtle “space” texture (no images) */
.page-bg{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}
.page-bg::before{
  content:"";
  position:absolute; inset:-200px;
  background:
    radial-gradient(700px 500px at 15% 15%, rgba(122,167,255,0.25), transparent 55%),
    radial-gradient(600px 420px at 85% 20%, rgba(180,156,255,0.22), transparent 55%),
    radial-gradient(700px 500px at 50% 95%, rgba(122,255,214,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 44px);
  filter: blur(0px);
  opacity:1;
  pointer-events:none;
}
.page-bg::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(1200px 700px at 50% -10%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events:none;
}

a{ color:inherit; }

nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,0.55);
  border-bottom: 1px solid var(--line);
}

.nav-inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:0.2px;
}

.mark{
  width:28px; height:28px;
  border-radius:10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.45), transparent 50%),
    linear-gradient(135deg, rgba(122,167,255,1), rgba(180,156,255,1));
  box-shadow: 0 10px 30px rgba(122,167,255,0.25);
}

.nav-links a{
  text-decoration:none;
  color: var(--muted);
  margin-left:18px;
  font-weight:600;
  font-size:14px;
}
.nav-links a:hover{ color: var(--text); }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px;
}

.hero{
  padding:72px 0 26px;
}

.kicker{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size:13px;
  font-weight:600;
}
.badge .dot{
  width:8px;height:8px;border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 3px rgba(122,167,255,0.12);
}

h1{
  margin:0;
  font-size:56px;
  line-height:1.05;
  letter-spacing:-0.6px;
}
.subhead{
  margin-top:16px;
  max-width:820px;
  font-size:18px;
  color: var(--muted);
}

.ctas{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.08); }
.btn.primary{
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0b1020;
}
.btn.primary:hover{ transform: translateY(-1px) scale(1.01); }

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:18px;
  margin-top:26px;
}
@media (max-width: 900px){
  h1{ font-size:44px; }
  .hero-grid{ grid-template-columns:1fr; }
}

.panel{
  border:1px solid var(--line);
  background: var(--panel);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.30);
}

.signals{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .signals{ grid-template-columns:1fr; }
}
.signal{
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius:16px;
  padding:14px;
}
.signal .big{
  font-size:18px;
  font-weight:800;
  letter-spacing:-0.2px;
}
.signal .small{
  color: var(--muted);
  font-size:13px;
  margin-top:4px;
}

.section{
  padding:34px 0;
}
.section h2{
  margin:0 0 14px;
  font-size:22px;
  letter-spacing:-0.2px;
}
.section p{
  margin:0;
  color: var(--muted);
}

.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .grid{ grid-template-columns:1fr; }
}

.tile{
  border:1px solid var(--line);
  background: var(--panel);
  border-radius:18px;
  padding:16px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.tile:hover{
  transform: translateY(-2px);
  background: var(--panel2);
}
.tile-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.icon{
  width:34px;height:34px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.06);
  border:1px solid var(--line);
}
.icon svg{ width:18px;height:18px; opacity:0.9; }
.tile h3{
  margin:0;
  font-size:16px;
  font-weight:800;
  letter-spacing:-0.2px;
}
.tile p{
  margin:6px 0 0;
  font-size:13.5px;
  color: var(--muted);
}

.list{
  margin:0;
  padding-left:18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }

.divider{
  height:1px;
  background: var(--line);
  margin: 24px 0;
}

footer{
  border-top:1px solid var(--line);
  padding:26px 0 34px;
  color: var(--muted);
  font-size:13px;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}

/* === PAGE LAYOUTS === */
.page-content{
  padding-top:60px;
  padding-bottom:60px;
}

.page-header{
  margin-bottom:48px;
}
.page-header.centered{
  text-align:center;
}

.page-title{
  margin:0;
  font-size:48px;
  line-height:1.1;
  letter-spacing:-0.5px;
}

.content-grid{
  display:grid;
  gap:20px;
  margin-bottom:48px;
}

.content-panel{
  padding:28px;
}
.content-panel h2{
  margin:0 0 14px;
  font-size:22px;
  letter-spacing:-0.3px;
}
.content-panel p{
  margin:0 0 16px;
  color: var(--muted);
  line-height:1.65;
}
.content-panel p:last-child{
  margin-bottom:0;
}

.panel-icon{
  width:18px;
  height:18px;
  border-radius:4px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  box-shadow: 0 4px 12px rgba(122,167,255,0.15);
}
.panel-icon svg{
  width:11px;
  height:11px;
  color: var(--ink);
  stroke-width:1.8;
}

.highlight-panel{
  background: linear-gradient(135deg, rgba(122,167,255,0.08), rgba(180,156,255,0.08));
  border-color: rgba(122,167,255,0.2);
}

/* About Page Specific */
.experience-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:16px 0;
}
.exp-tag{
  display:inline-flex;
  padding:6px 12px;
  border-radius:8px;
  background: rgba(255,255,255,0.08);
  border:1px solid var(--line);
  font-size:13px;
  font-weight:600;
  color: var(--text);
}

.principles-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
}
.principles-list li{
  padding:10px 0;
  border-top:1px solid var(--line);
  color: var(--muted);
  line-height:1.6;
}
.principles-list li:first-child{
  border-top:none;
  padding-top:0;
}
.principles-list strong{
  color: var(--text);
}

.tech-areas{
  display:grid;
  gap:14px;
}
.tech-area{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px;
  border-radius:12px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}
.tech-area:hover{
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}
.tech-icon{
  font-size:12px;
  line-height:1;
  flex-shrink:0;
}
.tech-title{
  font-weight:700;
  font-size:15px;
  margin-bottom:4px;
  color: var(--text);
}
.tech-desc{
  font-size:13px;
  color: var(--muted);
  line-height:1.5;
}

/* Capabilities Page */
.capabilities-grid{
  display:grid;
  gap:20px;
  margin-bottom:48px;
}

.capability-card{
  border:1px solid var(--line);
  background: var(--panel);
  border-radius:20px;
  padding:28px;
  transition: all 0.25s ease;
}
.capability-card:hover{
  transform: translateY(-4px);
  background: var(--panel2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.capability-header{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:16px;
}

.capability-icon{
  width:20px;
  height:20px;
  border-radius:5px;
  background: linear-gradient(135deg, rgba(122,167,255,0.15), rgba(180,156,255,0.15));
  border:1px solid rgba(122,167,255,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.capability-icon svg{
  width:12px;
  height:12px;
  color: var(--accent);
}

.capability-header h2{
  margin:0 0 4px;
  font-size:22px;
  letter-spacing:-0.3px;
}

.capability-tagline{
  font-size:13px;
  color: var(--muted);
  font-weight:600;
}

.capability-card > p{
  margin:0 0 20px;
  color: var(--muted);
  line-height:1.65;
}

.capability-details{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid var(--line);
}

.detail-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  line-height:1.5;
  color: var(--muted);
}
.check-icon{
  color: var(--accent);
  font-weight:800;
  font-size:16px;
  flex-shrink:0;
  width:20px;
}

/* How We Work Page */
.work-modes{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin-bottom:48px;
}

.work-card{
  border:1px solid var(--line);
  background: var(--panel);
  border-radius:20px;
  padding:32px;
  display:flex;
  gap:24px;
  transition: all 0.25s ease;
}
.work-card:hover{
  transform: translateX(4px);
  background: var(--panel2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.work-number{
  font-size:40px;
  font-weight:900;
  line-height:1;
  color: var(--accent);
  opacity:0.4;
  flex-shrink:0;
  width:60px;
  letter-spacing:-1px;
}

.work-content{
  flex:1;
}

.work-header{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:14px;
}

.work-icon{
  width:18px;
  height:18px;
  border-radius:4px;
  background: rgba(122,167,255,0.12);
  border:1px solid rgba(122,167,255,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.work-icon svg{
  width:10px;
  height:10px;
  color: var(--accent);
}

.work-header h2{
  margin:0 0 4px;
  font-size:24px;
  letter-spacing:-0.3px;
}

.work-duration{
  font-size:13px;
  color: var(--muted);
  font-weight:600;
  opacity:0.8;
}

.work-description{
  margin:0 0 20px;
  color: var(--text);
  line-height:1.65;
  font-size:15px;
}

.work-includes{
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:18px;
  margin-bottom:18px;
}

.include-title{
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.5px;
  color: var(--accent);
  margin-bottom:12px;
}

.include-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:8px;
  font-size:14px;
  color: var(--muted);
  line-height:1.6;
}
.include-item:last-child{
  margin-bottom:0;
}

.bullet{
  color: var(--accent);
  font-weight:700;
  flex-shrink:0;
}

.work-fit{
  padding:14px 18px;
  background: linear-gradient(135deg, rgba(122,167,255,0.08), rgba(180,156,255,0.08));
  border-left:3px solid var(--accent);
  border-radius:8px;
  font-size:14px;
  line-height:1.6;
  color: var(--muted);
}
.work-fit strong{
  color: var(--text);
}

.process-section{
  margin-bottom:48px;
}

.process-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:20px;
  margin-top:20px;
}

.process-step{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.process-icon{
  font-size:14px;
  line-height:1;
  flex-shrink:0;
}

.process-step-title{
  font-weight:700;
  font-size:16px;
  margin-bottom:6px;
  color: var(--text);
}

.process-step-desc{
  font-size:14px;
  color: var(--muted);
  line-height:1.6;
}

/* Contact Page */
.contact-layout{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:24px;
  margin-bottom:48px;
}

.contact-panel{
  text-align:center;
  padding:48px 32px;
}

.contact-icon-large{
  width:20px;
  height:20px;
  border-radius:5px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  box-shadow: 0 4px 12px rgba(122,167,255,0.15);
}
.contact-icon-large svg{
  width:12px;
  height:12px;
  color: var(--ink);
  stroke-width:1.8;
}

.contact-email{
  display:inline-block;
  font-size:24px;
  font-weight:700;
  color: var(--accent);
  text-decoration:none;
  letter-spacing:-0.3px;
  padding:12px 24px;
  border-radius:12px;
  background: rgba(122,167,255,0.08);
  border:1px solid rgba(122,167,255,0.2);
  transition: all 0.2s ease;
}
.contact-email:hover{
  background: rgba(122,167,255,0.15);
  transform: scale(1.02);
}

.contact-sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.info-panel{
  padding:24px;
}

.info-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:14px;
  line-height:1.6;
  color: var(--muted);
}

.info-bullet{
  width:16px;
  height:16px;
  border-radius:4px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--ink);
  font-weight:800;
  font-size:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.scenario-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.scenario-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:10px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  font-size:14px;
  color: var(--muted);
  transition: all 0.2s ease;
}
.scenario-item:hover{
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}

.scenario-icon{
  font-size:12px;
  flex-shrink:0;
}

.faq-section{
  margin-bottom:48px;
}

.faq-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:24px;
}

.faq-item{
  padding:20px;
  border-radius:14px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
}

.faq-question{
  font-weight:700;
  font-size:16px;
  margin-bottom:10px;
  color: var(--text);
  line-height:1.4;
}

.faq-answer{
  font-size:14px;
  color: var(--muted);
  line-height:1.6;
}

.cta-section{
  margin-bottom:32px;
}

.cta-panel{
  text-align:center;
  padding:40px 32px;
}
.cta-panel.centered{
  text-align:center;
}

/* === RESPONSIVE === */
@media (max-width: 900px){
  .page-title{ font-size:38px; }
  
  .work-card{
    flex-direction:column;
    gap:20px;
  }
  .work-number{
    width:auto;
  }
  
  .contact-layout{
    grid-template-columns:1fr;
  }
  
  .process-grid{
    grid-template-columns:1fr;
  }
  
  .faq-grid{
    grid-template-columns:1fr;
  }
  
  .capability-header{
    flex-direction:row;
  }
}

