:root{
  --bg:#f1f2f3;
  --txt:#0f172a;
  --muted:#64748b;
  --primary:#00aff0;
  --primary-dark:#0096cc;
  --card:#ffffff;
  --stroke:#e5e7eb;
  --radius:18px;
  --shadow:0 12px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--txt);
}

a{color:inherit}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

/* ===== TOP BAR ===== */
.top{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.title b{
  font-size:.75rem;
  color:var(--muted);
  letter-spacing:.15em;
}

.title span{
  font-size:1.15rem;
  font-weight:700;
}

.pillRow{
  display:flex;
  gap:10px;
}

.pill{
  padding:8px 16px;
  border-radius:999px;
  background:#e8f7fd;
  color:var(--primary);
  font-weight:600;
  text-decoration:none;
}

/* ===== HERO ===== */
.hero{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.heroGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
}

@media(max-width:900px){
  .heroGrid{
    grid-template-columns:1fr;
  }
}

/* ===== IMAGE ===== */
.photo{
  border-radius:14px;
  background-image:url("../img/a4cf8116-3100-40d2-9172-3dcc7d6e0adf.jpg");
  background-size:cover;
  background-position:center;
  min-height:420px;
}

@media(max-width:600px){
  .photo{
    min-height:340px;
  }
}

/* ===== TEXT ===== */
.h1{
  font-size:2.3rem;
  margin:0 0 12px;
}

.sub{
  color:var(--muted);
  line-height:1.6;
  max-width:48ch;
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  border:1px solid var(--stroke);
  background:#f8fafc;
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btnPrimary{
  background:var(--primary);
  color:#fff;
  border:none;
  box-shadow:0 10px 25px rgba(0,175,240,.35);
}

.btnPrimary:hover{
  background:var(--primary-dark);
}

/* ===== SOCIAL ROW ===== */
.socialRow{
  display:flex;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap;
}

.socialRow .btn{
  flex:1;
  min-width:120px;
}

/* ===== FOOTER ===== */
footer{
  padding:28px 0 40px;
  text-align:center;
  color:var(--muted);
  font-size:.9rem;
}
