/* Latitude 18 Holdings — Cloudflare Pages-ready (static) */
:root{
  --bg: #070A0F;
  --bg2:#0B1020;
  --card:#0E152B;
  --text:#EAF0FF;
  --muted:#AAB6D6;
  --line: rgba(255,255,255,.09);
  --accent:#E11D48; /* red */
  --accent2:#FF3B6A;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{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 700px at 20% 0%, rgba(225,29,72,.22), transparent 55%),
              radial-gradient(900px 600px at 90% 20%, rgba(82,113,255,.18), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.bg-glow{
  position:fixed;
  inset:-20%;
  background:
    radial-gradient(900px 600px at 50% 20%, rgba(225,29,72,.12), transparent 60%),
    radial-gradient(800px 520px at 70% 60%, rgba(56,189,248,.08), transparent 60%);
  filter: blur(30px);
  pointer-events:none;
  z-index:-1;
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 0 10px;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.mark{
  width:42px; height:42px;
  border-radius:14px;
  background:
    linear-gradient(135deg, rgba(225,29,72,.9), rgba(255,59,106,.2)),
    radial-gradient(20px 20px at 30% 30%, rgba(255,255,255,.25), transparent 60%);
  box-shadow: 0 10px 30px rgba(225,29,72,.25);
  border: 1px solid rgba(255,255,255,.12);
}
.brand-name{font-weight:700; letter-spacing:.2px}
.brand-tag{font-size:12px; color:var(--muted); margin-top:2px}

.main{padding:18px 0 50px}

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:start;
  padding:26px 0 6px;
}
@media (max-width: 980px){
  .hero{grid-template-columns:1fr; gap:18px}
  .header{gap:12px}
}

.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size:12px;
}

h1{
  font-size: clamp(36px, 4.3vw, 56px);
  line-height:1.05;
  margin:14px 0 10px;
  letter-spacing:-.8px;
}
.accent{color:var(--accent2)}
.subhead{
  margin:0;
  color: var(--muted);
  font-size: 16px;
  line-height:1.6;
  max-width: 60ch;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 14px;
  padding: 12px 14px;
  border:1px solid transparent;
  cursor:pointer;
  font-weight:600;
  transition: transform .05s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn-full{width:100%}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:white;
  box-shadow: 0 14px 40px rgba(225,29,72,.25);
}
.btn-secondary{
  background: rgba(255,255,255,.06);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.trust{display:grid; gap:10px; margin-top:8px}
.trust-item{display:flex; gap:10px; align-items:center; color: var(--muted); font-size:13px}
.trust-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(225,29,72,.9);
  box-shadow: 0 0 0 4px rgba(225,29,72,.15);
}

.hero-card{
  background: rgba(14,21,43,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-top{padding:18px 18px 10px}
.card-title{font-weight:700; font-size:16px}
.card-subtitle{color:var(--muted); font-size:13px; margin-top:6px}

.form{
  padding: 0 18px 18px;
  display:grid;
  gap:12px;
}
label span{
  display:block;
  font-size:12px;
  color: var(--muted);
  margin: 0 0 6px 2px;
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color: rgba(170,182,214,.6)}
input:focus, textarea:focus{
  border-color: rgba(225,29,72,.55);
  box-shadow: 0 0 0 4px rgba(225,29,72,.18);
}

.fineprint{
  color: rgba(170,182,214,.75);
  font-size:11px;
  line-height:1.4;
}
.form-note{
  font-size:12px;
  color: rgba(170,182,214,.95);
  min-height: 16px;
}

.section{
  margin-top: 42px;
}
h2{
  font-size: 22px;
  margin:0 0 14px;
  letter-spacing:-.3px;
}
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){
  .steps{grid-template-columns:1fr}
}
.step{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  gap:12px;
}
.step-num{
  width:34px; height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  background: rgba(225,29,72,.12);
  border:1px solid rgba(225,29,72,.25);
  color: var(--accent2);
}
.step-title{font-weight:700; margin-bottom:4px}
.step p{margin:0; color: var(--muted); font-size:13px; line-height:1.5}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
@media (max-width: 980px){
  .split{grid-template-columns:1fr}
}
.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height:1.8;
}
.panel{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
h3{margin:0 0 6px}
.muted{color: var(--muted)}
.micro{margin-top:10px; font-size:12px}

.contact-card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.contact-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 14px;
}
@media (max-width: 980px){
  .contact-row{grid-template-columns:1fr}
}
.contact-item .label{font-size:12px; color: rgba(170,182,214,.75)}
.contact-item .value{margin-top:6px; font-weight:600}

.sent{
  margin-top:16px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.20);
  color: rgba(220,252,231,.95);
  font-weight:600;
}

.footer{
  padding: 26px 0 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color: rgba(170,182,214,.75);
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-links{display:flex; gap:12px}
.footer a{opacity:.9}
.footer a:hover{opacity:1}


/* Phone line under email button (non-clickable) */
.phone-under-email{
  margin-top:10px;
  text-align:center;
}
