/* DomTech Gaming, LLC - Standard Studio Site
   Single stylesheet, multi-page static site
*/
:root{
  --bg:#0b0e12;
  --surface:#0f141b;
  --surface2:#111a24;
  --text:#eaf0f8;
  --muted:#b7c3d6;
  --line:rgba(255,255,255,.12);
  --accent:#5aa2ff;
  --accent2:#7cf0c7;

  --max:1120px;
  --r:14px;
  --shadow: 0 10px 26px rgba(0,0,0,.35);
  --font: 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(--font);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(90,162,255,.18), transparent 60%),
              radial-gradient(900px 600px at 90% 0%, rgba(124,240,199,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; }
a:hover{ text-decoration:none; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:18px; top:18px; width:auto; height:auto;
  padding:10px 12px; border-radius:10px;
  background:var(--surface);
  border:1px solid var(--line);
  z-index:9999;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,14,18,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand-mark{
  width:32px;
  height:32px;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid rgba(90,162,255,.35);
  background: linear-gradient(180deg, rgba(90,162,255,.25), rgba(90,162,255,.06));
}
.brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-title strong{
  font-weight:750;
  letter-spacing:.2px;
}
.brand-title span{
  color:var(--muted);
  font-size:13px;
  font-weight:550;
  margin-top:2px;
}

/* Nav */
.nav-wrap{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
}
.nav{
  display:flex;
  align-items:center;
  gap:8px;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:650;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.08);
}
.nav a[aria-current="page"]{
  color:var(--text);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
}
.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
}

@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; align-items:center; gap:8px; }
  .nav{
    display:none;
    position:absolute;
    right:0;
    top:54px;
    flex-direction:column;
    align-items:stretch;
    min-width:240px;
    padding:10px;
    border-radius:14px;
    background:var(--surface);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
  }
  .nav.is-open{ display:flex; }
}

/* Hero */
.hero{
  padding:64px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
}
.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--r);
  padding:28px;
  box-shadow:var(--shadow);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-weight:700;
  letter-spacing:.2px;
  font-size:13px;
  margin-bottom:10px;
}
.kicker .dot{
  width:8px; height:8px; border-radius:99px;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(90,162,255,.15);
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 3.3vw, 44px);
  letter-spacing:-.3px;
  line-height:1.15;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width:68ch;
}
.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:750;
  text-decoration:none;
  cursor:pointer;
}
.btn:hover{
  background:rgba(255,255,255,.10);
}
.btn.primary{
  border-color: rgba(90,162,255,.55);
  background: linear-gradient(180deg, rgba(90,162,255,.32), rgba(90,162,255,.10));
}
.btn.primary:hover{
  background: linear-gradient(180deg, rgba(90,162,255,.40), rgba(90,162,255,.12));
}
.pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-weight:650;
  font-size:13px;
  background:rgba(255,255,255,.03);
}

/* Sections */
.section{
  padding:22px 0 54px;
}
.section h2{
  margin:0 0 12px;
  font-size:22px;
  letter-spacing:-.2px;
}
.section p.lead{
  margin:0 0 16px;
  color:var(--muted);
  max-width:80ch;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){
  .grid-3{ grid-template-columns:1fr; }
}
.card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--r);
  padding:18px;
}
.card h3{
  margin:0 0 8px;
  font-size:16px;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 980px){
  .two-col{ grid-template-columns:1fr; }
}

/* Page header */
.pagehead{
  padding:34px 0 16px;
}
.pagehead h1{
  margin:0 0 8px;
  font-size:34px;
  letter-spacing:-.3px;
}
.pagehead p{
  margin:0;
  color:var(--muted);
  max-width:85ch;
}

/* Portfolio list */
.worklist{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.workitem{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:16px;
  border-radius:var(--r);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.workitem strong{ display:block; margin-bottom:4px; }
.workitem .meta{
  color:var(--muted);
  font-size:13px;
}
.worktags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:flex-start;
}
.tag{
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  padding:6px 8px;
  border-radius:999px;
}

/* Contact */
.form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 860px){
  .form{ grid-template-columns:1fr; }
}
.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
label{
  font-weight:700;
  color:var(--muted);
  font-size:13px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(17,26,36,.50);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(90,162,255,.55);
  box-shadow: 0 0 0 4px rgba(90,162,255,.12);
}
textarea{ min-height:140px; resize:vertical; }
.form-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.note{
  color:var(--muted);
  font-size:13px;
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer a{ color:var(--muted); }
.footer a:hover{ color:var(--text); }

.hr{
  height:1px;
  background:rgba(255,255,255,.10);
  margin:18px 0;
}

.badge-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}

ul.clean{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}
