:root{
  --navy:#0b1830;
  --navy-2:#142746;
  --saffron:#f57c00;
  --gold:#d7a84b;
  --cream:#fff9ef;
  --ink:#18243a;
  --muted:#697286;
  --line:#e8e0d4;
  --success:#157347;
  --danger:#b42318;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 0%,rgba(245,124,0,.14),transparent 30%),
    linear-gradient(180deg,#fffaf2 0%,#f4eee5 100%);
}
.page{min-height:100vh}
.hero{
  position:relative;
  min-height:460px;
  overflow:hidden;
  background:#111d35;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(4,13,29,.88) 0%,rgba(7,18,37,.58) 42%,rgba(7,18,37,.12) 76%,rgba(7,18,37,.18) 100%),
    linear-gradient(0deg,rgba(4,13,29,.45),transparent 40%);
}
.hero-copy{
  position:relative;
  z-index:2;
  width:min(1180px,92%);
  margin:0 auto;
  padding:110px 0 80px;
  color:white;
}
.eyebrow{
  display:inline-block;
  letter-spacing:.22em;
  font-weight:800;
  font-size:.78rem;
  color:#ffd27d;
  margin-bottom:16px;
}
.hero h1{
  max-width:640px;
  margin:0 0 14px;
  font-size:clamp(2.2rem,5vw,4.5rem);
  line-height:1.03;
  letter-spacing:-.04em;
}
.hero p{
  margin:0;
  font-weight:700;
  letter-spacing:.08em;
  color:#fff3dc;
}
.register-wrap{
  position:relative;
  z-index:3;
  margin:-82px auto 0;
  width:min(620px,92%);
}
.register-card{
  background:rgba(255,255,255,.97);
  border:1px solid rgba(255,255,255,.9);
  border-radius:28px;
  padding:30px;
  box-shadow:0 28px 70px rgba(9,25,51,.22);
  backdrop-filter:blur(18px);
}
.card-head{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:26px;
}
.mini-mark{
  display:grid;
  place-items:center;
  width:52px;height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,#fff1d6,#f8c36c);
  color:#8e4d00;
  font-size:1.8rem;
  box-shadow:inset 0 0 0 1px rgba(146,81,0,.12);
}
.card-head h2{margin:0;font-size:1.55rem}
.card-head p{margin:4px 0 0;color:var(--muted);font-size:.93rem;line-height:1.45}
label{
  display:block;
  margin:17px 0 8px;
  font-size:.9rem;
  font-weight:750;
}
label span{color:var(--saffron)}
label small{font-weight:500;color:var(--muted)}
input,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:var(--ink);
  padding:14px 15px;
  font:inherit;
  outline:none;
  transition:.2s ease;
}
textarea{min-height:92px;resize:vertical}
input:focus,textarea:focus{
  border-color:#e4a345;
  box-shadow:0 0 0 4px rgba(245,124,0,.11);
}
.mobile-row{
  display:flex;
  align-items:stretch;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:white;
}
.mobile-row:focus-within{
  border-color:#e4a345;
  box-shadow:0 0 0 4px rgba(245,124,0,.11);
}
.mobile-row .prefix{
  display:flex;align-items:center;
  padding:0 14px;
  font-weight:750;
  background:#faf6ef;
  border-right:1px solid var(--line);
}
.mobile-row input{border:0;box-shadow:none;border-radius:0}
.primary-btn{
  width:100%;
  margin-top:20px;
  border:0;
  border-radius:14px;
  padding:15px 18px;
  cursor:pointer;
  color:#fff;
  font-weight:800;
  font-size:1rem;
  background:linear-gradient(135deg,#f57c00,#c94e00);
  box-shadow:0 10px 24px rgba(201,78,0,.24);
  transition:transform .18s ease,box-shadow .18s ease,opacity .18s ease;
}
.primary-btn:hover{transform:translateY(-1px);box-shadow:0 14px 28px rgba(201,78,0,.28)}
.primary-btn:disabled{opacity:.6;cursor:not-allowed;transform:none}
.otp-panel{
  margin-top:20px;
  padding:20px;
  border-radius:18px;
  background:#fff8ed;
  border:1px solid #f0d9b1;
}
.otp-title{font-size:1.08rem;font-weight:850}
.otp-panel p{margin:6px 0 14px;color:var(--muted);font-size:.9rem}
.otp-input{text-align:center;letter-spacing:.45em;font-size:1.3rem;font-weight:800}
.text-btn{
  display:block;
  margin:12px auto 0;
  border:0;background:transparent;
  color:#a44e00;font-weight:750;cursor:pointer;
}
.status{
  min-height:24px;
  margin-top:14px;
  font-size:.9rem;
  line-height:1.4;
  text-align:center;
}
.status.success{color:var(--success)}
.status.error{color:var(--danger)}
.status.info{color:#31537f}
.trust{
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid #eee7dc;
  color:#777;
  font-size:.76rem;
}
.hidden{display:none!important}
.captcha{margin-top:12px}
footer{
  width:min(1180px,92%);
  margin:0 auto;
  padding:38px 0 44px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:#657087;
  font-size:.76rem;
  letter-spacing:.12em;
}
footer strong{color:#8e4d00}
@media(max-width:700px){
  .hero{min-height:390px}
  .hero-copy{padding:85px 0 70px}
  .hero h1{font-size:2.25rem}
  .register-wrap{margin-top:-55px}
  .register-card{padding:22px;border-radius:22px}
}
