:root{
  --bg:#0b0f14;
  --panel:#0f1722;
  --card:#111b28;
  --text:#e7edf5;
  --muted:#a9b6c7;
  --line:#223043;
  --accent:#7aa2f7;
  --accent2:#6ee7b7;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 14px;
  --max: 1080px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font:16px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 600px at 15% 0%, rgba(122,162,247,.18), transparent 60%),
              radial-gradient(900px 500px at 85% 10%, rgba(110,231,183,.12), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; border:1px solid var(--line); border-radius:10px; z-index:999}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid rgba(34,48,67,.7);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; gap:12px; align-items:center; min-width:0}
.logo{
  width:42px; height:42px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(145deg, rgba(122,162,247,.28), rgba(110,231,183,.18));
  border:1px solid rgba(122,162,247,.35);
  letter-spacing:.5px;
  font-weight:700;
}
.brand-text{min-width:0}
.brand-name{font-weight:700; letter-spacing:.2px}
.brand-tag{color:var(--muted); font-size:13px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:55vw}

.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{background:rgba(255,255,255,.04); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(122,162,247,.35);
  background: rgba(122,162,247,.18);
  color:var(--text);
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(122,162,247,.08);
}
.btn:hover{background: rgba(122,162,247,.24)}
.btn.secondary{
  border:1px solid rgba(110,231,183,.28);
  background: rgba(110,231,183,.12);
  box-shadow: 0 10px 30px rgba(110,231,183,.06);
}
.btn.secondary:hover{background: rgba(110,231,183,.18)}

.hero{padding:56px 0 26px}
.hero-inner{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:26px;
  align-items:start;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height:1.12;
  letter-spacing:-.3px;
}
.lede{color:var(--muted); font-size:18px; margin:0 0 18px; max-width:64ch}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 18px}

.hero-meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.meta-card{
  border:1px solid rgba(34,48,67,.8);
  border-radius: var(--radius);
  padding:12px 12px;
  background: rgba(17,27,40,.55);
}
.meta-k{font-size:12px; color:var(--muted)}
.meta-v{font-size:13px; margin-top:4px}

.hero-panel{
  border-radius: var(--radius);
  border:1px solid rgba(34,48,67,.9);
  background: linear-gradient(180deg, rgba(15,23,34,.85), rgba(15,23,34,.55));
  box-shadow: var(--shadow);
  padding:18px 18px 16px;
}
.panel-title{font-weight:700; margin:2px 0 10px}
.panel-list{margin:0; padding-left:18px; color:var(--muted)}
.panel-list li{margin:8px 0}
.panel-note{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(34,48,67,.8);
  color: rgba(231,237,245,.86);
  font-size:13px;
}

.section{padding:44px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(34,48,67,.55);
  border-bottom:1px solid rgba(34,48,67,.35);
}
h2{margin:0 0 14px; font-size:26px}
.muted{color:var(--muted); max-width:80ch}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.grid.two{grid-template-columns: repeat(2, minmax(0,1fr))}
.card{
  border:1px solid rgba(34,48,67,.85);
  border-radius: var(--radius);
  background: rgba(17,27,40,.55);
  padding:16px 16px 14px;
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
}
.card h3{margin:0 0 10px; font-size:17px}
.card ul{margin:0; padding-left:18px; color:var(--muted)}
.card li{margin:7px 0}

.callout{
  margin-top:16px;
  border-radius: var(--radius);
  border:1px solid rgba(110,231,183,.24);
  background: rgba(110,231,183,.08);
  padding:14px 14px;
}
.callout-title{font-weight:700; margin-bottom:6px}
.callout-body{color:rgba(231,237,245,.88)}

.timeline{margin-top:16px; display:grid; gap:14px}
.timeline-item{
  display:grid; grid-template-columns: 14px 1fr; gap:12px;
  align-items:start;
  padding:12px 12px;
  border:1px solid rgba(34,48,67,.75);
  border-radius: var(--radius);
  background: rgba(17,27,40,.42);
}
.dot{
  width:10px; height:10px; border-radius:999px;
  margin-top:6px;
  background: rgba(122,162,247,.65);
  box-shadow: 0 0 0 3px rgba(122,162,247,.15);
}
.t-title{font-weight:700; margin-bottom:2px}
.t-body{color:var(--muted)}

.steps{margin:0; padding-left:0; list-style:none; display:grid; gap:10px}
.steps li{display:grid; grid-template-columns: 22px 1fr; gap:10px; color:var(--muted)}
.steps span{
  width:22px; height:22px; border-radius:8px;
  display:grid; place-items:center;
  border:1px solid rgba(122,162,247,.35);
  background: rgba(122,162,247,.14);
  color:var(--text);
  font-size:12px;
}

.mini-note{margin-top:12px; color:rgba(231,237,245,.85); font-size:13px}

.contact-card{
  margin-top:14px;
  border-radius: var(--radius);
  border:1px solid rgba(34,48,67,.85);
  background: rgba(17,27,40,.55);
  padding:14px 14px;
}
.contact-row{display:grid; grid-template-columns: 90px 1fr; gap:10px; padding:10px 6px; border-bottom:1px solid rgba(34,48,67,.55)}
.contact-row:last-child{border-bottom:0}
.label{color:var(--muted); font-size:13px}
.value a{color:var(--accent); text-decoration:none}
.value a:hover{text-decoration:underline}

/* Contact row: match visual height across Email/Phone/Location */
.contact-row { 
  align-items: center; 
}

/* Force email link to behave like normal text (no extra underline spacing) */
.contact-card .value a {
  text-decoration: none !important;
  line-height: 1.15;
  display: inline-block;
}

.contact-card .value a:hover {
  text-decoration: underline;
}

.fineprint{margin-top:14px; color:rgba(169,182,199,.92); font-size:13px}

.footer{
  padding:22px 0 30px;
  border-top:1px solid rgba(34,48,67,.55);
  color:rgba(169,182,199,.92);
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer-links a{color:rgba(169,182,199,.92); text-decoration:none; margin-left:12px}
.footer-links a:hover{color:var(--text)}

@media (max-width: 920px){
  .hero-inner{grid-template-columns: 1fr}
  .brand-tag{max-width:70vw}
  .grid{grid-template-columns: 1fr}
  .grid.two{grid-template-columns: 1fr}
  .hero-meta{grid-template-columns: 1fr}
  .nav{gap:6px}
}

/* Contact link styling */
#contact-email a {
  color: inherit;
  text-decoration: none;
  line-height: 1.3;
}

#contact-email a:hover {
  text-decoration: underline;
}

/* Contact rows: make label/value vertically align the same */
.contact-row {
  align-items: center;
}

/* Ensure the value column centers whatever is inside (text or link) */
.contact-card .value {
  display: flex;
  align-items: center;
}

/* Make email link render like plain text, but still clearly clickable */
.contact-card .value a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  border-bottom: 1px solid rgba(122,162,247,.45); /* subtle link cue */
}

.contact-card .value a:hover {
  border-bottom-color: rgba(122,162,247,.9);
}
