:root{
  /* OVIS black + yellow theme */
  --bg:#000000;
  --card:#111111;
  --text:#ffffff;
  --muted:rgba(255,255,255,0.75);
  --border:rgba(255,255,255,0.12);
  --yellow:#f5b400;
  --yellow-dark:#e0a300;
  --radius:16px;
  --max-width:1000px;
  --gap:22px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(245,180,0,0.18), transparent 60%),
    var(--bg);
  color:var(--text);
  margin:0;
  padding:40px 20px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  min-height:100vh;
  overflow-y:auto;
}

.container{
  width:100%;
  max-width:var(--max-width);
  display:grid;
  grid-template-columns: 1.2fr 420px;
  gap:40px;
  align-items:start;
  padding-top: 10px;
}

/* Header */
.header{
  border-left:6px solid var(--yellow);
  padding-left:18px;
}

.logo{
  height:60px;
  margin-bottom:18px;
}

h1{
  font-size:2.4rem;
  line-height:1.15;
  margin:0 0 14px;
  font-weight:800;
}

p{
  color:var(--muted);
  line-height:1.5;
}

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
}

.card h2{
  margin:0 0 8px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}

label{
  font-size:0.9rem;
  color:var(--muted);
}

input{
  padding:14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.06);
  color:white;
  font-size:1rem;
}

input::placeholder{
  color:rgba(255,255,255,0.45);
}

input:focus{
  outline:none;
  border-color:var(--yellow);
  box-shadow:0 0 0 4px rgba(245,180,0,0.25);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  cursor:pointer;
  font-weight:600;
}

.btn-primary{
  background:linear-gradient(180deg, var(--yellow), var(--yellow-dark));
  color:#000;
  border:none;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.status{
  margin-top:14px;
  min-height:1.2em;
}

.calendly{
  background:var(--yellow);
  color:#000;
}

.calendly p{
  color:#000;
}

.calendly .btn{
  border:1px solid rgba(0,0,0,0.4);
  color:#000;
}

/* Mobile */
@media(max-width:900px){
  .container{
    grid-template-columns:1fr;
  }
}

