/* Blue Goatee Ltd — simple, upload-and-go homepage */

:root{
  --bg: #0b1020;
  --bg2: #0f1730;
  --text: #e8ecff;
  --muted: rgba(232,236,255,.72);
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.12);
  --accent: #3aa3ff;
  --accent2: #70d6ff;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(58,163,255,.22), transparent 55%),
    radial-gradient(1000px 600px at 95% 10%, rgba(112,214,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.55;
}

a{ color: var(--text); text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 4px; }

.container{
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top: 8px;
  padding: 10px 12px;
  background: #ffffff;
  color: #000;
  border-radius: 10px;
}
.skip-link:focus{ left: 12px; z-index: 999; }

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.68);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo{
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  padding: 6px;
}
.brand__name{
  font-weight: 760;
  letter-spacing: .2px;
  font-size: 1.05rem;
}
.brand__tagline{
  color: var(--muted);
  font-size: .92rem;
}

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav a{
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 10px;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.05);
  text-decoration:none;
}

.hero{
  padding: 54px 0 24px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}
.hero h1{
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.lead{
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 62ch;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration:none;
  font-weight: 650;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
}
.btn:hover{ text-decoration:none; background: rgba(255,255,255,.07); }
.btn--primary{
  background: linear-gradient(135deg, rgba(58,163,255,.95), rgba(112,214,255,.92));
  border-color: rgba(255,255,255,.22);
  color: #06101f;
}
.btn--primary:hover{ filter: brightness(1.02); }
.btn--ghost{
  background: rgba(255,255,255,.03);
}

.hero__bullets{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 8px;
  color: var(--muted);
}
.hero__bullets li{
  padding-left: 22px;
  position: relative;
}
.hero__bullets li::before{
  content:"";
  position:absolute;
  left: 0;
  top: .65em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(112,214,255,.8);
  box-shadow: 0 0 0 3px rgba(112,214,255,.15);
}

.card{
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.04));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.card__title{ margin: 0 0 8px; font-size: 1.05rem; }
.card p{ margin: 0 0 12px; color: var(--muted); }
.card__meta{ display:flex; flex-wrap: wrap; gap: 8px; }

.pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(232,236,255,.82);
  font-size: .9rem;
}

.section{
  padding: 52px 0;
}
.section--alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section h2{
  margin: 0 0 10px;
  font-size: 1.6rem;
}
.section__subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 72ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tile{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}
.tile h3{ margin: 0 0 6px; font-size: 1.05rem; }
.tile p{ margin: 0; color: var(--muted); }

.steps{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.steps li{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 14px 12px;
}
.steps h3{ margin: 0 0 6px; font-size: 1.02rem; }
.steps p{ margin: 0; color: var(--muted); }

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.muted{ color: var(--muted); }

.checklist{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 8px;
}
.checklist li{
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left: 0;
  top: 0;
  color: rgba(112,214,255,.95);
  font-weight: 900;
}

.footer{
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: rgba(11,16,32,.6);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__brand img{
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  padding: 5px;
}
.footer__name{
  font-weight: 760;
}
.footer__meta{
  color: var(--muted);
  font-size: .95rem;
}
.footer__small{
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}
@media (max-width: 560px){
  .container{ width: min(1100px, calc(100% - 32px)); }
  .grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}


/* Optional: 3-step layout used on this homepage */
.steps--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 920px){
  .steps--3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .steps--3{ grid-template-columns: 1fr; }
}
