/* Steady Bridge Consulting — Coming Soon
   Edit freely. Designed to look clean on both desktop and mobile. */

:root{
  --bg: #0f1216;
  --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.72);
  --faint: rgba(255,255,255,0.55);
  --stroke: rgba(255,255,255,0.12);
  --accent: #e7d7b4; /* warm sand */
  --accent2: #c7b58a; /* deeper sand */
  --shadow: 0 10px 35px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius2: 24px;
  --max: 1080px;
}

*{ 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 700px at 20% 10%, rgba(231,215,180,0.18), transparent 55%),
              radial-gradient(900px 600px at 85% 30%, rgba(199,181,138,0.16), transparent 55%),
              var(--bg);
  overflow-x: hidden;
}

a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.page{
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 18px 20px;
}

.header{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
}

.brand{ display: inline-flex; align-items: center; gap: 12px; }
.brand__logo{ height: 34px; width: auto; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35)); }

.nav{ display: inline-flex; gap: 14px; align-items: center; }
.nav__link{
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav__link:hover{
  color: var(--text);
  border-color: var(--stroke);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
}

.main{
  flex: 1 1 auto;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 34px 0 20px;
  z-index: 2;
}

.hero{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-radius: var(--radius2);
  padding: 34px 24px 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.18);
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 14px;
}
.pill::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(231,215,180,0.15);
}

.hero__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.hero__subtitle{
  margin: 0 0 20px;
  max-width: 70ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 22px;
}
.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid var(--stroke);
  min-width: 170px;
  text-decoration: none;
}
.button:hover{ text-decoration: none; }

.button--primary{
  background: linear-gradient(180deg, rgba(231,215,180,0.95), rgba(199,181,138,0.95));
  color: rgba(10,12,16,0.92);
  border-color: rgba(231,215,180,0.35);
}
.button--primary:hover{ filter: brightness(1.03); }

.button--secondary{
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.button--secondary:hover{ background: rgba(255,255,255,0.06); }

.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 18px;
}

.card{
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.14);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
}
.card__title{
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: var(--text);
}
.card__body{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.fineprint{
  margin: 10px 0 0;
  color: var(--faint);
  font-size: 13px;
}
.sep{ margin: 0 8px; color: rgba(255,255,255,0.35); }

.footer{
  width: 100%;
  max-width: var(--max);
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  z-index: 2;
}
.footer a{ color: rgba(231,215,180,0.95); }
.footer__dot{ color: rgba(255,255,255,0.28); }

.bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
}
.bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: blur(0px);
}

@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .hero{ padding: 28px 18px 22px; }
  .nav{ display: none; }
}
