:root{
  --bg:#07070a;
  --panel:#0f0f14;
  --panel2:#0b0b10;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.14);
  --soft:rgba(255,255,255,.06);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{color:var(--text); text-decoration:none}
.wrap{max-width:1040px; margin:0 auto; padding:0 20px}
header{
  padding:44px 0 26px;
  border-bottom:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
.brand{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.brand .name{
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:14px;
  display:flex; align-items:center; gap:10px;
  color:rgba(255,255,255,.92);
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background:#fff;
  box-shadow:0 0 26px rgba(255,255,255,.35);
}
.brand .sub{
  color:var(--muted);
  font-size:13px;
}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
  margin-top:18px;
}
@media (max-width: 900px){ .hero{grid-template-columns:1fr} }

.hero h1{
  margin:0 0 14px;
  font-size:44px;
  letter-spacing:-.02em;
  line-height:1.05;
}
@media (max-width: 520px){ .hero h1{font-size:34px} }
.hero p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:16px;
  max-width:62ch;
}

.photo{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  overflow:hidden;
  min-height:260px;
  position:relative;
}
.photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  opacity:.92;
  filter: contrast(1.05) brightness(.92);
}
.photo .label{
  position:absolute; left:14px; bottom:14px;
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  color:rgba(255,255,255,.9);
}

main{}
.panel{


}
.section{padding:36px 0; border-bottom: 1px solid var(--line);}
.title{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.01em;
}
.copy{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.copy strong{color:rgba(255,255,255,.95)}
.copy + .copy{margin-top:10px}

.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.list li{
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  padding:12px 12px;
  color: rgba(255,255,255,.86);
  text-align: center;
}
.list li span{
  display:block;
  color: var(--muted);
  margin-top:4px;
  font-size:13px;
}

.actions{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.single-action{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:14px;
}

}
@media (max-width: 700px){ .actions{grid-template-columns:1fr} }
.bigbtn{
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding:18px 16px;
  text-align:left;
  display:block;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.bigbtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.30);
}
.bigbtn .k{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  color: rgba(255,255,255,.78);
  margin-bottom:6px;
}
.bigbtn .t{
  font-size:16px;
  font-weight:700;
  margin:0 0 6px;
  color: rgba(255,255,255,.95);
}
.bigbtn .d{
  margin:0;
  color: var(--muted);
  font-size:13px;
  line-height:1.4;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
@media (max-width: 900px){ .split{grid-template-columns:1fr} }

form{display:grid; gap:10px; margin-top:8px}
label{font-size:13px; color:var(--muted)}
input, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  color: var(--text);
  padding:12px 12px;
  outline:none;
  transition: border .15s ease, background .15s ease;
}
input:focus, textarea:focus{
  border-color: rgba(255,255,255,.30);
  background: rgba(0,0,0,.45);
}
textarea{min-height:120px; resize:vertical}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width: 520px){ .row{grid-template-columns:1fr} }

.submit{
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--text);
  padding:12px 16px;
  font-weight:700;
  cursor:pointer;
  justify-self:start;
  transition: transform .15s ease, background .15s ease;
}
.submit:hover{transform: translateY(-1px); background: rgba(255,255,255,.12)}
.check{
  display:flex; gap:10px; align-items:flex-start;
  color: var(--muted);
  font-size:13px;
  margin-top:2px;
}
.check input{width:auto; margin-top:3px}

footer{
  margin-top:26px;
  border-top:1px solid var(--line);
  padding:22px 0 38px;
  color: rgba(255,255,255,.60);
  font-size:12px;
}
.foot{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  align-items:flex-start;
}
.foot a{color: rgba(255,255,255,.78)}
.foot a:hover{color: rgba(255,255,255,.95)}
.mini{opacity:.9}

/* Privacy Modal */
.modal-overlay{
  position:fixed; inset:0;
  background: rgba(0,0,0,.68);
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  z-index:999;
}
.modal-overlay[aria-hidden="false"]{display:flex}
.modal{
  width:min(820px, 100%);
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(12,12,16,.96);
  box-shadow: 0 30px 120px rgba(0,0,0,.55);
  overflow:hidden;
}
.modal header{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.modal header .mh{
  display:flex; justify-content:space-between; gap:10px; align-items:center;
}
.modal header h3{
  margin:0;
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: rgba(255,255,255,.92);
}
.close{
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  border-radius: 999px;
  padding:8px 12px;
  cursor:pointer;
  font-weight:700;
}
.close:hover{background: rgba(255,255,255,.10)}
.modal .content{
  padding:16px;
  max-height: 72vh;
  overflow:auto;
  color: rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.55;
}
.modal .content h4{
  margin:14px 0 6px;
  font-size:15px;
  color: rgba(255,255,255,.92);
}
.modal .content p{margin:0 0 10px; color: rgba(255,255,255,.78)}
.modal .content ul{margin:0 0 10px 18px; color: rgba(255,255,255,.78)}

/* Box in 2 columns */
.list.list-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .list.list-2{ grid-template-columns: 1fr; }
}

.center{ text-align: center; }

/* Highlighted actions area */
.actions-highlight{
  margin-top:14px;
}

.actions-highlight .bigbtn{
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,0,160,.22), rgba(255,0,160,.10));
  border:1px solid rgba(255,255,255,.16);
  text-align: center;
}

.actions-highlight .bigbtn .t{ font-size: 28px; }

/* Icons in buttons */
.bigbtn .k{
  display:flex;
  align-items:center;
  gap:10px;
}
.bigbtn .ico{
  display:inline-flex;
  width:32px;
  height:32px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
}

.material-symbols-outlined {
  font-size: 28px;
  color: #ff0099; /* magenta */
  vertical-align: middle;
}

#why-olfazeta .material-symbols-outlined, #program .material-symbols-outlined  {
  font-size: 42px;
  color: #ff0099; /* magenta */
  margin-bottom: 10px;
}

/* Why-Olfazeta: cards look */
#why-olfazeta li{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* Program: timeline look */
#program .panel{
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(255,0,160,.16), transparent 60%),
    radial-gradient(520px 240px at 85% 20%, rgba(255,255,255,.06), transparent 60%),
    rgba(12,12,16,.82);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}
#program .title,
#program .copy{
  text-align: left;
}
#program .timeline{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  margin-top: 18px;
}
#program .timeline::before{
  content: '';
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,0,160,.6), rgba(255,255,255,.08));
}
#program .timeline li{
  position: relative;
  text-align: left;
  padding: 8px 12px 8px 44px;
  background: rgba(0,0,0,.18);
  border: none;  
}
#program .timeline li::before{
  content: '';
  position: absolute;
  left: 6px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,0,160,.9);
  box-shadow: 0 0 0 4px rgba(255,0,160,.15);
}
#program .timeline .material-symbols-outlined{
  position: absolute;
  left: 36px;
  top: 10px;
  font-size: 20px;
  color: rgba(255,255,255,.85);
}
#program .timeline li strong{
  display: block;
  margin-bottom: 4px;
}

/* Form toast */
.toast{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  z-index: 1000;
  width: min(560px, calc(100vw - 48px));
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(12,12,16,.95);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show{
  opacity: 1;
  transform: translate(-50%, -50%);
}
.toast-success{
  border-color: rgba(90, 220, 140, .6);
  box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(90, 220, 140, .15) inset;
}
.toast-error{
  border-color: rgba(255, 120, 120, .6);
  box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255, 120, 120, .15) inset;
}

.toast-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999;
  opacity: 0;
  transition: opacity .25s ease;
}
.toast-overlay.show{
  opacity: 1;
}
