:root{
  --bg:#0b0c10;
  --bg2:#10121a;
  --card:#121626;
  --text:#e8eaf0;
  --muted:#a8afc0;
  --line:rgba(255,255,255,.10);
  --accent:#d9d2c5;
  --btn:#e8eaf0;
  --btnText:#0b0c10;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1080px;
  --pad: 24px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(217,210,197,.10), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(138,180,248,.10), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: var(--text); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 16px;
  top: 16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: 12px;
  z-index: 9999;
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.55);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.topbar{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.brand__name{
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 16px;
}
.brand__tag{
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{ color: var(--muted); }
.nav a:hover{ color: var(--text); text-decoration:none; }
.nav__cta{
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text) !important;
  background: rgba(255,255,255,.04);
}

/* Hero */
.hero{
  padding: 72px 0 30px 0;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}
.hero h1{
  margin: 0 0 10px 0;
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -0.6px;
}
.lead{
  font-size: 18px;
  color: var(--text);
  max-width: 60ch;
  margin: 0 0 18px 0;
}
.micro{
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
}
.btn--primary{
  background: var(--btn);
  color: var(--btnText);
  border-color: transparent;
}
.btn--primary:hover{ text-decoration:none; filter: brightness(0.95); }
.btn--ghost{
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.btn--ghost:hover{ text-decoration:none; border-color: rgba(255,255,255,.25); }
.btn:disabled{
  opacity: .6;
  cursor: not-allowed;
}

/* Credibility card */
.cred__card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.cred__title{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.cred__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.pill{
  display:inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  margin-right: 8px;
  background: rgba(255,255,255,.03);
}
.cred__note{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

/* Sections */
.section{
  padding: 56px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section h2{
  margin: 0 0 10px 0;
  font-size: 26px;
  letter-spacing: -.2px;
}
.section__intro{
  margin: 0 0 22px 0;
  color: var(--muted);
  max-width: 80ch;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{
  margin: 0 0 6px 0;
  font-size: 16px;
}
.card__meta{
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 14px;
}

/* Video wrapper */
.video{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: #000;
}

/* Work cards */
.work-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.work-card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.work-card h3{
  margin: 0 0 6px 0;
  font-size: 16px;
}
.work-card__role{
  margin: 0 0 10px 0;
  color: var(--muted);
  font-size: 14px;
}
.work-card__desc{
  margin: 0 0 12px 0;
  color: var(--text);
  font-size: 14px;
}
.work-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}
.work-card__links a{
  color: var(--accent);
  border-bottom: 1px solid rgba(217,210,197,.35);
  padding-bottom: 2px;
}
.work-card__links a:hover{ text-decoration:none; border-bottom-color: rgba(217,210,197,.9); }

.note{
  margin: 24px auto 0 auto;
  max-width: 52ch;
  text-align: center;

  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.1px;
  line-height: 1.25;
  color: var(--text);

  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

/* Services */
.services{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.services__lead{
  font-size: 16px;
  margin-top: 0;
}
.bullets{
  margin: 14px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 8px 0; }

.side-card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.side-card h3{
  margin: 0 0 8px 0;
  font-size: 16px;
}

/* Text helpers */
.small{
  font-size: 14px;
  color: var(--muted);
}
.muted{ color: var(--muted); }

hr{
  border: 0;
  border-top: 1px solid var(--line);
  margin: 14px 0;
}

/* Contact section + form */
.contact{
  margin-top: 10px;
}

.contact-form{
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.contact-form label{
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
}

.contact-form textarea{
  resize: vertical;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(168,175,192,.85);
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(217,210,197,.55);
  box-shadow: 0 0 0 3px rgba(217,210,197,.10);
}

.contact-form{
  display: grid;
  grid-template-columns: 1fr;
}
.contact-form label{
  width: 100%;
}
.contact-form button[type="submit"]{
  justify-self: start;
  margin-top: 4px;
}

#contactStatus{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  margin: 0;
}
.contact-form{
  display: grid;
  grid-template-columns: 1fr;
}
.contact .small a{
  color: var(--accent);
  border-bottom: 1px solid rgba(217,210,197,.35);
  padding-bottom: 2px;
}
.contact .small a:hover{
  text-decoration: none;
  border-bottom-color: rgba(217,210,197,.9);
}

/* Footer */
.footer{
  padding: 26px 0;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.footer__name{
  font-weight: 700;
}
.footer__meta{
  color: var(--muted);
  font-size: 14px;
}
.footer__right{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__right a{ color: var(--muted); }
.footer__right a:hover{ color: var(--text); text-decoration:none; }

/* Responsive */
@media (max-width: 920px){
  .hero__grid, .services{ grid-template-columns: 1fr; }
  .grid, .work-grid{ grid-template-columns: 1fr; }
  .hero{ padding-top: 54px; }
  .hero h1{ font-size: 40px; }
}
@media (max-width: 520px){
  .topbar{ align-items:flex-start; flex-direction: column; }
  .nav{ justify-content:flex-start; }
  .hero h1{ font-size: 36px; }
}
/* Contact form — force single column on mobile */
@media (max-width: 768px){
  .contact-form{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px){
  .note{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 20px;
  }
}