/* Twinacity Coaching LLC — Core Styles */
:root{
  --bg:#0b0b10;
  --panel:#12121a;
  --text:#f3f3f6;
  --muted:#b8b8c2;
  --line:rgba(255,255,255,.12);
  --accent:#7c5cff;      /* purple */
  --accent2:#22c55e;     /* green */
  --warn:#f59e0b;        /* amber */
  --danger:#ef4444;
  --radius:18px;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  background:
    radial-gradient(1200px 800px at 12% 10%, rgba(124,92,255,.20), transparent 60%),
    radial-gradient(900px 700px at 90% 18%, rgba(34,197,94,.14), transparent 55%),
    radial-gradient(900px 700px at 50% 95%, rgba(245,158,11,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }
img{ max-width:100%; height:auto; display:block; }

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:20px; top:20px; width:auto; height:auto; padding:10px 14px; background:var(--panel);
  border:1px solid var(--line); border-radius:12px; z-index:9999;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,16,.65);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.3px;
}
.brand-badge{
  width:34px; height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(34,197,94,.85));
  box-shadow: var(--shadow);
}
.brand small{ display:block; font-weight:600; color:var(--muted); letter-spacing:.2px; }

.nav-links{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}

.nav-links a{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--muted);
}
.nav-links a:hover{ border-color:var(--line); color:var(--text); background:rgba(255,255,255,.04); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.22); }
.btn:active{ transform: translateY(1px); }

.btn-primary{
  border-color: rgba(124,92,255,.55);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(124,92,255,.55));
}
.btn-primary:hover{ border-color: rgba(124,92,255,.8); }

.btn-ghost{
  background: transparent;
}

.hero{
  padding:64px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:start;
}
.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;
  width:fit-content;
}
.kicker .dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(34,197,94,.14);
}

h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  margin:14px 0 12px;
  letter-spacing:-.5px;
}
.subhead{
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  margin:0 0 18px;
}

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 10px; }

.hero-card{
  border:1px solid var(--line);
  background: rgba(18,18,26,.70);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card h3{ margin:0 0 8px; }
.hero-card p{ margin:0; color:var(--muted); }
.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.badge{
  font-weight:800;
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
}

.section{
  padding:44px 0;
}
.section h2{
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing:-.3px;
  margin:0 0 10px;
}
.section p.lead{ margin:0 0 18px; color:var(--muted); max-width:72ch; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  border:1px solid var(--line);
  background: rgba(18,18,26,.62);
  border-radius: var(--radius);
  padding:18px;
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); }

.divider{
  height:1px;
  background: var(--line);
  margin: 16px 0;
}

.pillars{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.pillar{
  border:1px solid var(--line);
  background: rgba(18,18,26,.62);
  border-radius: var(--radius);
  padding:18px;
}
.pillar .tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}
.pillar ul{
  margin:10px 0 0;
  padding-left:18px;
  color: var(--muted);
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  align-items:stretch;
}
.price{
  position:relative;
  border:1px solid var(--line);
  background: rgba(18,18,26,.62);
  border-radius: var(--radius);
  padding:18px;
}
.price.featured{
  border-color: rgba(124,92,255,.65);
  box-shadow: 0 0 0 1px rgba(124,92,255,.35), var(--shadow);
}
.price .top{
  display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
}
.price .label{
  font-weight:900;
  letter-spacing:.2px;
}
.price .note{
  font-size:13px;
  color:var(--muted);
  margin-top:6px;
}
.price .amount{
  font-size:28px;
  font-weight:1000;
  margin:14px 0 6px;
}
.price ul{
  margin:10px 0 0;
  padding-left:18px;
  color: var(--muted);
}
.price .cta{
  margin-top:16px;
  width:100%;
}

.faq details{
  border:1px solid var(--line);
  background: rgba(18,18,26,.62);
  border-radius: var(--radius);
  padding:14px 16px;
}
.faq details + details{ margin-top:12px; }
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq p{
  color:var(--muted);
  margin:10px 0 0;
}

.form{
  display:grid;
  gap:12px;
  max-width: 640px;
}
label{ font-weight:800; color: var(--muted); font-size:14px; }
input, textarea, select{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding:12px 12px;
  outline:none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(124,92,255,.75);
  box-shadow: 0 0 0 4px rgba(124,92,255,.15);
}
textarea{ min-height:140px; resize:vertical; }

.callout{
  border:1px dashed rgba(255,255,255,.20);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  color: var(--muted);
}

footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color: var(--muted);
  font-size:14px;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a{ color: var(--muted); }
.footer-links a:hover{ color: var(--text); }

.small{
  font-size:13px;
  color: var(--muted);
}

@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .pillars{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
}