/* Precision Coming Soon v1.1 - clean, modern layout (no background image) */
:root{
  --cs-primary: #27C46B;
  --cs-dark: #0F1B2A;
}

* { box-sizing: border-box; }

body.precision-cs {
  margin: 0;
  background: var(--cs-dark);
  color: #fff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  min-height: 100svh;
}

.cs-wrap{
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: max(20px, env(safe-area-inset-top)) 16px max(24px, env(safe-area-inset-bottom));
}

/* Card */
.cs-card{
  place-self: center;
  width: min(92vw, 860px);
  padding: 28px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
}

/* Decorative corner "court lines" */
.cs-card::before, .cs-card::after{
  content:"";
  position:absolute;
  width: 140px; height: 140px;
  border: 3px solid rgba(255,255,255,.12);
  border-radius: 12px;
  transform: rotate(45deg);
  pointer-events: none;
}
.cs-card::before{ top:-70px; left:-40px; }
.cs-card::after{ bottom:-70px; right:-40px; }

/* Brand */
.cs-brand{ margin-bottom: 10px; }
.cs-logo{ height: 48px; width: auto; }
.cs-logo-text{
  display:inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .08em;
  background: #fff;
  color: var(--cs-dark);
}

/* Titles */
.cs-title{
  margin: 8px 0 6px;
  font-size: clamp(24px, 6vw, 46px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.cs-subtitle{
  margin: 0 auto 10px;
  max-width: 60ch;
  color: rgba(255,255,255,.9);
  font-size: clamp(14px, 3.4vw, 18px);
  line-height: 1.55;
}

/* Divider with accent */
.cs-divider{
  width: 110px; height: 6px;
  margin: 14px auto 18px;
  background: linear-gradient(90deg, var(--cs-primary), #7fffbf);
  border-radius: 6px;
}

/* Highlights list */
.cs-highlights{
  list-style: none;
  padding: 0; margin: 0 auto 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 720px;
}
.cs-highlights li{
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  text-align: left;
  font-weight: 600;
}
@media (min-width:640px){
  .cs-highlights{ grid-template-columns: repeat(3,1fr); }
  .cs-highlights li{ text-align: center; grid-template-columns: 1fr; }
}

/* Simple line icons */
.ic{ width: 22px; height: 22px; display:inline-block; border:2px solid var(--cs-primary); border-radius:4px; position: relative; }
.ic-court::after{
  content:""; position:absolute; inset:4px;
  border:2px solid currentColor;
  border-top:none; border-bottom:none;
  opacity:.8;
}
.ic-gear{ border-radius:50%; }
.ic-gear::after{
  content:""; position:absolute; inset:2px;
  border:2px dashed currentColor; border-radius:50%; opacity:.8;
}
.ic-shield{ border-radius:6px; }
.ic-shield::after{
  content:""; position:absolute; inset:5px;
  border:2px solid currentColor; border-radius:4px; opacity:.85;
}

/* Interest form */
.cs-form{ 
  margin-top: 12px;
  text-align: left;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.cs-form .row{
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
.cs-form label{ display:block; }
.cs-form .lbl{
  display:block; font-size:12px; opacity:.85; margin: 6px 2px;
}
.cs-form input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  outline: none;
}
.cs-form input::placeholder{ color: rgba(255,255,255,.65); }
.cs-form .full{ margin-top: 6px; }
.cs-form .cs-btn{ margin-top: 12px; }
.cs-form-note{ margin-top: 8px; min-height: 20px; color: #d2ffe6; font-weight: 600; }

@media (min-width:640px){
  .cs-form .row{ grid-template-columns: 1fr 1fr; }
}

/* CTA buttons (optional email/phone) */
.cs-contact{ margin-top: 14px; display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.cs-btn{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--cs-primary);
  color: #04130d;
  font-weight: 800;
  letter-spacing: .02em;
  border: none; text-decoration: none;
  box-shadow: 0 6px 18px rgba(39,196,107,.35);
  transition: transform .15s ease, filter .15s ease;
}
.cs-btn:hover{ filter:brightness(.95); transform: translateY(-1px); }
.cs-btn--outline{
  background: transparent;
  color: #fff;
  border: 2px solid var(--cs-primary);
  box-shadow: none;
}

/* Footer */
.cs-footer{
  margin-top: 16px;
  text-align:center;
}
.cs-footer-inner{
  display:inline-flex; gap:12px; align-items:center;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
