/* PaulCicala.com — simple, fast, premium */
:root{
  --bg:#0b0f14;
  --text:#e8eef7;
  --muted:#a9b4c6;
  --line: rgba(255,255,255,.10);
  --chip: rgba(255,255,255,.08);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 24px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(80,120,255,.18), transparent 60%),
              radial-gradient(1000px 800px at 90% 20%, rgba(255,90,180,.12), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.45;
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.container{max-width:1080px; margin:0 auto; padding:0 20px}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,15,20,.70);
  border-bottom: 1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px}
.brand{display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px}
.brand-mark{
  width:34px; height:34px; display:grid; place-items:center;
  border-radius:12px; background: rgba(255,255,255,.08); border:1px solid var(--line);
}
.brand-text{font-size:14px}
.nav{display:flex; gap:18px; font-weight:600; color: var(--muted)}
.nav a{padding:8px 10px; border-radius:12px}
.nav a:hover{background: rgba(255,255,255,.06); color: var(--text)}

.nav-toggle{
  display:none;
  background: rgba(255,255,255,.08);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  font-size:16px;
  cursor:pointer;
}

.hero{padding:54px 0 22px}
.hero-grid{display:grid; grid-template-columns: 1.12fr .88fr; gap:26px; align-items:center}
.hero h1{margin:0 0 12px; font-size:44px; line-height:1.05; letter-spacing:-.6px}
.subhead{margin:0 0 18px; color: var(--muted); font-size:16px; max-width:58ch}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  font-weight:700;
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
}
.btn:hover{transform: translateY(-1px)}
.btn-primary{
  background: linear-gradient(135deg, rgba(80,120,255,.85), rgba(255,90,180,.65));
  border-color: rgba(255,255,255,.18);
}

.proof{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:10px}
.proof-item{
  padding:12px; border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.proof-kicker{color: var(--muted); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:.8px}
.proof-value{font-weight:700; margin-top:4px; font-size:13px}

.hero-media{display:flex; flex-direction:column; gap:12px; align-items:flex-end}
.headshot-card{
  width:100%; max-width:380px;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.headshot-card img{width:100%; height:auto; display:block}
.headshot-caption{padding:14px 14px 16px}
.headshot-caption .name{font-weight:800; font-size:18px}
.headshot-caption .tag{color: var(--muted); font-weight:600; font-size:13px; margin-top:3px}

.hero-note{
  display:flex; align-items:center; gap:10px;
  color: var(--muted); font-weight:600; font-size:13px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.dot{
  width:9px; height:9px; border-radius:999px;
  background: rgba(80,120,255,.9);
  box-shadow: 0 0 18px rgba(80,120,255,.75);
}

.section{padding:56px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{display:flex; flex-direction:column; gap:8px; margin-bottom:18px}
.section-head h2{margin:0; font-size:26px; letter-spacing:-.3px}
.section-head p{margin:0; color: var(--muted); max-width:80ch}

.video{
  position:relative; width:100%;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 50px rgba(0,0,0,.35);
}
.video::before{content:""; display:block; padding-top:56.25%}
.video iframe{position:absolute; inset:0; width:100%; height:100%; border:0}

.micro-ctas{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.chip{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  background: var(--chip);
  border:1px solid var(--line);
  font-weight:700;
  font-size:13px;
}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:16px 16px 18px;
  box-shadow: 0 14px 45px rgba(0,0,0,.28);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0 0 12px; color: var(--muted)}
.card-link{font-weight:800}

.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.tile{
  display:block;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow: 0 12px 44px rgba(0,0,0,.25);
}
.thumb{height:150px; background: linear-gradient(135deg, rgba(80,120,255,.20), rgba(255,90,180,.14))}
.tile-meta{padding:14px 14px 16px}
.tile-title{font-weight:800; margin-bottom:4px}
.tile-sub{color: var(--muted); font-weight:600; font-size:13px}

.two-col{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.panel{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:16px 16px 18px;
}
.panel h3{margin:0 0 10px; font-size:16px}
.list{margin:0; padding-left:18px; color: var(--muted); font-weight:600}
.list li{margin:8px 0}

.download{display:flex; gap:12px; flex-wrap:wrap}
.hint{margin-top:12px; color: var(--muted); font-weight:600; font-size:13px}
.hint code{
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:2px 6px;
  border-radius:8px;
}

.contact{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.contact-card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:16px 16px 18px;
}
.contact-label{
  color: var(--muted);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.9px;
  font-size:12px;
  margin-bottom:8px;
}

.footer{
  margin-top:22px;
  padding-top:18px;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content:space-between;
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}
.footer-links a{padding:8px 10px; border-radius:12px}
.footer-links a:hover{background: rgba(255,255,255,.06); color: var(--text)}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr; gap:18px}
  .hero-media{align-items:flex-start}
  .proof{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .nav.open{
    display:flex;
    position:absolute;
    top:58px;
    right:20px;
    flex-direction:column;
    background: rgba(11,15,20,.92);
    border:1px solid var(--line);
    padding:10px;
    border-radius:16px;
    min-width:180px;
  }
}
